text
stringlengths
7
3.69M
var value = "472"; document.write("Value: " + value); document.write("<br />Type: string"); document.write("<br />Value: " + Number(value)); document.write("<br />Type: number");
import React, {Component} from 'react'; import * as _ from "lodash"; import SortableTree from "react-sortable-tree"; import 'react-sortable-tree/style.css'; import '../css/ASTVisualizer.css' let getChildren = (node) => { switch (node.type) { case 'Program': return node.body; case 'VariableDeclaration': return node.declarations; case 'VariableDeclarator': return node.init ? [node.id, node.init] : [node.id]; case 'ExpressionStatement': return [node.expression]; case 'BinaryExpression': return [node.left, node.right]; case 'AssignmentExpression': return [node.left, node.right]; case 'CallExpression': return [node.callee, {type: 'arguments', arguments: node.arguments}]; case 'arguments': return node.arguments; case 'MemberExpression': return [node.object, node.property]; case 'NewExpression': return node.arguments; case 'ObjectExpression': return node.properties; case 'Property': return [node.key, node.value]; case 'FunctionDeclaration': return [node.body]; case 'FunctionExpression': return [node.body]; case 'BlockStatement': return node.body; case 'ReturnStatement': return node.argument ? [node.argument] : []; case 'UnaryExpression': return [node.argument]; case 'IfStatement': return [node.test, node.consequent]; case 'ConditionalExpression': return [node.test, node.consequent, node.alternate]; default: return []; } }; let getLabel = (node) => { switch (node.type) { case 'Identifier': return node.name; case 'Literal': return node.raw; case 'UnaryExpression': return node.operator; case 'BinaryExpression': return node.operator; case 'AssignmentExpression': return node.operator; case 'FunctionDeclaration': var params1 = _.map(node.params, 'name').join(','); return 'function ' + (!(!(node.id && node.id.name) && !'')) + '(' + params1 + ')'; case 'FunctionExpression': var params2 = _.map(node.params, 'name').join(','); return 'function ' + (!(!(node.id && node.id.name) && !'')) + '(' + params2 + ')'; default: return node.type; } }; class AstVisualizer extends Component { constructor(props) { super(props); this.state = { treeData: [], }; } componentDidMount() { this.setState({treeData: this.buildTree(this.props.ast)}) } componentWillReceiveProps(nextProps) { this.setState({treeData: this.buildTree(nextProps.ast)}) } recursiveBuilder = (node) => { let children = getChildren(node); let tree = []; if (children === []) return children; children.forEach((child) => { tree.push({ title: getLabel(child), children: this.recursiveBuilder(child), expanded: true, type: child.type, start: child.start, end: child.end }); }); return tree }; buildTree = (ast) => { let tree = []; tree.push({ title: getLabel(ast), children: this.recursiveBuilder(ast), expanded: true, type: ast.type, start: ast.start, end: ast.end }); return tree }; highlightCode = (start, end) => { let codeEditor = this.props.cm.editor.doc; const fromIndex = codeEditor.posFromIndex(start); const toIndex = codeEditor.posFromIndex(end); codeEditor.markText(fromIndex, toIndex, { className: 'highlighted-code' }); }; clearHighlightedCode = () => { this.props.cm.editor.doc.getAllMarks().forEach((m) => { m.clear() }) }; render() { return ( <SortableTree treeData={this.state.treeData} onChange={treeData => this.setState({treeData})} canDrag={false} generateNodeProps={({node}) => { return { className: node.type, onMouseEnter: () => this.highlightCode(node.start, node.end), onMouseLeave: () => this.clearHighlightedCode() }; }} /> ); } } export default AstVisualizer;
import { REQUEST_AUDIT_RULES, RECEIVE_AUDIT_RULES, NOTIFY_AUDIT_REQUEST_ERROR, DISMISS_AUDIT_REQUEST_ERROR, REQUEST_AUDIT_RULE_FIELDS, RECEIVE_AUDIT_RULE_FIELDS, SET_AUDIT_RULES_FILTER} from './netaudit-actions'; let initialState = { requestingRules: false, requestError: null, rules: [], filter:{ text: '', rules: true, categories: false }, rulesdata:{} }; export default function netaudit(state = initialState, action){ switch (action.type) { case REQUEST_AUDIT_RULES: return Object.assign({}, state, { requestingRules: true }); case REQUEST_AUDIT_RULE_FIELDS: if( typeof state.rulesdata[action.ruleId]=== 'undefined' ){ return Object.assign({}, state, { rulesdata: Object.assign({},state.rulesdata, { [action.ruleId]: { requesting: true, requestError: null, fields: [] } }) }); } return Object.assign({}, state, { modata: Object.assign({},state.rulesdata, { [action.ruleId]: { requesting: true, requestError: null, fields: state.rulesdata[action.ruleId].fields } }) }); case RECEIVE_AUDIT_RULE_FIELDS: return Object.assign({}, state, { rulesdata: Object.assign({},state.rulesdata, { [action.ruleId]: { requesting: false, requestError: null, fields: action.fields } }) }); case RECEIVE_AUDIT_RULES: return Object.assign({}, state, { requestingRules: false, requestError: null, rules: action.rules }); case NOTIFY_AUDIT_REQUEST_ERROR: return Object.assign({}, state, { requestingRules: false, requestError: action.error }); case DISMISS_AUDIT_REQUEST_ERROR: return Object.assign({}, state, { requestError: null }); case SET_AUDIT_RULES_FILTER: return Object.assign({}, state, { filter: action.filter }); default: return state; } }
import React from 'react'; import {TouchableOpacity, StyleSheet} from 'react-native'; import {shadowStyle} from '../utils/shadow'; const Card = props => { return ( <TouchableOpacity {...props} activeOpacity={ props.activeOpacity ?? (props.onPress || props.onLongPress ? 0.8 : 1) } style={[styles.container, props.style]}> {props.children} </TouchableOpacity> ); }; const styles = StyleSheet.create({ container: { borderRadius: 10, backgroundColor: '#fff', marginHorizontal: 15, ...shadowStyle(3), }, }); export default React.memo(Card);
export * from './employee-card';
import React from 'react' import {Link} from 'react-router-dom' export default function Product(props) { const singleProduct = props.product return ( <div className="media"> <div className="media-left"> <Link to={`/products/${singleProduct.id}`}> <img className="media-object" src={singleProduct.imageUrl} /> </Link> </div> <div className="media-body"> <Link to={`/products/${singleProduct.id}`}> <h4 className="media-heading">{singleProduct.name}</h4> </Link> <p>{`$${singleProduct.price}`}</p> </div> </div> ) }
window.onscroll = function() { menuScroll() }; function menuScroll() { var navbar = document.getElementById("myNavbar"); var idLogo = document.getElementById("Logo"); if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) { navbar.className = "clnavBar" + " j-w3-animate-top"; document.getElementById("titolMenu").style.display = "block"; /* idLogo.className = "img-height" + " j-w3-animate-top";*/ idLogo.style.display = "none"; /* document.getElementById("subTitol").style.display = "none";*/ /* document.getElementById("titolPrincipal").style.width = "280px"*/ } else { navbar.className = navbar.className.replace(" j-w3-animate-top", ""); document.getElementById("titolMenu").style.display = "none"; idLogo.style.display = "block"; idLogo.className = idLogo.className.replace("img-height j-w3-animate-top", ""); /* document.getElementById("titolPrincipal").style.width = "320px"*/ } }
import React from "react"; import PropTypes from "prop-types"; import { Helmet } from "react-helmet"; import { useLocation } from "@reach/router"; import { useStaticQuery, graphql } from "gatsby"; const SEO = ({ title, description }) => { const { pathname } = useLocation(); const { site } = useStaticQuery(query); const seo = { title: title || site.siteMetadata.defaultTitle, description: description || site.siteMetadata.defaultDescription, url: `${site.siteMetadata.siteUrl}${pathname}`, twitterUsername: site.siteMetadata.twitterUsername, image: site.siteMetadata.image || "", }; return ( <Helmet> {/* Primary Meta Tags */} <title>{seo.title}</title> <meta name="title" content={seo.title} /> <meta name="description" content={seo.description} /> {/* Open Graph / Facebook */} <meta property="og:type" content="website" /> <meta property="og:url" content={seo.url} /> <meta property="og:title" content={seo.title} /> <meta property="og:description" content={seo.description} /> <meta property="og:image" content={seo.image} /> {/* Twitter */} <meta property="twitter:card" content="summary" /> <meta property="twitter:url" content={seo.url} /> <meta property="twitter:title" content={seo.title} /> <meta property="twitter:description" content={seo.description} /> <meta name="twitter:creator" content={seo.twitterUsername} /> <meta property="twitter:image" content={seo.image} /> {/* BG */} <meta name="theme-color" media="(prefers-color-scheme: light)" content="#cbd5e1" /> <meta name="theme-color" media="(prefers-color-scheme: dark)" content="#0f172a" /> {/* Fonts */} <link rel="preconnect" href="https://fonts.gstatic.com" /> <link href="https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&family=Titillium+Web&display=swap" rel="stylesheet" /> </Helmet> ); }; export default SEO; const query = graphql` query SEO { site { siteMetadata { defaultTitle: title defaultDescription: description siteUrl: url twitterUsername } } } `; SEO.propTypes = { title: PropTypes.string, description: PropTypes.string, article: PropTypes.bool, }; SEO.defaultProps = { title: null, description: null, article: false, };
import React, {Component} from 'react' import {Platform, StyleSheet,Text, View,Image,Dimensions} from 'react-native'; import { Card, ListItem, Button, Icon,Input, Header} from 'react-native-elements' const SCREEN_WIDTH = Dimensions.get('window').width; const IMAGE_SIZE = SCREEN_WIDTH - 80; class singleOrder extends Component{ render(){ const {params} = this.props.navigation.state return( <Card title="Order Detail"> <View style={{ justifyContent: 'center', alignItems: 'center' }}> <Text style = {styles.nameHeader}>{'Customer'} => {params.item.customer}</Text> <Image source = {{ uri : params.item.food_image }} style = {{ width: IMAGE_SIZE, height: IMAGE_SIZE, borderRadius: 10 }} /> </View> </Card> ) } } const styles = StyleSheet.create({ container: { flex: 1, }, headerContainer: { justifyContent: 'center', alignItems: 'center', padding: 40, backgroundColor: '#FD6B78', }, heading: { color: 'white', marginTop: 10, fontSize: 22, }, fonts: { marginBottom: 8, }, user: { flexDirection: 'row', marginBottom: 6, }, image: { width: 30, height: 30, marginRight: 10, }, nameHeader: { color: 'black', fontSize: 22, textAlign: 'center', }, }); export default singleOrder
const mongoose = require("mongoose"); const Schema = mongoose.Schema; const PENDING_FRIEND_REQUEST = 'pending'; const ACCEPTED_FRIEND_REQUEST = 'accepted'; const friendRequestScheme = new Schema({ //создаем тему запроса sender_id: Schema.Types.ObjectId, receiver_id: Schema.Types.ObjectId, status: { type: String, default: PENDING_FRIEND_REQUEST, } },{ versionKey: false }); const FriendRequest = mongoose.model("FriendRequest", friendRequestScheme); //создаем модель запроса module.exports = FriendRequest;
const input = require('fs').readFileSync('./dev/stdin', 'utf8'); const lines = input.split('\n'); const raio = parseFloat(lines.shift()) const pi = 3.14159 const area = pi * Math.pow(raio, 2) console.log(`A=${area.toFixed(4)}`)
export default { async test({ assert, target, window }) { const button = target.querySelector('button'); const p = target.querySelector('p'); const eventClick = new window.MouseEvent('click'); await button.dispatchEvent(eventClick); assert.htmlEqual(p.innerHTML, 'True'); } };
// DO NOT DELETE import React from 'react' export const Header = () => { return ( <header> <h1 id="title">Dog App</h1> </header> ) }
$(document).ready(function () { d = new Date() let month = String(d.getMonth() + 1); let day = String(d.getDate()); const year = String(d.getFullYear()); if (month.length < 2) month = '0' + month; if (day.length < 2) day = '0' + day; $('.date h3').text(`${day}/${month}/${year}`) // $('.littleheader.lh4').on('click',function(){ // console.log("Salut!") // }) window.addEventListener('scroll', function (event) { if (window.scrollY <= 5) { $('nav').css({ 'backgroundColor': 'transparent', 'box-shadow': 'none' }) $('nav a').css('color', 'white') } else { $('nav').css({ 'backgroundColor': '#FAF8F8', 'box-shadow': '1px 1px 12px #ACACAC' }) $('nav a').css('color', '#2FA1D1') } }) })
const request = require (`request`); // 1.- Hacer una petición a cualquier pokemon y mostrar sus tipos. // https://pokeapi.co/ request(`https://pokeapi.co/api/v2/pokemon/ditto`, function (error, response, body){ console.error(`error:`, error); console.log(`statusCode`, response && response.statusCode); a = JSON.parse(body) console.log(`body:`, a.types); });
import React from 'react'; import {observer, inject} from 'mobx-react'; import Food from '../Food/Food'; import Snake from '../Snake/Snake'; import Game from '../../business/Game'; import './Board.css'; import {PIXELS_UNIT} from '../../business/Position'; @inject("snakeStore") @observer class Board extends React.Component { render(){ var boardStyle = { height: this.props.boardSize*PIXELS_UNIT, width: this.props.boardSize*PIXELS_UNIT, borderWidth: PIXELS_UNIT } return ( <React.Fragment> <div className="board" style={boardStyle}> <Snake snake={this.props.snakeStore.engine.snake}/> <Food food={this.props.snakeStore.engine.food}/> </div> </React.Fragment> ) } } export default Board;
function register(env) { env.addGlobal("file_by_id", handler); } function handler(file_id) { return {}; } export { handler, register as default };
import React from "react" import styled from "styled-components" import ClassDot from "../../../svgs/ClassDot" const ClassKeyCard = ({ classType }) => { const setStartColor = () => { switch (classType) { case "body_burn": return "#8991ff" case "yoga": return "#dc45c7" case "running": return "#5afdf2" default: break } } const setMiddleColor = () => { switch (classType) { case "body_burn": return "#757ef4" case "yoga": return "#ce48db" case "running": return "#47e9e4" default: break } } const setEndColor = () => { switch (classType) { case "body_burn": return "#4852dc" case "yoga": return "#b44cff" case "running": return "#09A9B7" default: break } } const setTitle = () => { let title switch (classType) { case "body_burn": title = "Body Burn" return title case "yoga": title = "Yoga" return title case "running": title = "Need for Speed" return title default: break } } return ( <ClassKeyContainer> <ClassWrapper> <Dot startColor={setStartColor()} middleColor={setMiddleColor()} endColor={setEndColor()} classType={classType} /> <ClassName>{setTitle()}</ClassName> </ClassWrapper> </ClassKeyContainer> ) } export default ClassKeyCard const ClassKeyContainer = styled.div` display: flex; justify-content: flex-start; align-items: center; ` const ClassWrapper = styled.div` display: flex; align-items: center; width: 100%; ` const ClassName = styled.p` margin: 0; margin-left: 10px; padding: 0; color: ${props => props.theme.whiteText}; font-size: 14px; text-transform: uppercase; letter-spacing: 1.8px; ` const Dot = styled(ClassDot)` width: 20px; height: 20px; `
import React, { useState } from "react"; import { useDispatch } from "react-redux"; import { useParams } from "react-router-dom"; import { makeStyles } from "@material-ui/core/styles"; import Rating from "@material-ui/lab/Rating"; import Paper from "@material-ui/core/Paper"; import Collapse from "@material-ui/core/Collapse"; import Grid from "@material-ui/core/Grid"; import Typography from "@material-ui/core/Typography"; import Divider from "@material-ui/core/Divider"; import Button from "@material-ui/core/Button"; import Tooltip from "@material-ui/core/Tooltip"; import IconButton from "@material-ui/core/IconButton"; import DeleteForeverIcon from "@material-ui/icons/DeleteForever"; import PrivateComponent from "src/components/auth/PrivateComponent"; import { deleteReview } from "src/redux/reviews/actions"; import useConfirmationDialog from "src/components/common/useConfirmationDIalog"; const useStyles = makeStyles(theme => ({ grow: { flex: "1 0 auto" }, button: { margin: theme.spacing(1) }, padding: { padding: theme.spacing(1) } })); const ReviewItem = ({ review }) => { const classes = useStyles(); const [expanded, setExpanded] = useState(false); const { itemId } = useParams(); const dispatch = useDispatch(); const deleteHandler = () => { dispatch(deleteReview(itemId, review._id)); }; const [openDialog, Dialog] = useConfirmationDialog( "Do you want to delete this review?", "The review will be deleted permanently", deleteHandler ); return ( <> <Grid item component={Paper} elevation={0}> <Grid container alignItems="center"> <div> <Typography variant="subtitle2"> {review.title} </Typography> <Typography variant="subtitle1"> {review.author.email} </Typography> </div> <div className={classes.grow} /> <Rating value={review.rating} readOnly /> <PrivateComponent adminOnly> <Tooltip title="Delete review"> <IconButton size="small" onClick={openDialog}> <DeleteForeverIcon /> </IconButton> </Tooltip> </PrivateComponent> </Grid> <Collapse collapsedHeight="90px" in={expanded} className={classes.padding} > <Typography variant="body2" align="justify"> {review.content} </Typography> </Collapse> <Button onClick={() => setExpanded(!expanded)} variant="outlined" className={classes.button} > {expanded ? "Read less" : "Read more"} </Button> <Divider variant="middle" /> </Grid> <Dialog /> </> ); }; export default ReviewItem;
Ext.define('CBA.model.SchedModel', { extend: 'Ext.data.Model', requires:[ 'Ext.data.Field' ], config: { fields: ['id','bID','start','end','type'] } });
const express = require('express'); const controller = require('./controller'); const massive = require('massive'); require('dotenv').config(); const app = express() const { SERVER_PORT, CONNECTION_STRING} = process.env; massive({ connectionString: {connectionString: CONNECTION_STRING}, ssl: {rejectUnauthorized: false} }) app.use(express.json()) // place GET, POST, PUT, DELETE here // GET app.get('/api/inventory', getInventory) // POST app.put('/api/get_inventory' , addInventory) //PUT app.put('/api/update_inventory', updateInventory) //DELETE app.delete('/api/delete_inventory', deleteInventory) // console.log() const port = 3001 app.listen(SERVER_PORT, () => console.log(`listening on port ${SERVER_PORT}`))
$(document).ready(function() { var myLink = $('a[href $= \\.PDF]'); myLink.hide().text('Ara Periyan').show(2000); }); // End of ready
angular.module('happoshuApp'). service('SimulationGroupsService', function ($http) { this.getSimulationGroups = function () { console.log('Getting simulation groups'); return $http({ method: 'GET', url: 'http://localhost:9000/api/simulationGroups' }); }; this.toggleDirty = function () { console.log('Dirty toggle'); }; this.update = function (simulationGroup) { console.log('Updating simulation group' + simulationGroup); return $http({ method: 'PUT', url: 'http://localhost:9000/api/simulationGroups/' + simulationGroup._id, data: simulationGroup }); } });
var redis = require('node-redis'), moment = require('moment'), moment_range = require('moment-range'), Q = require("q"); // create redis client var redisClient = redis.createClient(6379); var stats = require('./libs/stats')(redisClient); var fromDate = moment().subtract(2, 'day'); var toDate = moment().subtract(1, 'day'); console.log("\n fromDate, toDate:", fromDate.format(), toDate.format()); //var last_day_love = stats.getByNamePeriod('total', fromDate, toDate, 'minute'); /* Q.when(stats.getByNamePeriod('total', fromDate, toDate, 'minute'), function(data) { console.log("\n data:", data); var total = 0; for (var i = 0; i < data.length; i++) { total += data[i]; } console.log('total', total); }); */ Q.when(stats.getAll(fromDate, toDate, 'minute'), function(data) { console.log('data', data[1]) for (var i = 0; i < data.length; i++) { console.log('ttl', data[i].length) } }); //console.log("\n data:", last_day_love);
function mostrar() { let nota; //en vez de colocar el minimo y maximo simplifico y saco la resta de una vez del ejer 9 nota = Math.round(Math.random() * 9 + 1); if (nota >= 9) { alert(nota + " EXCELENTE"); }else if (nota > 4) { alert(nota + " APROBÓ") }else{ alert(nota + " Vamos, la proxima se puede") } }//FIN DE LA FUNCIÓN
import * as constants from "../constants" export let sourceImageReducer = (state = "", action) => { let {type, sourceImage} = action switch (type) { case constants.SOURCE_IMAGE_RECEIVED: return sourceImage default: return state } } export let extraImagesReducer = (state = [], action) => { let {type, extraImages} = action switch (type) { case constants.EXTRA_IMAGES_RECIEVED: return extraImages default: return state } }
#!/usr/bin/env node //Echo client program var net = require('net'); var fs = require('fs'); var stime=new Date().getTime(); var done=0; function tryToConnect( ip, port ){ done++; var socket = net.createConnection(port, ip); socket.on('error', function(err){ console.log( ip + ' ' + port ); }).on('connect', function(connect) { socket.destroy(); }).on('close', function(had_error){ done--; if(done == 0 ){ var etime=new Date().getTime(); console.log( "elapsed(ms) " + (etime - stime)/1000 ); } }); } fs.readFile(process.argv[2], 'utf-8', function(err, data){ var lines = data.split('\n'); lines.forEach(function(line){ if( line.trim().length < 1 ) return; var opts=line.match(/[0-9\.]+/g); if( opts && opts.length > 1 ) { tryToConnect(opts[0], opts[1]); } else { console.log(line); } }); });
var player, player_running, player_collided var ground, invisGround var bg, backgroundImage var enemy, enemyGroup var gameState = "play" function preload(){ player_running = loadAnimation("player1.png", "player2.png") player_collided = loadImage("deadChar.png") backgroundImage = loadImage("background.jpg") enemyAnimation = loadAnimation("enemy1.png", "enemy2.png", "enemy3.png", "enemy4.png", "enemy5.png", "enemy6.png") } function setup() { createCanvas(400, 400); backgroundImage = createSprite(0, 0, 400, 400); bg.addImage(backgroundImage); bg.scale = 1. player = createSprite(100, 320, 200, 200); player.addAnimation("running", player_running); player.scale = 0.1; invisGround = createSprite(400, 350, 800, 10); invisGround.velocityX = -4; invisGround.x = ground.width/2; invisGround.visible = false enemyGroup = createGroup(); bg.velocityX = -4; } function draw() { background(0) drawSprites(); }
module.exports = { USERNAME: 'shubhsahu.0305@gmail.com', PASSWORD: 'Pairon1Mein0Bandhan1Hain' }
/** * AnonLookup.js * @file Acquires data on selected IP addresses * @author Eizen <dev.wikia.com/wiki/User_talk:Eizen> * @external "mediawiki.util" * @external "jQuery" * @external "wikia.ui.factory" * @external "wikia.window" * @external "mw" */ /*jslint browser, this:true */ /*global mw, jQuery, window, require, wk, ui */ require(["mw", "wikia.window", "wikia.ui.factory"], function (mw, wk, ui) { "use strict"; if (jQuery("#AnonLookup-li").exists() || window.isAnonLookupLoaded) { return; } window.isAnonLookupLoaded = true; var $i18n = { "en": { script: "AnonLookup", summary: "As this script uses an external API for anon data, " + "please restrict data queries to 150 per minute.", buttonCancel: "Close", buttonClear: "Clear", buttonSubmit: "Submit", modalInput: "Input an IP address", error: "ERROR: Data query failed", isp: "ISP", city: "City", region: "Region", country: "Country" } }; var $lang = jQuery.extend( $i18n.en, $i18n[wk.wgUserLanguage.split("-")[0]], $i18n[wk.wgUserLanguage] ); var AnonLookup = { modalHTML: "<div id='AnonLookup-modal-changes' class='WikiaArticle diff'>" + "<div id='AnonLookup-modal-summary'>" + $lang.summary + "</div>" + "<hr><br />" + "<textarea id='AnonLookup-modal-input' placeholder='" + $lang.modalInput + "'/>" + "<br />" + "<div id='AnonLookup-modal-changes-div'></div>" + "</div>", returnNode: function () { switch (wk.skin) { case "oasis": case "wikia": return "#my-tools-menu"; case "monobook": case "wowwiki": case "uncyclopedia": return "#p-tb ul"; } }, constructItem: function ($text) { return mw.html.element("li", { "class": "overflow", "id": "AnonLookup-li" }, new mw.html.Raw( mw.html.element("a", { "id": "AnonLookup-a", "href": "#", "title": $text }, $text) )); }, displayModal: function () { mw.util.addCSS( "#AnonLookup-modal-input {" + "width: 98%;" + "}" + "#AnonLookup-modal-changes-div {" + "height: 100px;" + "width: auto;" + "border: 1px solid #808080;" + "border-color: rgb(169, 169, 169);" + "font-family: monospace;" + "background: #fff;" + "color: #808080;" + "overflow: scroll;" + "padding:5px;" + "}" ); ui.init(["modal"]).then(function (modal) { var config = { vars: { id: "AnonLookup-modal", size: "small", title: $lang.script, content: AnonLookup.modalHTML, buttons: [ { vars: { value: $lang.buttonCancel, classes: [ "normal", "primary" ], data: [ { key: "event", value: "cancel" } ] } }, { vars: { value: $lang.buttonClear, classes: [ "normal", "primary" ], data: [ { key: "event", value: "clear" } ] } }, { vars: { value: $lang.buttonSubmit, classes: [ "normal", "primary" ], data: [ { key: "event", value: "submit" } ] } } ] } }; modal.createComponent(config, function (AnonLookupModal) { AnonLookupModal.bind("cancel", function () { AnonLookupModal.trigger("close"); }); AnonLookupModal.bind("clear", function () { jQuery("#AnonLookup-modal-input").val(""); jQuery("#AnonLookup-modal-changes-div").empty(); }); AnonLookupModal.bind("submit", function () { var $ip = jQuery("#AnonLookup-modal-input")[0].value; AnonLookup.getData($ip, AnonLookup.handleData); }); AnonLookupModal.show(); }); }); }, getData: function ($ipAddress, callback) { jQuery.ajax({ type: "GET", dataType: "jsonp", url: "http://ip-api.com/json/" + $ipAddress }).done(function ($data) { if ($data.status !== "fail") { callback($data); } else { jQuery("#AnonLookup-modal-changes-div").prepend( "<span>" + $lang.error + "</span><hr>" ); } }); }, handleData: function ($data) { var $geoData = [ { text: $lang.isp, data: $data.isp }, { text: $lang.city, data: $data.city }, { text: $lang.region, data: $data.regionName }, { text: $lang.country, data: $data.country }, ]; var $resultsHTML = "<div class='AnonLookup-modal-results'></div><hr>"; jQuery("#AnonLookup-modal-changes-div").prepend($resultsHTML); $geoData.forEach(function ($entry) { jQuery( "<span>" + $entry.text + ": " + $entry.data + "</span><br />" ) .appendTo(".AnonLookup-modal-results"); }); }, init: function () { var that = this; var $desiredNode = this.returnNode(); var $element = this.constructItem($lang.script); jQuery($element).prependTo($desiredNode).click(function () { that.displayModal(); }); } }; mw.loader.using("mediawiki.util").then( jQuery.proxy(AnonLookup.init, AnonLookup) ); });
$(document).ready(function(){ init_tag_event(); init_drop_event(); }); function init_tag_event() { $(".dtag").bind("click",function(){ location.href = $(this).find("input").val(); }); } function init_drop_event() { $(".dnode dd a").bind("click",function(){ location.href = $(this).attr("value"); return false; }); }
import { assert, match, spy, stub } from 'sinon'; import { expect } from 'chai'; import proxyquire from 'proxyquire'; describe('create-archive', () => { let mod, archiveInstance, deps, mockWritable; beforeEach(() => { archiveInstance = { glob: stub(), directory: stub(), file: stub(), pipe: stub(), finalize: stub(), on: stub(), pointer: stub() } function MockWritable() { this.handlers = {}; this.on = function (key, handler) { this.handlers[key] = handler; } } mockWritable = new MockWritable(); deps = { 'archiver': stub().returns(archiveInstance), 'fs-extra': { existsSync: stub().returns(true), readFileSync: stub().returns(''), createWriteStream: stub().returns(mockWritable) } }; mod = proxyquire('../../../lib/apps/create-archive', deps); }); describe('archiveIgnores', () => { let ignores; beforeEach(() => { deps['fs-extra'].readFileSync.returns(` .git-file package.json`); ignores = mod.archiveIgnores('dir'); }); let includes = (n) => { it(`includes ${n}`, () => { expect(ignores.indexOf(n)).not.to.eql(-1); }); }; includes('.pie'); includes('\.*'); includes('package.json'); includes('*.tar.gz'); }); describe('createArchive', () => { let addExtras; beforeEach((done) => { addExtras = stub(); mod.createArchive('pie.tar.gz', 'dir', [], addExtras); mockWritable.handlers.close(); done(); }); it('calls archiver', () => { assert.calledWith(deps['archiver'], 'tar', { gzip: true }); }); it('calls createWriteStream', () => { assert.calledWith(deps['fs-extra'].createWriteStream, 'pie.tar.gz'); }); it('adds error listener', () => { assert.calledWith(archiveInstance.on, 'error', match.func); }); it('calls archive.pipe', () => { assert.calledWith(archiveInstance.pipe, mockWritable); }); it('calls archive.glob', () => { assert.calledWith(archiveInstance.glob, '**', { cwd: 'dir', ignore: [] }); }); it('calls addExtras', () => { assert.calledWith(addExtras, archiveInstance); }); it('calls archive.finalize', () => { assert.called(archiveInstance.finalize); }); }); });
/* * Copyright 2018 ConsenSys AG. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. */ /** * This file contains code which is common to many of the test files. */ const FinderImplementation = artifacts.require("./Finder_v1.sol"); const ERAImplementation = artifacts.require("./ERA_v1.sol"); const ERAImplementation2 = artifacts.require("./ERA_v2.sol"); const DomainInfoImplementation = artifacts.require("./DomainInfo_v1.sol"); // All tests of the public API must be tested via the interface. This ensures all functions // which are assumed to be part of the public API actually are in the interface. const FinderInterface = artifacts.require("./FinderInterface.sol"); const ERAInterface = artifacts.require( "./EthereumRegistrationAuthorityInterface.sol" ); const DomainInfoInterface = artifacts.require("./DomainInfoInterface.sol"); const testDomain = "aa.bb.example.com.au"; const testDomainP1 = "bb.example.com.au"; const testDomainP2 = "example.com.au"; const testDomainP3 = "com.au"; const DONT_SET = "1"; function sleep(ms) { return new Promise((resolve) => setTimeout(resolve, ms)); } module.exports = { TEST_DOMAIN: testDomain, TEST_DOMAIN_P1: testDomainP1, TEST_DOMAIN_P2: testDomainP2, TEST_DOMAIN_P3: testDomainP3, DONT_SET: DONT_SET, getNewERA: async function () { let eraInstance = await ERAImplementation.new(); let eraAddress = eraInstance.address; return await ERAInterface.at(eraAddress); }, getNewERAv2: async function () { let eraInstance = await ERAImplementation2.new(); let eraAddress = eraInstance.address; return await ERAInterface.at(eraAddress); }, getDeployedERA: async function () { let eraInstance = await ERAImplementation.deployed(); let eraAddress = eraInstance.address; return await ERAInterface.at(eraAddress); }, getNewFinder: async function () { let finderInstance = await FinderImplementation.new(); let finderAddress = finderInstance.address; return await FinderInterface.at(finderAddress); }, getDeployedFinder: async function () { let finderInstance = await FinderImplementation.deployed(); let finderAddress = finderInstance.address; return await FinderInterface.at(finderAddress); }, getNewDomainInfo: async function () { let domainInfoInstance = await DomainInfoImplementation.new(); let domainInfoAddress = domainInfoInstance.address; return await DomainInfoInterface.at(domainInfoAddress); }, getDeployedDomainInfo: async function () { let domainInfoInstance = await DomainInfoImplementation.deployed(); let domainInfoAddress = domainInfoInstance.address; return await DomainInfoInterface.at(domainInfoAddress); }, dumpAllDomainAddUpdateEvents: async function (eraInterface) { console.log( "ContractAddress Event BlkNum DomainHash AuthorityAddress OrgAddress OwnerAddress" ); await eraInterface .DomainAddUpdate({}, { fromBlock: 0, toBlock: "latest" }) .get(function (error, result) { if (error) { console.log(error); throw error; } if (result.length === 0) { console.log("No events recorded"); } else { var i; for (i = 0; i < result.length; i++) { console.log( result[i].address + " \t" + result[i].event + " \t" + result[i].blockNumber + " \t" + result[i].args._domainHash + " \t" + result[i].args._domainAuthority + " \t" + result[i].args._orgInfo + " \t" + result[i].args._owner + " \t" //+ // result[i].blockHash + " " + // result[i].logIndex + " " + // result[i].transactionHash + " " + // result[i].transactionIndex ); } } }); // If this sleep isn't here, the Ethereum Client is shutdown before the code above finished executing. await sleep(100); }, // Pass in a contract instance and expected value to retrieve the number of emitted events and run an assertion. assertDomainAddUpdateEventNum: async function ( eraInterface, expectedNumEvents ) { eraInterface .DomainAddUpdate({}, { fromBlock: 0, toBlock: "latest" }) .get(function (error, result) { if (error) { console.log(error); throw error; } assert.equal(expectedNumEvents, result.length); }); // If this sleep isn't here, the Ethereum Client is shutdown before the code above finished executing. await sleep(100); }, };
const {Thoughts} = require('../models'); const thoughtsController = { // get all thoughts getThoughts(req, res) { Thoughts.find({}) .select('-__v') .sort({ _id: -1 }) .then(dbThoughtData => res.json(dbThoughtData)) .catch(err => { console.log("There was an error. " + err); res.status(400).json(err) }); }, // get one thought by ID getThoughtsById({ params }, res) { Thoughts.findOne({ _id: params.id }) .select('-__v') .then(dbThoughtsData => { if (!dbThoughtsData) { res.status(404).json({ message: 'No thought found with this ID.' }); return; } res.json(dbThoughtsData); }) .catch(err => { console.log(err); res.status(400).json(err); }); }, // post to create a new thought createThoughts({ body }, res) { Thoughts.create(body) .then(dbThoughtData => res.json(dbThoughtData)) .catch(err => res.status(400).json(err)); }, // update thoughts by ID updateThoughts({ params, body }, res) { Thoughts.findOneAndUpdate({ _id: params.id }, body, { new: true, runValidators: true }) .then(dbThoughtsData => { if (!dbThoughtsData) { res.status(404).json({ message: 'No thoughts with this ID. ' }); return; } res.json(dbThoughtsData); }) .catch(err => res.status(400).json(err)); }, // delete thoughts by its _id deleteThoughts({ params }, res) { Thoughts.findOneAndDelete({ _id: params.id }) .then(dbThoughtsData => { if (!dbThoughtsData) { res.status(404).json({ message: 'There is no Thoughts with this ID.' }); return; } res.json(dbThoughtsData); }) .catch(err => res.status(400).json(err)); }, // CREATE a reaction stored in single thoughts createReactions({ params, body }, res) { Thoughts.findOneAndUpdate( { _id: params.thoughtsId }, { $push: { reactions: body } }, { new: true, runValidators: true } ) .then(dbThoughtsData => { if (!dbThoughtsData) { res.status(500).json({ message: 'No thoughts found with this ID' }); return; } res.json(dbThoughtsData) }) .catch(err => res.json(err)) }, // delete to pull and remove a reaction by reactionID removeReaction({ params }, res) { Thoughts.findOne( { _id: params.thoughtId }, ) .then(dbThoughtsData => { dbThoughtsData.reactions.pull(params.reactionId) return dbThoughtsData.save(); }) .then(dbThoughtsData => res.json(dbThoughtsData)) .catch(err => res.json(err)); } } module.exports = thoughtsController
class Obstacle1{ constructor(ctx, canvasSize) { this.ctx = ctx this.canvasSize = { w: canvasSize.w, h: canvasSize.h} this.obstacle1Size = {w: 250, h: 250} this.obstacle1Pos = {x:0, y:this.canvasSize.h-this.obstacle1Size.h-40} this.speed = {x:15, y: 0} this.obstacle1Instance = undefined this.imageobstacles = ['images/bartsimpson.gif', 'images/maggiesimpson.png', 'images/Itchy.png'] this.init() } init() { this.obstacle1Instance = new Image() this.obstacle1Instance.src = this.imageobstacles[Math.floor(this.imageobstacles.length* Math.random())] } draw() { this.ctx.drawImage(this.obstacle1Instance, this.obstacle1Pos.x, this.obstacle1Pos.y, this.obstacle1Size.w, this.obstacle1Size.h) this.move() } move() { this.obstacle1Pos.x += this.speed.x } }
import { createStore, applyMiddleware, compose } from "redux"; import createSagaMiddleware from "redux-saga"; import { reducer } from './redux'; import { watcherSaga } from './sagas'; // create the saga middleware const sagaMiddleware = createSagaMiddleware(); // // dev tools middleware // const reduxDevTools = // window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__(); // create a redux store with our reducer above and middleware let store = createStore( reducer, compose(applyMiddleware(sagaMiddleware)) ); // run the saga sagaMiddleware.run(watcherSaga); export default store
(global.webpackJsonp = global.webpackJsonp || []).push([ [ "pages/search/latest_opening/main" ], { "1fcc": function(n, e, t) { t.d(e, "b", function() { return o; }), t.d(e, "c", function() { return a; }), t.d(e, "a", function() {}); var o = function() { var n = this; n.$createElement; n._self._c; }, a = []; }, "31f3": function(n, e, t) { (function(n) { function e(n) { return n && n.__esModule ? n : { default: n }; } t("6cdc"), e(t("66fd")), n(e(t("5b83")).default); }).call(this, t("543d").createPage); }, "41e3": function(n, e, t) { Object.defineProperty(e, "__esModule", { value: !0 }), e.default = void 0; var o = { onLoad: function() { wx.showLoading(); }, onReady: function() { wx.hideLoading(), wx.redirectTo({ url: "/pages/index/search/main?type=最新开盘" }); } }; e.default = o; }, "5b83": function(n, e, t) { t.r(e); var o = t("1fcc"), a = t("7415"); for (var u in a) [ "default" ].indexOf(u) < 0 && function(n) { t.d(e, n, function() { return a[n]; }); }(u); var c = t("f0c5"), f = Object(c.a)(a.default, o.b, o.c, !1, null, null, null, !1, o.a, void 0); e.default = f.exports; }, 7415: function(n, e, t) { t.r(e); var o = t("41e3"), a = t.n(o); for (var u in o) [ "default" ].indexOf(u) < 0 && function(n) { t.d(e, n, function() { return o[n]; }); }(u); e.default = a.a; } }, [ [ "31f3", "common/runtime", "common/vendor" ] ] ]);
var MongoClient = require('mongodb').MongoClient var fs = require('q-io/fs') var exec = require('child_process').exec; function url(config, exclude_db){ var user=''; var db = exclude_db?'':'/'+config.database; if(config.user){ user = config.user+":"+config.password+"@" } return user+config.host+":"+config.port } function mongo_connection(config){ return new Promise(function(resolve, reject){ var location = "mongodb://"+url(config)+"/"+config.database; MongoClient.connect(location, function(err, db) { if(err) reject(err); resolve(db); }) }); } var mongo_actions = { import: function(config, database, fixture, additive, quiet){ var filepath = config.__basedir+(config.fixtures)+'/'+fixture+'/' , msg = "beginning "+fixture+" import into "+database+" database" , connection = config.connections[database] ; if(!quiet){ console.log(msg.cyan); } return fs.listTree(filepath) .then(function(collections){ if(!collections[0].match(/json$/)) collections.shift(); return import_collections(url(connection), connection.database, filepath, collections, additive, quiet); }) .then(function(c){ if(!quiet){ console.log("import complete".cyan); } }) .catch(function(err){ console.log(err); throw err; }); // discover name of collection // discover name of database connection info // attach to database and import }, export: function(config, database, fixtures){ var filepath = config.__basedir+(config.fixtures||'fixtures')+'/'+fixtures+"/"; var snapshots = [] , msg = "beginning export of "+database+" database into the "+fixtures+" fixture set" , connection = config.connections[database] ; return mongo_connection(connection).then(function(db){ console.log(msg.cyan); // check to see if the fixtures directory exists // if not, create it return fs.isDirectory(filepath) .then(function(is_directory){ if(!is_directory){ return fs.makeTree(filepath); } }) .then(function(){ return new Promise(function(resolve, reject){ db.collections(function(err, collections){ if(err) reject(err); resolve(collections); }) }) }) .then(function(collections){ return export_collections(url(connection, true), connection.database, filepath, collections); }) .then(function(){ console.log("export complete".cyan); return(db); }); }) .catch(function(err){ console.log("error:"); console.log(err.stack || err); throw err; }) } } function export_collections(host, database, filepath, collections){ return new Promise(function(resolve, reject){ if(collections.length === 0) resolve(true); var collection = collections.shift().s.name; exec("mongoexport --host="+host+" --collection="+collection+" --db="+database+" --out="+filepath+collection+".json", function(err, stdout, stderr){ if(err) reject(stderr) console.log("\t", collection, "exported"); export_collections(host, database, filepath, collections) .then(resolve) }); }) } function import_collections(host, database, filepath, collections, additive, quiet){ return new Promise(function(resolve, reject){ if(collections.length === 0) resolve(true); var collection = collections.shift(); var collection_info = collection.match(/[\/|\\]([^\/|\\]*).json$/); var exec_line ="mongoimport --db="+database+" --host="+host+" --collection="+collection_info[1]+" --file="+collection if(!additive){ exec_line = exec_line+" --drop" } exec(exec_line, function(err, stdout, stderr ){ if(err) reject(stderr) if(!quiet){ console.log("\t", collection, "imported"); } import_collections(host, database, filepath, collections, additive, quiet) .then(resolve) }); }) } module.exports = mongo_actions;
define([ 'apps/system3/office/office', 'apps/system3/office/car/car.service'], function (app) { app.module.controller("office.controller.car.apply", function ($scope, $stateParams, $uibModal, $timeout, carService) { $scope.carUseInfo = {}; $scope.showNormalCar(); }); app.module.controller("carUseModalCtl", function ($scope, carService, modelParam, $uibModalInstance) { $scope.taskID = modelParam.taskID; $scope.objectID = modelParam.objID $scope.modelType = 'window'; $scope.afterApply = function () { $uibModalInstance.close(); } }); app.module.controller("carUseCtl", function ($scope, $stateParams, $uibModal, $timeout, carService) { if ($scope.objectID) { //$scope.readOnly = true; carService.getUseInfo($scope.objectID).then(function (result) { $scope.carUseInfo = result; $scope.carInfo = carService.getCarInfo(result.CarID).$object; }); } $scope.$watch("currentCar", function (newval, oldval) { if (newval) { $scope.carInfo = newval; } }); $scope.$watchCollection("PeerStaff_Users", function (newval, oldval) { if (newval) { var ids = []; angular.forEach(newval, function (user) { ids.push(user.ID); }); $scope.carUseInfo.PeerStaff = ids.join(','); } }); $scope.save = function (flow) { if ($scope.viewPanel == undefined) { $scope.viewPanel = $scope.$parent.panel; } $scope.viewPanel.block(); if ($scope.objectID) { flow.callBack(function () { $scope.viewPanel.unblock(); $scope.afterApply(); }); } else { // 新增 $scope.carUseInfo.FlowData = flow.flowInfo; carService.applyCar($scope.carInfo.ID,$scope.carUseInfo).then(function () { flow.callBack(function () { $scope.viewPanel.unblock(); $scope.afterApply(); }); }); } return true; } }); });
function build_full_space() { startNode = {pos: -1, player: 2, parent: null, children: [], depth: 0, x_has_won: false, o_has_won: false}; return ttt_recur(startNode); } function ttt_recur(node) { if(node.depth == 10) { return null; } checkNode = node; path = []; while(checkNode != null) { if(path.includes(checkNode.pos)) { return null; } path.push(checkNode.pos); checkNode = checkNode.parent; } if(is_win(node, 1)) { node.x_has_won = true; } if(is_win(node, 2)) { node.o_has_won = true; } if(is_tie(node)) { node.has_tied = true; } if(node.x_has_won || node.o_has_won || node.has_tied) { if(node.x_has_won) { node.x_wins = 1; node.o_wins = 0; node.ties = 0; return node; } if(node.o_has_won) { node.o_wins = 1; node.x_wins = 0; node.ties = 0; return node; } if(node.has_tied) { node.ties = 1; node.x_wins = 0; node.o_wins = 0; return node; } } for(var i = 0; i < 9; i++) { node.children.push(ttt_recur({pos: i, player: node.player == 1 ? 2 : 1, parent: node, children: [], depth: node.depth + 1, remove_self: false, x_has_won: false, o_has_won: false, has_tied: false})); } node.x_wins = 0; node.o_wins = 0; node.ties = 0; for(var i = 0; i < 9; i++) { if(node.children[i] != null) { node.x_wins += node.children[i].x_wins; node.o_wins += node.children[i].o_wins; node.ties += node.children[i].ties; } } return node; } function is_win(node, p) { checkNode = node; list = []; while(checkNode != null) { if(checkNode.player == p) { list.push(checkNode.pos); } checkNode = checkNode.parent; } if(is_line(list, 0, 1, 2) || is_line(list, 3, 4, 5) ||is_line(list, 6, 7, 8) || is_line(list, 0, 3, 6) ||is_line(list, 1, 4, 7) ||is_line(list, 2, 5, 8) || is_line(list, 0, 4, 8) ||is_line(list, 2, 4, 6)){ return true; } else { return false; } } function is_list_win(list) { if(is_line(list, 0, 1, 2) || is_line(list, 3, 4, 5) ||is_line(list, 6, 7, 8) || is_line(list, 0, 3, 6) ||is_line(list, 1, 4, 7) ||is_line(list, 2, 5, 8) || is_line(list, 0, 4, 8) ||is_line(list, 2, 4, 6)){ return true; } else { return false; } } function is_line(list, a, b, c) { if(list.includes(a) && list.includes(b) && list.includes(c)) { return true; } else { return false; } } function is_tie(node, p) { checkNode = node; list = []; while(checkNode != null) { list.push(checkNode.pos); checkNode = checkNode.parent; } if(list.length == 10 && !is_win(node, 1) && !is_win(node, 2)) { return true; } else { return false; } } function win_or_tie_in_all_cases(node, p) { if(node.x_has_won || node.o_has_won || node.has_tied) { return node; } for(var i = 0; i < 9; i++) { if(node.children[i] != null) { node.children[i] = win_or_tie_in_all_cases(node.children[i], p); } } //Mark self to be removed if no children found = 0; for(var i = 0; i < 9; i++) { if(node.children[i] != null) { found += 1; } } if(found == 0) { if(p == 1) { node.o_has_won = true; } else { node.x_has_won = true; } return node; } if(node.player == p) { for(var i = 0; i < 9; i++) { if(node.children[i] != null) { if(p == 1) { if(node.children[i].o_has_won) { return null; } } if(p == 2) { if(node.children[i].x_has_won) { return null; } } } } } node.x_wins = 0; node.o_wins = 0; node.ties = 0; //Recalculate self after removing problematic children for(var i = 0; i < 9; i++) { if(node.children[i] != null) { node.x_wins += node.children[i].x_wins; node.o_wins += node.children[i].o_wins; node.ties += node.children[i].ties; } } return node; } function findBestMove(moves, p) { ai = null; if(p == 1) ai = x_ai; if(p == 2) ai = o_ai; for(var i = 0; i < moves.length; i++) { ai = ai.children[moves[i]]; } found = 0; foundList = []; for(var i = 0; i < 9; i++) { if(ai.children[i] != null) { foundList.push(i); found++; } } if(found == 0) return -1; return foundList[Math.floor(Math.random() * foundList.length)]; } gameSoFar = []; xSoFar = []; oSoFar = []; function update(x) { gameSoFar.push(x); xSoFar.push(x); document.getElementById(x).innerHTML = "X"; document.getElementById(x).disabled = true; if(is_list_win(xSoFar) || gameSoFar.length == 9) { lock_all(); if(gameSoFar.length == 9) { document.getElementById("label").innerHTML = "Tie"; } } else { next = findBestMove(gameSoFar, 2); gameSoFar.push(next); oSoFar.push(next); document.getElementById(next).innerHTML = "O"; document.getElementById(next).disabled = true; if(is_list_win(oSoFar)) { document.getElementById("label").innerHTML = "You lose"; lock_all(); } } } function lock_all() { for(var i = 0; i < 9; i++) { document.getElementById(""+i).disabled = true; } } function reset() { gameSoFar = []; xSoFar=[]; oSoFar = []; document.getElementById("label").innerHTML = ""; for(var i = 0; i < 9; i++) { document.getElementById(""+i).disabled = false; document.getElementById(""+i).innerHTML = "_"; } } var x_ai = win_or_tie_in_all_cases(build_full_space(), 1); var o_ai = win_or_tie_in_all_cases(build_full_space(), 2); console.log(findBestMove([],1));
var mongoose = require("mongoose"); var campgrounds = require("./models/campground"); const campground = require("./models/campground"); var comment = require("./models/comment"); var data = [{ name: "hunter valley", image: "https://images.unsplash.com/photo-1471115853179-bb1d604434e0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60", description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", }, { name: "wild bog", image: "https://images.unsplash.com/photo-1504851149312-7a075b496cc7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60", description: "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. ", }, { name: "green plains", image: "https://images.unsplash.com/photo-1525811902-f2342640856e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60", description: "But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure.", } ]; function seeddb() { campground.remove({}, function(err) { if (err) { console.log(err); } console.log("removed campgrounds"); }); data.forEach(function(seed) { campground.create(seed, function(err, campground) { if (err) { console.log(err); } else { console.log("added a camp ground"); comment.create({ text: "this place is beautiful", author: "dasan" }, function(err, comment) { if (err) { console.log(err); } else { campground.comments.push(comment); campground.save(); console.log("comment created") } }); } }) }); } module.exports = seeddb;
(function (m, v, c, r) { r.Main = Backbone.Router.extend({ routes : { '*path' : 'home' }, home : function () { new v.Menu(); new v.LogMessageListView({ collection : new c.LogMessageCollection() }); } }); }(Yarder.Models, Yarder.Views, Yarder.Collections, Yarder.Routers));
import marked from 'marked' import config from './config' export function loadMd(options = { containerName: '', content: '', }) { return new Promise((resolve,reject) => { let container = document.querySelector(options.containerName) let mdStr = options.content let interval = 50 let num = 0 let sum = mdStr.length const start = function () { setTimeout(() => { num += 1 let wordNow = mdStr.substring(num -1,num) container.scrollTop = 100000 if (num <= sum) { if(wordNow === '\n'){ container.innerHTML = marked(mdStr.substr(0,num)) }else{ container.innerHTML = container.innerHTML + wordNow } if(config.pause){ return reject() }else{ start() } } else { container.scrollTop = 0 return resolve() } }, 50) } start() }) } export function skipMd(options = { containerName: '', content: '', }) { let container = document.querySelector(options.containerName) let mdStr = options.content container.innerHTML = marked(mdStr) }
/* 🤖 this file was generated by svg-to-ts*/ export const EOSIconsCallSplit = { name: 'call_split', data: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3z"/></svg>` };
({ refreshOptions : function(component) { var self = this; var action = component.get("c.searchData"); var searchString = component.get("v.name"); var strObject = component.get("v.object"); if (strObject.indexOf("TaxRate") > -1 ) strObject = "User"; action.setParams({ "strInputData": searchString, "strObject": strObject }); action.setCallback(this, $A.getCallback(function (response) { var state = response.getState(); if (state === "SUCCESS") { var result = response.getReturnValue();//JSON.parse(response.getReturnValue()); //console.log(result); var options = []; var needToSelectNew = true; var value = component.get("v.value"); if (result !== undefined && result !== 'undefined') { result.forEach(function(element, index, array) { var option = {};//new Object(); option.value = element.Id; option.label = element.Name; options.push(option); if (value === element.Id) { needToSelectNew = false; } }); } component.set("v.options", options); if (needToSelectNew === true && options.length > 0) { component.set("v.value", options[0].value); component.set("v.textToShow", options[0].label); component.set("v.name", options[0].label); } if (component.find("default_show") !== undefined) $A.util.addClass(component.find("default_show").getElement(), "hidden_div"); if (component.find("normal_show") !== undefined) $A.util.removeClass(component.find("normal_show").getElement(), "hidden_div"); } else if (state === "INCOMPLETE") { this.showToast('error', $A.get("$Label.c.Status_incomplete"), 'Error'); } else if (state === "ERROR") { var errors = response.getError(); if (errors) { if (errors.length > 0) { for (var i = 0; i < errors.length; i++) { if (errors[0].pageErrors) { if (errors[0].pageErrors.length > 0) { for (var j = 0; j < errors[i].pageErrors.length; j++) { this.showToast('error', 'Internal server error: ' + errors[i].pageErrors[j].message, 'Error'); } } } this.showToast('error', errors[i].message, 'Error'); } } } else { this.showToast('error', $A.get("$Label.c.Internal_server_error"), 'Error'); } } })); $A.enqueueAction(action); }, showToast: function (type, message, title) { var showToast = $A.get("e.force:showToast"); //console.log('showToast ', showToast); showToast.setParams({ mode: 'pester', type: type, title: title, message: message, duration: '5000' }); showToast.fire(); } })
export const RADIUS = 5 export const MOON_RADIUS = 0.6 export const DOME_RADIUS = 20 export const MOON_DISTANCE = 10 export const ARROW_HELPER_LENGTH = 1 export const LOCATIONS = [ { key: 'beijing', name: 'Beijing', lat: 40.13, lng: 117.10 }, { key: 'tokoyo', name: 'Tokoyo', lat: 35.65, lng: 139.87 }, { key: 'sydney', name: 'Sydney', lat: -33.73, lng: 151.63 }, { key: 'paris', name: 'Paris', lat: 48.79, lng: 2.78 }, { key: 'newyork', name: 'New York', lat: 40.70, lng: -73.65 } ]
Ext.define('Gvsu.modules.tender.view.BidList', { extend: 'Core.grid.GridWindow', //filterable: true, filterbar: true, //sortManually: true, buildColumns: function() { var me = this; var setStyle = function(v,m,r) { m.tdCls = (r.data.status? '':'graycell') return v; } var setDateStyle = function(v,m,r) { m.tdCls = (r.data.status? '':'graycell') if(v && (v+'').substr(0,3) != '000') return Ext.Date.format(new Date(v), D.t('d.m.Y')); return ''; } return [ { text: D.t("Тендер"), width: 55, sortable: true, dataIndex: 'pid', filter: true, renderer: setStyle },{ text: D.t("Организация"), flex: 1, sortable: true, dataIndex: 'orgname', filter: true, renderer: setStyle },{ text: D.t("Дата начала"), xtype: 'datecolumn', width: 130, sortable: true, dataIndex: 'date_start', filter: me.dateFilter(), renderer: setDateStyle },{ text: D.t("Дата завершения работ"), xtype: 'datecolumn', width: 130, sortable: true, dataIndex: 'date_fin', filter: me.dateFilter(), renderer: setDateStyle },{ text: D.t("Цена за ед."), width: 80, sortable: true, dataIndex: 'price_pos', filter: true, renderer: setStyle },{ text: D.t("Цена полн."), width: 80, sortable: true, dataIndex: 'price_full', filter: true, renderer: setStyle },{ text: D.t("Макс. стоим. контр."), width: 100, sortable: true, dataIndex: 'max_contract_val', filter: true, renderer: setStyle },{ text: D.t("Победитель"), width: 70, sortable: true, dataIndex: 'winner', filter: true, renderer: function(v,m,r) { setStyle(v,m,r) if(v) return D.t('Да') else return '' } },{ text: D.t("Стат."), width: 30, sortable: true, dataIndex: 'status', renderer: setStyle } ] } ,dateFilter: function() { return { type: 'date', submitFormat: 'Y-m-d', //altFormats: 'c', format: D.t('d.m.Y') } } ,buildTbar: function() { return [{ text: D.t('Экспорт в Excel'), tooltip:D.t('Экспорт текущей выборки в Excel'), action: 'xls', scale: 'medium', ui: 'success' },'-',{ text: D.t('Add'), tooltip: D.t('Add a new row'), //iconCls:'add', action: 'add' }, '-', { //text:D.t('Refresh'), tooltip:D.t('Reload data'), //iconCls:'refresh', ui: 'reload', action: 'refresh' },'->',{ text:D.t('Remove'), tooltip:D.t('Remove the selected item'), //iconCls:'remove', ui: 'danger', action: 'remove' }] } })
/* eslint-disable no-undef */ $(document).ready(function(){ $("#filter").on("click",function(event){ event.preventDefault(); const name = $("#inputGroupSelect03").val(); $(".gig-card").each(function(i,element){ const checkName = $(element).children(".card-text").children(".card-title").text() if(name === checkName){ $(element).show(); }else if(name === "All Venues"){ $(element).show(); }else{ $(element).hide(); } }) }) })
/* Guarda informacion */ function Legalizar() { var documento = $("#txtDocumento").val(); var numero = $("#txtNumero").val(); if (documento != "" && numero != "") { $.ajax({ type: 'POST', url: "/Cajero/Legalizar", data: { documento: documento, numero: numero }, success: function (data) { var response = data.d[1]; switch (response) { case "Success": $('#myModal').modal('show'); info = "<p>Operacion exitosa</p>"; $('#avisos').append(info); limpiar(); listar(); break; case undefined: alert("Error en la operacion."); break; } }, error: function (jqXHR, textStatus, errorThrown) { alert("Error detectado: " + textStatus + "\nExcepcion: " + errorThrown); } }); } else { $('#myModal').modal('show'); info = "<p>Por favor ingresa todos los datos</p>"; $('#avisos').append(info); } } /* Guarda informacion */ function Cancelar() { var documento = $("#txtDocumento").val(); var numero = $("#txtNumero").val(); if (documento != "" && numero != "") { $.ajax({ type: 'POST', url: "/Cajero/Cancelar", data: { documento: documento, numero: numero }, success: function (data) { var response = data.d[1]; switch (response) { case "Success": $('#myModal').modal('show'); info = "<p>Operacion exitosa</p>"; $('#avisos').append(info); limpiar(); listar(); break; case undefined: alert("Error en la operacion."); break; } }, error: function (jqXHR, textStatus, errorThrown) { alert("Error detectado: " + textStatus + "\nExcepcion: " + errorThrown); } }); } else { $('#myModal').modal('show'); info = "<p>Por favor ingresa todos los datos</p>"; $('#avisos').append(info); } }
import React, { Component } from "react"; import "./index.scss"; class TbLayout extends Component { constructor(props) { super(props); this.state = { topH: this.props.defaultHeight ? this.props.defaultHeight : localStorage.getItem(`TbLayoutTopH${this.props.id}`) ? ~~localStorage.getItem(`TbLayoutTopH${this.props.id}`) : undefined, }; } UNSAFE_componentWillReceiveProps(nextProps, nextState) { this.props.hideBottom!== nextProps.hideBottom && this.toggleShow(!nextProps.hideBottom) } componentDidMount() { this.$containerRect = this.$container.getBoundingClientRect(); this.defaultHeight = this.props.defaultHeight || (this.$containerRect.height-10)/2; // 拖拽 if (this.props.draggable) { //拖拽时距离边缘的最小宽度 this.dragMinW = 50; this.dragAndDrop(); } if(this.props.hideBottom){ this.toggleShow(false) } } dragAndDrop = () => { const mouseDownHandle = (e) => { e.preventDefault(); //阻止点击图标冒泡到此处 if(e.target.tagName === 'I'){ return; } this.$containerRect = this.$container.getBoundingClientRect(); this.startY = e.pageY; this.topH = this.isInitTopH?this.state.topH:this.defaultHeight; if(this.$split.style.cursor !== 'row-resize') return; document.addEventListener("mousemove", mouseMoveHandle); document.addEventListener("mouseup", mouseUpHandle); }; const mouseMoveHandle = (e) => { let moveY = e.pageY - this.startY; //距离边缘的吸附距离 if(e.pageY<=(this.dragMinW+this.$containerRect.top)){ this.setState({ topH: this.dragMinW, }); }else if(e.pageY>=(this.$containerRect.bottom-this.dragMinW)){ this.setState({ topH: this.$containerRect.height-10-this.dragMinW, }); }else{ this.setState({ topH: this.topH + moveY, }); } }; const mouseUpHandle = (e) => { //缓存左侧面板宽度 //只有拖拽时才记录 if(Math.abs(e.pageY - this.startY)>3){ localStorage.setItem(`TbLayoutTopH${this.props.id}`,this.state.topH) } document.removeEventListener("mousemove", mouseMoveHandle); document.removeEventListener("mouseup", mouseUpHandle); }; this.$split.addEventListener("mousedown", mouseDownHandle); } toggleShow(isShow){ if(isShow){ this.setState({ topH:localStorage.getItem(`TbLayoutTopH${this.props.id}`)?~~localStorage.getItem(`TbLayoutTopH${this.props.id}`):this.defaultHeight }) }else{ this.setState({ topH:this.$containerRect.height-10 }) } } get isOnBottomBorder(){ return this.state.topH === (this.$container.getBoundingClientRect().height-10)?true:false; } get isInitDom(){ return this.$container !== undefined; } get isInitTopH(){ return this.state.topH !== undefined; } render() { return ( <div className="TbLayout-container" ref={(el) => (this.$container = el)} style={{...(this.props.style ? this.props.style : {})}} > {/* 上侧面板 */} <div className="TbLayout-top" style={{ height: this.isInitTopH ?this.state.topH : 'calc((100% - 10px)/2)' }} > {this.props.children.top} </div> {/* 分隔栏 */} <div id="TbLayoutSplit" className="TbLayout-split" ref={(el) => (this.$split = el)} style={{ cursor: this.props.draggable ?this.isInitDom ?this.isOnBottomBorder?'':'row-resize' :this.props.hideBottom?'':'row-resize' :'' }} > {this.props.closable && <i className={`${ this.isInitDom?this.isOnBottomBorder?'arrow-top':'arrow-bottom' :this.props.hideBottom?'arrow-top':'arrow-bottom' }`} onMouseDown={()=>this.isOnBottomBorder?this.toggleShow(true):this.toggleShow(false)} ></i> } </div> {/* 下侧面板 */} <div className="TbLayout-bottom" style={{ height:this.isInitTopH ?`calc(100% - ${this.state.topH + 10}px)` :'calc((100% - 10px)/2)' }} > {this.props.children.bottom} </div> </div> ); } } export default TbLayout;
import React, { Component } from 'react' export class Contact extends Component { constructor(props) { super(props); this.state = { name: "", email: "", message: "" } this.handleChange = this.handleChange.bind(this); this.handleSubmit = this.handleSubmit.bind(this); } handleChange(e){ this.setState({ [e.target.name] : e.target.value }); } handleSubmit(e) { e.preventDefault(); alert(this.state.name); this.setState({ name: "", email: "", message: "" }); } render() { return ( <form onSubmit={this.handleSubmit}> <div className="row input--row"> <div className="col-lg-6 input--wrapper"> <label htmlFor="name">Ime i prezime:</label> <input type="text" value={ this.state.name } className="bgt--input" id="name" name="name" onChange={this.handleChange}/> </div> <div className="col-lg-6 input--wrapper"> <label htmlFor="email">Message</label> <br/> <input type="text" value={ this.state.email } className="bgt--input" id="email" name="email" onChange={this.handleChange}/> </div> <label htmlFor="message">Poruka</label> <textarea name="message" value={ this.state.message } id="message" cols="30" rows="10" className="bgt--input" onChange={this.handleChange}></textarea> <button className="btn btn-primary mt-2">Submit</button> </div> </form> ) } } export default Contact
import React from "react"; import NavBar from "./NaviBar"; import { Row, Col } from "react-bootstrap"; import "./ResumePage.css"; import webicon from "../picture/webdesignnew.svg"; import photoicon from "../picture/data.svg"; import management from "../picture/creativity_icon.png"; import responsive from "../picture/responsive1.svg"; class Home extends React.Component { render() { return ( <div> <div><NavBar /></div> <Row > <Col xs={{ span: 12 }} md={{ span: 10, offset: 1 }} lg={{ span: 8, offset: 2 }} className="paper"> <div className="Firstsection-resume"> <div className="title"> <h1>Service</h1> </div> </div> <Row> <Col xxs={{ span: 12 }} md={{ span: 6 }} lg={{ span: 1, offset: 1 }}> <img src={webicon} alt="icon" /> </Col> <Col xxs={{ span: 12 }} md={{ span: 6 }} lg={{ span: 1, offset: 2 }}> <img src={photoicon} alt="icon" /> </Col> <Col xxs={{ span: 12 }} md={{ span: 6 }} lg={{ span: 1, offset: 2 }}> <img src={management} alt="icon" style={{ width: 100, height: 100 }} /> </Col> <Col xxs={{ span: 12 }} md={{ span: 6 }} lg={{ span: 1, offset: 2 }}> <img src={responsive} alt="icon" /> </Col> </Row> </Col> </Row> <Row> <Col xs={12} md={{ span: 6, offset: 3 }}> <p style={{ textAlign: "center", marginTop: "70px", color: "rgba(51, 42, 42, 0.7)" }}><span>Australia IT Professional Community</span> <span style={{ color: "rgba(34, 110, 148, 0.8)" }}>UNSW Master</span></p> </Col> </Row> </div > ); } } export default Home;
import React from 'react'; // import ShowDonor from '../ShowDonor/ShowDonor.react' // import Search from '../Search/Search.react' // import Blog from '../Blog/Blog.react' // import FetchDonors from '../FetchDonors/FetchDonors.react'; // import AddDonor from '../AddDonor/AddDonor.react' // import LifeCycle from '../LifeCycle/LifeCycle.react'; import ShowContent from '../ShowContent/ShowContent.react' import ove from '../../src/o+ve.jpg' const request= { bloodGroup: 'O+ve', location: 'Chennai', requiredUnit: 1, imgRef: ove } const Content = (props) => { return ( <div > <h2>Current Request</h2> {/* <h3>{props.request.location}</h3> <ol> <li>{props.request.bloodGroup}</li> <li><span><img src={props.request.imgRef} alt="O+ve"></img></span></li> <li>{props.request.requiredUnit}</li> </ol> */} {/* <ShowDonor title={'Star Donors'}/> */} {/* <AddDonor></AddDonor> <FetchDonors></FetchDonors> <Search /> <Blog> </Blog> <LifeCycle></LifeCycle> */} <ShowContent request={request}></ShowContent> </div> ); } export default Content;
import React, { useState, useEffect } from 'react'; import { Grid } from '@material-ui/core'; import youtube from './api/youtube'; import { SearchBar, VideoList, VideoDetail } from './components/index'; import './App.css'; const App = () => { const [videos, setVideo] = useState([]); const [selectedVideo, setSelectedVideo] = useState(null); const handleSubmit = async (searchTerm) => { const response = await youtube.get('search', { params: { q: searchTerm } }); setVideo(response.data.items); setSelectedVideo(response.data.items[0]); console.log(selectedVideo); }; const onVideoSelect = (video) => { setSelectedVideo(video); }; return ( <Grid style={{ justifyContent: 'center' }} container spacing={10}> <Grid item xs={11}> <Grid container spacing={10}> <Grid item xs={12}> <SearchBar onFormSubmit={handleSubmit} /> </Grid> <Grid item xs={8}> <VideoDetail video={selectedVideo} /> </Grid> <Grid item xs={4}> <VideoList videos={videos} onVideoSelect={setSelectedVideo} /> </Grid> </Grid> </Grid> </Grid> ); }; export default App;
var promise = require('bluebird'); require('locus') var options = { promiseLib: promise }; var pgp = require('pg-promise')(options); var connectionString = 'postgres://localhost:5432/users'; var db = pgp(connectionString); function getAllUsers(req, res, next) { db.any('select * from users') .then(function(data) { res.status(200).json({ status: 'success', data: data, message: 'Retrieved All Users' }); }).catch(function(err) { return next(err) }); } function signIn(req, res, next) { db.one('select * from users where email=${email} and password=${password}', req.body) .then(function (data) { res.status(200) .json({ status: 'success', data: data, message: 'Retrieved ONE User' }); }) .catch(function (err) { return next(err); }); } function createUser(req, res, next) { req.body.email = req.body.email.toLowerCase(); db.one('insert into users(name, password, email)' + 'values(${name}, ${password}, ${email}) returning id', req.body).then(function(data) { res.status(200).json({ status: 'success', message: "New user created", id: data.id}); }).catch(function(err) { res.status(500).json({error: err.detail}); }) } function addFavorite(req, res, next) { db.one('insert into favorites(movie_id, user_id, title, poster_path, release_date, vote_average, overview)' + 'values(${movie_id}, ${user_id}, ${title}, ${poster_path}, ${release_date}, ${vote_average}, ${overview}) returning id', req.body) .then(function(data) { res.status(200).json({ status: 'success', message: "Movie was added to favorites", id: data.id}); }).catch(function(err) { next(err); }) } function getAllFavorites(req, res, next) { var user_id = parseInt(req.params.id); db.any('select * from favorites where user_id=$1', user_id) .then(function(data) { res.status(200).json({ status: 'success', data: data, message: 'Retrieved All favorites' }); }) .catch(function(err) { return next(err); }); } function deleteFavorite(req, res, next) { var movie_id = parseInt(req.params.movie_id); var user_id = parseInt(req.params.id); db.result('delete from favorites where user_id = $1 and movie_id = $2', [user_id, movie_id]).then(function(result) { res.status(200) .json({status: 'success', message: `${result.rowCount} row was deleted.`}) }) .catch(function(err) { return next(err); }) } module.exports = { getAllUsers: getAllUsers, signIn: signIn, createUser: createUser, getAllFavorites: getAllFavorites, addFavorite: addFavorite, deleteFavorite: deleteFavorite };
window.esdocSearchIndex = [ [ "rx-cancellable/src/boolean.js~booleancancellable", "class/src/boolean.js~BooleanCancellable.html", "<span>BooleanCancellable</span> <span class=\"search-result-import-path\">rx-cancellable/src/boolean.js</span>", "class" ], [ "rx-cancellable/src/cancelled.js~cancelled", "variable/index.html#static-variable-CANCELLED", "<span>CANCELLED</span> <span class=\"search-result-import-path\">rx-cancellable/src/cancelled.js</span>", "variable" ], [ "rx-cancellable/src/cancellable.js~cancellable", "class/src/cancellable.js~Cancellable.html", "<span>Cancellable</span> <span class=\"search-result-import-path\">rx-cancellable/src/cancellable.js</span>", "class" ], [ "rx-cancellable/src/cancelled.js~cancelledcancellable", "class/src/cancelled.js~CancelledCancellable.html", "<span>CancelledCancellable</span> <span class=\"search-result-import-path\">rx-cancellable/src/cancelled.js</span>", "class" ], [ "rx-cancellable/src/composite.js~compositecancellable", "class/src/composite.js~CompositeCancellable.html", "<span>CompositeCancellable</span> <span class=\"search-result-import-path\">rx-cancellable/src/composite.js</span>", "class" ], [ "rx-cancellable/src/linked.js~linkedcancellable", "class/src/linked.js~LinkedCancellable.html", "<span>LinkedCancellable</span> <span class=\"search-result-import-path\">rx-cancellable/src/linked.js</span>", "class" ], [ "rx-cancellable/src/uncancelled.js~uncancelled", "variable/index.html#static-variable-UNCANCELLED", "<span>UNCANCELLED</span> <span class=\"search-result-import-path\">rx-cancellable/src/uncancelled.js</span>", "variable" ], [ "rx-cancellable/src/uncancelled.js~uncancelledcancellable", "class/src/uncancelled.js~UncancelledCancellable.html", "<span>UncancelledCancellable</span> <span class=\"search-result-import-path\">rx-cancellable/src/uncancelled.js</span>", "class" ], [ "", "test-file/test/boolean.js.html#lineNumber5", "BooleanCancellable", "test" ], [ "", "test-file/test/boolean.js.html#lineNumber6", "BooleanCancellable cancel", "test" ], [ "", "test-file/test/boolean.js.html#lineNumber11", "BooleanCancellable cancel should return false if instance has been cancelled before.", "test" ], [ "", "test-file/test/boolean.js.html#lineNumber7", "BooleanCancellable cancel should return true if instance is never cancelled before", "test" ], [ "", "test-file/test/index.js.html#lineNumber5", "CancelledCancellable", "test" ], [ "", "test-file/test/index.js.html#lineNumber6", "CancelledCancellable cancel", "test" ], [ "", "test-file/test/index.js.html#lineNumber7", "CancelledCancellable cancel should return false since it is always cancelled", "test" ], [ "", "test-file/test/index.js.html#lineNumber11", "CancelledCancellable cancelled", "test" ], [ "", "test-file/test/index.js.html#lineNumber12", "CancelledCancellable cancelled should return true since it is always cancelled", "test" ], [ "", "test-file/test/composite.js.html#lineNumber5", "CompositeCancellable", "test" ], [ "", "test-file/test/composite.js.html#lineNumber24", "CompositeCancellable add", "test" ], [ "", "test-file/test/composite.js.html#lineNumber34", "CompositeCancellable add should return false and cancel given instance if source is cancelled.", "test" ], [ "", "test-file/test/composite.js.html#lineNumber30", "CompositeCancellable add should return false if given instance is non-Cancellable.", "test" ], [ "", "test-file/test/composite.js.html#lineNumber25", "CompositeCancellable add should return true if given instance is Cancellable", "test" ], [ "", "test-file/test/composite.js.html#lineNumber6", "CompositeCancellable cancel", "test" ], [ "", "test-file/test/composite.js.html#lineNumber16", "CompositeCancellable cancel should cancel the composed instances", "test" ], [ "", "test-file/test/composite.js.html#lineNumber11", "CompositeCancellable cancel should return false if instance has been cancelled before.", "test" ], [ "", "test-file/test/composite.js.html#lineNumber7", "CompositeCancellable cancel should return true if instance is never cancelled before", "test" ], [ "", "test-file/test/composite.js.html#lineNumber41", "CompositeCancellable remove", "test" ], [ "", "test-file/test/composite.js.html#lineNumber48", "CompositeCancellable remove should return false if given instance is non-Cancellable.", "test" ], [ "", "test-file/test/composite.js.html#lineNumber52", "CompositeCancellable remove should return false if given instance is the same as the source.", "test" ], [ "", "test-file/test/composite.js.html#lineNumber56", "CompositeCancellable remove should return false if the given instance is not in the Composite", "test" ], [ "", "test-file/test/composite.js.html#lineNumber42", "CompositeCancellable remove should return true if given instance is in the composite", "test" ], [ "", "test-file/test/linked.js.html#lineNumber5", "LinkedCancellable", "test" ], [ "", "test-file/test/linked.js.html#lineNumber35", "LinkedCancellable cancel", "test" ], [ "", "test-file/test/linked.js.html#lineNumber36", "LinkedCancellable cancel should return false if the source is cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber46", "LinkedCancellable cancel should return true and cancel the link if there is one", "test" ], [ "", "test-file/test/linked.js.html#lineNumber42", "LinkedCancellable cancel should return true if the source was never cancelled before", "test" ], [ "", "test-file/test/linked.js.html#lineNumber65", "LinkedCancellable cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber80", "LinkedCancellable cancelled should return false if the source was never cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber72", "LinkedCancellable cancelled should return true if the link is cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber66", "LinkedCancellable cancelled should return true if the source is cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber6", "LinkedCancellable link", "test" ], [ "", "test-file/test/linked.js.html#lineNumber21", "LinkedCancellable link should return false and cancel the given Cancellable if the source is cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber14", "LinkedCancellable link should return false and cancel the source if the given Cancellable is cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber7", "LinkedCancellable link should return false if the given argument is a non-Cancellable", "test" ], [ "", "test-file/test/linked.js.html#lineNumber10", "LinkedCancellable link should return false if the given argument is the same as the source", "test" ], [ "", "test-file/test/linked.js.html#lineNumber28", "LinkedCancellable link should return true if both the source and the given Cancellable are not cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber53", "LinkedCancellable unlink", "test" ], [ "", "test-file/test/linked.js.html#lineNumber54", "LinkedCancellable unlink should return false if the source is cancelled", "test" ], [ "", "test-file/test/linked.js.html#lineNumber60", "LinkedCancellable unlink should return false if there is no link.", "test" ], [ "", "test-file/test/index.js.html#lineNumber18", "UncancelledCancellable", "test" ], [ "", "test-file/test/index.js.html#lineNumber19", "UncancelledCancellable cancel", "test" ], [ "", "test-file/test/index.js.html#lineNumber20", "UncancelledCancellable cancel should return false since it is uncancellable", "test" ], [ "", "test-file/test/index.js.html#lineNumber24", "UncancelledCancellable cancelled", "test" ], [ "", "test-file/test/index.js.html#lineNumber25", "UncancelledCancellable cancelled should return false since it is uncancellable", "test" ], [ "src/.external-ecmascript.js~array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array", "src/.external-ecmascript.js~Array", "external" ], [ "src/.external-ecmascript.js~arraybuffer", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer", "src/.external-ecmascript.js~ArrayBuffer", "external" ], [ "src/.external-ecmascript.js~boolean", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", "src/.external-ecmascript.js~Boolean", "external" ], [ "src/.external-ecmascript.js~dataview", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView", "src/.external-ecmascript.js~DataView", "external" ], [ "src/.external-ecmascript.js~date", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date", "src/.external-ecmascript.js~Date", "external" ], [ "src/.external-ecmascript.js~error", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error", "src/.external-ecmascript.js~Error", "external" ], [ "src/.external-ecmascript.js~evalerror", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError", "src/.external-ecmascript.js~EvalError", "external" ], [ "src/.external-ecmascript.js~float32array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array", "src/.external-ecmascript.js~Float32Array", "external" ], [ "src/.external-ecmascript.js~float64array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array", "src/.external-ecmascript.js~Float64Array", "external" ], [ "src/.external-ecmascript.js~function", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", "src/.external-ecmascript.js~Function", "external" ], [ "src/.external-ecmascript.js~generator", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator", "src/.external-ecmascript.js~Generator", "external" ], [ "src/.external-ecmascript.js~generatorfunction", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction", "src/.external-ecmascript.js~GeneratorFunction", "external" ], [ "src/.external-ecmascript.js~infinity", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Infinity", "src/.external-ecmascript.js~Infinity", "external" ], [ "src/.external-ecmascript.js~int16array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array", "src/.external-ecmascript.js~Int16Array", "external" ], [ "src/.external-ecmascript.js~int32array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array", "src/.external-ecmascript.js~Int32Array", "external" ], [ "src/.external-ecmascript.js~int8array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array", "src/.external-ecmascript.js~Int8Array", "external" ], [ "src/.external-ecmascript.js~internalerror", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError", "src/.external-ecmascript.js~InternalError", "external" ], [ "src/.external-ecmascript.js~json", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON", "src/.external-ecmascript.js~JSON", "external" ], [ "src/.external-ecmascript.js~map", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map", "src/.external-ecmascript.js~Map", "external" ], [ "src/.external-ecmascript.js~nan", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN", "src/.external-ecmascript.js~NaN", "external" ], [ "src/.external-ecmascript.js~number", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", "src/.external-ecmascript.js~Number", "external" ], [ "src/.external-ecmascript.js~object", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", "src/.external-ecmascript.js~Object", "external" ], [ "src/.external-ecmascript.js~promise", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise", "src/.external-ecmascript.js~Promise", "external" ], [ "src/.external-ecmascript.js~proxy", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy", "src/.external-ecmascript.js~Proxy", "external" ], [ "src/.external-ecmascript.js~rangeerror", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError", "src/.external-ecmascript.js~RangeError", "external" ], [ "src/.external-ecmascript.js~referenceerror", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError", "src/.external-ecmascript.js~ReferenceError", "external" ], [ "src/.external-ecmascript.js~reflect", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect", "src/.external-ecmascript.js~Reflect", "external" ], [ "src/.external-ecmascript.js~regexp", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp", "src/.external-ecmascript.js~RegExp", "external" ], [ "src/.external-ecmascript.js~set", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set", "src/.external-ecmascript.js~Set", "external" ], [ "src/.external-ecmascript.js~string", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", "src/.external-ecmascript.js~String", "external" ], [ "src/.external-ecmascript.js~symbol", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol", "src/.external-ecmascript.js~Symbol", "external" ], [ "src/.external-ecmascript.js~syntaxerror", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError", "src/.external-ecmascript.js~SyntaxError", "external" ], [ "src/.external-ecmascript.js~typeerror", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError", "src/.external-ecmascript.js~TypeError", "external" ], [ "src/.external-ecmascript.js~urierror", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError", "src/.external-ecmascript.js~URIError", "external" ], [ "src/.external-ecmascript.js~uint16array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array", "src/.external-ecmascript.js~Uint16Array", "external" ], [ "src/.external-ecmascript.js~uint32array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array", "src/.external-ecmascript.js~Uint32Array", "external" ], [ "src/.external-ecmascript.js~uint8array", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array", "src/.external-ecmascript.js~Uint8Array", "external" ], [ "src/.external-ecmascript.js~uint8clampedarray", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray", "src/.external-ecmascript.js~Uint8ClampedArray", "external" ], [ "src/.external-ecmascript.js~weakmap", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap", "src/.external-ecmascript.js~WeakMap", "external" ], [ "src/.external-ecmascript.js~weakset", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet", "src/.external-ecmascript.js~WeakSet", "external" ], [ "src/.external-ecmascript.js~boolean", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean", "src/.external-ecmascript.js~boolean", "external" ], [ "src/.external-ecmascript.js~function", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function", "src/.external-ecmascript.js~function", "external" ], [ "src/.external-ecmascript.js~null", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null", "src/.external-ecmascript.js~null", "external" ], [ "src/.external-ecmascript.js~number", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number", "src/.external-ecmascript.js~number", "external" ], [ "src/.external-ecmascript.js~object", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object", "src/.external-ecmascript.js~object", "external" ], [ "src/.external-ecmascript.js~string", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String", "src/.external-ecmascript.js~string", "external" ], [ "src/.external-ecmascript.js~undefined", "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined", "src/.external-ecmascript.js~undefined", "external" ], [ "src/boolean.js", "file/src/boolean.js.html", "src/boolean.js", "file" ], [ "src/boolean.js~booleancancellable#cancel", "class/src/boolean.js~BooleanCancellable.html#instance-method-cancel", "src/boolean.js~BooleanCancellable#cancel", "method" ], [ "src/boolean.js~booleancancellable#cancelled", "class/src/boolean.js~BooleanCancellable.html#instance-get-cancelled", "src/boolean.js~BooleanCancellable#cancelled", "member" ], [ "src/boolean.js~booleancancellable#constructor", "class/src/boolean.js~BooleanCancellable.html#instance-constructor-constructor", "src/boolean.js~BooleanCancellable#constructor", "method" ], [ "src/cancellable.js", "file/src/cancellable.js.html", "src/cancellable.js", "file" ], [ "src/cancellable.js~cancellable#addeventlistener", "class/src/cancellable.js~Cancellable.html#instance-method-addEventListener", "src/cancellable.js~Cancellable#addEventListener", "method" ], [ "src/cancellable.js~cancellable#cancel", "class/src/cancellable.js~Cancellable.html#instance-method-cancel", "src/cancellable.js~Cancellable#cancel", "method" ], [ "src/cancellable.js~cancellable#cancelled", "class/src/cancellable.js~Cancellable.html#instance-get-cancelled", "src/cancellable.js~Cancellable#cancelled", "member" ], [ "src/cancellable.js~cancellable#removeeventlistener", "class/src/cancellable.js~Cancellable.html#instance-method-removeEventListener", "src/cancellable.js~Cancellable#removeEventListener", "method" ], [ "src/cancelled.js", "file/src/cancelled.js.html", "src/cancelled.js", "file" ], [ "src/cancelled.js~cancelledcancellable#cancel", "class/src/cancelled.js~CancelledCancellable.html#instance-method-cancel", "src/cancelled.js~CancelledCancellable#cancel", "method" ], [ "src/cancelled.js~cancelledcancellable#cancelled", "class/src/cancelled.js~CancelledCancellable.html#instance-get-cancelled", "src/cancelled.js~CancelledCancellable#cancelled", "member" ], [ "src/composite.js", "file/src/composite.js.html", "src/composite.js", "file" ], [ "src/composite.js~compositecancellable#add", "class/src/composite.js~CompositeCancellable.html#instance-method-add", "src/composite.js~CompositeCancellable#add", "method" ], [ "src/composite.js~compositecancellable#cancel", "class/src/composite.js~CompositeCancellable.html#instance-method-cancel", "src/composite.js~CompositeCancellable#cancel", "method" ], [ "src/composite.js~compositecancellable#cancelled", "class/src/composite.js~CompositeCancellable.html#instance-get-cancelled", "src/composite.js~CompositeCancellable#cancelled", "member" ], [ "src/composite.js~compositecancellable#constructor", "class/src/composite.js~CompositeCancellable.html#instance-constructor-constructor", "src/composite.js~CompositeCancellable#constructor", "method" ], [ "src/composite.js~compositecancellable#remove", "class/src/composite.js~CompositeCancellable.html#instance-method-remove", "src/composite.js~CompositeCancellable#remove", "method" ], [ "src/index.js", "file/src/index.js.html", "src/index.js", "file" ], [ "src/linked.js", "file/src/linked.js.html", "src/linked.js", "file" ], [ "src/linked.js~linkedcancellable#cancel", "class/src/linked.js~LinkedCancellable.html#instance-method-cancel", "src/linked.js~LinkedCancellable#cancel", "method" ], [ "src/linked.js~linkedcancellable#cancelled", "class/src/linked.js~LinkedCancellable.html#instance-get-cancelled", "src/linked.js~LinkedCancellable#cancelled", "member" ], [ "src/linked.js~linkedcancellable#constructor", "class/src/linked.js~LinkedCancellable.html#instance-constructor-constructor", "src/linked.js~LinkedCancellable#constructor", "method" ], [ "src/linked.js~linkedcancellable#link", "class/src/linked.js~LinkedCancellable.html#instance-method-link", "src/linked.js~LinkedCancellable#link", "method" ], [ "src/linked.js~linkedcancellable#listener", "class/src/linked.js~LinkedCancellable.html#instance-member-listener", "src/linked.js~LinkedCancellable#listener", "member" ], [ "src/linked.js~linkedcancellable#unlink", "class/src/linked.js~LinkedCancellable.html#instance-method-unlink", "src/linked.js~LinkedCancellable#unlink", "method" ], [ "src/uncancelled.js", "file/src/uncancelled.js.html", "src/uncancelled.js", "file" ], [ "src/uncancelled.js~uncancelledcancellable#cancel", "class/src/uncancelled.js~UncancelledCancellable.html#instance-method-cancel", "src/uncancelled.js~UncancelledCancellable#cancel", "method" ], [ "src/uncancelled.js~uncancelledcancellable#cancelled", "class/src/uncancelled.js~UncancelledCancellable.html#instance-get-cancelled", "src/uncancelled.js~UncancelledCancellable#cancelled", "member" ], [ "src/utils.js", "file/src/utils.js.html", "src/utils.js", "file" ], [ "test/boolean.js", "test-file/test/boolean.js.html", "test/boolean.js", "testFile" ], [ "test/composite.js", "test-file/test/composite.js.html", "test/composite.js", "testFile" ], [ "test/index.js", "test-file/test/index.js.html", "test/index.js", "testFile" ], [ "test/linked.js", "test-file/test/linked.js.html", "test/linked.js", "testFile" ] ]
var packerCmd = require('../packerCmd/packerCmd')(), fs = require('fs') module.exports = function(){ //Create a PackerFile Class. /* PackerFile Attrs: filePath = filePath of the packer.json file IF it exists builders = [] of builders provisioners = [] of provisioners post-processors = [] of postProcessors variables = {} typical object Methods: filePath = Will set the file path. Used for chaining pre-write/build write = Will create a random file OR use one already create and write the JSON output of the packer file. clean = Will destroy the packer file if one exists. Returns true or false. read = If there is a set filePath for a PackerFile, it will be read and its attributes set to the object */ var PackerFile = function(opts){ if(!opts){ opts = {} } this.filePath = opts.filePath this.builders = opts.builders || [] this.provisioners = opts.provisioners || [] this['post-processors'] = opts['post-processors'] || [] this.variables = opts.variables || {} if(this.filePath){ this.read() } } PackerFile.prototype.filePath = function(filePath){ this.filePath = filePath return this } PackerFile.prototype.write = function(workingDirectory, cb){ var self = this if(typeof workingDirectory == 'function'){ cb = workingDirectory workingDirectory = null } if(!self.filePath){ //Generate a random filename self.filePath = workingDirectory ? workingDirectory : './' self.filePath += Math.random().toString(36).slice(2) + '.json' } if(!cb){ cb = function(){} } fs.writeFile(self.filePath, JSON.stringify(self.json()), cb) return self } //Build will either use the file in the filePath (if it exists) and execute OR //create a file, write to that, and then execute, and finally remove the file //via a clean. //opts is optional and appended to the build at call time PackerFile.prototype.build = function(opts, cb){ self = this if(typeof opts == 'function'){ cb = opts opts = null } if(self.filePath){ if(!cb){ cb = function(){} } packerCmd.build(self.filePath, opts, cb) } else { self.write(function(err){ if(err && cb){ cb(err) } else { packerCmd.build(self.filePath, opts, function(err, output){ err ? cb(err, output) : self.clean(function(err){ cb ? cb(err, output) : null }) }) } }) } return self } //Read the current set filePath and set its values to the current PackerFile object PackerFile.prototype.read = function(cb){ var self = this if(filePath){ fs.readFile(self.filePath, function(err, data){ if(err){ cb(err) } else { var packerFile = JSON.parse(data) self.builders = results.builders || [] self.provisioners = results.provisioners || [] self['post-processors'] = results['post-processors'] || [] cb(null) } }) } else if(cb){ cb(null) } return self } //If the filePath exists, destory the file PackerFile.prototype.clean = function(cb){ var self = this if(self.filePath){ fs.unlink(self.filePath, cb) } else if(cb){ cb(null) } return self } //JSON function to provide a clean JSON representation of what's in a packer file PackerFile.prototype.json = function(){ var self = this return { variables: self.variables, builders: self.builders, provisioners: self.provisioners, "post-processors": self['post-processors'] } } //Builders require('./builders')(PackerFile) //Provisioners require('./provisioners')(PackerFile) //Post-Processors require('./postProcessors')(PackerFile) return PackerFile }
module.exports = function (req, res) { var credentials = req.credentials; var apply = new Object; if (req.param('read') !== undefined) apply.read = (!!req.param('read')) || false; if (req.param('spam') !== undefined) apply.spam = (!!req.param('spam')) || false; if (req.param('trash') !== undefined) apply.trash = (!!req.param('trash')) || false; /* Add credentials check here */ req.galleon.query('mark', { eID: req.param('eID'), email: req.credentials.email, apply: apply }, function (error, model) { if (error) return res.status(500).json({ error: error }); res.json({ success: true }) }) }
import { h, Component } from 'preact'; import PropTypes from 'prop-types'; import { route } from 'preact-router'; import CommandForm from 'forms/command'; class CreatePage extends Component { constructor(props) { super(props); this.onSubmit = this.onSubmit.bind(this); this.onReturnToList = this.onReturnToList.bind(this); } onSubmit(data) { const { onCreateCommand } = this.props; onCreateCommand(data); } onReturnToList() { route('/'); } render() { const { commandShortcuts } = this.props; return ( <div className="wrapper"> <h1 className="title"> {chrome.i18n.getMessage('createPageTitle')} </h1> <div className="content"> <div className="shortcut-list__item-detail"> <CommandForm commandShortcuts={commandShortcuts} onSubmit={this.onSubmit} onCancel={this.onReturnToList} /> </div> </div> </div> ); } } CreatePage.propTypes = { commandShortcuts: PropTypes.arrayOf( PropTypes.shape({ name: PropTypes.string.isRequired, }), ), onCreateCommand: PropTypes.func, }; CreatePage.defaultProps = { commandShortcuts: [], onCreateCommand: null, }; export default CreatePage;
import React from "react" import entryStyles from "./news-entry.module.css" export default (props) => { let right; if(props.image) { right = ( <div className={entryStyles.withImage}> <div className={entryStyles.contentText}>{props.content}</div> <img src={props.image} className={entryStyles.newsImage}></img> </div> ) } else { right = ( <div className={entryStyles.contentText}>{props.content}</div> ) } return ( <div className={entryStyles.beside}> <div class={entryStyles.container}> <div class={entryStyles.left}> <div className={entryStyles.dateText}>{props.date}</div> </div> </div> <div className={`${entryStyles.content} ${entryStyles.right}`}> <div className={entryStyles.titleText}>{props.title}</div> {right} </div> </div> ) }
"use strict"; angular.module('myApp').controller("AuthCtrl", function($scope, $location, AuthFactory,$window) { $scope.auth = {}; $scope.loggedIn = false; $scope.registerUser = function(registerNewUser) { AuthFactory.registerWithEmail(registerNewUser).then(function(didRegister) { $(".progress").css("visibility","hidden"); $scope.logIn(registerNewUser); $scope.$apply(); }); }; $scope.logIn = function(loginNewUser){ AuthFactory.authenticate(loginNewUser).then(function(didLogin){ $scope.login = {}; $scope.register = {}; $location.path("/notes"); $scope.$apply(); }); }; $scope.loginGoogle = function(){ AuthFactory.authWithProvider() .then(result => { let user = result.user.uid; $location.path('/notes'); $(".progress").css("visibility","hidden"); $scope.$apply(); }) .catch(error => console.log("google login error", error.message, error.code)); }; $scope.logoutUser = function(){ AuthFactory.logout(); $location.url('/home'); }; firebase.auth().onAuthStateChanged(function(user) { if (user) { $scope.loggedIn = true; $(".progress").css("visibility","hidden"); $scope.$apply(); } else { $scope.loggedIn = false; $(".progress").css("visibility","hidden"); $scope.$apply(); } }); });
// our array let alpha = ["a", "b", "c", "d", "e", "f"]; // storing our array as a string localStorage.setItem("letters", JSON.stringify(alpha)); let retrievedData = localStorage.getItem("letters"); let alpha2 = JSON.parse(retrievedData); console.log(retrievedData); console.log(alpha2); $(function() { getJSON(); }); function getJSON() { $.getJSON("data.json", function(json) { questions = json; // console.log(Object); const keys = Object.keys(questions); //storing the objects as string in local storage localStorage.setItem("ques", JSON.stringify(questions)); let retrievedObject = localStorage.getItem("ques"); //getting the values in form of objects console.log("retrievedObject: ", JSON.parse(retrievedObject)); // console.log(localStorage.getItem(questions)); // console.log(questions); let randIndex = Math.floor(Math.random() * (keys.length)); //parsing into objects let que = JSON.parse(localStorage.getItem("ques")); //getting a random index for question let varible = que[keys[randIndex]]; console.log(varible["question"]); console.log(varible["answer"]); }); }
let _Vue class Store { constructor (options) { this.$options = options // 保存用户配置的mutations和actions this._mutations = options.mutations || {} this._actions = options.actions || {} this._vm = new _Vue({ data: { $$state: options.state } }) this.commit = this.commit.bind(this) this.dispatch = this.dispatch.bind(this) } get state () { return this._vm._data.$$state } set state (v) { console.error('please use replaceState to reset state') } commit (type, payload) { // 获取type对应的mutation const entry = this._mutations[type] if (!entry) { return console.error(`unknown mutation type: ${type}`) } // 指定上下文为Store实例(bind) 将state传递给mutation并执行函数 entry(this.state, payload) } dispatch (type, payload) { const entry = this._actions[type] if (!entry) { return console.error(`unknown action type: ${type}`) } return entry(this, payload) } } function install (Vue) { _Vue = Vue Vue.mixin({ beforeCreate () { if (this.$options.store) { Vue.prototype.$store = this.$options.store } } }) } export default { Store, install }
import AppReducer from './AppReducer'; import AppStore, { AppContext, useAppStore } from './AppStore'; export { AppReducer, AppStore as default, AppStore, AppContext, useAppStore, };
function something(c){ var val1=50; var val2=70; return c(val1,val2); } oper=[add,sub,mul]; function add(x,y){return x+y;} function sub(x,y){return y-x;} function mul(x,y){return x*y;} console.log("___________________"); www0=something(oper[0]); console.log("Addition is: "+www0); www1=something(oper[1]); console.log("Subtraction is: "+www1); www2=something(oper[2]); console.log("multiplication is: "+www2); console.log("___________________");
import '../styles/globals.css' import React from 'react' import SuperTokensReact from 'supertokens-auth-react' import ThirdPartyEmailPasswordReact from 'supertokens-auth-react/recipe/thirdpartyemailpassword' import SessionReact from 'supertokens-auth-react/recipe/session' import SuperTokensNode from 'supertokens-node' import SessionNode from 'supertokens-node/recipe/session' import ThirdPartyEmailPasswordNode from 'supertokens-node/recipe/thirdpartyemailpassword' const port = process.env.APP_PORT || 3000 const websiteDomain = process.env.APP_URL || process.env.NEXT_PUBLIC_APP_URL || `http://localhost:${port}` const apiBasePath = '/api/auth/' // Client Side configs. if (typeof window !== 'undefined') { SuperTokensReact.init({ useReactRouterDom: false, appInfo: { appName: 'SuperTokens Demo App', websiteDomain, apiDomain: websiteDomain, apiBasePath, }, recipeList: [ ThirdPartyEmailPasswordReact.init({ emailVerificationFeature: { mode: 'REQUIRED', }, signInAndUpFeature: { providers: [ ThirdPartyEmailPasswordReact.Google.init(), ThirdPartyEmailPasswordReact.Github.init(), ThirdPartyEmailPasswordReact.Facebook.init(), ], }, }), SessionReact.init(), ], }) } else { // Server Side configs. SuperTokensNode.init({ supertokens: { connectionURI: 'https://try.supertokens.io', // Replace with your SuperTokens core instance. See https://supertokens.io/docs/emailpassword/quick-setup/supertokens-core/overview }, appInfo: { appName: 'SuperTokens Demo App', websiteDomain, apiDomain: websiteDomain, apiBasePath, }, recipeList: [ ThirdPartyEmailPasswordNode.init({ providers: [ ThirdPartyEmailPasswordNode.Google({ clientSecret: process.env.GOOGLE_CLIENT_SECRET, clientId: process.env.GOOGLE_CLIENT_ID, }), ThirdPartyEmailPasswordNode.Github({ clientSecret: process.env.GITHUB_CLIENT_SECRET, clientId: process.env.GITHUB_CLIENT_ID, }), ThirdPartyEmailPasswordNode.Facebook({ clientSecret: process.env.FACEBOOK_CLIENT_SECRET, clientId: process.env.FACEBOOK_CLIENT_ID, }), ], }), SessionNode.init(), ], isInServerlessEnv: true, }) } function MyApp({ Component, pageProps }) { return <Component {...pageProps} /> } export default MyApp
var pOne = document.getElementById("placeholder"); var pTwo = document.getElementById("placeholder2"); var Results = document.getElementById("results"); var container = document.getElementById("container"); var gameOver = document.getElementById("end"); var pOneTurn = false; var pTwoTurn = false; var pOneTime = 0; var pTwoTime = 0; var playerTwoInterval = null; var playerOneInterval = null; var GameHasBeenStarted = false; var pOneTurnTimes = []; var pTwoTurnTimes = []; pOne.innerHTML = "Player One Time Time: " + pOneTime; pTwo.innerHTML = "Player Two Time Time: " + pTwoTime; function StartGame(event) { if(GameHasBeenStarted == false) { GameHasBeenStarted = true; playerOneInterval = setInterval(function () { ++pOneTime; pOne.innerHTML = "Player One Time Time: " + pOneTime; }, 1000); pOneTurn = true; pTwoTurn = false; pOneTurnTimes = [{"name": "Player 1", "timestamp": pOneTime}]; SaveData(pOneTurnTimes); } else{ if(pOneTurn == true) { clearInterval(playerOneInterval); playerTwoInterval = setInterval(function () { ++pTwoTime; pTwo.innerHTML = "Player Two Time Time: " + pTwoTime; }, 1000); pOneTurn = false; pTwoTurn = true; pTwoTurnTimes = [{"name": "Player 2", "timestamp": pTwoTime}]; SaveData(pTwoTurnTimes); } else{ clearInterval(playerTwoInterval); playerOneInterval = setInterval(function () { ++pOneTime; pOne.innerHTML = "Player One Time Time: " + pOneTime; }, 1000); pOneTurn = true; pTwoTurn = false; pOneTurnTimes = [{"name": "Player 1", "timestamp": pOneTime}]; SaveData(pOneTurnTimes); } } } function StopGame() { clearInterval(playerOneInterval); clearInterval(playerTwoInterval); } function GetResults() { window.location.href = "http://localhost:3000/api/turns"; pOneTurnTimes = [{"name": "Player 1", "timestamp": pOneTime}]; SaveData(pOneTurnTimes); pTwoTurnTimes = [{"name": "Player 2", "timestamp": pTwoTime}]; SaveData(pTwoTurnTimes); } function SaveData(pTurn) { console.log(pTurn); $.ajax({ type: "POST", url: "/api/turns", data: JSON.stringify(pTurn), contentType: "application/json", success: function(){ console.log("Success"); } }); } container.addEventListener("click", StartGame, false); gameOver.addEventListener("click", StopGame, false); Results.addEventListener("click", GetResults, false);
module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), //模块的提取 transport : { ec : { files : { 'temp' : ['main.js','autoSelect.js'] } } }, //代码合并 concat : { ec : { files : { 'dist/main.js' : ['temp/main.js','temp/autoSelect.js'] } } }, //js 压缩 uglify : { ec : { files : { 'dist/main.min.js' : ['dist/main.js'] } } } }); grunt.loadNpmTasks('grunt-cmd-transport'); grunt.loadNpmTasks('grunt-contrib-concat'); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.registerTask('default', ['transport','concat','uglify']); };
const fetchData = async (url, method = "GET", data) => { try { const response = await fetch( `https://imp-product-server.herokuapp.com/shops/5ff9ab4b6aa5fa31a4f23783/${url}`, { method, mode: "cors", headers: { "Content-Type": "application/json", "Cache-Control": "max-age=31536000", }, body: JSON.stringify(data), } ); return await response.json(); } catch (except) { console.log(except); return []; } }; export const generateSalt = async (data) => await fetchData(`products/salt`, "POST", data); export const getAllProducts = async () => await fetchData(`products`);
// 接口 // 1.导入 const http = require("http") const db = require("./db/index") const dayjs = require("dayjs") // 下载依赖包 npm i // 2.创建 const server = http.createServer() // 3.开启 server.listen(3000,()=>{ console.log("server is running at port 3000") }) // 4.监听 server.on('request',(req,res)=>{ // req.url // res.statusCode = 200 // 设置响应头,响应给浏览器的数据格式是json格式 res.setHeader('content-type','application/json;charset=utf-8') // 解决跨域:设置响应头 res.setHeader('Access-Control-Allow-Origin', '*') // 返回学员的数据 if(req.method === "GET" && req.url ==='/api/students'){ // 把学员数据返回 const students = db.students() res.end(JSON.stringify(students)) }else if(req.method === 'GET' && req.url ==='/api/luckystar'){ const luckDog =db.luckystar() res.end(JSON.stringify(luckDog)) }else if(req.method === 'GET' && req.url ==='/api/news'){ const news =db.news() // 时间戳转换 console.log(news) news.forEach((el)=>{ el.publish_time = dayjs(el.publish_time).format('YYYY-MM-DD HH:mm:ss') }) console.log(news) res.end(JSON.stringify(news)) }else{ res.end('404 not found') } // 响应给浏览器的数据是字符串类型 })
import React from 'react' import { mount } from 'enzyme' import { Callout } from '@blueprintjs/core' import Error from '../index' describe('<Error />', () => { test('displays error', () => { const error = getError() const dataSource = getDataSource(error) const comp = mount(<Error dataSource={dataSource} />) expect(comp.find(Callout).text()).toMatch('Failed to load') }) test('no error', () => { const dataSource = getDataSource() const comp = mount(<Error dataSource={dataSource} />) expect(comp.find(Callout)).toHaveLength(0) }) }) function getDataSource(error) { return { __isCollectionDS__: true, status: 'failed', error, addStatusListener: () => () => {} } } function getError() { return { __isException__: true, exception: { message: 'Failed to load' } } }
'use strict'; angular.module('todoTodaySheetApp') .controller('TaskCtrl', function ($scope, $filter, Task) { $scope.awesomeThings = [ 'HTML5 Boilerplate', 'AngularJS', 'Karma' ]; $scope.filter = function() { console.log(Date()) console.log($filter('filter')(Task.tasks, {canceled_date:undefined})); // var aux = Task.tasks | description:'Pomodoro 1'; }; }).$inject = ['$filter', 'Task'];
const fs = require('fs') const angle = (hrs, min) => { let result = Math.abs((hrs * 30 + min * 0.5) - (min * 6)) return Math.min(360 - result, result) } const num = (_float, _digits) => { let rounded = Math.pow(10, _digits); return (Math.round(parseFloat(_float) * rounded) / rounded).toFixed(_digits); } function init(){ let details = fs.readFileSync(`${__dirname}/input.txt`,'utf8') let lines = details.split('\n').map(inp => inp.trim()).filter(inp => inp.length) for(let time of lines){ let result = angle.apply(null, time.split(':')) result = num(result, 2) console.log(`The angle between the Hour hand and Minute hand is ${result} degrees`) } } init()
// @flow import PIXI from './Pixi'; function application(options): PIXI.Application { console.warn('ExpoPIXI.application(): is deprecated, use new PIXI.Application(); instead'); return new PIXI.Application(options); } export default application;
40 "Gilberto Guerrero" true false null undefined
angular.module('starter.controllers', []) .config(function($compileProvider){ $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|mailto|file|tel):/); }) .controller('WelcomeCtrl', function($scope) { console.log('Opening welcome page'); }) .controller('AppCtrl', function($scope, $ionicModal, $timeout) { // With the new view caching in Ionic, Controllers are only called // when they are recreated or on app start, instead of every page change. // To listen for when this page is active (for example, to refresh data), // listen for the $ionicView.enter event: //$scope.$on('$ionicView.enter', function(e) { //}); // Form data for the login modal $scope.loginData = {}; // Create the login modal that we will use later $ionicModal.fromTemplateUrl('templates/login.html', { scope: $scope }).then(function(modal) { $scope.modal = modal; }); // Triggered in the login modal to close it $scope.closeLogin = function() { $scope.modal.hide(); }; // Open the login modal $scope.login = function() { $scope.modal.show(); }; // Perform the login action when the user submits the login form $scope.doLogin = function() { console.log('Doing login', $scope.loginData); // Simulate a login delay. Remove this and replace with your login // code if using a login system $timeout(function() { $scope.closeLogin(); }, 1000); }; }) .controller('PlaylistsCtrl', function($scope) { $scope.playlists = [ { title: 'Hey Jacob', id: 1 }, { title: 'Hey hey hey', id: 2 } ]; }) .controller('PlaylistCtrl', function($scope, $stateParams) { }) .controller('BrowseCtrl', function($scope, Camera) { // Update app code with new release from Ionic Deploy $scope.doUpdate = function() { console.log('Ionic Deploy: Starting update'); var deploy = new Ionic.Deploy(); deploy.update().then(function(res) { console.log('Ionic Deploy: Update Success! ', res); }, function(err) { console.log('Ionic Deploy: Update error! ', err); }, function(prog) { console.log('Ionic Deploy: Progress... ', prog); }); }; // Check Ionic Deploy for new code $scope.checkForUpdates = function() { console.log('Ionic Deploy: Checking for updates'); var deploy = new Ionic.Deploy(); deploy.check().then(function(hasUpdate) { console.log('Ionic Deploy: Update available: ' + hasUpdate); $scope.hasUpdate = hasUpdate; }, function(err) { console.error('Ionic Deploy: Unable to check for updates', err); }); } $scope.getPhoto = function() { console.log("get photo"); Camera.getPicture().then(function(imageURI) { console.log(imageURI); $scope.lastPhoto = imageURI; }, function(err) { console.err(err); }, { quality: 75, targetWidth: 320, targetHeight: 320, saveToPhotoAlbum: false }); }; $scope.devList = [ { text: "HTML5", checked: true }, { text: "CSS3", checked: false }, { text: "JavaScript", checked: false } ]; $scope.pushNotificationChange = function() { console.log('Push Notification Change', $scope.pushNotification.checked); }; $scope.pushNotification = { checked: true }; $scope.emailNotification = 'Subscribed'; }) .controller ('RoomsCtrl', ['$scope', 'RoomFactory', function ($scope, RoomFactory) { $scope.rooms = RoomFactory.getRooms(); $scope.$watch('searchText',function(value){ console.log(value); }); // $ionicScrollDelegate.scrollTop(false); }]) .controller ('RoomCtrl', ['$scope', '$stateParams', 'RoomFactory', function ($scope, $stateParams, RoomFactory) { console.log('Getting room [' + $stateParams.roomId + ']'); $scope.room = RoomFactory.getRoom($stateParams.roomId); }]) .factory('RoomFactory', function() { var roomsData = [ { id: 1, "name": "07.09 Promo", "state": "NSW", "calendarAddress": "@ n175l-07-09-04-MR-Promo", "type": "VC (Video Conference Room)", "floor": "07", "seatingCapacity": "04"}, { id: 2, "name": "07.10 Promo", "state": "NSW", "calendarAddress": "@ n175l-07-10-04-MR-Promo", "type": "VC (Video Conference Room)", "floor": "07", "seatingCapacity": "06"}, { id: 3, "name": "08.09 Promo", "state": "VIC", "calendarAddress": "@ n175l-07-09-04-MR-Promo", "type": "VC (Video Conference Room)", "floor": "07", "seatingCapacity": "04"}, { id: 4, "name": "08.10 Promo", "state": "VIC", "calendarAddress": "@ n175l-07-10-04-MR-Promo", "type": "VC (Video Conference Room)", "floor": "07", "seatingCapacity": "06"} ]; var currentRoom = null; return { getRooms: function() { return roomsData; }, getRoom: function(id) { if (!id) return null; console.log('Searching for room [' + id + ']'); for (var thisRoom in roomsData) { console.log('Checking room [' + id + '|' + roomsData[thisRoom].id + ']'); if (roomsData[thisRoom].id == id) { console.log('Matched room [' + id + ']'); currentRoom = roomsData[thisRoom]; return currentRoom; } } return null; } } });
class DrawingLine extends PaintFunction{ constructor(contextReal,contextDraft){ super(); this.contextReal = contextReal; this.contextDraft = contextDraft; } onMouseDown(coord,event){ this.contextReal.strokeStyle = canvasSettings.colorStroke; //canvas-configuration.js this.contextDraft.strokeStyle = canvasSettings.colorStroke; //canvas-configuration.js this.contextReal.lineCap = "round"; //lineCap = "butt" or "round" this.contextDraft.lineCap = "round"; //lineCap = "butt" or "round" this.contextReal.lineWidth = canvasSettings.brushSize //canvas-configuration.js this.contextDraft.lineWidth = canvasSettings.brushSize //canvas-configuration.js this.origX = coord[0]; this.origY = coord[1]; this.contextReal.beginPath(); this.contextReal.moveTo(this.origX,this.origY); } onDragging(coord,event){ dragging = true; this.contextDraft.closePath(); this.contextDraft.clearRect(0,0,canvasDraft.width,canvasDraft.height); this.contextDraft.beginPath(); this.contextDraft.moveTo(this.origX,this.origY); this.contextDraft.lineTo(coord[0],coord[1]); this.contextDraft.stroke(); } onMouseUp(coord,event){ this.contextDraft.clearRect(0,0,canvasDraft.width,canvasDraft.height); this.contextReal.lineTo(coord[0],coord[1]); this.contextReal.stroke(); this.onFinish(); } onFinish(){ canvasSettings.undoObject.states[canvasSettings.undoObject.actionCount] = new Image(); canvasSettings.undoObject.states[canvasSettings.undoObject.actionCount].src = canvasReal.toDataURL(); canvasSettings.undoObject.actionCount++; } }
module.exports = [{ "question": { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 5 }, { "question": { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 2 }, { "question": { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 1 }, { "question": { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "آسیابان", "w1": "آرد", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 3 }, { "question": { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 1 }, { "question": { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 5 }, { "question": { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 5 }, { "question": { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 4 }, { "question": { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 2 }, { "question": { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "بچه", "w1": "بزرگسال", "ind": 6, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 1 }, { "question": { "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "کور", "w1": "دیدن", "ind": 1, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 1 }, { "question": { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 3 }, { "question": { "w0": "شب", "w1": "شام", "ind": 4, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "دهان", "w1": "خوردن", "ind": 10, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 5 }, { "question": { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "جمعه", "w1": "تفریح", "ind": 5, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 2 }, { "question": { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 5 }, { "question": { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 2 }, { "question": { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "شاعر", "w1": "شعر", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 1 }, { "question": { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "گره", "w1": "طناب", "ind": 0, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 2 }, { "question": { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "مهر", "w1": "مدرسه", "ind": 6, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 1 }, { "question": { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 3 }, { "question": { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "بنزین", "w1": "آتشزا", "ind": 2, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 2 }, { "question": { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 4 }, { "question": { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 5 }, { "question": { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "دوختن", "w1": "لباس", "ind": 7, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 1 }, { "question": { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 5 }, { "question": { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 2 }, { "question": { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 5 }, { "question": { "w0": "قناد", "w1": "شیرینی", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 5 }, { "question": { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 1 }, { "question": { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 5 }, { "question": { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 4 }, { "question": { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 3 }, { "question": { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 1 }, { "question": { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "مهر", "w1": "مدرسه", "ind": 6, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 5 }, { "question": { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 3 }, { "question": { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 5 }, { "question": { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 1 }, { "question": { "w0": "دوختن", "w1": "لباس", "ind": 7, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کلفت", "w1": "نوکر", "ind": 5, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 2 }, { "question": { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 3 }, { "question": { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 1 }, { "question": { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 4 }, { "question": { "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 3 }, { "question": { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 5 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 4 }, { "question": { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "برد", "w1": "باخت", "ind": 2, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 4 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 2 }, { "question": { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 2 }, { "question": { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 5 }, { "question": { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 4 }, { "question": { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 3 }, { "question": { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 4 }, { "question": { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 4 }, { "question": { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 4 }, { "question": { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 2 }, { "question": { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 3 }, { "question": { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 4 }, { "question": { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 5 }, { "question": { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 3 }, { "question": { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 2 }, { "question": { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 4 }, { "question": { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 3 }, { "question": { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 2 }, { "question": { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 5 }, { "question": { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 5 }, { "question": { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 4 }, { "question": { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "کور", "w1": "دیدن", "ind": 1, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 1 }, { "question": { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 5 }, { "question": { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 5 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 2 }, { "question": { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 5 }, { "question": { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 1 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 3 }, { "question": { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 4 }, { "question": { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 3 }, { "question": { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 4 }, { "question": { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 2 }, { "question": { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 4 }, { "question": { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 3 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 1 }, { "question": { "w0": "نانوا", "w1": "آرد", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 2 }, { "question": { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 5 }, { "question": { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "برنامه نویس", "w1": "کد", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "شیر", "w1": "شکار", "ind": 2, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 4 }, { "question": { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "خیاط", "w1": "لباس", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 5 }, { "question": { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "قناد", "w1": "شکر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 1 }, { "question": { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 3 }, { "question": { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "بنا", "w1": "آجر", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 2 }, { "question": { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 2 }, { "question": { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 2 }, { "question": { "w0": "نانوا", "w1": "نان", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 4 }, { "question": { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 1 }, { "question": { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 3 }, { "question": { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 2 }, { "question": { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "دوختن", "w1": "لباس", "ind": 7, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 3 }, { "question": { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 1 }, { "question": { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 2 }, { "question": { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 4 }, { "question": { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 5 }, { "question": { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 2 }, { "question": { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 1 }, { "question": { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 3 }, { "question": { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "خیاط", "w1": "سوزن", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 2 }, { "question": { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 4 }, { "question": { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 2 }, { "question": { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 5 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "شیر", "w1": "شکار", "ind": 2, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 1 }, { "question": { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 1 }, { "question": { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "گچکار", "w1": "گچ", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 4 }, { "question": { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 4 }, { "question": { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 4 }, { "question": { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 1 }, { "question": { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 1 }, { "question": { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 3 }, { "question": { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }], "correct_option": 5 }, { "question": { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 5 }, { "question": { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 2 }, { "question": { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 2 }, { "question": { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 1 }, { "question": { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "کشاورز", "w1": "تراکتور", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 5 }, { "question": { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 3 }, { "question": { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "شب", "w1": "شام", "ind": 4, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 1 }, { "question": { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 4 }, { "question": { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 4 }, { "question": { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 5 }, { "question": { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 5 }, { "question": { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 2 }, { "question": { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 4 }, { "question": { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 4 }, { "question": { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 5 }, { "question": { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 1 }, { "question": { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 5 }, { "question": { "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 5 }, { "question": { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 2 }, { "question": { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 5 }, { "question": { "w0": "شب", "w1": "شام", "ind": 4, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "جمعه", "w1": "تفریح", "ind": 5, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 3 }, { "question": { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 1 }, { "question": { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 4 }, { "question": { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 5 }, { "question": { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 3 }, { "question": { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 2 }, { "question": { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 1 }, { "question": { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 4 }, { "question": { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 2 }, { "question": { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 5 }, { "question": { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 2 }, { "question": { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "شاعر", "w1": "شعر", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 3 }, { "question": { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 4 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 4 }, { "question": { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 5 }, { "question": { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 5 }, { "question": { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }], "correct_option": 5 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 3 }, { "question": { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 5 }, { "question": { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 2 }, { "question": { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 2 }, { "question": { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 4 }, { "question": { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 4 }, { "question": { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 5 }, { "question": { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 2 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 4 }, { "question": { "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 1 }, { "question": { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "طرح", "w1": "درس", "ind": 4, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 1 }, { "question": { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 1 }, { "question": { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 4 }, { "question": { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 4 }, { "question": { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 5 }, { "question": { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 4 }, { "question": { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "نانوا", "w1": "نان", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 5 }, { "question": { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 1 }, { "question": { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 3 }, { "question": { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 4 }, { "question": { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 3 }, { "question": { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }], "correct_option": 2 }, { "question": { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 2 }, { "question": { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 3 }, { "question": { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 1 }, { "question": { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 3 }, { "question": { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 3 }, { "question": { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "شاعر", "w1": "شعر", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 4 }, { "question": { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 2 }, { "question": { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 1 }, { "question": { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 2 }, { "question": { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "درو", "w1": "گندم", "ind": 9, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مهر", "w1": "مدرسه", "ind": 6, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }], "correct_option": 1 }, { "question": { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 4 }, { "question": { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 4 }, { "question": { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 1 }, { "question": { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 4 }, { "question": { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 5 }, { "question": { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "آسیابان", "w1": "آرد", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 1 }, { "question": { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "آشپز", "w1": "غذا", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 1 }, { "question": { "w0": "درو", "w1": "گندم", "ind": 9, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 2 }, { "question": { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 5 }, { "question": { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 1 }, { "question": { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "گیج", "w1": "حواسپرت", "ind": 3, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 2 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 1 }, { "question": { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 2 }, { "question": { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 1 }, { "question": { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 5 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 2 }, { "question": { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 6, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 5 }, { "question": { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 5 }, { "question": { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 5 }, { "question": { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 2 }, { "question": { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 4 }, { "question": { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 1 }, { "question": { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 4 }, { "question": { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 3 }, { "question": { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 3 }, { "question": { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 1 }, { "question": { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 5 }, { "question": { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 3 }, { "question": { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "شیر", "w1": "شکار", "ind": 2, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 1 }, { "question": { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 5 }, { "question": { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 2 }, { "question": { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 1 }, { "question": { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 4 }, { "question": { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 1 }, { "question": { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 4 }, { "question": { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 1 }, { "question": { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "نانوا", "w1": "آرد", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 1 }, { "question": { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 4 }, { "question": { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 3 }, { "question": { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 4 }, { "question": { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 3 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 3 }, { "question": { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 2 }, { "question": { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 2 }, { "question": { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 2 }, { "question": { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 2 }, { "question": { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 5 }, { "question": { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 1 }, { "question": { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "درو", "w1": "گندم", "ind": 9, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 5 }, { "question": { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 2 }, { "question": { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 1 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 3 }, { "question": { "w0": "عیال", "w1": "همسر", "ind": 7, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "کلفت", "w1": "نوکر", "ind": 5, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 4 }, { "question": { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 4 }, { "question": { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خیاط", "w1": "لباس", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 5 }, { "question": { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 1 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 2 }, { "question": { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 5 }, { "question": { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 4 }, { "question": { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 5 }, { "question": { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 4 }, { "question": { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 4 }, { "question": { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "برد", "w1": "باخت", "ind": 2, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 2 }, { "question": { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 5 }, { "question": { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 2 }, { "question": { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 5 }, { "question": { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 4 }, { "question": { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 2 }, { "question": { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 5 }, { "question": { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "شیر", "w1": "شکار", "ind": 2, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 1 }, { "question": { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 5 }, { "question": { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 5 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 3 }, { "question": { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 4 }, { "question": { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "نانوا", "w1": "نان", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 5 }, { "question": { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "عمه", "w1": "عمو", "ind": 3, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 2 }, { "question": { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 2 }, { "question": { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 3 }, { "question": { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 2 }, { "question": { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 5 }, { "question": { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 5 }, { "question": { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "شیشه", "w1": "شکستن", "ind": 0, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 4 }, { "question": { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 2 }, { "question": { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 1 }, { "question": { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 5 }, { "question": { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 5 }, { "question": { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 1 }, { "question": { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 4 }, { "question": { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 4 }, { "question": { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 3 }, { "question": { "w0": "دوختن", "w1": "لباس", "ind": 7, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "گره", "w1": "طناب", "ind": 0, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 4 }, { "question": { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 2 }, { "question": { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 4 }, { "question": { "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 3 }, { "question": { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 1 }, { "question": { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "قناد", "w1": "شکر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 2 }, { "question": { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 2 }, { "question": { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }], "correct_option": 4 }, { "question": { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 2 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "بچه", "w1": "بزرگسال", "ind": 6, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 5 }, { "question": { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 5 }, { "question": { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 3 }, { "question": { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 3 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 1 }, { "question": { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "نانوا", "w1": "نان", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 5 }, { "question": { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "زمستان", "w1": "اسکی", "ind": 1, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 2 }, { "question": { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "جمعه", "w1": "تفریح", "ind": 5, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 4 }, { "question": { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 5 }, { "question": { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 3 }, { "question": { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }, { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 5 }, { "question": { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 4 }, { "question": { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 2 }, { "question": { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 1 }, { "question": { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 4 }, { "question": { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 2 }, { "question": { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 2 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "آسیابان", "w1": "آرد", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 5 }, { "question": { "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "قاضی", "w1": "شواهد", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 4 }, { "question": { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 4 }, { "question": { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "قناد", "w1": "شکر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 3 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 1 }, { "question": { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "خیاط", "w1": "لباس", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "زایر", "w1": "زیارت", "ind": 0, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 5 }, { "question": { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "جمعه", "w1": "تفریح", "ind": 5, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 1 }, { "question": { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }], "correct_option": 3 }, { "question": { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 3 }, { "question": { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 1 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 4 }, { "question": { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 1 }, { "question": { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 1 }, { "question": { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "زمستان", "w1": "اسکی", "ind": 1, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 5 }, { "question": { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 3 }, { "question": { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "گیج", "w1": "حواسپرت", "ind": 3, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "جمعه", "w1": "تفریح", "ind": 5, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 3 }, { "question": { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 3 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "شب", "w1": "شام", "ind": 4, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 5 }, { "question": { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "بچه", "w1": "بزرگسال", "ind": 6, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "بنا", "w1": "آجر", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 3 }, { "question": { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 5 }, { "question": { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 5 }, { "question": { "w0": "قاضی", "w1": "شواهد", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "نانوا", "w1": "آرد", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 3 }, { "question": { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 1 }, { "question": { "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "مهر", "w1": "مدرسه", "ind": 6, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 5 }, { "question": { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "طرح", "w1": "درس", "ind": 4, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 1 }, { "question": { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 1 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 5 }, { "question": { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 5 }, { "question": { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }], "correct_option": 5 }, { "question": { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "زایر", "w1": "زیارت", "ind": 0, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 4 }, { "question": { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 4 }, { "question": { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 5 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 6, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 2 }, { "question": { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "نانوا", "w1": "نان", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "عیال", "w1": "همسر", "ind": 7, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 3 }, { "question": { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "نانوا", "w1": "آرد", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 4 }, { "question": { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "درو", "w1": "گندم", "ind": 9, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 2 }, { "question": { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 5 }, { "question": { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 4 }, { "question": { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "زمستان", "w1": "اسکی", "ind": 1, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 1 }, { "question": { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 2 }, { "question": { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 3 }, { "question": { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 1 }, { "question": { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "چشم", "w1": "دیدن", "ind": 9, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 4 }, { "question": { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "قناد", "w1": "شکر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 3 }, { "question": { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 4 }, { "question": { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 1 }, { "question": { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 2 }, { "question": { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 1 }, { "question": { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 5 }, { "question": { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, { "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 5 }, { "question": { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "هواپیما", "w1": "پرواز", "ind": 6, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 3 }, { "question": { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 5 }, { "question": { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "قناد", "w1": "شیرینی", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }], "correct_option": 1 }, { "question": { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 4 }, { "question": { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 1 }, { "question": { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 5 }, { "question": { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "خیاط", "w1": "لباس", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 5 }, { "question": { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 2 }, { "question": { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 4 }, { "question": { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 4 }, { "question": { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 4 }, { "question": { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 4 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 4 }, { "question": { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 4 }, { "question": { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "دهان", "w1": "خوردن", "ind": 10, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 1 }, { "question": { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 1 }, { "question": { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 1 }, { "question": { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 3 }, { "question": { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "زمستان", "w1": "اسکی", "ind": 1, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 3 }, { "question": { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 2 }, { "question": { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 2 }, { "question": { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 2 }, { "question": { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 1 }, { "question": { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 2 }, { "question": { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 1 }, { "question": { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 1 }, { "question": { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 5 }, { "question": { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "زایر", "w1": "زیارت", "ind": 0, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 5 }, { "question": { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 5 }, { "question": { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 3 }, { "question": { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 3 }, { "question": { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 2 }, { "question": { "w0": "آشپز", "w1": "غذا", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "برنامه نویس", "w1": "کد", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 3 }, { "question": { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 4 }, { "question": { "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }], "correct_option": 4 }, { "question": { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 5 }, { "question": { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 5 }, { "question": { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 5 }, { "question": { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 5 }, { "question": { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "عیال", "w1": "همسر", "ind": 7, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 5 }, { "question": { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 1 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 4 }, { "question": { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 2 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 1 }, { "question": { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 2 }, { "question": { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 2 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 2 }, { "question": { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 5 }, { "question": { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 2 }, { "question": { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 3 }, { "question": { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 2 }, { "question": { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "قاضی", "w1": "شواهد", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 1 }, { "question": { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 2 }, { "question": { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 5 }, { "question": { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 2 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 2 }, { "question": { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 1 }, { "question": { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 4 }, { "question": { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 4 }, { "question": { "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 3 }, { "question": { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 3 }, { "question": { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 1 }, { "question": { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "بچه", "w1": "بزرگسال", "ind": 6, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 2 }, { "question": { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 1 }, { "question": { "w0": "گچکار", "w1": "گچ", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "بنا", "w1": "آجر", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "نانوا", "w1": "آرد", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 3 }, { "question": { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 1 }, { "question": { "w0": "کشاورز", "w1": "تراکتور", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "بنزین", "w1": "آتشزا", "ind": 2, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 5 }, { "question": { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 5 }, { "question": { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 3 }, { "question": { "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 3 }, { "question": { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 1 }, { "question": { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 2 }, { "question": { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 5 }, { "question": { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "برنامه نویس", "w1": "کد", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 2 }, { "question": { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 1 }, { "question": { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 3 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }], "correct_option": 1 }, { "question": { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "بنا", "w1": "آجر", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 4 }, { "question": { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 4 }, { "question": { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "جمعه", "w1": "تفریح", "ind": 5, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 1 }, { "question": { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 1 }, { "question": { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }], "correct_option": 3 }, { "question": { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 1 }, { "question": { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "بنا", "w1": "آجر", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 4 }, { "question": { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 3 }, { "question": { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 3 }, { "question": { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 2 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 5 }, { "question": { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 1 }, { "question": { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 1 }, { "question": { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 2 }, { "question": { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 3 }, { "question": { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 1 }, { "question": { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 2 }, { "question": { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 1 }, { "question": { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 1 }, { "question": { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 2 }, { "question": { "w0": "راننده", "w1": "ماشین", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "نجار", "w1": "اره", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 3 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 4 }, { "question": { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 2 }, { "question": { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 4 }, { "question": { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 2 }, { "question": { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 4 }, { "question": { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "عمه", "w1": "عمو", "ind": 3, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 4 }, { "question": { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 5 }, { "question": { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 5 }, { "question": { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 3 }, { "question": { "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "آسیابان", "w1": "آرد", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 4 }, { "question": { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 2 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 3 }, { "question": { "w0": "بچه", "w1": "بزرگسال", "ind": 6, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 4 }, { "question": { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 4 }, { "question": { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 3 }, { "question": { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 1 }, { "question": { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 2 }, { "question": { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 1 }, { "question": { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "چشم", "w1": "دیدن", "ind": 9, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 1 }, { "question": { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 1 }, { "question": { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 1 }, { "question": { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 4 }, { "question": { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "خیاط", "w1": "سوزن", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 3 }, { "question": { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 2 }, { "question": { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "خیاط", "w1": "سوزن", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 3 }, { "question": { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 1 }, { "question": { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 5 }, { "question": { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 5 }, { "question": { "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 3 }, { "question": { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "گیج", "w1": "حواسپرت", "ind": 3, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 1 }, { "question": { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 6, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 4 }, { "question": { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 2 }, { "question": { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 5 }, { "question": { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 1 }, { "question": { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 5 }, { "question": { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 2 }, { "question": { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 5 }, { "question": { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 4 }, { "question": { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 2 }, { "question": { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 5 }, { "question": { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 2 }, { "question": { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "گچکار", "w1": "گچ", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 5 }, { "question": { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 2 }, { "question": { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "کشاورز", "w1": "تراکتور", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 5 }, { "question": { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 2 }, { "question": { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 3 }, { "question": { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "طرح", "w1": "درس", "ind": 4, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 2 }, { "question": { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 1 }, { "question": { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 3 }, { "question": { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 1 }, { "question": { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }], "correct_option": 3 }, { "question": { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 3 }, { "question": { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 2 }, { "question": { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 3 }, { "question": { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 2 }, { "question": { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 1 }, { "question": { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 3 }, { "question": { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 3 }, { "question": { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 4 }, { "question": { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }], "correct_option": 2 }, { "question": { "w0": "دوختن", "w1": "لباس", "ind": 7, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 4 }, { "question": { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 2 }, { "question": { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 3 }, { "question": { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 1 }, { "question": { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "شیشه", "w1": "شکستن", "ind": 0, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 3 }, { "question": { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 2 }, { "question": { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "راننده", "w1": "ماشین", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 5 }, { "question": { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 5 }, { "question": { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 5 }, { "question": { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 1 }, { "question": { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 2 }, { "question": { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }], "correct_option": 5 }, { "question": { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 2 }, { "question": { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 2 }, { "question": { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 5 }, { "question": { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 2 }, { "question": { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "خیاط", "w1": "سوزن", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 2 }, { "question": { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "قناد", "w1": "شکر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 1 }, { "question": { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 2 }, { "question": { "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 4 }, { "question": { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 1 }, { "question": { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 1 }, { "question": { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 5 }, { "question": { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 5 }, { "question": { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 2 }, { "question": { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "راننده", "w1": "ماشین", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 3 }, { "question": { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 2 }, { "question": { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 1 }, { "question": { "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "آسیابان", "w1": "آرد", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 3 }, { "question": { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 5 }, { "question": { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 5 }, { "question": { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "عمه", "w1": "عمو", "ind": 3, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 4 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 2 }, { "question": { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 5 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 1 }, { "question": { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 6, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 1 }, { "question": { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 2 }, { "question": { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 4 }, { "question": { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 5 }, { "question": { "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "زمستان", "w1": "اسکی", "ind": 1, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 5 }, { "question": { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "کلفت", "w1": "نوکر", "ind": 5, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 2 }, { "question": { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 4 }, { "question": { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 3 }, { "question": { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "شاعر", "w1": "شعر", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 2 }, { "question": { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }], "correct_option": 1 }, { "question": { "w0": "گره", "w1": "طناب", "ind": 0, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 3 }, { "question": { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 1 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 4 }, { "question": { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "نقاش", "w1": "رنگ", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 3 }, { "question": { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "راننده", "w1": "ماشین", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 4 }, { "question": { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 1 }, { "question": { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 4 }, { "question": { "w0": "بنزین", "w1": "آتشزا", "ind": 2, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 2 }, { "question": { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 4 }, { "question": { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 3 }, { "question": { "w0": "گیج", "w1": "حواسپرت", "ind": 3, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 2 }, { "question": { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 2 }, { "question": { "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 3 }, { "question": { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 1 }, { "question": { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 2 }, { "question": { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 3 }, { "question": { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "بنزین", "w1": "آتشزا", "ind": 2, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 1 }, { "question": { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "آشپز", "w1": "غذا", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 5 }, { "question": { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 1 }, { "question": { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 4 }, { "question": { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 2 }, { "question": { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 2 }, { "question": { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "بنزین", "w1": "آتشزا", "ind": 2, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 1 }, { "question": { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 2 }, { "question": { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "دوختن", "w1": "لباس", "ind": 7, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 1 }, { "question": { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 4 }, { "question": { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 2 }, { "question": { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 4 }, { "question": { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }], "correct_option": 5 }, { "question": { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 4 }, { "question": { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 5 }, { "question": { "w0": "برداشتن", "w1": "گذاشتن", "ind": 8, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 4 }, { "question": { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 2 }, { "question": { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "شیشه", "w1": "شکستن", "ind": 0, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 3 }, { "question": { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "شاعر", "w1": "شعر", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 1 }, { "question": { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 3 }, { "question": { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 3 }, { "question": { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 4 }, { "question": { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 5 }, { "question": { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 2 }, { "question": { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 2 }, { "question": { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 5 }, { "question": { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 5 }, { "question": { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 1 }, { "question": { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 4 }, { "question": { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 3 }, { "question": { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 3 }, { "question": { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 1 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 3 }, { "question": { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 1 }, { "question": { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 1 }, { "question": { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 1 }, { "question": { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 4 }, { "question": { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 1 }, { "question": { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 3 }, { "question": { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 1 }, { "question": { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 3 }, { "question": { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 5 }, { "question": { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 3 }, { "question": { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 2 }, { "question": { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 2 }, { "question": { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 2 }, { "question": { "w0": "آسیابان", "w1": "آرد", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 3 }, { "question": { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 3 }, { "question": { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }], "correct_option": 4 }, { "question": { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 1 }, { "question": { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 3 }, { "question": { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 5 }, { "question": { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 4 }, { "question": { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 4 }, { "question": { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "بنا", "w1": "آجر", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 4 }, { "question": { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }], "correct_option": 5 }, { "question": { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 2 }, { "question": { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 3 }, { "question": { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 3 }, { "question": { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 4 }, { "question": { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 2 }, { "question": { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "تقطیر", "w1": "آب", "ind": 3, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 4 }, { "question": { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 1 }, { "question": { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 5 }, { "question": { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 2 }, { "question": { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 2 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 2 }, { "question": { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 5 }, { "question": { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "تابستان", "w1": "درو", "ind": 0, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 5 }, { "question": { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 2 }, { "question": { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }], "correct_option": 3 }, { "question": { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 2 }, { "question": { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "درست", "w1": "غلط", "ind": 1, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 5 }, { "question": { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 4 }, { "question": { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 1 }, { "question": { "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "شیر", "w1": "شکار", "ind": 2, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }], "correct_option": 5 }, { "question": { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 1 }, { "question": { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 3 }, { "question": { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }], "correct_option": 5 }, { "question": { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 2 }, { "question": { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 1 }, { "question": { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 1 }, { "question": { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 5 }, { "question": { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 5 }, { "question": { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 4 }, { "question": { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 2 }, { "question": { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "عمه", "w1": "عمو", "ind": 3, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 2 }, { "question": { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 2 }, { "question": { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 3 }, { "question": { "w0": "قناد", "w1": "شیرینی", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "خیاط", "w1": "لباس", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 2 }, { "question": { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 1 }, { "question": { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 1 }, { "question": { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 4 }, { "question": { "w0": "کور", "w1": "دیدن", "ind": 1, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 5 }, { "question": { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 3 }, { "question": { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 3 }, { "question": { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 4 }, { "question": { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "چشم", "w1": "دیدن", "ind": 9, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 1 }, { "question": { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 3 }, { "question": { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "زایر", "w1": "زیارت", "ind": 0, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "نجار", "w1": "اره", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 3 }, { "question": { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 2 }, { "question": { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 4 }, { "question": { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }], "correct_option": 1 }, { "question": { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 4 }, { "question": { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 3 }, { "question": { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 3 }, { "question": { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 2 }, { "question": { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 3 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 2 }, { "question": { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 3 }, { "question": { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "آب", "w1": "خیس", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 1 }, { "question": { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 5 }, { "question": { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 3 }, { "question": { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }, { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 4 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 5 }, { "question": { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 1 }, { "question": { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 4 }, { "question": { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 5 }, { "question": { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 2 }, { "question": { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 4 }, { "question": { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 4 }, { "question": { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "نجار", "w1": "اره", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 1 }, { "question": { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "توپ", "w1": "کره", "ind": 5, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 4 }, { "question": { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 5 }, { "question": { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }], "correct_option": 5 }, { "question": { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 4 }, { "question": { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 4 }, { "question": { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 1 }, { "question": { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 3 }, { "question": { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "برد", "w1": "باخت", "ind": 2, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 2 }, { "question": { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 4 }, { "question": { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 2 }, { "question": { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "آشپز", "w1": "غذا", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "آتش", "w1": "گرما", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 3 }, { "question": { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 1 }, { "question": { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 3 }, { "question": { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 1 }, { "question": { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 3 }, { "question": { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "گیج", "w1": "حواسپرت", "ind": 3, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 2 }, { "question": { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 1 }, { "question": { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 5 }, { "question": { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "استاد", "w1": "دانشچو", "ind": 2, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 5 }, { "question": { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, "options": [{ "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 1 }, { "question": { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, "options": [{ "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 3 }, { "question": { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 2 }, { "question": { "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, "options": [{ "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }], "correct_option": 3 }, { "question": { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }], "correct_option": 4 }, { "question": { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 1 }, { "question": { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 5 }, { "question": { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "بنا", "w1": "آجر", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 1 }, { "question": { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "گچکار", "w1": "گچ", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 5 }, { "question": { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 2 }, { "question": { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "کلفت", "w1": "نوکر", "ind": 5, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 1 }, { "question": { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 3 }, { "question": { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 4 }, { "question": { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 1 }, { "question": { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 1 }, { "question": { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "هواپیما", "w1": "پرواز", "ind": 6, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 1 }, { "question": { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 4 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 2 }, { "question": { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 3 }, { "question": { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 5 }, { "question": { "w0": "شاعر", "w1": "شعر", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "نجار", "w1": "صندلی", "ind": 12, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 3 }, { "question": { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 5 }, { "question": { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "کشاورز", "w1": "تراکتور", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }], "correct_option": 3 }, { "question": { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "نیرو", "w1": "شتاب", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 1 }, { "question": { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 1 }, { "question": { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, "options": [{ "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 1 }, { "question": { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "رساندن", "w1": "مسافر", "ind": 4, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 5 }, { "question": { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }], "correct_option": 3 }, { "question": { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 1 }, { "question": { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "پرنده", "w1": "پرواز", "ind": 3, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 3 }, { "question": { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 4 }, { "question": { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "سختی", "w1": "آسایش", "ind": 1, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 3 }, { "question": { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 3 }, { "question": { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 2 }, { "question": { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "دهان", "w1": "خوردن", "ind": 10, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }], "correct_option": 4 }, { "question": { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 1 }, { "question": { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 1 }, { "question": { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 2 }, { "question": { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, "options": [{ "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 3 }, { "question": { "w0": "خوردن", "w1": "سیری", "ind": 2, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 3 }, { "question": { "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 3 }, { "question": { "w0": "دوختن", "w1": "لباس", "ind": 7, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "درو", "w1": "گندم", "ind": 9, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "راننده", "w1": "ماشین", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 1 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 2 }, { "question": { "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 5 }, { "question": { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 3 }, { "question": { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 3 }, { "question": { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 4 }, { "question": { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "چنگال", "w1": "شنکش", "ind": 0, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 3 }, { "question": { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 2 }, { "question": { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 1 }, { "question": { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 5 }, { "question": { "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "دونده", "w1": "پایان", "ind": 6, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 3 }, { "question": { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 1 }, { "question": { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 1 }, { "question": { "w0": "کلفت", "w1": "نوکر", "ind": 5, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "کد", "w1": "اجرا", "ind": 7, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 1 }, { "question": { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 3 }, { "question": { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 2 }, { "question": { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 1 }, { "question": { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }], "correct_option": 3 }, { "question": { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 5 }, { "question": { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 4 }, { "question": { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 2 }, { "question": { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "خسته", "w1": "شاداب", "ind": 1, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "قناد", "w1": "شیرینی", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 3 }, { "question": { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }], "correct_option": 3 }, { "question": { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 5 }, { "question": { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 1 }, { "question": { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 2 }, { "question": { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "چشم", "w1": "دیدن", "ind": 9, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 2 }, { "question": { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 3 }, { "question": { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }], "correct_option": 4 }, { "question": { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 4 }, { "question": { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "راننده", "w1": "ماشین", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 2 }, { "question": { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 1 }, { "question": { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "گیج", "w1": "حواسپرت", "ind": 3, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 3 }, { "question": { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "گره", "w1": "طناب", "ind": 0, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 1 }, { "question": { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, "options": [{ "w0": "پختن", "w1": "غذا", "ind": 8, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 4 }, { "question": { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 1 }, { "question": { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "گره", "w1": "طناب", "ind": 0, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 5 }, { "question": { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 1 }, { "question": { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 5 }, { "question": { "w0": "پول", "w1": "خرج", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, "options": [{ "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "بنزین", "w1": "آتشزا", "ind": 2, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 3 }, { "question": { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 2 }, { "question": { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "ضرر", "w1": "سود", "ind": 4, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "قناد", "w1": "شکر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 2 }, { "question": { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 3 }, { "question": { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 5 }, { "question": { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 3 }, { "question": { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 2 }, { "question": { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 5 }, { "question": { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "نجار", "w1": "اره", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 1 }, { "question": { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 1 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 5 }, { "question": { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "اخم", "w1": "ناراحتی", "ind": 1, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }], "correct_option": 2 }, { "question": { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 3 }, { "question": { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }, { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "خوردن", "w1": "پرخوری", "ind": 0, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }], "correct_option": 4 }, { "question": { "w0": "دانشگاه", "w1": "شریف", "ind": 5, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, "options": [{ "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 5 }, { "question": { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 4 }, { "question": { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 1 }, { "question": { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 5 }, { "question": { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "پیله", "w1": "پروانه", "ind": 1, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "مضطرب", "w1": "بیقرار", "ind": 2, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 1 }, { "question": { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "خیاط", "w1": "لباس", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 5 }, { "question": { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 1 }, { "question": { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 4 }, { "question": { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 3 }, { "question": { "w0": "بدهکار", "w1": "بستانکار", "ind": 7, "cat_name": "Contrast Reverse buy:sell " }, "options": [{ "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "برنامه نویس", "w1": "کد", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 4 }, { "question": { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }], "correct_option": 4 }, { "question": { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "گل", "w1": "لاله", "ind": 3, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "درو", "w1": "گندم", "ind": 9, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 4 }, { "question": { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 3 }, { "question": { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 2 }, { "question": { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "مادر", "w1": "پدر", "ind": 8, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 2 }, { "question": { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }], "correct_option": 3 }, { "question": { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "خیاطی", "w1": "لباس", "ind": 2, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 2 }, { "question": { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "خیاط", "w1": "سوزن", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 5 }, { "question": { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 4 }, { "question": { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "قهرمان", "w1": "مدال", "ind": 7, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 5 }, { "question": { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 4 }, { "question": { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }], "correct_option": 5 }, { "question": { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "معلم", "w1": "گچ", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 4 }, { "question": { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 3 }, { "question": { "w0": "قناد", "w1": "شیرینی", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 3 }, { "question": { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 1 }, { "question": { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 4 }, { "question": { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "قاضی", "w1": "شواهد", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 2 }, { "question": { "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "شکارچی", "w1": "شکار", "ind": 1, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 3 }, { "question": { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "پرنده", "w1": "بلبل", "ind": 5, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 2 }, { "question": { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 4 }, { "question": { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, "options": [{ "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 2 }, { "question": { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "نجوم", "w1": "ستاره", "ind": 2, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "شخم", "w1": "زمین", "ind": 1, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 2 }, { "question": { "w0": "شیشه", "w1": "شکستن", "ind": 0, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "کلیات", "w1": "قانون", "ind": 5, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 1 }, { "question": { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 4 }, { "question": { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 2 }, { "question": { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 4 }, { "question": { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 3 }, { "question": { "w0": "گچکار", "w1": "گچ", "ind": 2, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "بنزین", "w1": "ماشین", "ind": 1, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 1 }, { "question": { "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, "options": [{ "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "جک", "w1": "خنده", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 4 }, { "question": { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "ظهر", "w1": "ناهار", "ind": 2, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 3 }, { "question": { "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 5 }, { "question": { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "آب", "w1": "اکسیژن", "ind": 5, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 1 }, { "question": { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, "options": [{ "w0": "منفک", "w1": "تنها", "ind": 3, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "نانوا", "w1": "آرد", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 1 }, { "question": { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 5 }, { "question": { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ترمز", "w1": "توقف", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "کوهنورد", "w1": "قله", "ind": 3, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 4 }, { "question": { "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "کتک", "w1": "درد", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Effect joke:laughter " }, { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "تولد", "w1": "کیک", "ind": 4, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 3 }, { "question": { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }], "correct_option": 4 }, { "question": { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 1 }, { "question": { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, "options": [{ "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "شمع", "w1": "اشک", "ind": 3, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 3 }, { "question": { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "قاضی", "w1": "شاکی", "ind": 3, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }], "correct_option": 5 }, { "question": { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 1 }, { "question": { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 3 }, { "question": { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "شب", "w1": "شام", "ind": 4, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 2 }, { "question": { "w0": "نویسنده", "w1": "کتاب", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, "options": [{ "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "خیاط", "w1": "لباس", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 2 }, { "question": { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "دهان", "w1": "خوردن", "ind": 10, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 5 }, { "question": { "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 3 }, { "question": { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "نویسنده", "w1": "تالیف", "ind": 2, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 3 }, { "question": { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "کلفت", "w1": "نوکر", "ind": 5, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 3 }, { "question": { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, "options": [{ "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "شب", "w1": "شام", "ind": 4, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 1 }, { "question": { "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, "options": [{ "w0": "قحطی", "w1": "فراوانی", "ind": 0, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "دکتر", "w1": "مریض", "ind": 0, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 2 }, { "question": { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, "options": [{ "w0": "زمان", "w1": "لحظه", "ind": 2, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }], "correct_option": 5 }, { "question": { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "ملکه", "w1": "شاه", "ind": 0, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 1 }, { "question": { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 5 }, { "question": { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }], "correct_option": 1 }, { "question": { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "عشق", "w1": "نفرت", "ind": 3, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "نقشه", "w1": "ساختمان", "ind": 2, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 4 }, { "question": { "w0": "صبح", "w1": "صبحانه", "ind": 3, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, "options": [{ "w0": "سد", "w1": "شکستگی", "ind": 3, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "جوانی", "w1": "کار", "ind": 10, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 5 }, { "question": { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "آرد", "w1": "گچ", "ind": 3, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "مستعار", "w1": "نام", "ind": 0, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }], "correct_option": 3 }, { "question": { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "قلب", "w1": "تپش", "ind": 8, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "عکاس", "w1": "عکس", "ind": 10, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 4 }, { "question": { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 2 }, { "question": { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "مداد", "w1": "موشک", "ind": 1, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 5 }, { "question": { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "واکسن", "w1": "آبله", "ind": 0, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "عمه", "w1": "عمو", "ind": 3, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "دستورپخت", "w1": "غذا", "ind": 3, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 2 }, { "question": { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "تدفین", "w1": "تشییع", "ind": 2, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 5 }, { "question": { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, "options": [{ "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 4 }, { "question": { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "زایر", "w1": "زیارت", "ind": 0, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }, { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "اسب", "w1": "اصطبل", "ind": 3, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 2 }, { "question": { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "دستگیری", "w1": "مجرم", "ind": 0, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "خیاط", "w1": "پارچه", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "رودخانه", "w1": "اروند", "ind": 2, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "چوب", "w1": "شومینه", "ind": 5, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 4 }, { "question": { "w0": "نویسنده", "w1": "کتاب", "ind": 2, "cat_name": "Part- Whole Creature:Possession robin:nest " }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 2 }, { "question": { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, "options": [{ "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "نجار", "w1": "اره", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 3 }, { "question": { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, "options": [{ "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "بچه", "w1": "بزرگسال", "ind": 6, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 1 }, { "question": { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "گاز", "w1": "بخاری", "ind": 4, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "شاعر", "w1": "شعر", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }], "correct_option": 4 }, { "question": { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, "options": [{ "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "مونث", "w1": "مذکر", "ind": 10, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 1 }, { "question": { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "کره", "w1": "اسب", "ind": 2, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "ماشین", "w1": "پراید", "ind": 6, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "صندلی", "w1": "پایه", "ind": 3, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 4 }, { "question": { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 1 }, { "question": { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }], "correct_option": 4 }, { "question": { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "پارکت", "w1": "چوب", "ind": 2, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 5 }, { "question": { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "خوشحال", "w1": "ناراحت", "ind": 0, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "درون", "w1": "بیرون", "ind": 6, "cat_name": "Contrast Directional front:back " }], "correct_option": 4 }, { "question": { "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "ماشین", "w1": "جابجایی", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "برق", "w1": "لامپ", "ind": 0, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 5 }, { "question": { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "پستاندار", "w1": "انسان", "ind": 1, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "ترس", "w1": "جیغ", "ind": 4, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 4 }, { "question": { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "منزجر", "w1": "عصبانی", "ind": 2, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "متضرر", "w1": "ضرر", "ind": 2, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 4 }, { "question": { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "درخت", "w1": "تنه", "ind": 4, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "عروسی", "w1": "داماد", "ind": 0, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 5 }, { "question": { "w0": "دریافت", "w1": "گرفتن", "ind": 2, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "آسان", "w1": "ساده", "ind": 4, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }], "correct_option": 1 }, { "question": { "w0": "پر", "w1": "لبریز", "ind": 4, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, "options": [{ "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "برداشتن", "w1": "دزدیدن", "ind": 3, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "نگرانی", "w1": "وسواس", "ind": 1, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 4 }, { "question": { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "ساحل", "w1": "دریا", "ind": 0, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "کپی", "w1": "تقلب", "ind": 0, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 5 }, { "question": { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 1 }, { "question": { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, { "w0": "گرگ", "w1": "لانه", "ind": 3, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "تمیزی", "w1": "آلودگی", "ind": 1, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "خنده", "w1": "شادی", "ind": 3, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "استتار", "w1": "مکان", "ind": 1, "cat_name": "REFERENCE Concealment code:meaning " }], "correct_option": 1 }, { "question": { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "خوابالودگی", "w1": "خوابیدن", "ind": 3, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 3 }, { "question": { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "ترور", "w1": "کشتن", "ind": 6, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "کعبه", "w1": "طواف", "ind": 4, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 4 }, { "question": { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "تعقیب", "w1": "دستگیری", "ind": 1, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "ماده", "w1": "اتم", "ind": 4, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "پرنده", "w1": "آشیانه", "ind": 0, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 3 }, { "question": { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "پرسیدن", "w1": "سوال", "ind": 6, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "دست", "w1": "شانه", "ind": 0, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 4 }, { "question": { "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 3 }, { "question": { "w0": "هواپیما", "w1": "پرواز", "ind": 4, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, "options": [{ "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "دویدن", "w1": "فرار", "ind": 3, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 4 }, { "question": { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, "options": [{ "w0": "پیر", "w1": "جوان", "ind": 2, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "فیزیک", "w1": "جهان", "ind": 3, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ماهی", "w1": "شنا", "ind": 4, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "کیلوگرم", "w1": "گرم", "ind": 3, "cat_name": "Part- Whole Mass:Portion water:drop " }], "correct_option": 5 }, { "question": { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, "options": [{ "w0": "قنادی", "w1": "شیرینی", "ind": 3, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "انگشتر", "w1": "انشکت", "ind": 4, "cat_name": "Space-Time Attachment belt:waist " }], "correct_option": 5 }, { "question": { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "زیست", "w1": "سلول", "ind": 5, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "دهان", "w1": "خوردن", "ind": 10, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }], "correct_option": 5 }, { "question": { "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, "options": [{ "w0": "میخ", "w1": "چکش", "ind": 3, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "پروژه", "w1": "تحویل", "ind": 1, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }], "correct_option": 3 }, { "question": { "w0": "تفنگ", "w1": "شلیک", "ind": 0, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, "options": [{ "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 3 }, { "question": { "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "دستور", "w1": "جلسه", "ind": 0, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 3 }, { "question": { "w0": "شیشه", "w1": "شکستنی", "ind": 1, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "ریاضیات", "w1": "اعداد", "ind": 1, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "کوه", "w1": "اورست", "ind": 0, "cat_name": "Class Inclusion Class Individual mountain:Everest " }], "correct_option": 1 }, { "question": { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "کوتاه", "w1": "بلند", "ind": 5, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "پیچ", "w1": "پیچگوشتی", "ind": 4, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "سر", "w1": "بدن", "ind": 1, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "ساحره", "w1": "ساحر", "ind": 4, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 3 }, { "question": { "w0": "مضطرب", "w1": "آرام", "ind": 3, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, "options": [{ "w0": "ارث", "w1": "ورثه", "ind": 0, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "معلول", "w1": "دویدن", "ind": 2, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "نگران", "w1": "آسوده", "ind": 2, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 5 }, { "question": { "w0": "چپ", "w1": "راست", "ind": 2, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "نوجوانی", "w1": "تفریح", "ind": 9, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 1 }, { "question": { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 5 }, { "question": { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "استتار", "w1": "پنهان", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "خوک", "w1": "کثیف", "ind": 7, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "حشره", "w1": "پشه", "ind": 2, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, { "w0": "داد", "w1": "خشم", "ind": 3, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "رفتن", "w1": "برگشتن", "ind": 0, "cat_name": "Contrast Directional front:back " }], "correct_option": 4 }, { "question": { "w0": "تروریست", "w1": "مرگ", "ind": 4, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, "options": [{ "w0": "شلیک", "w1": "گلوله", "ind": 2, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }], "correct_option": 2 }, { "question": { "w0": "زینت", "w1": "انگشتر", "ind": 1, "cat_name": "Class Inclusion Functional weapon:knife " }, "options": [{ "w0": "زیرانداز", "w1": "فرش", "ind": 3, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "صحبت", "w1": "لکنت", "ind": 1, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "کور", "w1": "دیدن", "ind": 1, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "میلیونر", "w1": "پول", "ind": 1, "cat_name": "Part- Whole Creature:Possession robin:nest " }], "correct_option": 1 }, { "question": { "w0": "سم", "w1": "آفت", "ind": 1, "cat_name": "CAUSE-PURPOSE Prevention" }, "options": [{ "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }], "correct_option": 4 }, { "question": { "w0": "نمک", "w1": "سودیوم", "ind": 1, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "احمق", "w1": "فهمیدن", "ind": 4, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "لنز", "w1": "شیشه", "ind": 0, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 5 }, { "question": { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }, { "w0": "جنگل", "w1": "درخت", "ind": 0, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "نجار", "w1": "اره", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "مهربان", "w1": "دعوا", "ind": 5, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 2 }, { "question": { "w0": "آژیر", "w1": "خطر", "ind": 0, "cat_name": "REFERENCE Sign:Significant siren:danger " }, "options": [{ "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }], "correct_option": 5 }, { "question": { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "خرگوش", "w1": "سریع", "ind": 6, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "هوا", "w1": "نیتروژن", "ind": 6, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, { "w0": "پیادهرو", "w1": "خیابان", "ind": 1, "cat_name": "Space-Time Contiguitycoast:ocean" }, { "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }], "correct_option": 3 }, { "question": { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, "options": [{ "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "جمعیت", "w1": "فرد", "ind": 2, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "رودخانه", "w1": "بستر", "ind": 2, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }], "correct_option": 5 }, { "question": { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "خرید", "w1": "فروش", "ind": 0, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "جیغ", "w1": "ترس", "ind": 0, "cat_name": "REFERENCE Expression smile:friendliness " }], "correct_option": 2 }, { "question": { "w0": "بدن", "w1": "دست", "ind": 5, "cat_name": "Part- Whole Object:Component car:engine " }, "options": [{ "w0": "دوچرخه", "w1": "چرخ", "ind": 1, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "سالم", "w1": "معلول", "ind": 3, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نقاش", "w1": "بوم", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 1 }, { "question": { "w0": "خزنده", "w1": "مار", "ind": 4, "cat_name": "Class Inclusion Taxonomic emotion:rage " }, "options": [{ "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "معلم", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "احساسات", "w1": "عصبانیت", "ind": 0, "cat_name": "Class Inclusion Taxonomic emotion:rage " }], "correct_option": 5 }, { "question": { "w0": "کودکی", "w1": "جوانی", "ind": 2, "cat_name": "Space-Time Sequencecoda:symphony" }, "options": [{ "w0": "کبریت", "w1": "شمع", "ind": 3, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "جوانی", "w1": "پیری", "ind": 3, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "گوساله", "w1": "گاو", "ind": 3, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 3 }, { "question": { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "سلاح", "w1": "چاقو", "ind": 0, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "شرق", "w1": "غرب", "ind": 4, "cat_name": "Contrast Directional front:back " }, { "w0": "شاگرد", "w1": "استاد", "ind": 0, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 5 }, { "question": { "w0": "ناوگان", "w1": "قایق", "ind": 1, "cat_name": "Part- Whole Collection:Member forest:tree " }, "options": [{ "w0": "زندانبان", "w1": "زندانی", "ind": 6, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "تشنگی", "w1": "نوشیدن", "ind": 1, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "گازوییل", "w1": "کامیون", "ind": 2, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }], "correct_option": 5 }, { "question": { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "انگشت", "w1": "دست", "ind": 3, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "ویلن", "w1": "آرشه", "ind": 2, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "عزا", "w1": "متوفی", "ind": 1, "cat_name": "Part- Whole Event:Feature wedding:bride " }], "correct_option": 3 }, { "question": { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, "options": [{ "w0": "قاضی", "w1": "حکم", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "ماشین", "w1": "موتور", "ind": 0, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "حمله", "w1": "دفاع", "ind": 1, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }], "correct_option": 5 }, { "question": { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "زن", "w1": "مرد", "ind": 6, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "نجار", "w1": "چوب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "بیمار", "w1": "بدحال", "ind": 5, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }], "correct_option": 4 }, { "question": { "w0": "بودجه", "w1": "پول", "ind": 6, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "کودکی", "w1": "بازی", "ind": 8, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "خرید", "w1": "پرداخت", "ind": 0, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "شیمی", "w1": "ماده", "ind": 4, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "طرح", "w1": "درس", "ind": 4, "cat_name": "REFERENCE Plan agenda:meeting " }], "correct_option": 5 }, { "question": { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, "options": [{ "w0": "جلو", "w1": "عقب", "ind": 1, "cat_name": "Contrast Directional front:back " }, { "w0": "دانشجو", "w1": "فارغالتحصیلی", "ind": 5, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "سوراخ", "w1": "دریل", "ind": 5, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }], "correct_option": 1 }, { "question": { "w0": "چاق", "w1": "لاغر", "ind": 3, "cat_name": "Contrast Contrary thin:fat " }, "options": [{ "w0": "مردانه", "w1": "زنانه", "ind": 2, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "شوت", "w1": "توپ", "ind": 4, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, { "w0": "نرم", "w1": "سفت", "ind": 4, "cat_name": "Contrast Contrary thin:fat " }, { "w0": "حساس", "w1": "ناراحت", "ind": 3, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }], "correct_option": 3 }, { "question": { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "خستگی", "w1": "استراحت", "ind": 2, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "فروشگاه", "w1": "خرید", "ind": 1, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خجول", "w1": "معاشرت", "ind": 3, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }], "correct_option": 4 }, { "question": { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }, "options": [{ "w0": "عزاداری", "w1": "مداح", "ind": 2, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "بینا", "w1": "کور", "ind": 4, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "مدرسه", "w1": "یادگیری", "ind": 2, "cat_name": "Space-Time Location:Action/Activity school:learn " }], "correct_option": 1 }, { "question": { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, "options": [{ "w0": "سرباز", "w1": "جنگ", "ind": 1, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, { "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "تار", "w1": "زخمه", "ind": 0, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }], "correct_option": 5 }, { "question": { "w0": "مرغ", "w1": "شیر", "ind": 3, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "شهر", "w1": "تهران", "ind": 4, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "دانشجو", "w1": "کتاب", "ind": 7, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "اسب", "w1": "بال", "ind": 1, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "فرمان", "w1": "اطاعت", "ind": 5, "cat_name": "Contrast Reverse buy:sell " }], "correct_option": 4 }, { "question": { "w0": "چرتکه", "w1": "محاسبه", "ind": 1, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, "options": [{ "w0": "خویش", "w1": "شخم", "ind": 2, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "ماده", "w1": "نر", "ind": 9, "cat_name": "Similar Coordinates son:daughter " }, { "w0": "آب", "w1": "قطره", "ind": 0, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "زایر", "w1": "زیارت", "ind": 0, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }], "correct_option": 1 }, { "question": { "w0": "گدا", "w1": "بی پول", "ind": 0, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, "options": [{ "w0": "نقاش", "w1": "نقاشی", "ind": 9, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "کیف", "w1": "دسته", "ind": 2, "cat_name": "Part- Whole Object:Component car:engine " }, { "w0": "رییس", "w1": "کارمند", "ind": 4, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "مدال", "w1": "قهرمان", "ind": 2, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "سرباز", "w1": "زخمی", "ind": 4, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }], "correct_option": 5 }, { "question": { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, "options": [{ "w0": "اتفاقات", "w1": "اخبار", "ind": 2, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "جزیره", "w1": "ساحل", "ind": 4, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "سخنرانی", "w1": "مخاطب", "ind": 1, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "ابر", "w1": "باران", "ind": 1, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 1 }, { "question": { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "ذلت", "w1": "افتخار", "ind": 3, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "امتحان", "w1": "برگه", "ind": 5, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "فر", "w1": "کیک", "ind": 4, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "بچه", "w1": "بزرگسال", "ind": 6, "cat_name": "Similar Conversion apprentice:master " }], "correct_option": 3 }, { "question": { "w0": "کوه", "w1": "دامنه", "ind": 1, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "شب", "w1": "شام", "ind": 4, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }, { "w0": "درمان", "w1": "بیمار", "ind": 3, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "دختر", "w1": "پسر", "ind": 1, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 2 }, { "question": { "w0": "آشپز", "w1": "ماهیتابه", "ind": 5, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, "options": [{ "w0": "آسیابان", "w1": "گندم", "ind": 3, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "تلویزیون", "w1": "مانیتور", "ind": 2, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "خاطره", "w1": "خاطرات", "ind": 1, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "راننده", "w1": "ماشین", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }], "correct_option": 4 }, { "question": { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "متوجه", "w1": "توجه", "ind": 3, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "نانوایی", "w1": "نان", "ind": 0, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "راه رفتن", "w1": "شلیدن", "ind": 2, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }], "correct_option": 1 }, { "question": { "w0": "آزادی", "w1": "بندگی", "ind": 4, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, "options": [{ "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "جنگ", "w1": "آسودگی", "ind": 2, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "آشپزی", "w1": "ماهیتابه", "ind": 2, "cat_name": "Class Inclusion Functional weapon:knife " }, { "w0": "قبل", "w1": "بعد", "ind": 7, "cat_name": "Contrast Directional front:back " }], "correct_option": 3 }, { "question": { "w0": "گناهکار", "w1": "بیگناه", "ind": 4, "cat_name": "Contrast Contradictory masculinity:femininity " }, "options": [{ "w0": "رونده", "w1": "سکون", "ind": 3, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "مداد", "w1": "نوشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Intended Action gun:shoot " }, { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "چاه", "w1": "سوراخ", "ind": 4, "cat_name": "Similar Attribute Similarity painting:movie " }, { "w0": "مرده", "w1": "زنده", "ind": 0, "cat_name": "Contrast Contradictory masculinity:femininity " }], "correct_option": 5 }, { "question": { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, "options": [{ "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "لباس", "w1": "پیراهن", "ind": 0, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "مقدمه", "w1": "سخنرانی", "ind": 0, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "مهماندار", "w1": "مسافر", "ind": 5, "cat_name": "CASE RELATIONS Agent:Recipient doctor:patient " }, { "w0": "لولهکش", "w1": "لوله", "ind": 1, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }], "correct_option": 1 }, { "question": { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }, "options": [{ "w0": "آهنگر", "w1": "پتک", "ind": 11, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "سریع", "w1": "تند", "ind": 1, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "منطق", "w1": "مغالطه", "ind": 0, "cat_name": "Contrast Defective fallacy:logic " }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "عید", "w1": "بازدید", "ind": 7, "cat_name": "Space-Time Time: Action/Activitysummer:harvest" }], "correct_option": 2 }, { "question": { "w0": "طرح", "w1": "درس", "ind": 4, "cat_name": "REFERENCE Plan agenda:meeting " }, "options": [{ "w0": "فهرست", "w1": "کتاب", "ind": 1, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "شتاب", "w1": "سرعت", "ind": 2, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "روانشناسی", "w1": "روان", "ind": 0, "cat_name": "REFERENCE Knowledge psychology:mind " }, { "w0": "فلز", "w1": "براده", "ind": 2, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 1 }, { "question": { "w0": "سازنده", "w1": "خرابی", "ind": 1, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "طرح", "w1": "درس", "ind": 4, "cat_name": "REFERENCE Plan agenda:meeting " }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }], "correct_option": 5 }, { "question": { "w0": "دانش", "w1": "ناآگاهی", "ind": 2, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, "options": [{ "w0": "آسیابان", "w1": "آرد", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "فقیر", "w1": "بیپولی", "ind": 0, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }, { "w0": "نظم", "w1": "شلوغی", "ind": 0, "cat_name": "NONATTRIBUTE Item:Nonattribute (noun:adjective) harmony:discordant " }, { "w0": "ساختمان", "w1": "نخاله", "ind": 5, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }], "correct_option": 4 }, { "question": { "w0": "کتاب", "w1": "قفسه", "ind": 4, "cat_name": "Space-Time Item:Location arsenal:weapon " }, "options": [{ "w0": "تمیز", "w1": "پاستوریزه", "ind": 3, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "گریه", "w1": "غم", "ind": 4, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "گاو", "w1": "طویله", "ind": 2, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "شیر", "w1": "شکار", "ind": 2, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 3 }, { "question": { "w0": "سیم", "w1": "مس", "ind": 3, "cat_name": "Part- Whole Object:Stuff salt:sodium " }, "options": [{ "w0": "یاد", "w1": "فراموشی", "ind": 3, "cat_name": "Contrast Contradictory masculinity:femininity " }, { "w0": "نویسنده", "w1": "کاغذ", "ind": 6, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "دانش", "w1": "کتاب", "ind": 3, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "برق", "w1": "الکترون", "ind": 4, "cat_name": "Part- Whole Object:Stuff salt:sodium " }], "correct_option": 5 }, { "question": { "w0": "متوهم", "w1": "توهم", "ind": 1, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, "options": [{ "w0": "دوست", "w1": "قهر", "ind": 6, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "گرسنگی", "w1": "خوردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Cause:Compensatory Action hunger:eat " }, { "w0": "متغیر", "w1": "تغییر", "ind": 0, "cat_name": "Attribute Agent/Object Attribute:Typical Action (adjective:verb) mutable:change " }, { "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "نوزادی", "w1": "پوشک", "ind": 1, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }], "correct_option": 3 }, { "question": { "w0": "مسابقه", "w1": "پایان", "ind": 4, "cat_name": "Part- Whole Activity:Stage shopping:buying " }, "options": [{ "w0": "لال", "w1": "صحبت", "ind": 0, "cat_name": "NONATTRIBUTE Object:Atypical Action (noun:verb) recluse:socialize " }, { "w0": "لاکپشت", "w1": "کند", "ind": 5, "cat_name": "Attribute Item:Attribute (noun:adjective) soldier:wounded " }, { "w0": "چهره", "w1": "پرتره", "ind": 0, "cat_name": "REFERENCE Representationperson:portrait" }, { "w0": "ماسک", "w1": "واگیر", "ind": 4, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "کنفرانس", "w1": "افتتاحیه", "ind": 3, "cat_name": "Part- Whole Activity:Stage shopping:buying " }], "correct_option": 5 }, { "question": { "w0": "ماشین", "w1": "حرکت", "ind": 5, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }, "options": [{ "w0": "دیوان", "w1": "شعر", "ind": 3, "cat_name": "Part- Whole Collection:Member forest:tree " }, { "w0": "بالا", "w1": "پایین", "ind": 3, "cat_name": "Contrast Directional front:back " }, { "w0": "نهال", "w1": "درخت", "ind": 5, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "نجاری", "w1": "میز", "ind": 1, "cat_name": "Space-Time Location:Process/Product bakery:bread " }, { "w0": "شیشه", "w1": "شکستن", "ind": 0, "cat_name": "Attribute Object:Typical Action (noun:verb) glass:break " }], "correct_option": 5 }, { "question": { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, "options": [{ "w0": "مداوا", "w1": "مصدوم", "ind": 2, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "کشور", "w1": "ایران", "ind": 1, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "ظروف", "w1": "بشقاب", "ind": 1, "cat_name": "Class Inclusion Singular Collective clothing:shirt " }, { "w0": "لبخند", "w1": "خوشحالی", "ind": 2, "cat_name": "REFERENCE Expression smile:friendliness " }, { "w0": "ملتهب", "w1": "دعوا", "ind": 1, "cat_name": "Attribute Agent Attribute:State (adjective:noun) contentious:quarrels " }], "correct_option": 1 }, { "question": { "w0": "انگور", "w1": "شراب", "ind": 4, "cat_name": "Similar Conversion apprentice:master " }, "options": [{ "w0": "زایر", "w1": "زیارت", "ind": 0, "cat_name": "CAUSE-PURPOSE Agent:Goal" }, { "w0": "جوانه", "w1": "گیاه", "ind": 7, "cat_name": "Similar Conversion apprentice:master " }, { "w0": "رمز", "w1": "معنا", "ind": 3, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "استقلال", "w1": "وابستگی", "ind": 5, "cat_name": "NONATTRIBUTE Object:Nonstate (noun:noun) famine:plenitude " }, { "w0": "عدم", "w1": "ماده", "ind": 0, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }], "correct_option": 2 }, { "question": { "w0": "اوج", "w1": "ارتفاع", "ind": 0, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, { "w0": "انتقاد", "w1": "فحاشی", "ind": 5, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ماسک", "w1": "صورت", "ind": 2, "cat_name": "REFERENCE Concealment code:meaning " }, { "w0": "کیلومتر", "w1": "متر", "ind": 1, "cat_name": "Part- Whole Mass:Portion water:drop " }, { "w0": "ارسال", "w1": "فرستادن", "ind": 3, "cat_name": "Similar Synonymity buy:purchase " }], "correct_option": 1 }, { "question": { "w0": "خاله", "w1": "دایی", "ind": 2, "cat_name": "Similar Coordinates son:daughter " }, "options": [{ "w0": "پیشدرآمد", "w1": "آواز", "ind": 1, "cat_name": "Space-Time Sequencecoda:symphony" }, { "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "چوب", "w1": "تراشه", "ind": 1, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "آموزش", "w1": "دانشاموز", "ind": 1, "cat_name": "CASE RELATIONS Action:Recipient teach:student " }, { "w0": "عیال", "w1": "همسر", "ind": 7, "cat_name": "Similar Coordinates son:daughter " }], "correct_option": 5 }, { "question": { "w0": "رفتن", "w1": "فرار", "ind": 4, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, "options": [{ "w0": "دیدن", "w1": "هیزی", "ind": 2, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "بازنشستگی", "w1": "مستمری", "ind": 0, "cat_name": "Space-Time Time:Associated Itemretirement:pension" }, { "w0": "معامله", "w1": "سودا", "ind": 0, "cat_name": "Similar Synonymity buy:purchase " }, { "w0": "مرغ", "w1": "مرغدانی", "ind": 1, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "سد", "w1": "سیل", "ind": 3, "cat_name": "CAUSE-PURPOSE Prevention" }], "correct_option": 1 }, { "question": { "w0": "مسجد", "w1": "نماز", "ind": 3, "cat_name": "Space-Time Location:Action/Activity school:learn " }, "options": [{ "w0": "انتقاد", "w1": "سرکوفت", "ind": 2, "cat_name": "Similar Dimensional Excessive concerned:obsessed " }, { "w0": "سیم", "w1": "سیمچین", "ind": 1, "cat_name": "CASE RELATIONS Object:Instrument violin:bow " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "شمال", "w1": "جنوب", "ind": 5, "cat_name": "Contrast Directional front:back " }], "correct_option": 3 }, { "question": { "w0": "رود", "w1": "کناره", "ind": 3, "cat_name": "Space-Time Contiguitycoast:ocean" }, "options": [{ "w0": "شنیدن", "w1": "فالگوش", "ind": 1, "cat_name": "Similar Dimensional Naughty – copy:plagiarize " }, { "w0": "ردپا", "w1": "گذر", "ind": 2, "cat_name": "REFERENCE Sign:Significant siren:danger " }, { "w0": "آب", "w1": "توربین", "ind": 6, "cat_name": "CAUSE-PURPOSE Enabling Agent:Object" }, { "w0": "مو", "w1": "سر", "ind": 2, "cat_name": "Space-Time Attachment belt:waist " }, { "w0": "کوه", "w1": "دامنه", "ind": 2, "cat_name": "Space-Time Contiguitycoast:ocean" }], "correct_option": 5 }, { "question": { "w0": "آموزش", "w1": "یادگیری", "ind": 5, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }, "options": [{ "w0": "خیاط", "w1": "سوزن", "ind": 4, "cat_name": "CASE RELATIONS Agent:Object - Associated Objectplumber:pipe" }, { "w0": "نانوا", "w1": "آرد", "ind": 0, "cat_name": "CASE RELATIONS Agent:Object - Raw Materialbaker:flour" }, { "w0": "آهنگساز", "w1": "آهنگ", "ind": 8, "cat_name": "CASE RELATIONS Agent:Object - Product tailor:suit " }, { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "دادگاه", "w1": "محاکمه", "ind": 4, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 5 }, { "question": { "w0": "اتاق", "w1": "گوشه", "ind": 0, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, "options": [{ "w0": "زد", "w1": "خورد", "ind": 6, "cat_name": "Contrast Reverse buy:sell " }, { "w0": "جاده", "w1": "شانه", "ind": 3, "cat_name": "Part- Whole Item:Topological Part mountain:foot " }, { "w0": "تفنگ", "w1": "کشتن", "ind": 3, "cat_name": "CAUSE-PURPOSE Instrument:Goal" }, { "w0": "ترد", "w1": "منعطف", "ind": 0, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }, { "w0": "مسابقه", "w1": "بردن", "ind": 0, "cat_name": "CAUSE-PURPOSE Action/Activity:Goal" }], "correct_option": 2 }, { "question": { "w0": "پاینده", "w1": "مرگ", "ind": 0, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, "options": [{ "w0": "صدقه", "w1": "بلا", "ind": 2, "cat_name": "CAUSE-PURPOSE Prevention" }, { "w0": "شکستنی", "w1": "شکسته", "ind": 0, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "باشگاه", "w1": "ورزش", "ind": 0, "cat_name": "Space-Time Location:Action/Activity school:learn " }, { "w0": "خنگ", "w1": "خلاقیت", "ind": 2, "cat_name": "NONATTRIBUTE Attribute:Nonstate (adjective:noun) immortal:death " }, { "w0": "سست", "w1": "محکم", "ind": 1, "cat_name": "NONATTRIBUTE Object Attribute:Noncondition (adjective:adjective) exemplary:criticized " }], "correct_option": 4 }, { "question": { "w0": "گره", "w1": "طناب", "ind": 0, "cat_name": "CASE RELATIONS Action:Object tie:knot " }, "options": [{ "w0": "استان", "w1": "خوزستان", "ind": 3, "cat_name": "Class Inclusion Class Individual mountain:Everest " }, { "w0": "ماشین", "w1": "بال", "ind": 2, "cat_name": "Part- Whole Item:Distinctive Nonpart horse:wings " }, { "w0": "مرتد", "w1": "عقیده", "ind": 0, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "منعطف", "w1": "خمیده", "ind": 1, "cat_name": "Attribute Object Attribute:Condition (adjective:adjective) brittle:broken " }, { "w0": "حل", "w1": "مساله", "ind": 5, "cat_name": "CASE RELATIONS Action:Object tie:knot " }], "correct_option": 5 }, { "question": { "w0": "حجم", "w1": "صدا", "ind": 3, "cat_name": "Similar Changecrescendo:sound" }, "options": [{ "w0": "زاغه", "w1": "مهمات", "ind": 0, "cat_name": "Space-Time Item:Location arsenal:weapon " }, { "w0": "مدرک", "w1": "دانشجو", "ind": 3, "cat_name": "CASE RELATIONS Object:Recipient speech:audience " }, { "w0": "مهمانی", "w1": "مهمان", "ind": 3, "cat_name": "Part- Whole Event:Feature wedding:bride " }, { "w0": "ماشین", "w1": "قراضه", "ind": 4, "cat_name": "Part- Whole Item:Ex-part/Ex-possession apostate:belief " }, { "w0": "تلون", "w1": "رنگ", "ind": 1, "cat_name": "Similar Changecrescendo:sound" }], "correct_option": 5 }]
function maximize_art(fileId) { var dataObj = {fileId:fileId}; $('#visible-container').addClass('filterBlur'); $('#maximize').load('/modules/ajax/model_modal.php',dataObj); } $('#maximize').on('hidden.bs.modal', function () { $('#visible-container').removeClass('filterBlur'); });
import Blocks from './Blocks/index' import Settings from './Settings' export { Blocks, Settings }
module.exports={ MongoURI:'mongodb+srv://jefferson:vascodagama@cluster0-ditvq.mongodb.net/test?retryWrites=true' }
var express = require("express"); var app = express(); app.use(express.static(__dirname)); app.use(express.static(__dirname + "/assets")); app.get('/', function(request, response){ response.sendFile("./index.html"); }) app.get('/app', function(request, response){ response.sendFile("./app.html"); }) app.listen(3000, function(){ console.log("Your server has started on port number 3000") console.log(__dirname) })
export const buildObjectFromArrays = (keys, values) => { let newObject = {}; keys.forEach((key, index) => { newObject[key] = values[index] }) return newObject; } export const pluck = (array, key) => ( array.map(element => element[key]) ) export const sample = (array, size) => { const result = [] const arrayCopy = new Array(...array); for(let i = 1; i <= size; i += 1) { if (arrayCopy.length === 0) break let index = Math.floor(Math.random() * arrayCopy.length) result.push(arrayCopy.splice(index, 1)[0]) } return result; } export default { buildObjectFromArrays, pluck, sample };
module.exports.require = { http: require('http'), moment: require('moment'), pubKey: require('../api/api.js').pubKey, privKey: require('../api/api.js').privKey, date: new Date() };
import React, { useContext } from "react"; import { StateContext } from "./contexts/StateContext"; function Editor() { const { setText, setWordsWritten, darkMode } = useContext(StateContext); const handleInputChange = (e) => { const words = e.target.innerText; // save written words to state setText(words); // count how many words were written // only letters and numbers, separated by space, count as words // strip punctuation and symbols, filter out empty strings const processedWords = words.replace(/[^\w\s]|_/g, "").split(/[\s\n]/).filter(elem => elem); setWordsWritten(processedWords.length); }; const preventTab = (e) => { if (e.keyCode === 9) { e.preventDefault(); } } return ( <div className={darkMode ? "editor-dark" : "editor-light"} contentEditable="true" onInput={handleInputChange} onKeyDown={preventTab} ></div> ); } export default Editor;
import { combineReducers } from "redux"; import { signIn } from "./signIn.reducer"; import { validation } from "./validation.reducer"; import { signUp } from "./signUp.reducer"; import { verification } from "./verification.reducer"; export default combineReducers({ signUp, signIn, validation, verification });
/** * 全局属性和方法 */ $.extend(true, window.gb || (window.gb = {}), { caches: { }, table: { /** * 格式化 是否循环 */ fmtIsCycle: function(value, row, index) { if (value.className == "YES") { return '<div class="handler isCycle switch-close yes" />'; } else if (value.className == "NO") { return '<div class="handler isCycle switch-open no" />'; } } }, init: function() { //子页面框架初始化 this.subframe(); //初始化表格 $("#data-table").bootstrapTable(); //缓存表格操作列html this.table.cacheOps(); //初始化模板 this.vm = new Vue({ el: '#tmpls', data: { idGenerator: {} } }); }, initialVal: function(initVal){ var $form = $(this).closest("form"), curVal = $form.find("input[name=currentVal]").val(); if(!curVal) return "请先填写当前值"; if(initVal.length > curVal.length || (initVal.length == curVal.length && initVal > curVal)) return "初始值不能大于当前值"; return true; }, curVal: function(curVal) { var $form = $(this).closest("form"), initVal = $form.find("input[name=initialVal]").val(), oldCurVal = $form.find(".oldCurVal").val(), maxVal = $form.find("input[name=maxVal]").val(); if(!initVal) return "请先填写初始值"; if(curVal.length < initVal.length || (curVal.length == initVal.length && curVal < initVal)) return "当前值不能小于初始值"; if(curVal.length < oldCurVal.length || (curVal.length == oldCurVal.length && curVal < oldCurVal)) return "当前值不能小于" + oldCurVal; if(maxVal && (curVal.length > maxVal.length || (curVal.length == maxVal.length && curVal > maxVal))) return "当前值不能大于最大值"; return true; }, maxVal: function(maxVal) { var $form = $(this).closest("form"), curVal = $form.find("input[name=currentVal]").val(); if(!curVal) return "请先填写当前值"; if(maxVal.length < curVal.length || (maxVal.length == curVal.length && maxVal < curVal)) return "最大值不能小于当前值"; return true; } }); $(function(){ //初始化页面 gb.init(); //启用、禁用 功能 $("#toolbar, #data-table").UI_switch({ srcSelector: ".handler",//触发事件的对象 scopeSelector: "#data-table",//操作的dom范围 targetClass: "isCycle", //操作成功后修改的目标对象 ajaxKey: "id", url: "/idGenerator/updateIsCycle.json", change: { "switch-open": { confirmMsg : "启用循环?", failMsg : "启用循环失败!", data: {isCycle: "YES"} }, "switch-close": { confirmMsg : "禁用循环?", failMsg : "禁用循环失败!", data: {isCycle: "NO"} } } }); $("#data-table").on("click", ".loadBtn", function() { var $btn = $(this); $.post("/idGenerator/load.json",{id: $btn.data("id")}, function(data) { gb.vm.idGenerator = data.data; layer.page1(gb.title($btn), $('#loadDialogIdGenerator')); }); }).on("click", ".updBtn", function() { var $btn = $(this); $.post("/idGenerator/load.json",{id: $btn.data("id")}, function(data) { gb.vm.idGenerator = data.data; gb.show(gb.title($btn), $('#updDialog')); }); }); });
/*global window */ /*exported by_id */ /*jslint indent: 2, vars: true */ function by_id(x) { return window.document.getElementById(x); }
import React, { Component } from 'react'; import '../../src/App.css'; import Home from '../Page/home' import Brand from '../Page/brand' import { Link, Route, Redirect } from 'react-router-dom'; import Popup from "reactjs-popup"; import Fade from 'react-reveal/Fade'; import {connect} from 'react-redux' // import {id_user} from '../action' class HeaderAdmin extends Component{ state={ loginstate:<a id="sign-inadmin"><Link to="/admin"><i className="fa fa-sign-in"></i></Link></a> } componentWillMount(){ if(this.props.admin > 0){ this.setState({loginstate:<a id="sign-inadmin" href="/admin" ><i className="fa fa-sign-out" ></i></a>}) } } render() { const {redirect_home} = this.state if(redirect_home){ this.setState({redirect_home: false}); return( <Redirect to='/'/> ) } return ( <div> <Fade> <header id="header"> <div className="container"> <a href="/"><div id="logo" className="pull-left"> <img src="img/kipilogo.png" alt="" title="home" /> <h1><a href="/"></a></h1> </div></a> <nav id="nav-menu-container"> <ul className="nav-menu"> <li><Link to="/adminProduct">Product Details</Link></li> <li className="dropdown"><Link to="/adminCategory">Category Details</Link></li> <li><Link to="/adminInvoice">Invoices</Link></li> <nav className="nav social-nav pull-right d-none d-lg-inline"> {this.state.loginstate} </nav> </ul> </nav> </div> </header> </Fade> </div> ) } } const mapStateToProps = (state) =>{ const admin = state.admin; return{ admin } } export default connect (mapStateToProps) (HeaderAdmin)
/** * The shoe is a list of card decks. */ cards.Shoe = { decks: [], init: function() { } };
import firebase from 'firebase/app' import {firebaseConfig} from './config'
import { showMembers } from "./modules/members.js"; import { showJokes } from "./modules/jokes.js"; import { showCars } from "./modules/cars.js"; const rootContainer = document.querySelector("#root"); const parentContainer = document.createElement("div"); const container = document.createElement("div"); const membersBtn = document.querySelector("#showMembers"); const jokesBtn = document.querySelector("#showJokes"); const carsBtn = document.querySelector("#showCars"); rootContainer.append(parentContainer); const renderMembers = () => { showMembers(parentContainer, container); }; const renderJokes = () => { showJokes(parentContainer, container); }; const renderCars = () => { showCars(parentContainer, container); }; renderMembers(); membersBtn.addEventListener("click", renderMembers); jokesBtn.addEventListener("click", renderJokes); carsBtn.addEventListener("click", renderCars);
//Colors at http://www.color-hex.com/color-palette/17804 // http://www.0to255.com/ export const Colors = { text: { soft: 'rgba(0, 0, 0, 0.68)', toString: ()=>'rgba(0, 0, 0, 0.75)', strong: 'rgba(0, 0, 0, 0.88)', onDark: { soft: 'rgba(255, 255, 255, 0.68)', toString: ()=>'rgba(255, 255, 255, 0.78)', strong: 'rgba(255, 255, 255, 0.88)', } }, primary: { xLight: '#a16fbe', light: '#9157b4', toString: ()=>'#8048A1', dark: '#6d3e8a', xDark: '#5b3372', }, grey: { xLight: '#f6f6f6', light: '#e5e5e5', toString: ()=>'#d4d4d4', dark: '#c3c3c3', xDark: '#b2b2b2', }, green: { xLight: '#b7d47a', light: '#a9cb61', toString: ()=>'#9bc347', dark: '#89af39', xDark: '#759531', }, blue: { xLight: '#7dbad4', light: '#64adcb', toString: ()=>'#4a9fc3', dark: '#3b8db1', xDark: '#327997', }, yellow: { xLight: '#dfcf78', light: '#d9c55c', toString: ()=>'#d2bb41', dark: '#c3ab2e', xDark: '#a79328', }, red: { xLight: '#d77676', light: '#cf5c5c', toString: ()=>'#c74242', dark: '#b23535', xDark: '#982d2d', }, overlay: { light: 'rgba(255, 255, 255, 0.06)', dark: 'rgba(0, 0, 0, 0.06)', }, }; export const MemoryMatchStyles = [ { match:/#(\w+)/g, style: { // Hashtag color: Colors.red.light } } ]; export default { colors: Colors, memoryMatchStyles: MemoryMatchStyles, }
(function() { 'use strict'; angular.module('leaderboardController', []) .controller('leaderboardController', leaderboardController); leaderboardController.$inject = ['$timeout', '$http', 'ngToast', '$interval', '$filter']; function leaderboardController($timeout, $http, ngToast, $interval, $filter) { var self = this; self.$http = $http; self.loadAll = loadAll; self.init = init; self.init(); function init() { self.loadAll(); } function loadAll() { self.$http.get('/api/allPlayers').then(function(response) { self.allPlayers = response.data; console.log(self.allPlayers); }) } } })();
import React, { useEffect } from "react"; import { useDispatch, useSelector } from "react-redux"; import { Route } from "react-router-dom"; import "./App.css"; import { Header, Footer, Nav, Breadcrumbs } from "./components"; import { LastProducts, QuickLinks, Cart } from "./pages"; import Blog from "./pages/Blog/Blog"; import ProductFull from "./pages/ProductFull/ProductFull"; import Products from "./pages/Products/Products"; import { fetchBlogs, fetchLastBlogs } from "./store/actions/blogActions"; import {setCategory} from "./store/actions/filterAction" import { fetchCategories } from "./store/actions/generalAction"; function App() { const dispatch = useDispatch(); const categoriesList = useSelector(({general}) => general.categoriesList) useEffect(() => { dispatch(fetchCategories()) },[]) const onChangeCategory = (category) => { dispatch(setCategory(category)) }; return ( <div className="App"> <Header /> <Nav categoriesList={categoriesList} onChangeCategory={onChangeCategory} /> <Breadcrumbs /> {/* <Slider /> */} <div id="body"> <div className="container"> <Route path="/" exact> <LastProducts /> <QuickLinks /> </Route> <Route path='/products' component={Products} /> <Route path='/cart' component={Cart} /> <Route path='/product/:id' component={ProductFull} /> <Route path='/blog/:id' component={Blog} /> </div> </div> <Footer /> {/* <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <script>window.jQuery || document.write("<script src='js/jquery-1.11.1.min.js'>\x3C/script>")</script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> */} </div> ); } export default App;
$(document).ready(function () { $('[data-toggle="tooltip"]').tooltip() auto_suggest_predicate("#predicate") auto_suggest_class("#clss") sessionStorage.clear(); var i = 0 var filtersAdd = false var prologMap = new Map() var predColorMap = new Map() var colors = ['FFC0CB', '98FB98', '66CDAA', 'F5DEB3', 'E0FFFF', 'E6E6FA', 'D3D3D3', 'FFF8DC'] var distinct_added = false var varsFromSelect = [] /* auto-suggest: predicates */ function auto_suggest_predicate(selector) { if(selector == "#predicate") { var getPredicates = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), queryTokenizer: Bloodhound.tokenizers.whitespace, remote: { url: '/getPredicates?p=%p', wildcard: '%p', transform: function (results) { // Map the remote source JSON array to a JavaScript object array return $.map(results, function (res) { return { value: res } }) } } }) } else if(selector == ".predicate") { var hasPredicate = "" var getPredicates = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), queryTokenizer: Bloodhound.tokenizers.whitespace, remote: { url: '/getPredicates', prepare: function (query, settings) { hasPredicate = '&has=' + encodeURIComponent($("#predicate").val()); $(".predicate[placeholder]").not(this).each(function() { // the input copy the autosuggest plugin creates does not have this attribute, so we can filter with it (to avoid selecting the copy) if($(this).val() != query) hasPredicate += '&has=' + encodeURIComponent($(this).val()) // don't send the values of the current .predicate input, it's just string, it doesn't exis in the mappings }); settings.url += '?p=' + query; settings.url += hasPredicate; return settings; }, transform: function (results) { // Map the remote source JSON array to a JavaScript object array return $.map(results, function (res) { return { value: res }; }); } } }) } $(selector).typeahead(null, { name: 'predicates', display: 'value', source: getPredicates, templates: { empty: [ '<div class="empty-message">', 'unable to find any matching predicates', '</div>' ].join('\n'), suggestion: function (data) { return '<p><strong>' + data.value + '</strong></p>' } }, limit: 10 }) } /* auto-suggest: class */ function auto_suggest_class() { var getClasses = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), queryTokenizer: Bloodhound.tokenizers.whitespace, remote: { url: '/getClasses?c=%c', wildcard: '%c', transform: function (results) { // Map the remote source JSON array to a JavaScript object array return $.map(results, function (res) { return { value: res } }) } } }) $("#clss").typeahead(null, { name: 'classes', display: 'value', source: getClasses, templates: { empty: [ '<div class="empty-message">', 'unable to find any matching classes', '</div>' ].join('\n'), suggestion: function (data) { return '<p><strong>' + data.value + '</strong></p>' } }, limit: 10 }) } $(document).on("click", ".predicatesGroup", function () { $("#predicatesGroupModal").modal('toggle') var predVar = $(this).data("pred") if(predVar != "") { $("#subject").val(predVar) } }) $("#saveTriple").click(function () { var color = "" var pred_obj = new Map() var addToQuery = "" var sub = $("#subject").val() var getClss = $("#clss").val().split(" (") var clss = getClss[0] var clssBits = clss.split(":") var shortNamesapceClss = clssBits[0] var clssNs = getClss[1] var clssNamespace = clssNs.replace(")","") prologMap.set(shortNamesapceClss,clssNamespace) var firstPred = $("#predicate").val().split(" (") var firstPredicate = firstPred[0] var predicateBits = firstPredicate.split(":") var shortNamesapce = predicateBits[0] var ns = firstPred[1] var namespace = ns.replace(")","") prologMap.set(shortNamesapce,namespace) var firstObj = $("#object").val() if (predColorMap.has(sub)) color = predColorMap.get(sub) else { color = colors[Math.floor(Math.random() * colors.length)] predColorMap.set(sub,color) } pred_obj.set(firstPredicate,firstObj) addToQuery += "<div style='background-color: #" + color + "'>?" + sub + " a " + clss + "</a> . </div>" var o = "<a href='#' class='predicatesGroup' data-pred='" + firstObj + "'>?" + firstObj addToQuery += "<div style='background-color: #" + color + "'>?" + sub + " " + firstPredicate + " " + o + "</a> . </div>" $(".predicate").not(".tt-hint").each(function () { // not .tt-hint avoid hidden duplicate input (from typeahead library) var pred = $(this).val().split(" (") var predicate = pred[0] var shortNamesapce1 = predicate.split(":")[0] var obj = $(this).closest('td').next().find('.object').val() pred_obj.set(predicate,obj) valOrStar = obj.charAt(0) var namespace1 = pred[1].replace(")","") prologMap.set(shortNamesapce1,namespace1) var o = "<a href='#' class='predicatesGroup' data-pred='" + obj + "'>?" + obj addToQuery += "<div style='background-color: #" + color + "'>?" + sub + " " + predicate + " " + o + "</a> . </div>" }) // Fill sessionSotorage with the i'th triple var triple = {} triple.subject = sub triple.p_o = mapToJson(pred_obj) sessionStorage.setItem('triple_' + i, JSON.stringify(triple)) // Check the content of the sessionstorage var po = jsonToMap(JSON.parse(sessionStorage.getItem('triple_' + i)).p_o) po.forEach(function (value, key, mapObj) { console.log(key.toString() + "=" + value.toString()) }); i = i + 1 $("#select, #where").show() $("#prolog").html("") for (var [key, value] of prologMap) { var imprt = key + ": <" + value + ">" $("#prolog").append("PREFIX " + imprt.replace(">","&gt;").replace("<","&lt;") + "<br />").show() } $("#triple-patterns").append(addToQuery) $(".addedTriple").remove() $("#subject, #predicate, #object, #clss").val("") $("#predicatesGroupModal").modal('toggle') $("#addSelect").removeClass("disabled") $("#addFilters").removeClass("disabled") $("#addOrder").removeClass("disabled") $("#addAggregations").removeClass("disabled") $("#addTransform").removeClass("disabled") $("#addLimit").removeClass("disabled") $("#downloadQuery").removeClass("disabled") $("#deleteQuery").removeClass("disabled") }) $("#addSelect").click(function () { if (sessionStorage.length > 0) { var selectString = "" selectString += "<label><input type='checkbox' class='var' id='distinct' value='' /> DISTINCT </label></br>" for (var i=0; i < sessionStorage.length; i++) { var key = sessionStorage.key(i) var value = sessionStorage.getItem(key) var item_value = JSON.parse(value) var sub = item_value.subject var pred_obj = item_value.p_o var po = jsonToMap(pred_obj) selectString += "<label><input type='checkbox' class='var' value='" + sub + "' /> ?" + sub + "</label></br>" po.forEach(function (value, key, mapObj) { var pred = key.toString() var obj = value.toString() selectString += "<label><input type='checkbox' class='var' value='" + obj + "' /> ?" + obj + "</label></br>" }) } $("#selectableVars").html(selectString) $("#selectModal").modal('toggle') $("#selected-vars").html("") } }) $("#saveSelect").click(function () { var selectedVar = "" $('.var:checked').each(function() { var ths = $(this).val() selectedVar += "?" + ths + " " if (!varsFromSelect.includes(ths)) varsFromSelect.push(ths) }) $("#selected-vars").html(selectedVar) if ($("#distinct").is(":checked") && !distinct_added) { $("#selected-vars").prepend("DISTINCT ") distinct_added = true } $("#selectModal").modal('toggle') }) $("#addFilters").click(function () { if (sessionStorage.length > 0) { var filters = "" for (var i = 0; i < sessionStorage.length; i++) { var key = sessionStorage.key(i) var value = sessionStorage.getItem(key) var item_value = JSON.parse(value) // {"subject":"o","p_o":"[["http://purl.org/ontology/mo/producer","p"]]"} var pred_obj = item_value.p_o var po = jsonToMap(pred_obj) po.forEach(function (value, key, mapObj) { var obj = value.toString() var options = "<select id='" + obj + "' class='select_filter'> \ <option>=</option>\ <option>!=</option>\ <option>&lt;</option>\ <option>&gt;</option>\ <option>&le;</option>\ <option>&ge;</option>\ <option>RegEx</select></br>" filters += "<span>?" + obj + " " + options + " <input type='text' class='form-control noborder filter-vals' id='" + obj + "-filterVar' /></span><br/>" }) } $("#filters").html(filters) $("#filtersModal").modal('toggle') } }) $("#saveFilters").click(function () { var filters = "" $('.select_filter').each(function() { var selected_filter = $(this).find(":selected").text() var pred = $(this).attr("id") var filterVal = $("#" + pred + "-filterVar").val().trim() if (filterVal != "") filters += " && ?" + pred + " " + selected_filter + " " + filterVal }) $("#filter").show() if (!filtersAdd) { $("#filter-conditions").append(filters.substring(3)) filtersAdd = true } else $("#filter-conditions").append(filters) $("#filtersModal").modal('toggle') }) $("#addAggregations").click(function () { if (sessionStorage.length > 0) { var aggs = "" for (var i=0; i < sessionStorage.length; i++) { var key = sessionStorage.key(i) var value = sessionStorage.getItem(key) var item_value = JSON.parse(value) // {"subject":"o","p_o":"[["http://purl.org/ontology/mo/producer","p"]]"} var pred_obj = item_value.p_o var po = jsonToMap(pred_obj) po.forEach(function (value, key, mapObj) { var obj = value.toString() aggs += "<div style='border-bottom: solid 1px #d7dadd; padding: 5px;'>" aggs += "<input type='checkbox' class='var-agg' value='" + obj + "-tic' />" options = "<select id='" + obj + "-aggFnc'><option>MAX</option><option>MIN</option><option>SUM</option><option>COUNT</option><option>AVG</option></select>" aggs += "<span>" + options + " (?" + obj + ")</span><br/>" aggs += "GROUP BY " aggs += "<select id='" + obj + "-aggVar'>" po.forEach(function (value, key, mapObj) { var obj = value.toString() aggs += "<option id='" + obj + "-aggVar'>?" + obj + "</option>" }) aggs += "</select>" aggs += "</div>" }) } $("#aggs").html(aggs) $("#aggregationsModal").modal('toggle') $("#agg-fnc").html("") $("#agg-vars").html("") } }) $("#saveAggregations").click(function () { var varToAgg = "", aggFnc = "" $('.var-agg:checked').each(function() { var ths = $(this).val() var obj = ths.split("-")[0] var selectedAggFnc = $("select#" + obj + "-aggFnc option:selected").val() aggFnc += selectedAggFnc + "(?" + obj + ") " var selectedAggVar = $("select#" + obj + "-aggVar option:selected").val() if (!varToAgg.includes(selectedAggVar)) { varToAgg = varToAgg + " " + selectedAggVar + " " //if (!varsFromSelect.includes(selectedAggVar.substring(1))) // varsFromSelect.push(selectedAggVar.substring(1)) } }) $("#agg-fnc").html(" " + aggFnc) $("#agg-vars").html("GROUP BY " + varToAgg) //$("#selected-vars").html("?" + varsFromSelect.join(" ?")) $("#aggregationsModal").modal('toggle') }) $("#addTransform").click(function () { if (sessionStorage.length > 0) { var transformations = "" for (var i=0; i < sessionStorage.length; i++){ var key = sessionStorage.key(i) var value = sessionStorage.getItem(key) var item_value = JSON.parse(value) var sub = item_value.subject var pred_obj = item_value.p_o var po = jsonToMap(pred_obj) po.forEach(function (value, key, mapObj) { var pred = key.toString() var obj = value.toString() transformations += "<span>?" + sub + "?" + obj + " <input type='text' class='form-control noborder transf' data-join='?" + sub + "?" + obj + "' /></span><br/>" }) } $("#transformations").html(transformations) $("#transformModal").modal('toggle') } }) $("#saveTransform").click(function () { var transformations = "" $('.transf').each(function() { var join = $(this).data("join") transformations += " . " + join + $(this).val() }) $("#transform").show() $("#transforms").html(transformations.substring(3)) $("#transformModal").modal('toggle') }) $("#addOrder").click(function () { var preds = "" for (var i=0; i < sessionStorage.length; i++) { var key = sessionStorage.key(i) var value = sessionStorage.getItem(key) var item_value = JSON.parse(value) // {"subject":"o","p_o":"[["http://purl.org/ontology/mo/producer","p"]]"} var pred_obj = item_value.p_o var po = jsonToMap(pred_obj) po.forEach(function (value, key, mapObj) { var obj = value.toString() preds += `<input type='checkbox' class='order' value='${obj}'>${obj}</input>` preds += `<span><select id='order-${obj}'><option value='ASC'>Ascending order</option><option value='DESC'>Descending order</option></select></span><br/>` }) } $("#orders").html(preds) $("#orderModal").modal('toggle') }) $("#saveOrder").click(function () { var orderedVar = "" $('.order:checked').each(function() { var ths = $(this).val() var selectedOrder = $("#order-" + ths).children("option:selected").val() orderedVar += " " + selectedOrder + "(?" + ths + ")" }) if (orderedVar != "") $("#order").html("ORDER BY" + orderedVar).show() $("#orderModal").modal('toggle') }) $("#addLimit").click(function () { if (sessionStorage.length > 0) { $("#lmt").html("<label><input type='number' class='form-control noborder' id='resLimit' /></label>").show() $("#limitModal").modal('toggle') } }) $("#saveLimit").click(function () { var limit = $("#resLimit").val() $("#limit").html("LIMIT " + limit) $("#limitModal").modal('toggle') }) $("#toggleSubject").change(function () { $(".subject").toggle() $("#subjectVar").toggle() }) $("body").keyup(function(e) { if (e.keyCode == 13 && e.shiftKey) { // 2: shift & 13: enter var triple = '\ <tr class="pred_obj_tr addedTriple">\ <td style="width: 50%;">\ <input type="text" data-take="true" class="form-control noborder predicate abs" placeholder="predicate" />\ </td>' + '<td style="width: 50%;">\ <input type="text" class="form-control noborder object" placeholder="object" />\ </td>\ </tr>' $("#triplesTable tr:last").after(triple) $("#predicatesGroupModal > modal-body > input").val("") auto_suggest_predicate(".predicate") } }) $("#downloadQuery").click(function() { if (sessionStorage.length > 0) { var prolog = $("#prolog").text().trim().replace(/\>/g,">\n") var select = $("#select").text().trim() var filter = $("#filter").text().trim() var triples = $("#triple-patterns").text().replace(/\s.\s/g," .\n\t") var patterns = $("#patterns").text().trim() var aggregat = $("#agg-vars").text().trim() var orders = $("#order").text().trim() var query = prolog + "\n" query += select + "\n" query += "WHERE { \n" query += "\t " + triples + "\n" query += "\t " + filter + "\n" query += "} \n" query += aggregat + "\n" query += orders console.log(query) var fileName = 'query.sparql'; downloadInnerHtml(fileName, query, 'text/html') } }); $("#deleteQuery").click(function(){ $("#prolog").html("") $("#select").hide("") $("#selected-vars").html("") $("#where").hide() $("#filter").hide() $("#filter-conditions").html("") $("#triple-patterns").html("") $("#transform").hide() $("#transforms").html("") $("#agg-vars").html("") $("#agg-fnc").html("") $("#order").html("") $("#limit").html("") sessionStorage.clear(); $("#addSelect").addClass("disabled") $("#addFilters").addClass("disabled") $("#addOrder").addClass("disabled") $("#addAggregations").addClass("disabled") $("#addTransform").addClass("disabled") $("#addLimit").addClass("disabled") $("#downloadQuery").addClass("disabled") $("#deleteQuery").addClass("disabled") i = 0 filtersAdd = false distinct_added = false varsFromSelect.length = 0; // clear it }); function downloadInnerHtml(filename, element, mimeType) { var link = document.createElement('a'); mimeType = mimeType || 'text/plain'; link.setAttribute('download', filename); link.setAttribute('href', 'data:' + mimeType + ';charset=utf-8,' + encodeURIComponent(element)); link.click(); } function mapToJson(map) { return JSON.stringify([...map]) } function jsonToMap(jsonStr) { return new Map(JSON.parse(jsonStr)) } })
import { connect } from 'react-redux'; import Splash from './splash.component'; import { showSplash } from './splash.action'; const mapStateToProps = ({ app: { splash, splashed, config: { modules }, }, }) => ({ splash, splashed, modules, }); export default connect( mapStateToProps, { showSplash }, )(Splash);
besgamApp .controller("surebet", function( $scope, $http, $location ,$localStorage, $filter, dataFactory ) { $scope.surebets = []; $scope.imgLoad = 0; $scope.$on( 'LOAD', function(){ $scope.loading = true } ); $scope.$on( 'UNLOAD', function(){ $scope.loading = false } ); $scope.$emit('LOAD'); /* Cargamos los datos de las feed */ dataFactory.getDataFeed().then( function(response) { $scope.feed = response.data; /* Cargamos los datos de las feed */ dataFactory.getDataFeed().then( function(response) { $scope.feed = response.data; dataFactory.getDataJson().then( function(response) { var data = response.data, aData = []; for( var nCont = 0, len = data.length; nCont < len; nCont++ ) { if( data[nCont].markets ) { var uno = 0, pro = 0, cuota = 0; for(var index in data[nCont].markets.str_bet) { uno += 1/data[nCont].markets.str_bet[index][0].n_odd; prob = 1/data[nCont].markets.str_bet[index][0].n_odd; cuota = data[nCont].markets.str_bet[index][0].n_odd; } if( uno < 1 ) { var str_bet = {}, auxBet = {}, keys = [], name = null; for(var index in data[nCont].markets.str_bet) { name = (index == "1") ? "011" : (index == "X") ? "02X" : "032"; prob = 1/data[nCont].markets.str_bet[index][0].n_odd; resProb = (prob*100)/uno; data[nCont].markets.str_bet[index][0]["prob"] = $filter("setDecimal")( resProb, 2 ); str_bet[ name ] = data[nCont].markets.str_bet[index]; keys.push( name ); } keys.sort(); for( var nSubContKeys = 0, lenKeys = keys.length; nSubContKeys < lenKeys; nSubContKeys++ ) { auxBet[ keys[nSubContKeys] ] = str_bet[ keys[nSubContKeys] ]; } var prob = (prob*100)/uno, profit = (prob*cuota)-100; aData.push({ "n_id_sport": data[nCont].sportID, "str_sport": data[nCont].sport, "id_league": data[nCont].leagueID, "str_league": data[nCont].league, "n_id_event": data[nCont].id, "str_name_event": data[nCont].event, "str_time_event": data[nCont].orderTime, "profit": $filter("setDecimal")(profit, 2), "str_market_name": data[nCont].markets.str_market, "str_market_short": data[nCont].markets.str_market_short, "n_result_market": data[nCont].markets.str_bet.length, "a_markets": { "id_market": data[nCont].markets.id_market, "str_market": data[nCont].markets.str_market, "str_market_short": data[nCont].markets.str_market_short, "str_description": data[nCont].markets.str_description, "id_market_group": data[nCont].markets.id_market_group, "n_order": data[nCont].markets.n_order, "char_order": data[nCont].markets.char_order, "str_bet": auxBet } }); } } } $scope.imgLoad = (aData.length == 0) ? 1 : 0; $scope.surebets = aData; $scope.totalData = (aData.length-5); $scope.currentPage = 1; $scope.numPerPage = 6; $scope.maxSize = 5; $scope.setPage = function (pageNo) { window.scrollTo(0,0); //console.log('setpage:' + pageNo); $scope.currentPage = pageNo; }; $scope.setPage($scope.currentPage); $scope.$emit('UNLOAD'); }); }); }); /* Quita caracteres de una cadena */ $scope.cutChar = function( str, nChar ) { return str.substr( nChar ); } $scope.getIdName = function( id_event, id_market, str_bet ) { return id_event+"|"+id_market+"|"+str_bet; }; });
import React from 'react'; import pages from "./pages"; import { BrowserRouter, Route, Switch, Link } from "react-router-dom"; import "./css/style.sass"; import AutoBahn from "./components/AutoBahn"; function App() { return ( <div className="App"> {/* <AutoBahn/> */} <BrowserRouter> <Switch> {Object.values(pages).map(({ RootComponent, rootPath }) => ( <Route key={rootPath} path={rootPath} exact={rootPath === "/"} render={props => ( <RootComponent rootpath={rootPath} {...props} /> )} /> ))} </Switch> </BrowserRouter> </div> ); } export default App;
import styled from 'styled-components' import JSON from '../Texts/Banner.JSON' const BannerSection = styled.section` font-family: 'Ubuntu'; display:flex; flex-direction:column; height:450px; align-items:center; text-align:center; justify-content:center; font-size:25px; background-color: #fff; color: #000 ` const Container = styled.section` width:50% ` const Title = styled.h1` height: 72px; font-style: normal; font-weight: bold; font-size: 42px; text-align: center; letter-spacing: 0.3px; color: #1E2327; ` const Subtitle = styled.a` font-style: normal; font-weight: 500; font-size: 20px; line-height: 36px; /* or 180% */ text-align: center; letter-spacing: 0.3px; color: #6A6E72; ` function TitleSubtitle(){ return( <BannerSection> <Container> <Title>{JSON.Banner2.titulo}</Title> <Subtitle>{JSON.Banner2.subtitulo}</Subtitle> </Container> </BannerSection> ) } export default TitleSubtitle