esconj

Conjugates Spanish verbs in the terminal
git clone git://mattcarlson.org/repos/esconj.git
Log | Files | Refs | README

commit 030857de7397cdc230eafc4b57e5ce347a075236
Author: Matthew Carlson <matt@mcarlson.xyz>
Date:   Mon, 15 Mar 2021 15:48:55 -0400

Initial commit

Diffstat:
AREADME.md | 21+++++++++++++++++++++
Aesconj | 153+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainstall.sh | 12++++++++++++
Averbs.csv | 12104+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 12290 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -0,0 +1,21 @@ +# esconj +Conjugates Spanish verbs in the terminal + +![esconj](https://mcarlson.xyz/img/esconj.png) + +Verbs file from here: https://github.com/ghidinelli/fred-jehle-spanish-verbs. If a verb is not included blame that guy. It should handle most common verbs though. + +# Installation +```shell +$ git clone https://github.com/mslcarlson/esconj/ +$ cd esconj +$ sudo ./install.sh +``` + +# Usage +``` +Usage: esconj [options] +Options: + -c, --conjugate Conjugate verb + -h, --help Print this message and exit +``` diff --git a/esconj b/esconj @@ -0,0 +1,153 @@ +#!/bin/bash +# Title : esconj +# Description : Conjugates Spanish verbs in the terminal. +# Author : Matthew Carlson <matt@mcarlson.xyz> +# Date : 2020-09-03 +# Version : 0.1 +# Usage : esconj [options] +# Notes : Should handle common verbs. No guarantees for obscure verbs. + +# Copyright (C) 2020 Matthew Carlson <matt@mcarlson.xyz> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. + +######################### +# Check if verb is valid. +# Arguments: +# Verb to check +######################### +check() { + local verb + verb="$(echo $1 | tr '[:upper:]' '[:lower:]')" + + [[ ! "${verb}" =~ [a-z]*(ar|er|ir)(se)*$ ]] \ + && printf "Verb is in incorrect format.\nVerb must be a word ending in -ar, -er, -ir (with -se in the case of reflexives)." \ + && exit + + local suffix + suffix="${verb: -2}" + + case "${suffix}" in + se) + search_dict "${verb}" + [[ $? -eq 1 ]] \ + && conjugate "${verb}" \ + || check "${verb::-2}" + ;; + ar|er|ir) + search_dict "${verb}" + conjugate "${verb}" + ;; + esac +} + +read_csv() { rows="$(awk -v verb=$1 -F '","|^"|"$' '{sub("^\"","")} $1==verb' verbs.csv)" ; } + +conjugate() { + declare -A conjugations + declare -a tenses + + read_csv "$1" + + for i in {1..18}; do + tenses[$i]=$(for j in 5 8 9 10 11 12 13; do + conjugations[$i,$j]="$(echo "${rows}" | awk -v col=$j -F '","|^"|"$' '{print $col}' | head -$i | tail +$i)" + [[ -n "${conjugations[$i,$j]}" ]] && echo "${conjugations[$i,$j]}" || echo "-" + done) + done + + bold=$(tput bold) + normal=$(tput sgr0) + blue=$(tput setaf 4) + + print_tense "Indicativo" + print_mood 1 5 + + print_tense "Subjuntivo" + print_mood 11 3 + + print_tense "Aspecto Perfectivo" + print_mood 6 5 + + print_tense "Aspecto Perfectivo de Subjuntivo" + print_mood 14 3 + + print_tense "Imperativo (Afirmativo y Negativo)" + print_mood 17 2 +} + +get_words() { words="$(awk -v col=$1 -F '","|^"|"$' '{sub("^\"","")} {print $col}' verbs.csv)" ; } + +print_mood() { + local tmp + tmp='' + + for i in "${tenses[@]:$1:$2}"; do + tmp=$(paste <(printf '%b\n' "$tmp") <(printf "$i") | column -s $'\t' -t) + done + + paste <(printf '\e[1;34m%s\e[m\n' '' \ + "yo" \ + "tu" \ + "él/ella/Ud." \ + "nosotros" \ + "vosotros" \ + "ellos/ellas/Uds.") \ + <(printf '%b\n' "$tmp") | column -s $'\t' -t + + printf '\n' +} + +print_tense() { printf "${blue}${bold}$1\n" ; } + +search_dict() { + [[ $(grep -w "$1" <<< "${words}") ]] \ + && return 1 \ + || printf "Verb not found.\nIf you entered a reflexive verb, try without the -se ending." && exit +} + +usage() { + printf "Usage: esconj [options]\n" + printf "Options: + -c, --conjugate Conjugate verb + -h, --help Print this message and exit\n" +} + +main() { + [[ $# -eq 0 ]] && usage + + get_words + + for arg in "$@"; do + [[ "${arg:0:1}" = '-' ]] || continue + + case "$1" in + -c | --conjugate) + check "$2" + shift 2 + ;; + -h | --help) + usage + break + ;; + *) + echo "Invalid argument: $1" + usage + break + ;; + esac + done +} + +main "$@" diff --git a/install.sh b/install.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +[ "$EUID" -ne 0 ] && echo "Permission denied. Are you root?" && exit + +DIR='/usr/share/esconj' +PATH='/usr/bin/' + +mkdir --parents "${DIR}" +echo "./verbs.csv -> ${DIR}/verbs.csv" && cp './verbs.csv' "${DIR}/verbs.csv" +echo "./esconj -> ${PATH}/esconj" && cp './esconj' "${PATH}/esconj" + +[ $? -eq 0 ] && echo "Installation complete." diff --git a/verbs.csv b/verbs.csv @@ -0,0 +1,12104 @@ +"infinitive","infinitive_english","mood","mood_english","tense","tense_english","verb_english","form_1s","form_2s","form_3s","form_1p","form_2p","form_3p","gerund","gerund_english","pastparticiple","pastparticiple_english" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Presente","Present","I abandon, am abandoning","abandono","abandonas","abandona","abandonamos","abandonáis","abandonan","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Futuro","Future","I will abandon","abandonaré","abandonarás","abandonará","abandonaremos","abandonaréis","abandonarán","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Imperfecto","Imperfect","I was abandoning, used to abandon, abandoned","abandonaba","abandonabas","abandonaba","abandonábamos","abandonabais","abandonaban","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Pretérito","Preterite","I abandoned","abandoné","abandonaste","abandonó","abandonamos","abandonasteis","abandonaron","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Condicional","Conditional","I would abandon","abandonaría","abandonarías","abandonaría","abandonaríamos","abandonaríais","abandonarían","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have abandoned","he abandonado","has abandonado","ha abandonado","hemos abandonado","habéis abandonado","han abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have abandoned","habré abandonado","habrás abandonado","habrá abandonado","habremos abandonado","habréis abandonado","habrán abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had abandoned","había abandonado","habías abandonado","había abandonado","habíamos abandonado","habíais abandonado","habían abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had abandoned","hube abandonado","hubiste abandonado","hubo abandonado","hubimos abandonado","hubisteis abandonado","hubieron abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have abandoned","habría abandonado","habrías abandonado","habría abandonado","habríamos abandonado","habríais abandonado","habrían abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonemos" +"abandonar","to abandon, leave behind, desert; to quit, give up","Subjuntivo","Subjunctive","Presente","Present","I abandon, am abandoning","abandone","abandones","abandone","abandonemos","abandonéis","abandonen","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I abandoned, was abandoning","abandonara","abandonaras","abandonara","abandonáramos","abandonarais","abandonaran","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Subjuntivo","Subjunctive","Futuro","Future","I will abandon","abandonare","abandonares","abandonare","abandonáremos","abandonareis","abandonaren","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have abandoned, abandoned","haya abandonado","hayas abandonado","haya abandonado","hayamos abandonado","hayáis abandonado","hayan abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have abandoned","hubiere abandonado","hubieres abandonado","hubiere abandonado","hubiéremos abandonado","hubiereis abandonado","hubieren abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had abandoned","hubiera abandonado","hubieras abandonado","hubiera abandonado","hubiéramos abandonado","hubierais abandonado","hubieran abandonado","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Abandon! Don't abandon!","","abandona","abandone","abandonemos","abandonad","abandonen","abandonando","abandoning","abandonado","abandoned" +"abandonar","to abandon, leave behind, desert; to quit, give up","Imperativo Negativo","Imperative Negative","Presente","Present","Abandon! Don't abandon!","","no abandones","no abandone","no abandonemos","no abandonéis","no abandonen","abandonando","abandoning","abandonado","abandoned" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Presente","Present","I board, am boarding","abordo","abordas","aborda","abordamos","abordáis","abordan","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Futuro","Future","I will board","abordaré","abordarás","abordará","abordaremos","abordaréis","abordarán","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Imperfecto","Imperfect","I was boarding, used to board, boarded","abordaba","abordabas","abordaba","abordábamos","abordabais","abordaban","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Pretérito","Preterite","I boarded","abordé","abordaste","abordó","abordamos","abordasteis","abordaron","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Condicional","Conditional","I would board","abordaría","abordarías","abordaría","abordaríamos","abordaríais","abordarían","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have boarded","he abordado","has abordado","ha abordado","hemos abordado","habéis abordado","han abordado","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have boarded","habré abordado","habrás abordado","habrá abordado","habremos abordado","habréis abordado","habrán abordado","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had boarded","había abordado","habías abordado","había abordado","habíamos abordado","habíais abordado","habían abordado","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had boarded","hube abordado","hubiste abordado","hubo abordado","hubimos abordado","hubisteis abordado","hubieron abordado","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have boarded","habría abordado","habrías abordado","habría abordado","habríamos abordado","habríais abordado","habrían abordado","abordando","boarding","abordado","boarded" +"abordemos" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Subjuntivo","Subjunctive","Presente","Present","I board, am boarding","aborde","abordes","aborde","abordemos","abordéis","aborden","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I boarded, was boarding","abordara","abordaras","abordara","abordáramos","abordarais","abordaran","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Subjuntivo","Subjunctive","Futuro","Future","I will board","abordare","abordares","abordare","abordáremos","abordareis","abordaren","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have boarded, boarded","haya abordado","hayas abordado","haya abordado","hayamos abordado","hayáis abordado","hayan abordado","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have boarded","hubiere abordado","hubieres abordado","hubiere abordado","hubiéremos abordado","hubiereis abordado","hubieren abordado","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had boarded","hubiera abordado","hubieras abordado","hubiera abordado","hubiéramos abordado","hubierais abordado","hubieran abordado","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Board! Don't board!","","aborda","aborde","abordemos","abordad","aborden","abordando","boarding","abordado","boarded" +"abordar","to board, get on [plane, bus, etc.]; to approach, accost [a person]","Imperativo Negativo","Imperative Negative","Presente","Present","Board! Don't board!","","no abordes","no aborde","no abordemos","no abordéis","no aborden","abordando","boarding","abordado","boarded" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Presente","Present","I abort, am aborting","aborto","abortas","aborta","abortamos","abortáis","abortan","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Futuro","Future","I will abort","abortaré","abortarás","abortará","abortaremos","abortaréis","abortarán","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Imperfecto","Imperfect","I was aborting, used to abort, aborted","abortaba","abortabas","abortaba","abortábamos","abortabais","abortaban","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Pretérito","Preterite","I aborted","aborté","abortaste","abortó","abortamos","abortasteis","abortaron","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Condicional","Conditional","I would abort","abortaría","abortarías","abortaría","abortaríamos","abortaríais","abortarían","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Presente perfecto","Present Perfect","I have aborted","he abortado","has abortado","ha abortado","hemos abortado","habéis abortado","han abortado","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have aborted","habré abortado","habrás abortado","habrá abortado","habremos abortado","habréis abortado","habrán abortado","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had aborted","había abortado","habías abortado","había abortado","habíamos abortado","habíais abortado","habían abortado","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had aborted","hube abortado","hubiste abortado","hubo abortado","hubimos abortado","hubisteis abortado","hubieron abortado","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have aborted","habría abortado","habrías abortado","habría abortado","habríamos abortado","habríais abortado","habrían abortado","abortando","aborting","abortado","aborted" +"abortemos" +"abortar","to abort, cause to miscarry; to have a miscarriage","Subjuntivo","Subjunctive","Presente","Present","I abort, am aborting","aborte","abortes","aborte","abortemos","abortéis","aborten","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I aborted, was aborting","abortara","abortaras","abortara","abortáramos","abortarais","abortaran","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Subjuntivo","Subjunctive","Futuro","Future","I will abort","abortare","abortares","abortare","abortáremos","abortareis","abortaren","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have aborted, aborted","haya abortado","hayas abortado","haya abortado","hayamos abortado","hayáis abortado","hayan abortado","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have aborted","hubiere abortado","hubieres abortado","hubiere abortado","hubiéremos abortado","hubiereis abortado","hubieren abortado","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had aborted","hubiera abortado","hubieras abortado","hubiera abortado","hubiéramos abortado","hubierais abortado","hubieran abortado","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Abort! Don't abort!","","aborta","aborte","abortemos","abortad","aborten","abortando","aborting","abortado","aborted" +"abortar","to abort, cause to miscarry; to have a miscarriage","Imperativo Negativo","Imperative Negative","Presente","Present","Abort! Don't abort!","","no abortes","no aborte","no abortemos","no abortéis","no aborten","abortando","aborting","abortado","aborted" +"abrazar","to hug, embrace","Indicativo","Indicative","Presente","Present","I hug, am hugging","abrazo","abrazas","abraza","abrazamos","abrazáis","abrazan","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Futuro","Future","I will hug","abrazaré","abrazarás","abrazará","abrazaremos","abrazaréis","abrazarán","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Imperfecto","Imperfect","I was hugging, used to hug, hugged","abrazaba","abrazabas","abrazaba","abrazábamos","abrazabais","abrazaban","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Pretérito","Preterite","I hugged","abracé","abrazaste","abrazó","abrazamos","abrazasteis","abrazaron","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Condicional","Conditional","I would hug","abrazaría","abrazarías","abrazaría","abrazaríamos","abrazaríais","abrazarían","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hugged","he abrazado","has abrazado","ha abrazado","hemos abrazado","habéis abrazado","han abrazado","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hugged","habré abrazado","habrás abrazado","habrá abrazado","habremos abrazado","habréis abrazado","habrán abrazado","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hugged","había abrazado","habías abrazado","había abrazado","habíamos abrazado","habíais abrazado","habían abrazado","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hugged","hube abrazado","hubiste abrazado","hubo abrazado","hubimos abrazado","hubisteis abrazado","hubieron abrazado","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hugged","habría abrazado","habrías abrazado","habría abrazado","habríamos abrazado","habríais abrazado","habrían abrazado","abrazando","hugging","abrazado","hugged" +"abracemos" +"abrazar","to hug, embrace","Subjuntivo","Subjunctive","Presente","Present","I hug, am hugging","abrace","abraces","abrace","abracemos","abracéis","abracen","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hugged, was hugging","abrazara","abrazaras","abrazara","abrazáramos","abrazarais","abrazaran","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Subjuntivo","Subjunctive","Futuro","Future","I will hug","abrazare","abrazares","abrazare","abrazáremos","abrazareis","abrazaren","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hugged, hugged","haya abrazado","hayas abrazado","haya abrazado","hayamos abrazado","hayáis abrazado","hayan abrazado","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hugged","hubiere abrazado","hubieres abrazado","hubiere abrazado","hubiéremos abrazado","hubiereis abrazado","hubieren abrazado","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hugged","hubiera abrazado","hubieras abrazado","hubiera abrazado","hubiéramos abrazado","hubierais abrazado","hubieran abrazado","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hug! Don't hug!","","abraza","abrace","abracemos","abrazad","abracen","abrazando","hugging","abrazado","hugged" +"abrazar","to hug, embrace","Imperativo Negativo","Imperative Negative","Presente","Present","Hug! Don't hug!","","no abraces","no abrace","no abracemos","no abracéis","no abracen","abrazando","hugging","abrazado","hugged" +"abrir","to open","Indicativo","Indicative","Presente","Present","I open, am opening","abro","abres","abre","abrimos","abrís","abren","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Futuro","Future","I will open","abriré","abrirás","abrirá","abriremos","abriréis","abrirán","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Imperfecto","Imperfect","I was opening, used to open, opened","abría","abrías","abría","abríamos","abríais","abrían","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Pretérito","Preterite","I opened","abrí","abriste","abrió","abrimos","abristeis","abrieron","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Condicional","Conditional","I would open","abriría","abrirías","abriría","abriríamos","abriríais","abrirían","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Presente perfecto","Present Perfect","I have opened","he abierto","has abierto","ha abierto","hemos abierto","habéis abierto","han abierto","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have opened","habré abierto","habrás abierto","habrá abierto","habremos abierto","habréis abierto","habrán abierto","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had opened","había abierto","habías abierto","había abierto","habíamos abierto","habíais abierto","habían abierto","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had opened","hube abierto","hubiste abierto","hubo abierto","hubimos abierto","hubisteis abierto","hubieron abierto","abriendo","opening","abierto","opened" +"abrir","to open","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have opened","habría abierto","habrías abierto","habría abierto","habríamos abierto","habríais abierto","habrían abierto","abriendo","opening","abierto","opened" +"abramos" +"abrir","to open","Subjuntivo","Subjunctive","Presente","Present","I open, am opening","abra","abras","abra","abramos","abráis","abran","abriendo","opening","abierto","opened" +"abrir","to open","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I opened, was opening","abriera","abrieras","abriera","abriéramos","abrierais","abrieran","abriendo","opening","abierto","opened" +"abrir","to open","Subjuntivo","Subjunctive","Futuro","Future","I will open","abriere","abrieres","abriere","abriéremos","abriereis","abrieren","abriendo","opening","abierto","opened" +"abrir","to open","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have opened, opened","haya abierto","hayas abierto","haya abierto","hayamos abierto","hayáis abierto","hayan abierto","abriendo","opening","abierto","opened" +"abrir","to open","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have opened","hubiere abierto","hubieres abierto","hubiere abierto","hubiéremos abierto","hubiereis abierto","hubieren abierto","abriendo","opening","abierto","opened" +"abrir","to open","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had opened","hubiera abierto","hubieras abierto","hubiera abierto","hubiéramos abierto","hubierais abierto","hubieran abierto","abriendo","opening","abierto","opened" +"abrir","to open","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Open! Don't open!","","abre","abra","abramos","abrid","abran","abriendo","opening","abierto","opened" +"abrir","to open","Imperativo Negativo","Imperative Negative","Presente","Present","Open! Don't open!","","no abras","no abra","no abramos","no abráis","no abran","abriendo","opening","abierto","opened" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Presente","Present","I bore, am boring","aburro","aburres","aburre","aburrimos","aburrís","aburren","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Futuro","Future","I will bore","aburriré","aburrirás","aburrirá","aburriremos","aburriréis","aburrirán","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Imperfecto","Imperfect","I was boring, used to bore, bored","aburría","aburrías","aburría","aburríamos","aburríais","aburrían","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Pretérito","Preterite","I bored","aburrí","aburriste","aburrió","aburrimos","aburristeis","aburrieron","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Condicional","Conditional","I would bore","aburriría","aburrirías","aburriría","aburriríamos","aburriríais","aburrirían","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Presente perfecto","Present Perfect","I have bored","he aburrido","has aburrido","ha aburrido","hemos aburrido","habéis aburrido","han aburrido","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have bored","habré aburrido","habrás aburrido","habrá aburrido","habremos aburrido","habréis aburrido","habrán aburrido","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had bored","había aburrido","habías aburrido","había aburrido","habíamos aburrido","habíais aburrido","habían aburrido","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had bored","hube aburrido","hubiste aburrido","hubo aburrido","hubimos aburrido","hubisteis aburrido","hubieron aburrido","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have bored","habría aburrido","habrías aburrido","habría aburrido","habríamos aburrido","habríais aburrido","habrían aburrido","aburriendo","boring","aburrido","bored" +"aburramos" +"aburrir","to bore; to tire, weary","Subjuntivo","Subjunctive","Presente","Present","I bore, am boring","aburra","aburras","aburra","aburramos","aburráis","aburran","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I bored, was boring","aburriera","aburrieras","aburriera","aburriéramos","aburrierais","aburrieran","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Subjuntivo","Subjunctive","Futuro","Future","I will bore","aburriere","aburrieres","aburriere","aburriéremos","aburriereis","aburrieren","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have bored, bored","haya aburrido","hayas aburrido","haya aburrido","hayamos aburrido","hayáis aburrido","hayan aburrido","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have bored","hubiere aburrido","hubieres aburrido","hubiere aburrido","hubiéremos aburrido","hubiereis aburrido","hubieren aburrido","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had bored","hubiera aburrido","hubieras aburrido","hubiera aburrido","hubiéramos aburrido","hubierais aburrido","hubieran aburrido","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bore! Don't bore!","","aburre","aburra","aburramos","aburrid","aburran","aburriendo","boring","aburrido","bored" +"aburrir","to bore; to tire, weary","Imperativo Negativo","Imperative Negative","Presente","Present","Bore! Don't bore!","","no aburras","no aburra","no aburramos","no aburráis","no aburran","aburriendo","boring","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Presente","Present","I get bored, am getting bored","me aburro","te aburres","se aburre","nos aburrimos","os aburrís","se aburren","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Futuro","Future","I will get bored","me aburriré","te aburrirás","se aburrirá","nos aburriremos","os aburriréis","se aburrirán","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Imperfecto","Imperfect","I was getting bored, used to get bored, got bored","me aburría","te aburrías","se aburría","nos aburríamos","os aburríais","se aburrían","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Pretérito","Preterite","I got bored","me aburrí","te aburriste","se aburrió","nos aburrimos","os aburristeis","se aburrieron","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Condicional","Conditional","I would get bored","me aburriría","te aburrirías","se aburriría","nos aburriríamos","os aburriríais","se aburrirían","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten bored","me he aburrido","te has aburrido","se ha aburrido","nos hemos aburrido","os habéis aburrido","se han aburrido","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten bored","me habré aburrido","te habrás aburrido","se habrá aburrido","nos habremos aburrido","os habréis aburrido","se habrán aburrido","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten bored","me había aburrido","te habías aburrido","se había aburrido","nos habíamos aburrido","os habíais aburrido","se habían aburrido","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten bored","me hube aburrido","te hubiste aburrido","se hubo aburrido","nos hubimos aburrido","os hubisteis aburrido","se hubieron aburrido","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten bored","me habría aburrido","te habrías aburrido","se habría aburrido","nos habríamos aburrido","os habríais aburrido","se habrían aburrido","aburriéndose","getting bored","aburrido","bored" +"nos aburramos" +"aburrirse","to get bored, become bored, be bored","Subjuntivo","Subjunctive","Presente","Present","I get bored, am getting bored","me aburra","te aburras","se aburra","nos aburramos","os aburráis","se aburran","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got bored, was getting bored","me aburriera","te aburrieras","se aburriera","nos aburriéramos","os aburrierais","se aburrieran","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Subjuntivo","Subjunctive","Futuro","Future","I will get bored","me aburriere","te aburrieres","se aburriere","nos aburriéremos","os aburriereis","se aburrieren","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten bored, got bored","me haya aburrido","te hayas aburrido","se haya aburrido","nos hayamos aburrido","os hayáis aburrido","se hayan aburrido","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten bored","me hubiere aburrido","te hubieres aburrido","se hubiere aburrido","nos hubiéremos aburrido","os hubiereis aburrido","se hubieren aburrido","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten bored","me hubiera aburrido","te hubieras aburrido","se hubiera aburrido","nos hubiéramos aburrido","os hubierais aburrido","se hubieran aburrido","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get bored! Don't get bored!","","abúrrete","abúrrase","aburrámonos","aburríos","abúrranse","aburriéndose","getting bored","aburrido","bored" +"aburrirse","to get bored, become bored, be bored","Imperativo Negativo","Imperative Negative","Presente","Present","Get bored! Don't get bored!","","no te aburras","no se aburra","no nos aburramos","no os aburráis","no se aburran","aburriéndose","getting bored","aburrido","bored" +"abusar","to go too far, take advantage","Indicativo","Indicative","Presente","Present","I go too far, am going too far","abuso","abusas","abusa","abusamos","abusáis","abusan","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Futuro","Future","I will go too far","abusaré","abusarás","abusará","abusaremos","abusaréis","abusarán","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Imperfecto","Imperfect","I was going too far, used to go too far, went too far","abusaba","abusabas","abusaba","abusábamos","abusabais","abusaban","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Pretérito","Preterite","I went too far","abusé","abusaste","abusó","abusamos","abusasteis","abusaron","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Condicional","Conditional","I would go too far","abusaría","abusarías","abusaría","abusaríamos","abusaríais","abusarían","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gone too far","he abusado","has abusado","ha abusado","hemos abusado","habéis abusado","han abusado","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gone too far","habré abusado","habrás abusado","habrá abusado","habremos abusado","habréis abusado","habrán abusado","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gone too far","había abusado","habías abusado","había abusado","habíamos abusado","habíais abusado","habían abusado","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gone too far","hube abusado","hubiste abusado","hubo abusado","hubimos abusado","hubisteis abusado","hubieron abusado","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gone too far","habría abusado","habrías abusado","habría abusado","habríamos abusado","habríais abusado","habrían abusado","abusando","going too far","abusado","gone too far, abused" +"abusemos" +"abusar","to go too far, take advantage","Subjuntivo","Subjunctive","Presente","Present","I go too far, am going too far","abuse","abuses","abuse","abusemos","abuséis","abusen","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I went too far, was going too far","abusara","abusaras","abusara","abusáramos","abusarais","abusaran","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Subjuntivo","Subjunctive","Futuro","Future","I will go too far","abusare","abusares","abusare","abusáremos","abusareis","abusaren","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gone too far, went too far","haya abusado","hayas abusado","haya abusado","hayamos abusado","hayáis abusado","hayan abusado","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gone too far","hubiere abusado","hubieres abusado","hubiere abusado","hubiéremos abusado","hubiereis abusado","hubieren abusado","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gone too far","hubiera abusado","hubieras abusado","hubiera abusado","hubiéramos abusado","hubierais abusado","hubieran abusado","abusando","going too far","abusado","gone too far, abused" +"abusar","to go too far, take advantage","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Go too far! Don't go too far!","","abusa","abuse","abusemos","abusad","abusen","abusando","going too far","abusado","gone too far, abused", +"abusar","to go too far, take advantage","Imperativo Negativo","Imperative Negative","Presente","Present","Go too far! Don't go too far!","","no abuses","no abuse","no abusemos","no abuséis","no abusen","abusando","going too far","abusado","gone too far, abused", +"acabar","to finish, end","Indicativo","Indicative","Presente","Present","I finish, am finishing","acabo","acabas","acaba","acabamos","acabáis","acaban","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Futuro","Future","I will finish","acabaré","acabarás","acabará","acabaremos","acabaréis","acabarán","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Imperfecto","Imperfect","I was finishing, used to finish, finished","acababa","acababas","acababa","acabábamos","acababais","acababan","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Pretérito","Preterite","I finished","acabé","acabaste","acabó","acabamos","acabasteis","acabaron","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Condicional","Conditional","I would finish","acabaría","acabarías","acabaría","acabaríamos","acabaríais","acabarían","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Presente perfecto","Present Perfect","I have finished","he acabado","has acabado","ha acabado","hemos acabado","habéis acabado","han acabado","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have finished","habré acabado","habrás acabado","habrá acabado","habremos acabado","habréis acabado","habrán acabado","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had finished","había acabado","habías acabado","había acabado","habíamos acabado","habíais acabado","habían acabado","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had finished","hube acabado","hubiste acabado","hubo acabado","hubimos acabado","hubisteis acabado","hubieron acabado","acabando","finishing","acabado","finished" +"acabar","to finish, end","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have finished","habría acabado","habrías acabado","habría acabado","habríamos acabado","habríais acabado","habrían acabado","acabando","finishing","acabado","finished" +"acabemos" +"acabar","to finish, end","Subjuntivo","Subjunctive","Presente","Present","I finish, am finishing","acabe","acabes","acabe","acabemos","acabéis","acaben","acabando","finishing","acabado","finished" +"acabar","to finish, end","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I finished, was finishing","acabara","acabaras","acabara","acabáramos","acabarais","acabaran","acabando","finishing","acabado","finished" +"acabar","to finish, end","Subjuntivo","Subjunctive","Futuro","Future","I will finish","acabare","acabares","acabare","acabáremos","acabareis","acabaren","acabando","finishing","acabado","finished" +"acabar","to finish, end","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have finished, finished","haya acabado","hayas acabado","haya acabado","hayamos acabado","hayáis acabado","hayan acabado","acabando","finishing","acabado","finished" +"acabar","to finish, end","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have finished","hubiere acabado","hubieres acabado","hubiere acabado","hubiéremos acabado","hubiereis acabado","hubieren acabado","acabando","finishing","acabado","finished" +"acabar","to finish, end","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had finished","hubiera acabado","hubieras acabado","hubiera acabado","hubiéramos acabado","hubierais acabado","hubieran acabado","acabando","finishing","acabado","finished" +"acabar","to finish, end","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Finish! Don't finish!","","acaba","acabe","acabemos","acabad","acaben","acabando","finishing","acabado","finished" +"acabar","to finish, end","Imperativo Negativo","Imperative Negative","Presente","Present","Finish! Don't finish!","","no acabes","no acabe","no acabemos","no acabéis","no acaben","acabando","finishing","acabado","finished" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Presente","Present","I camp, am camping","acampo","acampas","acampa","acampamos","acampáis","acampan","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Futuro","Future","I will camp","acamparé","acamparás","acampará","acamparemos","acamparéis","acamparán","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Imperfecto","Imperfect","I was camping, used to camp, camped","acampaba","acampabas","acampaba","acampábamos","acampabais","acampaban","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Pretérito","Preterite","I camped","acampé","acampaste","acampó","acampamos","acampasteis","acamparon","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Condicional","Conditional","I would camp","acamparía","acamparías","acamparía","acamparíamos","acamparíais","acamparían","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Presente perfecto","Present Perfect","I have camped","he acampado","has acampado","ha acampado","hemos acampado","habéis acampado","han acampado","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have camped","habré acampado","habrás acampado","habrá acampado","habremos acampado","habréis acampado","habrán acampado","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had camped","había acampado","habías acampado","había acampado","habíamos acampado","habíais acampado","habían acampado","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had camped","hube acampado","hubiste acampado","hubo acampado","hubimos acampado","hubisteis acampado","hubieron acampado","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have camped","habría acampado","habrías acampado","habría acampado","habríamos acampado","habríais acampado","habrían acampado","acampando","camping","acampado","camped" +"acampemos" +"acampar","to camp, encamp, go camping","Subjuntivo","Subjunctive","Presente","Present","I camp, am camping","acampe","acampes","acampe","acampemos","acampéis","acampen","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I camped, was camping","acampara","acamparas","acampara","acampáramos","acamparais","acamparan","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Subjuntivo","Subjunctive","Futuro","Future","I will camp","acampare","acampares","acampare","acampáremos","acampareis","acamparen","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have camped, camped","haya acampado","hayas acampado","haya acampado","hayamos acampado","hayáis acampado","hayan acampado","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have camped","hubiere acampado","hubieres acampado","hubiere acampado","hubiéremos acampado","hubiereis acampado","hubieren acampado","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had camped","hubiera acampado","hubieras acampado","hubiera acampado","hubiéramos acampado","hubierais acampado","hubieran acampado","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Camp! Don't camp!","","acampa","acampe","acampemos","acampad","acampen","acampando","camping","acampado","camped" +"acampar","to camp, encamp, go camping","Imperativo Negativo","Imperative Negative","Presente","Present","Camp! Don't camp!","","no acampes","no acampe","no acampemos","no acampéis","no acampen","acampando","camping","acampado","camped" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Presente","Present","I accept, am accepting","acepto","aceptas","acepta","aceptamos","aceptáis","aceptan","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Futuro","Future","I will accept","aceptaré","aceptarás","aceptará","aceptaremos","aceptaréis","aceptarán","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Imperfecto","Imperfect","I was accepting, used to accept, accepted","aceptaba","aceptabas","aceptaba","aceptábamos","aceptabais","aceptaban","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Pretérito","Preterite","I accepted","acepté","aceptaste","aceptó","aceptamos","aceptasteis","aceptaron","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Condicional","Conditional","I would accept","aceptaría","aceptarías","aceptaría","aceptaríamos","aceptaríais","aceptarían","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have accepted","he aceptado","has aceptado","ha aceptado","hemos aceptado","habéis aceptado","han aceptado","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have accepted","habré aceptado","habrás aceptado","habrá aceptado","habremos aceptado","habréis aceptado","habrán aceptado","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had accepted","había aceptado","habías aceptado","había aceptado","habíamos aceptado","habíais aceptado","habían aceptado","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had accepted","hube aceptado","hubiste aceptado","hubo aceptado","hubimos aceptado","hubisteis aceptado","hubieron aceptado","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have accepted","habría aceptado","habrías aceptado","habría aceptado","habríamos aceptado","habríais aceptado","habrían aceptado","aceptando","accepting","aceptado","accepted" +"aceptemos" +"aceptar","to accept, approve; to agree to","Subjuntivo","Subjunctive","Presente","Present","I accept, am accepting","acepte","aceptes","acepte","aceptemos","aceptéis","acepten","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I accepted, was accepting","aceptara","aceptaras","aceptara","aceptáramos","aceptarais","aceptaran","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Subjuntivo","Subjunctive","Futuro","Future","I will accept","aceptare","aceptares","aceptare","aceptáremos","aceptareis","aceptaren","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have accepted, accepted","haya aceptado","hayas aceptado","haya aceptado","hayamos aceptado","hayáis aceptado","hayan aceptado","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have accepted","hubiere aceptado","hubieres aceptado","hubiere aceptado","hubiéremos aceptado","hubiereis aceptado","hubieren aceptado","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had accepted","hubiera aceptado","hubieras aceptado","hubiera aceptado","hubiéramos aceptado","hubierais aceptado","hubieran aceptado","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Accept! Don't accept!","","acepta","acepte","aceptemos","aceptad","acepten","aceptando","accepting","aceptado","accepted" +"aceptar","to accept, approve; to agree to","Imperativo Negativo","Imperative Negative","Presente","Present","Accept! Don't accept!","","no aceptes","no acepte","no aceptemos","no aceptéis","no acepten","aceptando","accepting","aceptado","accepted" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Presente","Present","I bring near(er), am bringing near(er)","acerco","acercas","acerca","acercamos","acercáis","acercan","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Futuro","Future","I will bring near(er)","acercaré","acercarás","acercará","acercaremos","acercaréis","acercarán","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Imperfecto","Imperfect","I was bringing near(er), used to bring near(er), brought near(er)","acercaba","acercabas","acercaba","acercábamos","acercabais","acercaban","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Pretérito","Preterite","I brought near(er)","acerqué","acercaste","acercó","acercamos","acercasteis","acercaron","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Condicional","Conditional","I would bring near(er)","acercaría","acercarías","acercaría","acercaríamos","acercaríais","acercarían","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Presente perfecto","Present Perfect","I have brought near(er)","he acercado","has acercado","ha acercado","hemos acercado","habéis acercado","han acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have brought near(er)","habré acercado","habrás acercado","habrá acercado","habremos acercado","habréis acercado","habrán acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had brought near(er)","había acercado","habías acercado","había acercado","habíamos acercado","habíais acercado","habían acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had brought near(er)","hube acercado","hubiste acercado","hubo acercado","hubimos acercado","hubisteis acercado","hubieron acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have brought near(er)","habría acercado","habrías acercado","habría acercado","habríamos acercado","habríais acercado","habrían acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acerquemos" +"acercar","to bring near[er], move [something] nearer","Subjuntivo","Subjunctive","Presente","Present","I bring near(er), am bringing near(er)","acerque","acerques","acerque","acerquemos","acerquéis","acerquen","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I brought near(er), was bringing near(er)","acercara","acercaras","acercara","acercáramos","acercarais","acercaran","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Subjuntivo","Subjunctive","Futuro","Future","I will bring near(er)","acercare","acercares","acercare","acercáremos","acercareis","acercaren","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have brought near(er), brought near(er)","haya acercado","hayas acercado","haya acercado","hayamos acercado","hayáis acercado","hayan acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have brought near(er)","hubiere acercado","hubieres acercado","hubiere acercado","hubiéremos acercado","hubiereis acercado","hubieren acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had brought near(er)","hubiera acercado","hubieras acercado","hubiera acercado","hubiéramos acercado","hubierais acercado","hubieran acercado","acercando","bringing near(er)","acercado","brought near(er)" +"acercar","to bring near[er], move [something] nearer","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bring near(er)! Don't bring near(er)!","","acerca","acerque","acerquemos","acercad","acerquen","acercando","bringing near(er)","acercado","brought near(er)", +"acercar","to bring near[er], move [something] nearer","Imperativo Negativo","Imperative Negative","Presente","Present","Bring near(er)! Don't bring near(er)!","","no acerques","no acerque","no acerquemos","no acerquéis","no acerquen","acercando","bringing near(er)","acercado","brought near(er)", +"acercarse","to approach","Indicativo","Indicative","Presente","Present","I approach, am approaching","me acerco","te acercas","se acerca","nos acercamos","os acercáis","se acercan","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Futuro","Future","I will approach","me acercaré","te acercarás","se acercará","nos acercaremos","os acercaréis","se acercarán","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Imperfecto","Imperfect","I was approaching, used to approach, approached","me acercaba","te acercabas","se acercaba","nos acercábamos","os acercabais","se acercaban","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Pretérito","Preterite","I approached","me acerqué","te acercaste","se acercó","nos acercamos","acercasteis","se acercaron","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Condicional","Conditional","I would approach","me acercaría","te acercarías","se acercaría","nos acercaríamos","os acercaríais","se acercarían","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Presente perfecto","Present Perfect","I have approached","me he acercado","te has acercado","se ha acercado","nos hemos acercado","os habéis acercado","se han acercado","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have approached","me habré acercado","te habrás acercado","se habrá acercado","nos habremos acercado","os habréis acercado","se habrán acercado","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had approached","me había acercado","te habías acercado","se había acercado","nos habíamos acercado","os habíais acercado","se habían acercado","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had approached","me hube acercado","te hubiste acercado","se hubo acercado","nos hubimos acercado","os hubisteis acercado","se hubieron acercado","acercándose","approaching","acercado","approached" +"acercarse","to approach","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have approached","me habría acercado","te habrías acercado","se habría acercado","nos habríamos acercado","os habríais acercado","se habrían acercado","acercándose","approaching","acercado","approached" +"nos acerquemos" +"acercarse","to approach","Subjuntivo","Subjunctive","Presente","Present","I approach, am approaching","me acerque","te acerques","se acerque","nos acerquemos","os acerquéis","se acerquen","acercándose","approaching","acercado","approached" +"acercarse","to approach","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I approached, was approaching","me acercara","te acercaras","se acercara","nos acercáramos","os acercarais","se acercaran","acercándose","approaching","acercado","approached" +"acercarse","to approach","Subjuntivo","Subjunctive","Futuro","Future","I will approach","me acercare","te acercares","se acercare","nos acercáremos","os acercareis","se acercaren","acercándose","approaching","acercado","approached" +"acercarse","to approach","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have approached, approached","me haya acercado","te hayas acercado","se haya acercado","nos hayamos acercado","os hayáis acercado","se hayan acercado","acercándose","approaching","acercado","approached" +"acercarse","to approach","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have approached","me hubiere acercado","te hubieres acercado","se hubiere acercado","nos hubiéremos acercado","os hubiereis acercado","se hubieren acercado","acercándose","approaching","acercado","approached" +"acercarse","to approach","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had approached","me hubiera acercado","te hubieras acercado","se hubiera acercado","nos hubiéramos acercado","os hubierais acercado","se hubieran acercado","acercándose","approaching","acercado","approached" +"acercarse","to approach","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Approach! Don't approach!","","acércate","acérquese","nos acerquemos","acercaos","acérquense","acercándose","approaching","acercado","approached" +"acercarse","to approach","Imperativo Negativo","Imperative Negative","Presente","Present","Approach! Don't approach!","","no te acerques","no se acerque","no nos acerquemos","no os acerquéis","no se acerquen","acercándose","approaching","acercado","approached" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Presente","Present","I accompany, am accompanying","acompaño","acompañas","acompaña","acompañamos","acompañáis","acompañan","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Futuro","Future","I will accompany","acompañaré","acompañarás","acompañará","acompañaremos","acompañaréis","acompañarán","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Imperfecto","Imperfect","I was accompanying, used to accompany, accompanied","acompañaba","acompañabas","acompañaba","acompañábamos","acompañabais","acompañaban","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Pretérito","Preterite","I accompanied","acompañé","acompañaste","acompañó","acompañamos","acompañasteis","acompañaron","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Condicional","Conditional","I would accompany","acompañaría","acompañarías","acompañaría","acompañaríamos","acompañaríais","acompañarían","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Presente perfecto","Present Perfect","I have accompanied","he acompañado","has acompañado","ha acompañado","hemos acompañado","habéis acompañado","han acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have accompanied","habré acompañado","habrás acompañado","habrá acompañado","habremos acompañado","habréis acompañado","habrán acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had accompanied","había acompañado","habías acompañado","había acompañado","habíamos acompañado","habíais acompañado","habían acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had accompanied","hube acompañado","hubiste acompañado","hubo acompañado","hubimos acompañado","hubisteis acompañado","hubieron acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have accompanied","habría acompañado","habrías acompañado","habría acompañado","habríamos acompañado","habríais acompañado","habrían acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañemos" +"acompañar","to accompany, go with, escort","Subjuntivo","Subjunctive","Presente","Present","I accompany, am accompanying","acompañe","acompañes","acompañe","acompañemos","acompañéis","acompañen","acompañando","accompanying","acompañado","accompanied" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Condicional","Conditional","I would decide","acordaría","acordarías","acordaría","acordaríamos","acordaríais","acordarían","acordando","deciding","acordado","decided" +"acompañar","to accompany, go with, escort","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I accompanied, was accompanying","acompañara","acompañaras","acompañara","acompañáramos","acompañarais","acompañaran","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Subjuntivo","Subjunctive","Futuro","Future","I will accompany","acompañare","acompañares","acompañare","acompañáremos","acompañareis","acompañaren","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have accompanied, accompanied","haya acompañado","hayas acompañado","haya acompañado","hayamos acompañado","hayáis acompañado","hayan acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have accompanied","hubiere acompañado","hubieres acompañado","hubiere acompañado","hubiéremos acompañado","hubiereis acompañado","hubieren acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had accompanied","hubiera acompañado","hubieras acompañado","hubiera acompañado","hubiéramos acompañado","hubierais acompañado","hubieran acompañado","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Accompany! Don't accompany!","","acompaña","acompañe","acompañemos","acompañad","acompañen","acompañando","accompanying","acompañado","accompanied" +"acompañar","to accompany, go with, escort","Imperativo Negativo","Imperative Negative","Presente","Present","Accompany! Don't accompany!","","no acompañes","no acompañe","no acompañemos","no acompañéis","no acompañen","acompañando","accompanying","acompañado","accompanied" +"aconsejar","to advise","Indicativo","Indicative","Presente","Present","I advise, am advising","aconsejo","aconsejas","aconseja","aconsejamos","aconsejáis","aconsejan","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Futuro","Future","I will advise","aconsejaré","aconsejarás","aconsejará","aconsejaremos","aconsejaréis","aconsejarán","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Imperfecto","Imperfect","I was advising, used to advise, advised","aconsejaba","aconsejabas","aconsejaba","aconsejábamos","aconsejabais","aconsejaban","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Pretérito","Preterite","I advised","aconsejé","aconsejaste","aconsejó","aconsejamos","aconsejasteis","aconsejaron","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Condicional","Conditional","I would advise","aconsejaría","aconsejarías","aconsejaría","aconsejaríamos","aconsejaríais","aconsejarían","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Presente perfecto","Present Perfect","I have advisedn","he aconsejado","has aconsejado","ha aconsejado","hemos aconsejado","habéis aconsejado","han aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have advisedn","habré aconsejado","habrás aconsejado","habrá aconsejado","habremos aconsejado","habréis aconsejado","habrán aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had advisedn","había aconsejado","habías aconsejado","había aconsejado","habíamos aconsejado","habíais aconsejado","habían aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had advisedn","hube aconsejado","hubiste aconsejado","hubo aconsejado","hubimos aconsejado","hubisteis aconsejado","hubieron aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have advisedn","habría aconsejado","habrías aconsejado","habría aconsejado","habríamos aconsejado","habríais aconsejado","habrían aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejemos" +"aconsejar","to advise","Subjuntivo","Subjunctive","Presente","Present","I advise, am advising","aconseje","aconsejes","aconseje","aconsejemos","aconsejéis","aconsejen","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I advised, was advising","aconsejara","aconsejaras","aconsejara","aconsejáramos","aconsejarais","aconsejaran","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Subjuntivo","Subjunctive","Futuro","Future","I will advise","aconsejare","aconsejares","aconsejare","aconsejáremos","aconsejareis","aconsejaren","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have advisedn, advised","haya aconsejado","hayas aconsejado","haya aconsejado","hayamos aconsejado","hayáis aconsejado","hayan aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have advisedn","hubiere aconsejado","hubieres aconsejado","hubiere aconsejado","hubiéremos aconsejado","hubiereis aconsejado","hubieren aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had advisedn","hubiera aconsejado","hubieras aconsejado","hubiera aconsejado","hubiéramos aconsejado","hubierais aconsejado","hubieran aconsejado","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Advise! Don't advise!","","aconseja","aconseje","aconsejemos","aconsejad","aconsejen","aconsejando","advising","aconsejado","advisedn" +"aconsejar","to advise","Imperativo Negativo","Imperative Negative","Presente","Present","Advise! Don't advise!","","no aconsejes","no aconseje","no aconsejemos","no aconsejéis","no aconsejen","aconsejando","advising","aconsejado","advisedn" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Presente","Present","I happen, am happening","acontezco","aconteces","acontece","acontecemos","acontecéis","acontecen","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Futuro","Future","I will happen","aconteceré","acontecerás","acontecerá","aconteceremos","aconteceréis","acontecerán","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Imperfecto","Imperfect","I was hapening, used to happen, happened","acontecía","acontecías","acontecía","acontecíamos","acontecíais","acontecían","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Pretérito","Preterite","I happened","acontecí","aconteciste","aconteció","acontecimos","acontecisteis","acontecieron","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Condicional","Conditional","I would happen","acontecería","acontecerías","acontecería","aconteceríamos","aconteceríais","acontecerían","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Presente perfecto","Present Perfect","I have happened","he acontecido","has acontecido","ha acontecido","hemos acontecido","habéis acontecido","han acontecido","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have happened","habré acontecido","habrás acontecido","habrá acontecido","habremos acontecido","habréis acontecido","habrán acontecido","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had happened","había acontecido","habías acontecido","había acontecido","habíamos acontecido","habíais acontecido","habían acontecido","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had happened","hube acontecido","hubiste acontecido","hubo acontecido","hubimos acontecido","hubisteis acontecido","hubieron acontecido","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have happened","habría acontecido","habrías acontecido","habría acontecido","habríamos acontecido","habríais acontecido","habrían acontecido","aconteciendo","happening","acontecido","happened" +"acontezcamos" +"acontecer","to happen, occur, come about","Subjuntivo","Subjunctive","Presente","Present","I happen, am happening","acontezca","acontezcas","acontezca","acontezcamos","acontezcáis","acontezcan","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I happened, was happening","aconteciera","acontecieras","aconteciera","aconteciéramos","acontecierais","acontecieran","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Subjuntivo","Subjunctive","Futuro","Future","I will happen","aconteciere","acontecieres","aconteciere","aconteciéremos","aconteciereis","acontecieren","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have happened, happened","haya acontecido","hayas acontecido","haya acontecido","hayamos acontecido","hayáis acontecido","hayan acontecido","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have happened","hubiere acontecido","hubieres acontecido","hubiere acontecido","hubiéremos acontecido","hubiereis acontecido","hubieren acontecido","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had happened","hubiera acontecido","hubieras acontecido","hubiera acontecido","hubiéramos acontecido","hubierais acontecido","hubieran acontecido","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Happen! Don't happen!","","acontece","acontezca","acontezcamos","aconteced","acontezcan","aconteciendo","happening","acontecido","happened" +"acontecer","to happen, occur, come about","Imperativo Negativo","Imperative Negative","Presente","Present","Happen! Don't happen!","","no acontezcas","no acontezca","no acontezcamos","no acontezcáis","no acontezcan","aconteciendo","happening","acontecido","happened" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Presente","Present","I decide, am deciding","acuerdo","acuerdas","acuerda","acordamos","acordáis","acuerdan","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Futuro","Future","I will decide","acordaré","acordarás","acordará","acordaremos","acordaréis","acordarán","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Imperfecto","Imperfect","I was deciding, used to decide, decided","acordaba","acordabas","acordaba","acordábamos","acordabais","acordaban","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Pretérito","Preterite","I decided","acordé","acordaste","acordó","acordamos","acordasteis","acordaron","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have decided","he acordado","has acordado","ha acordado","hemos acordado","habéis acordado","han acordado","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have decided","habré acordado","habrás acordado","habrá acordado","habremos acordado","habréis acordado","habrán acordado","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had decided","había acordado","habías acordado","había acordado","habíamos acordado","habíais acordado","habían acordado","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had decided","hube acordado","hubiste acordado","hubo acordado","hubimos acordado","hubisteis acordado","hubieron acordado","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have decided","habría acordado","habrías acordado","habría acordado","habríamos acordado","habríais acordado","habrían acordado","acordando","deciding","acordado","decided" +"acordemos" +"acordar","to decide, resolve, agree [on]","Subjuntivo","Subjunctive","Presente","Present","I decide, am deciding","acuerde","acuerdes","acuerde","acordemos","acordéis","acuerden","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I decided, was deciding","acordara","acordaras","acordara","acordáramos","acordarais","acordaran","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Subjuntivo","Subjunctive","Futuro","Future","I will decide","acordare","acordares","acordare","acordáremos","acordareis","acordaren","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have decided, decided","haya acordado","hayas acordado","haya acordado","hayamos acordado","hayáis acordado","hayan acordado","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have decided","hubiere acordado","hubieres acordado","hubiere acordado","hubiéremos acordado","hubiereis acordado","hubieren acordado","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had decided","hubiera acordado","hubieras acordado","hubiera acordado","hubiéramos acordado","hubierais acordado","hubieran acordado","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Decide! Don't decide!","","acuerda","acuerde","acordemos","acordad","acuerden","acordando","deciding","acordado","decided" +"acordar","to decide, resolve, agree [on]","Imperativo Negativo","Imperative Negative","Presente","Present","Decide! Don't decide!","","no acuerdes","no acuerde","no acordemos","no acordéis","no acuerden","acordando","deciding","acordado","decided" +"acordarse","to remember","Indicativo","Indicative","Presente","Present","I remember, am remembering","me acuerdo","te acuerdas","se acuerda","nos acordamos","os acordáis","se acuerdan","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Futuro","Future","I will remember","me acordaré","te acordarás","se acordará","nos acordaremos","os acordaréis","se acordarán","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Imperfecto","Imperfect","I was remembering, used to remember, remembered","me acordaba","te acordabas","se acordaba","nos acordábamos","os acordabais","se acordaban","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Pretérito","Preterite","I remembered","me acordé","te acordaste","se acordó","nos acordamos","os acordasteis","se acordaron","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Condicional","Conditional","I would remember","me acordaría","te acordarías","se acordaría","nos acordaríamos","os acordaríais","se acordarían","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Presente perfecto","Present Perfect","I have remembered","me he acordado","te has acordado","se ha acordado","nos hemos acordado","os habéis acordado","se han acordado","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have remembered","me habré acordado","te habrás acordado","se habrá acordado","nos habremos acordado","os habréis acordado","se habrán acordado","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had remembered","me había acordado","te habías acordado","se había acordado","nos habíamos acordado","os habíais acordado","se habían acordado","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had remembered","me hube acordado","te hubiste acordado","se hubo acordado","nos hubimos acordado","os hubisteis acordado","se hubieron acordado","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have remembered","me habría acordado","te habrías acordado","se habría acordado","nos habríamos acordado","os habríais acordado","se habrían acordado","acordándose","remembering","acordado","remembered" +"nos acordemos" +"acordarse","to remember","Subjuntivo","Subjunctive","Presente","Present","I remember, am remembering","me acuerde","te acuerdes","se acuerde","nos acordemos","os acordéis","se acuerden","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I remembered, was remembering","me acordara","te acordaras","se acordara","nos acordáramos","os acordarais","se acordaran","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Subjuntivo","Subjunctive","Futuro","Future","I will remember","me acordare","te acordares","se acordare","nos acordáremos","os acordareis","se acordaren","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have remembered, remembered","me haya acordado","te hayas acordado","se haya acordado","nos hayamos acordado","os hayáis acordado","se hayan acordado","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have remembered","me hubiere acordado","te hubieres acordado","se hubiere acordado","nos hubiéremos acordado","os hubiereis acordado","se hubieren acordado","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had remembered","me hubiera acordado","te hubieras acordado","se hubiera acordado","nos hubiéramos acordado","os hubierais acordado","se hubieran acordado","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Remember! Don't remember!","","acuérdate","acuérdese","nos acordemos","acordaos","acuérdense","acordándose","remembering","acordado","remembered" +"acordarse","to remember","Imperativo Negativo","Imperative Negative","Presente","Present","Remember! Don't remember!","","no te acuerdes","no se acuerde","no nos acordemos","no os acordéis","no se acuerden","acordándose","remembering","acordado","remembered" +"acortar","to shorten","Indicativo","Indicative","Presente","Present","I shorten, am shortening","acorto","acortas","acorta","acortamos","acortáis","acortan","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Futuro","Future","I will shorten","acortaré","acortarás","acortará","acortaremos","acortaréis","acortarán","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Imperfecto","Imperfect","I was shortening, used to shorten, shortened","acortaba","acortabas","acortaba","acortábamos","acortabais","acortaban","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Pretérito","Preterite","I shortened","acorté","acortaste","acortó","acortamos","acortasteis","acortaron","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Condicional","Conditional","I would shorten","acortaría","acortarías","acortaría","acortaríamos","acortaríais","acortarían","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shortened","he acortado","has acortado","ha acortado","hemos acortado","habéis acortado","han acortado","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shortened","habré acortado","habrás acortado","habrá acortado","habremos acortado","habréis acortado","habrán acortado","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shortened","había acortado","habías acortado","había acortado","habíamos acortado","habíais acortado","habían acortado","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shortened","hube acortado","hubiste acortado","hubo acortado","hubimos acortado","hubisteis acortado","hubieron acortado","acortando","shortening","acortado","shortened" +"acortar","to shorten","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shortened","habría acortado","habrías acortado","habría acortado","habríamos acortado","habríais acortado","habrían acortado","acortando","shortening","acortado","shortened" +"acortemos" +"acortar","to shorten","Subjuntivo","Subjunctive","Presente","Present","I shorten, am shortening","acorte","acortes","acorte","acortemos","acortéis","acorten","acortando","shortening","acortado","shortened" +"acortar","to shorten","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shortened, was shortening","acortara","acortaras","acortara","acortáramos","acortarais","acortaran","acortando","shortening","acortado","shortened" +"acortar","to shorten","Subjuntivo","Subjunctive","Futuro","Future","I will shorten","acortare","acortares","acortare","acortáremos","acortareis","acortaren","acortando","shortening","acortado","shortened" +"acortar","to shorten","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shortened, shortened","haya acortado","hayas acortado","haya acortado","hayamos acortado","hayáis acortado","hayan acortado","acortando","shortening","acortado","shortened" +"acortar","to shorten","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shortened","hubiere acortado","hubieres acortado","hubiere acortado","hubiéremos acortado","hubiereis acortado","hubieren acortado","acortando","shortening","acortado","shortened" +"acortar","to shorten","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shortened","hubiera acortado","hubieras acortado","hubiera acortado","hubiéramos acortado","hubierais acortado","hubieran acortado","acortando","shortening","acortado","shortened" +"acortar","to shorten","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Shorten! Don't shorten!","","acorta","acorte","acortemos","acortad","acorten","acortando","shortening","acortado","shortened" +"acortar","to shorten","Imperativo Negativo","Imperative Negative","Presente","Present","Shorten! Don't shorten!","","no acortes","no acorte","no acortemos","no acortéis","no acorten","acortando","shortening","acortado","shortened" +"acostar","to put to bed","Indicativo","Indicative","Presente","Present","I put to bed, am putting to bed","acuesto","acuestas","acuesta","acostamos","acostáis","acuestan","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Futuro","Future","I will put to bed","acostaré","acostarás","acostará","acostaremos","acostaréis","acostarán","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Imperfecto","Imperfect","I was putting to bed, used to put to bed, put to bed","acostaba","acostabas","acostaba","acostábamos","acostabais","acostaban","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Pretérito","Preterite","I put to bed","acosté","acostaste","acostó","acostamos","acostasteis","acostaron","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Condicional","Conditional","I would put to bed","acostaría","acostarías","acostaría","acostaríamos","acostaríais","acostarían","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put to bed","he acostado","has acostado","ha acostado","hemos acostado","habéis acostado","han acostado","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put to bed","habré acostado","habrás acostado","habrá acostado","habremos acostado","habréis acostado","habrán acostado","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put to bed","había acostado","habías acostado","había acostado","habíamos acostado","habíais acostado","habían acostado","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put to bed","hube acostado","hubiste acostado","hubo acostado","hubimos acostado","hubisteis acostado","hubieron acostado","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put to bed","habría acostado","habrías acostado","habría acostado","habríamos acostado","habríais acostado","habrían acostado","acostando","putting to bed","acostado","put to bed" +"acostemos" +"acostar","to put to bed","Subjuntivo","Subjunctive","Presente","Present","I put to bed, am putting to bed","acueste","acuestes","acueste","acostemos","acostéis","acuesten","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put to bed, was putting to bed","acostara","acostaras","acostara","acostáramos","acostarais","acostaran","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Subjuntivo","Subjunctive","Futuro","Future","I will put to bed","acostare","acostares","acostare","acostáremos","acostareis","acostaren","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put to bed, put to bed","haya acostado","hayas acostado","haya acostado","hayamos acostado","hayáis acostado","hayan acostado","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put to bed","hubiere acostado","hubieres acostado","hubiere acostado","hubiéremos acostado","hubiereis acostado","hubieren acostado","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put to bed","hubiera acostado","hubieras acostado","hubiera acostado","hubiéramos acostado","hubierais acostado","hubieran acostado","acostando","putting to bed","acostado","put to bed" +"acostar","to put to bed","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put to bed! Don't put to bed!","","acuesta","acueste","acostemos","acostad","acuesten","acostando","putting to bed","acostado","put to bed", +"acostar","to put to bed","Imperativo Negativo","Imperative Negative","Presente","Present","Put to bed! Don't put to bed!","","no acuestes","no acueste","no acostemos","no acostéis","no acuesten","acostando","putting to bed","acostado","put to bed", +"acostarse","to go to bed, lie down","Indicativo","Indicative","Presente","Present","I go to bed, am going to bed","me acuesto","te acuestas","se acuesta","nos acostamos","os acostáis","se acuestan","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Futuro","Future","I will go to bed","me acostaré","te acostarás","se acostará","nos acostaremos","os acostaréis","se acostarán","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Imperfecto","Imperfect","I was going to bed, used to go to bed, went to bed","me acostaba","te acostabas","se acostaba","nos acostábamos","os acostabais","se acostaban","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Pretérito","Preterite","I went to bed","me acosté","te acostaste","se acostó","nos acostamos","os acostasteis","se acostaron","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Condicional","Conditional","I would go to bed","me acostaría","te acostarías","se acostaría","nos acostaríamos","os acostaríais","se acostarían","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gone to bed","me he acostado","te has acostado","se ha acostado","nos hemos acostado","os habéis acostado","se han acostado","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gone to bed","me habré acostado","te habrás acostado","se habrá acostado","nos habremos acostado","os habréis acostado","se habrán acostado","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gone to bed","me había acostado","te habías acostado","se había acostado","nos habíamos acostado","os habíais acostado","se habían acostado","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gone to bed","me hube acostado","te hubiste acostado","se hubo acostado","nos hubimos acostado","os hubisteis acostado","se hubieron acostado","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gone to bed","me habría acostado","te habrías acostado","se habría acostado","nos habríamos acostado","os habríais acostado","se habrían acostado","acostándose","going to bed","acostado","gone to bed" +"nos acostemos" +"acostarse","to go to bed, lie down","Subjuntivo","Subjunctive","Presente","Present","I go to bed, am going to bed","me acueste","te acuestes","se acueste","nos acostemos","os acostéis","se acuesten","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I went to bed, was going to bed","me acostara","te acostaras","se acostara","nos acostáramos","os acostarais","se acostaran","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Subjuntivo","Subjunctive","Futuro","Future","I will go to bed","me acostare","te acostares","se acostare","nos acostáremos","os acostareis","se acostaren","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gone to bed, went to bed","me haya acostado","te hayas acostado","se haya acostado","nos hayamos acostado","os hayáis acostado","se hayan acostado","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gone to bed","me hubiere acostado","te hubieres acostado","se hubiere acostado","nos hubiéremos acostado","os hubiereis acostado","se hubieren acostado","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gone to bed","me hubiera acostado","te hubieras acostado","se hubiera acostado","nos hubiéramos acostado","os hubierais acostado","se hubieran acostado","acostándose","going to bed","acostado","gone to bed" +"acostarse","to go to bed, lie down","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Go to bed! Don't go to bed!","","acuéstate","acuéstese","nos acostemos","acostaos","acuéstense","acostándose","going to bed","acostado","gone to bed", +"acostarse","to go to bed, lie down","Imperativo Negativo","Imperative Negative","Presente","Present","Go to bed! Don't go to bed!","","no te acuestes","no se acueste","no nos acostemos","no os acostéis","no se acuesten","acostándose","going to bed","acostado","gone to bed", +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Presente","Present","I am accustomed to","acostumbro","acostumbras","acostumbra","acostumbramos","acostumbráis","acostumbran","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Futuro","Future","I will speak","acostumbraré","acostumbrarás","acostumbrará","acostumbraremos","acostumbraréis","acostumbrarán","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Imperfecto","Imperfect","I was accustomed to, used to be accustomed to, was accustomed to","acostumbraba","acostumbrabas","acostumbraba","acostumbrábamos","acostumbrabais","acostumbraban","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Pretérito","Preterite","I was accustomed to","acostumbré","acostumbraste","acostumbró","acostumbramos","acostumbrasteis","acostumbraron","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Condicional","Conditional","I would be accustomed to","acostumbraría","acostumbrarías","acostumbraría","acostumbraríamos","acostumbraríais","acostumbrarían","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been accustomed to","he acostumbrado","has acostumbrado","ha acostumbrado","hemos acostumbrado","habéis acostumbrado","han acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been accustomed to","habré acostumbrado","habrás acostumbrado","habrá acostumbrado","habremos acostumbrado","habréis acostumbrado","habrán acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"actuar","to act, perform, actuate, operate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have acted, acted","haya actuado","hayas actuado","haya actuado","hayamos actuado","hayáis actuado","hayan actuado","actuando","acting","actuado","acted" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been accustomed to","había acostumbrado","habías acostumbrado","había acostumbrado","habíamos acostumbrado","habíais acostumbrado","habían acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been accustomed to","hube acostumbrado","hubiste acostumbrado","hubo acostumbrado","hubimos acostumbrado","hubisteis acostumbrado","hubieron acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been accustomed to","habría acostumbrado","habrías acostumbrado","habría acostumbrado","habríamos acostumbrado","habríais acostumbrado","habrían acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbremos" +"acostumbrar","to be accustomed to, be in the habit of; to get","Subjuntivo","Subjunctive","Presente","Present","I am accustomed to","acostumbre","acostumbres","acostumbre","acostumbremos","acostumbréis","acostumbren","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was accustomed to, was accustomed to","acostumbrara","acostumbraras","acostumbrara","acostumbráramos","acostumbrarais","acostumbraran","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Subjuntivo","Subjunctive","Futuro","Future","I will be accustomed to","acostumbrare","acostumbrares","acostumbrare","acostumbráremos","acostumbrareis","acostumbraren","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been accustomed to, was accustomed to","haya acostumbrado","hayas acostumbrado","haya acostumbrado","hayamos acostumbrado","hayáis acostumbrado","hayan acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been accustomed to","hubiere acostumbrado","hubieres acostumbrado","hubiere acostumbrado","hubiéremos acostumbrado","hubiereis acostumbrado","hubieren acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been accustomed to","hubiera acostumbrado","hubieras acostumbrado","hubiera acostumbrado","hubiéramos acostumbrado","hubierais acostumbrado","hubieran acostumbrado","acostumbrando","being accustomed to","acostumbrado","been accustomed to" +"acostumbrar","to be accustomed to, be in the habit of; to get","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be accustomed to! Don't be accustomed to!","","acostumbra","acostumbre","acostumbremos","acostumbrad","acostumbren","acostumbrando","being accustomed to","acostumbrado","been accustomed to", +"acostumbrar","to be accustomed to, be in the habit of; to get","Imperativo Negativo","Imperative Negative","Presente","Present","Be accustomed to! Don't be accustomed to!","","no acostumbres","no acostumbre","no acostumbremos","no acostumbréis","no acostumbren","acostumbrando","being accustomed to","acostumbrado","been accustomed to", +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Presente","Present","I get used to, am getting used to","me acostumbro","te acostumbras","se acostumbra","nos acostumbramos","os acostumbráis","se acostumbran","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Futuro","Future","I will get used to","me acostumbraré","te acostumbrarás","se acostumbrará","nos acostumbraremos","os acostumbraréis","se acostumbrarán","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Imperfecto","Imperfect","I was getting used to, used to get used to, got used to","me acostumbraba","te acostumbrabas","se acostumbraba","nos acostumbrábamos","os acostumbrabais","se acostumbraban","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Pretérito","Preterite","I got used to","me acostumbré","te acostumbraste","se acostumbró","nos acostumbramos","os acostumbrasteis","se acostumbraron","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Condicional","Conditional","I would get used to","me acostumbraría","te acostumbrarías","se acostumbraría","nos acostumbraríamos","os acostumbraríais","se acostumbrarían","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten used to","me he acostumbrado","te has acostumbrado","se ha acostumbrado","nos hemos acostumbrado","os habéis acostumbrado","se han acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten used to","me habré acostumbrado","te habrás acostumbrado","se habrá acostumbrado","nos habremos acostumbrado","os habréis acostumbrado","se habrán acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten used to","me había acostumbrado","te habías acostumbrado","se había acostumbrado","nos habíamos acostumbrado","os habíais acostumbrado","se habían acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten used to","me hube acostumbrado","te hubiste acostumbrado","se hubo acostumbrado","nos hubimos acostumbrado","os hubisteis acostumbrado","se hubieron acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten used to","me habría acostumbrado","te habrías acostumbrado","se habría acostumbrado","nos habríamos acostumbrado","os habríais acostumbrado","se habrían acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"nos acostumbremos" +"acostumbrarse","to get used to, get accustomed to","Subjuntivo","Subjunctive","Presente","Present","I get used to, am getting used to","me acostumbre","te acostumbres","se acostumbre","nos acostumbremos","os acostumbréis","se acostumbren","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got used to, was getting used to","me acostumbrara","te acostumbraras","se acostumbrara","nos acostumbráramos","os acostumbrarais","se acostumbraran","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Subjuntivo","Subjunctive","Futuro","Future","I will get used to","me acostumbrare","te acostumbrares","se acostumbrare","nos acostumbráremos","os acostumbrareis","se acostumbraren","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten used to, got used to","me haya acostumbrado","te hayas acostumbrado","se haya acostumbrado","nos hayamos acostumbrado","os hayáis acostumbrado","se hayan acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten used to","me hubiere acostumbrado","te hubieres acostumbrado","se hubiere acostumbrado","nos hubiéremos acostumbrado","os hubiereis acostumbrado","se hubieren acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten used to","me hubiera acostumbrado","te hubieras acostumbrado","se hubiera acostumbrado","nos hubiéramos acostumbrado","os hubierais acostumbrado","se hubieran acostumbrado","acostumbrándose","getting used to","acostumbrado","got used to" +"acostumbrarse","to get used to, get accustomed to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","get used to! Don't get used to!","","acostúmbrate","acostúmbrese","nos acostumbremos","acostumbraos","acostúmbrense","acostumbrándose","getting used to","acostumbrado","got used to", +"acostumbrarse","to get used to, get accustomed to","Imperativo Negativo","Imperative Negative","Presente","Present","get used to! Don't get used to!","","no te acostumbres","no se acostumbre","no nos acostumbremos","no os acostumbréis","no se acostumbren","acostumbrándose","getting used to","acostumbrado","got used to", +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Presente","Present","I act, am acting","actúo","actúas","actúa","actuamos","actuáis","actúan","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Futuro","Future","I will act","actuaré","actuarás","actuará","actuaremos","actuaréis","actuarán","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Imperfecto","Imperfect","I was acting, used to act, acted","actuaba","actuabas","actuaba","actuábamos","actuabais","actuaban","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Pretérito","Preterite","I acted","actué","actuaste","actuó","actuamos","actuasteis","actuaron","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Condicional","Conditional","I would act","actuaría","actuarías","actuaría","actuaríamos","actuaríais","actuarían","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have acted","he actuado","has actuado","ha actuado","hemos actuado","habéis actuado","han actuado","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have acted","habré actuado","habrás actuado","habrá actuado","habremos actuado","habréis actuado","habrán actuado","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had acted","había actuado","habías actuado","había actuado","habíamos actuado","habíais actuado","habían actuado","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had acted","hube actuado","hubiste actuado","hubo actuado","hubimos actuado","hubisteis actuado","hubieron actuado","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have acted","habría actuado","habrías actuado","habría actuado","habríamos actuado","habríais actuado","habrían actuado","actuando","acting","actuado","acted" +"actuemos" +"actuar","to act, perform, actuate, operate","Subjuntivo","Subjunctive","Presente","Present","I act, am acting","actúe","actúes","actúe","actuemos","actuéis","actúen","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I acted, was acting","actuara","actuaras","actuara","actuáramos","actuarais","actuaran","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Subjuntivo","Subjunctive","Futuro","Future","I will act","actuare","actuares","actuare","actuáremos","actuareis","actuaren","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have acted","hubiere actuado","hubieres actuado","hubiere actuado","hubiéremos actuado","hubiereis actuado","hubieren actuado","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had acted","hubiera actuado","hubieras actuado","hubiera actuado","hubiéramos actuado","hubierais actuado","hubieran actuado","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Act! Don't act!","","actúa","actúe","actuemos","actuad","actúen","actuando","acting","actuado","acted" +"actuar","to act, perform, actuate, operate","Imperativo Negativo","Imperative Negative","Presente","Present","Act! Don't act!","","no actúes","no actúe","no actuemos","no actuéis","no actúen","actuando","acting","actuado","acted" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Presente","Present","I guess, am guessing","adivino","adivinas","adivina","adivinamos","adivináis","adivinan","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Futuro","Future","I will guess","adivinaré","adivinarás","adivinará","adivinaremos","adivinaréis","adivinarán","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Imperfecto","Imperfect","I was guessing, used to guess, guessed","adivinaba","adivinabas","adivinaba","adivinábamos","adivinabais","adivinaban","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Pretérito","Preterite","I guessed","adiviné","adivinaste","adivinó","adivinamos","adivinasteis","adivinaron","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Condicional","Conditional","I would guess","adivinaría","adivinarías","adivinaría","adivinaríamos","adivinaríais","adivinarían","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Presente perfecto","Present Perfect","I have guessed","he adivinado","has adivinado","ha adivinado","hemos adivinado","habéis adivinado","han adivinado","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have guessed","habré adivinado","habrás adivinado","habrá adivinado","habremos adivinado","habréis adivinado","habrán adivinado","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had guessed","había adivinado","habías adivinado","había adivinado","habíamos adivinado","habíais adivinado","habían adivinado","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had guessed","hube adivinado","hubiste adivinado","hubo adivinado","hubimos adivinado","hubisteis adivinado","hubieron adivinado","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have guessed","habría adivinado","habrías adivinado","habría adivinado","habríamos adivinado","habríais adivinado","habrían adivinado","adivinando","guessing","adivinado","guessed" +"adivinemos" +"adivinar","to guess, fortell, prophesy; to guess correctly","Subjuntivo","Subjunctive","Presente","Present","I guess, am guessing","adivine","adivines","adivine","adivinemos","adivinéis","adivinen","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I guessed, was guessing","adivinara","adivinaras","adivinara","adivináramos","adivinarais","adivinaran","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Subjuntivo","Subjunctive","Futuro","Future","I will guess","adivinare","adivinares","adivinare","adivináremos","adivinareis","adivinaren","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have guessed, guessed","haya adivinado","hayas adivinado","haya adivinado","hayamos adivinado","hayáis adivinado","hayan adivinado","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have guessed","hubiere adivinado","hubieres adivinado","hubiere adivinado","hubiéremos adivinado","hubiereis adivinado","hubieren adivinado","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had guessed","hubiera adivinado","hubieras adivinado","hubiera adivinado","hubiéramos adivinado","hubierais adivinado","hubieran adivinado","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Guess! Don't guess!","","adivina","adivine","adivinemos","adivinad","adivinen","adivinando","guessing","adivinado","guessed" +"adivinar","to guess, fortell, prophesy; to guess correctly","Imperativo Negativo","Imperative Negative","Presente","Present","Guess! Don't guess!","","no adivines","no adivine","no adivinemos","no adivinéis","no adivinen","adivinando","guessing","adivinado","guessed" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Presente","Present","I admire, am admiring","admiro","admiras","admira","admiramos","admiráis","admiran","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Futuro","Future","I will admire","admiraré","admirarás","admirará","admiraremos","admiraréis","admirarán","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Imperfecto","Imperfect","I was admiring, used to admire, admired","admiraba","admirabas","admiraba","admirábamos","admirabais","admiraban","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Pretérito","Preterite","I admired","admiré","admiraste","admiró","admiramos","admirasteis","admiraron","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Condicional","Conditional","I would admire","admiraría","admirarías","admiraría","admiraríamos","admiraríais","admirarían","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have admired","he admirado","has admirado","ha admirado","hemos admirado","habéis admirado","han admirado","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have admired","habré admirado","habrás admirado","habrá admirado","habremos admirado","habréis admirado","habrán admirado","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had admired","había admirado","habías admirado","había admirado","habíamos admirado","habíais admirado","habían admirado","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had admired","hube admirado","hubiste admirado","hubo admirado","hubimos admirado","hubisteis admirado","hubieron admirado","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have admired","habría admirado","habrías admirado","habría admirado","habríamos admirado","habríais admirado","habrían admirado","admirando","admiring","admirado","admired" +"admiremos" +"admirar","to admire, respect, look up to","Subjuntivo","Subjunctive","Presente","Present","I admire, am admiring","admire","admires","admire","admiremos","admiréis","admiren","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I admired, was admiring","admirara","admiraras","admirara","admiráramos","admirarais","admiraran","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Subjuntivo","Subjunctive","Futuro","Future","I will admire","admirare","admirares","admirare","admiráremos","admirareis","admiraren","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have admired, admired","haya admirado","hayas admirado","haya admirado","hayamos admirado","hayáis admirado","hayan admirado","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have admired","hubiere admirado","hubieres admirado","hubiere admirado","hubiéremos admirado","hubiereis admirado","hubieren admirado","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had admired","hubiera admirado","hubieras admirado","hubiera admirado","hubiéramos admirado","hubierais admirado","hubieran admirado","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Admire! Don't admire!","","admira","admire","admiremos","admirad","admiren","admirando","admiring","admirado","admired" +"admirar","to admire, respect, look up to","Imperativo Negativo","Imperative Negative","Presente","Present","Admire! Don't admire!","","no admires","no admire","no admiremos","no admiréis","no admiren","admirando","admiring","admirado","admired" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Presente","Present","I admit, am admitting","admito","admites","admite","admitimos","admitís","admiten","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Futuro","Future","I will admit","admitiré","admitirás","admitirá","admitiremos","admitiréis","admitirán","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Imperfecto","Imperfect","I was admitting, used to admit, admitted","admitía","admitías","admitía","admitíamos","admitíais","admitían","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Pretérito","Preterite","I admitted","admití","admitiste","admitió","admitimos","admitisteis","admitieron","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Condicional","Conditional","I would admit","admitiría","admitirías","admitiría","admitiríamos","admitiríais","admitirían","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have admitted","he admitido","has admitido","ha admitido","hemos admitido","habéis admitido","han admitido","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have admitted","habré admitido","habrás admitido","habrá admitido","habremos admitido","habréis admitido","habrán admitido","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had admitted","había admitido","habías admitido","había admitido","habíamos admitido","habíais admitido","habían admitido","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had admitted","hube admitido","hubiste admitido","hubo admitido","hubimos admitido","hubisteis admitido","hubieron admitido","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have admitted","habría admitido","habrías admitido","habría admitido","habríamos admitido","habríais admitido","habrían admitido","admitiendo","admitting","admitido","admitted" +"admitamos" +"admitir","to admit, accept, allow, recognize","Subjuntivo","Subjunctive","Presente","Present","I admit, am admitting","admita","admitas","admita","admitamos","admitáis","admitan","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I admitted, was admitting","admitiera","admitieras","admitiera","admitiéramos","admitierais","admitieran","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Subjuntivo","Subjunctive","Futuro","Future","I will admit","admitiere","admitieres","admitiere","admitiéremos","admitiereis","admitieren","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have admitted, admitted","haya admitido","hayas admitido","haya admitido","hayamos admitido","hayáis admitido","hayan admitido","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have admitted","hubiere admitido","hubieres admitido","hubiere admitido","hubiéremos admitido","hubiereis admitido","hubieren admitido","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had admitted","hubiera admitido","hubieras admitido","hubiera admitido","hubiéramos admitido","hubierais admitido","hubieran admitido","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Admit! Don't admit!","","admite","admita","admitamos","admitid","admitan","admitiendo","admitting","admitido","admitted" +"admitir","to admit, accept, allow, recognize","Imperativo Negativo","Imperative Negative","Presente","Present","Admit! Don't admit!","","no admitas","no admita","no admitamos","no admitáis","no admitan","admitiendo","admitting","admitido","admitted" +"adorar","to adore, worship","Indicativo","Indicative","Presente","Present","I adore, am adoring","adoro","adoras","adora","adoramos","adoráis","adoran","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Futuro","Future","I will adore","adoraré","adorarás","adorará","adoraremos","adoraréis","adorarán","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Imperfecto","Imperfect","I was adoring, used to adore, adored","adoraba","adorabas","adoraba","adorábamos","adorabais","adoraban","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Pretérito","Preterite","I adored","adoré","adoraste","adoró","adoramos","adorasteis","adoraron","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Condicional","Conditional","I would adore","adoraría","adorarías","adoraría","adoraríamos","adoraríais","adorarían","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Presente perfecto","Present Perfect","I have adored","he adorado","has adorado","ha adorado","hemos adorado","habéis adorado","han adorado","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have adored","habré adorado","habrás adorado","habrá adorado","habremos adorado","habréis adorado","habrán adorado","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had adored","había adorado","habías adorado","había adorado","habíamos adorado","habíais adorado","habían adorado","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had adored","hube adorado","hubiste adorado","hubo adorado","hubimos adorado","hubisteis adorado","hubieron adorado","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have adored","habría adorado","habrías adorado","habría adorado","habríamos adorado","habríais adorado","habrían adorado","adorando","adoring","adorado","adored" +"adoremos" +"adorar","to adore, worship","Subjuntivo","Subjunctive","Presente","Present","I adore, am adoring","adore","adores","adore","adoremos","adoréis","adoren","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I adored, was adoring","adorara","adoraras","adorara","adoráramos","adorarais","adoraran","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Subjuntivo","Subjunctive","Futuro","Future","I will adore","adorare","adorares","adorare","adoráremos","adorareis","adoraren","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have adored, adored","haya adorado","hayas adorado","haya adorado","hayamos adorado","hayáis adorado","hayan adorado","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have adored","hubiere adorado","hubieres adorado","hubiere adorado","hubiéremos adorado","hubiereis adorado","hubieren adorado","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had adored","hubiera adorado","hubieras adorado","hubiera adorado","hubiéramos adorado","hubierais adorado","hubieran adorado","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Adore! Don't adore!","","adora","adore","adoremos","adorad","adoren","adorando","adoring","adorado","adored" +"adorar","to adore, worship","Imperativo Negativo","Imperative Negative","Presente","Present","Adore! Don't adore!","","no adores","no adore","no adoremos","no adoréis","no adoren","adorando","adoring","adorado","adored" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Presente","Present","I adorn, am adorning","adorno","adornas","adorna","adornamos","adornáis","adornan","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Futuro","Future","I will adorn","adornaré","adornarás","adornará","adornaremos","adornaréis","adornarán","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Imperfecto","Imperfect","I was adorning, used to adorn, adorned","adornaba","adornabas","adornaba","adornábamos","adornabais","adornaban","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Pretérito","Preterite","I adorned","adorné","adornaste","adornó","adornamos","adornasteis","adornaron","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Condicional","Conditional","I would adorn","adornaría","adornarías","adornaría","adornaríamos","adornaríais","adornarían","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have adorned","he adornado","has adornado","ha adornado","hemos adornado","habéis adornado","han adornado","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have adorned","habré adornado","habrás adornado","habrá adornado","habremos adornado","habréis adornado","habrán adornado","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had adorned","había adornado","habías adornado","había adornado","habíamos adornado","habíais adornado","habían adornado","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had adorned","hube adornado","hubiste adornado","hubo adornado","hubimos adornado","hubisteis adornado","hubieron adornado","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have adorned","habría adornado","habrías adornado","habría adornado","habríamos adornado","habríais adornado","habrían adornado","adornando","adorning","adornado","adorned" +"adornemos" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Subjuntivo","Subjunctive","Presente","Present","I adorn, am adorning","adorne","adornes","adorne","adornemos","adornéis","adornen","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I adorned, was adorning","adornara","adornaras","adornara","adornáramos","adornarais","adornaran","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Subjuntivo","Subjunctive","Futuro","Future","I will adorn","adornare","adornares","adornare","adornáremos","adornareis","adornaren","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have adorned, adorned","haya adornado","hayas adornado","haya adornado","hayamos adornado","hayáis adornado","hayan adornado","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have adorned","hubiere adornado","hubieres adornado","hubiere adornado","hubiéremos adornado","hubiereis adornado","hubieren adornado","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had adorned","hubiera adornado","hubieras adornado","hubiera adornado","hubiéramos adornado","hubierais adornado","hubieran adornado","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Adorn! Don't adorn!","","adorna","adorne","adornemos","adornad","adornen","adornando","adorning","adornado","adorned" +"adornar","to adorn; to decorate, embellish; to garnish [food]","Imperativo Negativo","Imperative Negative","Presente","Present","Adorn! Don't adorn!","","no adornes","no adorne","no adornemos","no adornéis","no adornen","adornando","adorning","adornado","adorned" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Presente","Present","I notice, am noticing","advierto","adviertes","advierte","advertimos","advertís","advierten","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Futuro","Future","I will notice","advertiré","advertirás","advertirá","advertiremos","advertiréis","advertirán","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Imperfecto","Imperfect","I was noticing, used to notice, noticed","advertía","advertías","advertía","advertíamos","advertíais","advertían","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Pretérito","Preterite","I noticed","advertí","advertiste","advirtió","advertimos","advertisteis","advirtieron","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Condicional","Conditional","I would notice","advertiría","advertirías","advertiría","advertiríamos","advertiríais","advertirían","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Presente perfecto","Present Perfect","I have noticed","he advertido","has advertido","ha advertido","hemos advertido","habéis advertido","han advertido","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have noticed","habré advertido","habrás advertido","habrá advertido","habremos advertido","habréis advertido","habrán advertido","advirtiendo","noticing","advertido","noticed" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Futuro","Future","I will make firm","afirmaré","afirmarás","afirmará","afirmaremos","afirmaréis","afirmarán","afirmando","making firm","afirmado","made firm" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had noticed","había advertido","habías advertido","había advertido","habíamos advertido","habíais advertido","habían advertido","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had noticed","hube advertido","hubiste advertido","hubo advertido","hubimos advertido","hubisteis advertido","hubieron advertido","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have noticed","habría advertido","habrías advertido","habría advertido","habríamos advertido","habríais advertido","habrían advertido","advirtiendo","noticing","advertido","noticed" +"advirtamos" +"advertir","to notice, observe, advise, warn","Subjuntivo","Subjunctive","Presente","Present","I notice, am noticing","advierta","adviertas","advierta","advirtamos","advirtáis","adviertan","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I noticed, was noticing","advirtiera","advirtieras","advirtiera","advirtiéramos","advirtierais","advirtieran","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Subjuntivo","Subjunctive","Futuro","Future","I will notice","advirtiere","advirtieres","advirtiere","advirtiéremos","advirtiereis","advirtieren","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have noticed, noticed","haya advertido","hayas advertido","haya advertido","hayamos advertido","hayáis advertido","hayan advertido","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have noticed","hubiere advertido","hubieres advertido","hubiere advertido","hubiéremos advertido","hubiereis advertido","hubieren advertido","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had noticed","hubiera advertido","hubieras advertido","hubiera advertido","hubiéramos advertido","hubierais advertido","hubieran advertido","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Notice! Don't notice!","","advierte","advierta","advirtamos","advertid","adviertan","advirtiendo","noticing","advertido","noticed" +"advertir","to notice, observe, advise, warn","Imperativo Negativo","Imperative Negative","Presente","Present","Notice! Don't notice!","","no adviertas","no advierta","no advirtamos","no advirtáis","no adviertan","advirtiendo","noticing","advertido","noticed" +"afeitar","to shave","Indicativo","Indicative","Presente","Present","I shave, am shaving","afeito","afeitas","afeita","afeitamos","afeitáis","afeitan","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Futuro","Future","I will shave","afeitaré","afeitarás","afeitará","afeitaremos","afeitaréis","afeitarán","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Imperfecto","Imperfect","I was shaving, used to shave, shaved","afeitaba","afeitabas","afeitaba","afeitábamos","afeitabais","afeitaban","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Pretérito","Preterite","I shaved","afeité","afeitaste","afeitó","afeitamos","afeitasteis","afeitaron","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Condicional","Conditional","I would shave","afeitaría","afeitarías","afeitaría","afeitaríamos","afeitaríais","afeitarían","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shaved","he afeitado","has afeitado","ha afeitado","hemos afeitado","habéis afeitado","han afeitado","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shaved","habré afeitado","habrás afeitado","habrá afeitado","habremos afeitado","habréis afeitado","habrán afeitado","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shaved","había afeitado","habías afeitado","había afeitado","habíamos afeitado","habíais afeitado","habían afeitado","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shaved","hube afeitado","hubiste afeitado","hubo afeitado","hubimos afeitado","hubisteis afeitado","hubieron afeitado","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shaved","habría afeitado","habrías afeitado","habría afeitado","habríamos afeitado","habríais afeitado","habrían afeitado","afeitando","shaving","afeitado","shaved" +"afeitemos" +"afeitar","to shave","Subjuntivo","Subjunctive","Presente","Present","I shave, am shaving","afeite","afeites","afeite","afeitemos","afeitéis","afeiten","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shaved, was shaving","afeitara","afeitaras","afeitara","afeitáramos","afeitarais","afeitaran","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Subjuntivo","Subjunctive","Futuro","Future","I will shave","afeitare","afeitares","afeitare","afeitáremos","afeitareis","afeitaren","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shaved, shaved","haya afeitado","hayas afeitado","haya afeitado","hayamos afeitado","hayáis afeitado","hayan afeitado","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shaved","hubiere afeitado","hubieres afeitado","hubiere afeitado","hubiéremos afeitado","hubiereis afeitado","hubieren afeitado","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shaved","hubiera afeitado","hubieras afeitado","hubiera afeitado","hubiéramos afeitado","hubierais afeitado","hubieran afeitado","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Shave! Don't shave!","","afeita","afeite","afeitemos","afeitad","afeiten","afeitando","shaving","afeitado","shaved" +"afeitar","to shave","Imperativo Negativo","Imperative Negative","Presente","Present","Shave! Don't shave!","","no afeites","no afeite","no afeitemos","no afeitéis","no afeiten","afeitando","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Presente","Present","I shave, am shaving","me afeito","te afeitas","se afeita","nos afeitamos","os afeitáis","se afeitan","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Futuro","Future","I will shave","me afeitaré","te afeitarás","se afeitará","nos afeitaremos","os afeitaréis","se afeitarán","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was shaving, used to shave, shaved","me afeitaba","te afeitabas","se afeitaba","nos afeitábamos","os afeitabais","se afeitaban","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Pretérito","Preterite","I shaved","me afeité","te afeitaste","se afeitó","nos afeitamos","os afeitasteis","se afeitaron","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Condicional","Conditional","I would shave","me afeitaría","te afeitarías","se afeitaría","nos afeitaríamos","os afeitaríais","se afeitarían","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shaved","me he afeitado","te has afeitado","se ha afeitado","nos hemos afeitado","os habéis afeitado","se han afeitado","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shaved","me habré afeitado","te habrás afeitado","se habrá afeitado","nos habremos afeitado","os habréis afeitado","se habrán afeitado","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shaved","me había afeitado","te habías afeitado","se había afeitado","nos habíamos afeitado","os habíais afeitado","se habían afeitado","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shaved","me hube afeitado","te hubiste afeitado","se hubo afeitado","nos hubimos afeitado","os hubisteis afeitado","se hubieron afeitado","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shaved","me habría afeitado","te habrías afeitado","se habría afeitado","nos habríamos afeitado","os habríais afeitado","se habrían afeitado","afeitándose","shaving","afeitado","shaved" +"nos afeitemos" +"afeitarse","to shave [oneself]","Subjuntivo","Subjunctive","Presente","Present","I shave, am shaving","me afeite","te afeites","se afeite","nos afeitemos","os afeitéis","se afeiten","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shaved, was shaving","me afeitara","te afeitaras","se afeitara","nos afeitáramos","os afeitarais","se afeitaran","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will shave","me afeitare","te afeitares","se afeitare","nos afeitáremos","os afeitareis","se afeitaren","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shaved, shaved","me haya afeitado","te hayas afeitado","se haya afeitado","nos hayamos afeitado","os hayáis afeitado","se hayan afeitado","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shaved","me hubiere afeitado","te hubieres afeitado","se hubiere afeitado","nos hubiéremos afeitado","os hubiereis afeitado","se hubieren afeitado","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shaved","me hubiera afeitado","te hubieras afeitado","se hubiera afeitado","nos hubiéramos afeitado","os hubierais afeitado","se hubieran afeitado","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Shave! Don't shave!","","aféitate","aféitese","nos afeitemos","afeitaos","aféitense","afeitándose","shaving","afeitado","shaved" +"afeitarse","to shave [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Shave! Don't shave!","","no te afeites","no se afeite","no nos afeitemos","no os afeitéis","no se afeiten","afeitándose","shaving","afeitado","shaved" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Presente","Present","I make firm, am making firm","afirmo","afirmas","afirma","afirmamos","afirmáis","afirman","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Imperfecto","Imperfect","I was making firm, used to make firm, made firm","afirmaba","afirmabas","afirmaba","afirmábamos","afirmabais","afirmaban","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Pretérito","Preterite","I made firm","afirmé","afirmaste","afirmó","afirmamos","afirmasteis","afirmaron","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Condicional","Conditional","I would make firm","afirmaría","afirmarías","afirmaría","afirmaríamos","afirmaríais","afirmarían","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Presente perfecto","Present Perfect","I have made firm","he afirmado","has afirmado","ha afirmado","hemos afirmado","habéis afirmado","han afirmado","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have made firm","habré afirmado","habrás afirmado","habrá afirmado","habremos afirmado","habréis afirmado","habrán afirmado","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had made firm","había afirmado","habías afirmado","había afirmado","habíamos afirmado","habíais afirmado","habían afirmado","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had made firm","hube afirmado","hubiste afirmado","hubo afirmado","hubimos afirmado","hubisteis afirmado","hubieron afirmado","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have made firm","habría afirmado","habrías afirmado","habría afirmado","habríamos afirmado","habríais afirmado","habrían afirmado","afirmando","making firm","afirmado","made firm" +"afirmemos" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Subjuntivo","Subjunctive","Presente","Present","I make firm, am making firm","afirme","afirmes","afirme","afirmemos","afirméis","afirmen","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I made firm, was making firm","afirmara","afirmaras","afirmara","afirmáramos","afirmarais","afirmaran","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Subjuntivo","Subjunctive","Futuro","Future","I will make firm","afirmare","afirmares","afirmare","afirmáremos","afirmareis","afirmaren","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have made firm, made firm","haya afirmado","hayas afirmado","haya afirmado","hayamos afirmado","hayáis afirmado","hayan afirmado","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have made firm","hubiere afirmado","hubieres afirmado","hubiere afirmado","hubiéremos afirmado","hubiereis afirmado","hubieren afirmado","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had made firm","hubiera afirmado","hubieras afirmado","hubiera afirmado","hubiéramos afirmado","hubierais afirmado","hubieran afirmado","afirmando","making firm","afirmado","made firm" +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Make firm! Don't make firm!","","afirma","afirme","afirmemos","afirmad","afirmen","afirmando","making firm","afirmado","made firm", +"afirmar","to make firm, steady, strengthen; to affirm, state, assert","Imperativo Negativo","Imperative Negative","Presente","Present","Make firm! Don't make firm!","","no afirmes","no afirme","no afirmemos","no afirméis","no afirmen","afirmando","making firm","afirmado","made firm", +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Presente","Present","I afflict, am afflicting","aflijo","afliges","aflige","afligimos","afligís","afligen","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Futuro","Future","I will afflict","afligiré","afligirás","afligirá","afligiremos","afligiréis","afligirán","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Imperfecto","Imperfect","I was afflicting, used to afflict, afflicted","afligía","afligías","afligía","afligíamos","afligíais","afligían","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Pretérito","Preterite","I afflicted","afligí","afligiste","afligió","afligimos","afligisteis","afligieron","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Condicional","Conditional","I would afflict","afligiría","afligirías","afligiría","afligiríamos","afligiríais","afligirían","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Presente perfecto","Present Perfect","I have aflficted","he afligido","has afligido","ha afligido","hemos afligido","habéis afligido","han afligido","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have afflicted","habré afligido","habrás afligido","habrá afligido","habremos afligido","habréis afligido","habrán afligido","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had afflicted","había afligido","habías afligido","había afligido","habíamos afligido","habíais afligido","habían afligido","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had afflicted","hube afligido","hubiste afligido","hubo afligido","hubimos afligido","hubisteis afligido","hubieron afligido","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have afflicted","habría afligido","habrías afligido","habría afligido","habríamos afligido","habríais afligido","habrían afligido","afligiendo","afflicting","afligido","afflicted" +"aflijamos" +"afligir","to afflict, to grieve, to pain, to distress","Subjuntivo","Subjunctive","Presente","Present","I afflict, am afflicting","aflija","aflijas","aflija","aflijamos","aflijáis","aflijan","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I afflicted, was afflicting","afligiera","afligieras","afligiera","afligiéramos","afligierais","afligieran","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Subjuntivo","Subjunctive","Futuro","Future","I will afflict","afligiere","afligieres","afligiere","afligiéremos","afligiereis","afligieren","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have afflicted, afflicted","haya afligido","hayas afligido","haya afligido","hayamos afligido","hayáis afligido","hayan afligido","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have afflicted","hubiere afligido","hubieres afligido","hubiere afligido","hubiéremos afligido","hubiereis afligido","hubieren afligido","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had afflicted","hubiera afligido","hubieras afligido","hubiera afligido","hubiéramos afligido","hubierais afligido","hubieran afligido","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Afflict! Don't afflict!","","aflige","aflija","aflijamos","afligid","aflijan","afligiendo","afflicting","afligido","afflicted" +"afligir","to afflict, to grieve, to pain, to distress","Imperativo Negativo","Imperative Negative","Presente","Present","Afflict! Don't afflict!","","no aflijas","no aflija","no aflijamos","no aflijáis","no aflijan","afligiendo","afflicting","afligido","afflicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Presente","Present","I predict, am predicting","agüero","agüeras","agüera","agoramos","agoráis","agüeran","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Futuro","Future","I will predict","agoraré","agorarás","agorará","agoraremos","agoraréis","agorarán","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Imperfecto","Imperfect","I was predicting, used to predict, predicted","agoraba","agorabas","agoraba","agorábamos","agorabais","agoraban","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Pretérito","Preterite","I predicted","agoré","agoraste","agoró","agoramos","agorasteis","agoraron","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Condicional","Conditional","I would predict","agoraría","agorarías","agoraría","agoraríamos","agoraríais","agorarían","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Presente perfecto","Present Perfect","I have predicted","he agorado","has agorado","ha agorado","hemos agorado","habéis agorado","han agorado","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have predicted","habré agorado","habrás agorado","habrá agorado","habremos agorado","habréis agorado","habrán agorado","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had predicted","había agorado","habías agorado","había agorado","habíamos agorado","habíais agorado","habían agorado","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had predicted","hube agorado","hubiste agorado","hubo agorado","hubimos agorado","hubisteis agorado","hubieron agorado","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have predicted","habría agorado","habrías agorado","habría agorado","habríamos agorado","habríais agorado","habrían agorado","agorando","predicting","agorado","predicted" +"agoremos" +"agorar","to predict, prophesy","Subjuntivo","Subjunctive","Presente","Present","I predict, am predicting","agüere","agüeres","agüere","agoremos","agoréis","agüeren","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I predicted, was predicting","agorara","agoraras","agorara","agoráramos","agorarais","agoraran","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Subjuntivo","Subjunctive","Futuro","Future","I will predict","agorare","agorares","agorare","agoráremos","agorareis","agoraren","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have predicted, predicted","haya agorado","hayas agorado","haya agorado","hayamos agorado","hayáis agorado","hayan agorado","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have predicted","hubiere agorado","hubieres agorado","hubiere agorado","hubiéremos agorado","hubiereis agorado","hubieren agorado","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had predicted","hubiera agorado","hubieras agorado","hubiera agorado","hubiéramos agorado","hubierais agorado","hubieran agorado","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Predict! Don't predict!","","agüera","agüere","agoremos","agorad","agüeren","agorando","predicting","agorado","predicted" +"agorar","to predict, prophesy","Imperativo Negativo","Imperative Negative","Presente","Present","Predict! Don't predict!","","no agüeres","no agüere","no agoremos","no agoréis","no agüeren","agorando","predicting","agorado","predicted" +"agradar","to please, be pleasing","Indicativo","Indicative","Presente","Present","I please, am pleasing","agrado","agradas","agrada","agradamos","agradáis","agradan","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Futuro","Future","I will please","agradaré","agradarás","agradará","agradaremos","agradaréis","agradarán","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Imperfecto","Imperfect","I was pleasing, used to please, pleased","agradaba","agradabas","agradaba","agradábamos","agradabais","agradaban","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Pretérito","Preterite","I pleased","agradé","agradaste","agradó","agradamos","agradasteis","agradaron","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Condicional","Conditional","I would please","agradaría","agradarías","agradaría","agradaríamos","agradaríais","agradarían","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Presente perfecto","Present Perfect","I have pleased","he agradado","has agradado","ha agradado","hemos agradado","habéis agradado","han agradado","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have pleased","habré agradado","habrás agradado","habrá agradado","habremos agradado","habréis agradado","habrán agradado","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had pleased","había agradado","habías agradado","había agradado","habíamos agradado","habíais agradado","habían agradado","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had pleased","hube agradado","hubiste agradado","hubo agradado","hubimos agradado","hubisteis agradado","hubieron agradado","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have pleased","habría agradado","habrías agradado","habría agradado","habríamos agradado","habríais agradado","habrían agradado","agradando","pleasing","agradado","pleased" +"agrademos" +"agradar","to please, be pleasing","Subjuntivo","Subjunctive","Presente","Present","I please, am pleasing","agrade","agrades","agrade","agrademos","agradéis","agraden","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I pleased, was pleasing","agradara","agradaras","agradara","agradáramos","agradarais","agradaran","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Subjuntivo","Subjunctive","Futuro","Future","I will please","agradare","agradares","agradare","agradáremos","agradareis","agradaren","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have pleased, pleased","haya agradado","hayas agradado","haya agradado","hayamos agradado","hayáis agradado","hayan agradado","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have pleased","hubiere agradado","hubieres agradado","hubiere agradado","hubiéremos agradado","hubiereis agradado","hubieren agradado","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had pleased","hubiera agradado","hubieras agradado","hubiera agradado","hubiéramos agradado","hubierais agradado","hubieran agradado","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Please! Don't please!","","agrada","agrade","agrademos","agradad","agraden","agradando","pleasing","agradado","pleased" +"agradar","to please, be pleasing","Imperativo Negativo","Imperative Negative","Presente","Present","Please! Don't please!","","no agrades","no agrade","no agrademos","no agradéis","no agraden","agradando","pleasing","agradado","pleased" +"agradecer","to be thankful for","Indicativo","Indicative","Presente","Present","I am thankful for","agradezco","agradeces","agradece","agradecemos","agradecéis","agradecen","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Futuro","Future","I will be thankful for","agradeceré","agradecerás","agradecerá","agradeceremos","agradeceréis","agradecerán","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Imperfecto","Imperfect","I was being thankful for, used to be thankful for, was thankful for","agradecía","agradecías","agradecía","agradecíamos","agradecíais","agradecían","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Pretérito","Preterite","I was thankful for","agradecí","agradeciste","agradeció","agradecimos","agradecisteis","agradecieron","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Condicional","Conditional","I would be thankful for","agradecería","agradecerías","agradecería","agradeceríamos","agradeceríais","agradecerían","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been thankful for","he agradecido","has agradecido","ha agradecido","hemos agradecido","habéis agradecido","han agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been thankful for","habré agradecido","habrás agradecido","habrá agradecido","habremos agradecido","habréis agradecido","habrán agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been thankful for","había agradecido","habías agradecido","había agradecido","habíamos agradecido","habíais agradecido","habían agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been thankful for","hube agradecido","hubiste agradecido","hubo agradecido","hubimos agradecido","hubisteis agradecido","hubieron agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been thankful for","habría agradecido","habrías agradecido","habría agradecido","habríamos agradecido","habríais agradecido","habrían agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradezcamos" +"agradecer","to be thankful for","Subjuntivo","Subjunctive","Presente","Present","I am thankful for","agradezca","agradezcas","agradezca","agradezcamos","agradezcáis","agradezcan","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was thankful for, was being thankful for","agradeciera","agradecieras","agradeciera","agradeciéramos","agradecierais","agradecieran","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Subjuntivo","Subjunctive","Futuro","Future","I will be thankful for","agradeciere","agradecieres","agradeciere","agradeciéremos","agradeciereis","agradecieren","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been thankful for, was thankful for","haya agradecido","hayas agradecido","haya agradecido","hayamos agradecido","hayáis agradecido","hayan agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been thankful for","hubiere agradecido","hubieres agradecido","hubiere agradecido","hubiéremos agradecido","hubiereis agradecido","hubieren agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been thankful for","hubiera agradecido","hubieras agradecido","hubiera agradecido","hubiéramos agradecido","hubierais agradecido","hubieran agradecido","agradeciendo","being thankful for","agradecido","thankful for" +"agradecer","to be thankful for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be thankful for! Don't be thankful for!","","agradece","agradezca","agradezcamos","agradeced","agradezcan","agradeciendo","being thankful for","agradecido","thankful for", +"agradecer","to be thankful for","Imperativo Negativo","Imperative Negative","Presente","Present","Be thankful for! Don't be thankful for!","","no agradezcas","no agradezca","no agradezcamos","no agradezcáis","no agradezcan","agradeciendo","being thankful for","agradecido","thankful for", +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Presente","Present","I put up with, am putting up with","aguanto","aguantas","aguanta","aguantamos","aguantáis","aguantan","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Futuro","Future","I will put up with","aguantaré","aguantarás","aguantará","aguantaremos","aguantaréis","aguantarán","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Imperfecto","Imperfect","I was putting up with, used to put up with, put up with","aguantaba","aguantabas","aguantaba","aguantábamos","aguantabais","aguantaban","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Pretérito","Preterite","I put up with","aguanté","aguantaste","aguantó","aguantamos","aguantasteis","aguantaron","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Condicional","Conditional","I would put up with","aguantaría","aguantarías","aguantaría","aguantaríamos","aguantaríais","aguantarían","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put up with","he aguantado","has aguantado","ha aguantado","hemos aguantado","habéis aguantado","han aguantado","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put up with","habré aguantado","habrás aguantado","habrá aguantado","habremos aguantado","habréis aguantado","habrán aguantado","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put up with","había aguantado","habías aguantado","había aguantado","habíamos aguantado","habíais aguantado","habían aguantado","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put up with","hube aguantado","hubiste aguantado","hubo aguantado","hubimos aguantado","hubisteis aguantado","hubieron aguantado","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put up with","habría aguantado","habrías aguantado","habría aguantado","habríamos aguantado","habríais aguantado","habrían aguantado","aguantando","putting up with","aguantado","put up with" +"aguantemos" +"aguantar","to put up with, endure, bear, stand","Subjuntivo","Subjunctive","Presente","Present","I put up with, am putting up with","aguante","aguantes","aguante","aguantemos","aguantéis","aguanten","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put up with, was putting up with","aguantara","aguantaras","aguantara","aguantáramos","aguantarais","aguantaran","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Subjuntivo","Subjunctive","Futuro","Future","I will put up with","aguantare","aguantares","aguantare","aguantáremos","aguantareis","aguantaren","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put up with, put up with","haya aguantado","hayas aguantado","haya aguantado","hayamos aguantado","hayáis aguantado","hayan aguantado","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put up with","hubiere aguantado","hubieres aguantado","hubiere aguantado","hubiéremos aguantado","hubiereis aguantado","hubieren aguantado","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put up with","hubiera aguantado","hubieras aguantado","hubiera aguantado","hubiéramos aguantado","hubierais aguantado","hubieran aguantado","aguantando","putting up with","aguantado","put up with" +"aguantar","to put up with, endure, bear, stand","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put up with! Don't put up with!","","aguanta","aguante","aguantemos","aguantad","aguanten","aguantando","putting up with","aguantado","put up with", +"aguantar","to put up with, endure, bear, stand","Imperativo Negativo","Imperative Negative","Presente","Present","Put up with! Don't put up with!","","no aguantes","no aguante","no aguantemos","no aguantéis","no aguanten","aguantando","putting up with","aguantado","put up with", +"ahorcar","to hang","Indicativo","Indicative","Presente","Present","I hang, am hanging","ahorco","ahorcas","ahorca","ahorcamos","ahorcáis","ahorcan","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Futuro","Future","I will hang","ahorcaré","ahorcarás","ahorcará","ahorcaremos","ahorcaréis","ahorcarán","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Imperfecto","Imperfect","I was hanging, used to hang, hanged","ahorcaba","ahorcabas","ahorcaba","ahorcábamos","ahorcabais","ahorcaban","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Pretérito","Preterite","I hanged","ahorqué","ahorcaste","ahorcó","ahorcamos","ahorcasteis","ahorcaron","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Condicional","Conditional","I would hang","ahorcaría","ahorcarías","ahorcaría","ahorcaríamos","ahorcaríais","ahorcarían","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hanged","he ahorcado","has ahorcado","ha ahorcado","hemos ahorcado","habéis ahorcado","han ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hanged","habré ahorcado","habrás ahorcado","habrá ahorcado","habremos ahorcado","habréis ahorcado","habrán ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hanged","había ahorcado","habías ahorcado","había ahorcado","habíamos ahorcado","habíais ahorcado","habían ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hanged","hube ahorcado","hubiste ahorcado","hubo ahorcado","hubimos ahorcado","hubisteis ahorcado","hubieron ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hanged","habría ahorcado","habrías ahorcado","habría ahorcado","habríamos ahorcado","habríais ahorcado","habrían ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorquemos" +"ahorcar","to hang","Subjuntivo","Subjunctive","Presente","Present","I hang, am hanging","ahorque","ahorques","ahorque","ahorquemos","ahorquéis","ahorquen","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hanged, was hanging","ahorcara","ahorcaras","ahorcara","ahorcáramos","ahorcarais","ahorcaran","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Subjuntivo","Subjunctive","Futuro","Future","I will hang","ahorcare","ahorcares","ahorcare","ahorcáremos","ahorcareis","ahorcaren","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hanged, hanged","haya ahorcado","hayas ahorcado","haya ahorcado","hayamos ahorcado","hayáis ahorcado","hayan ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hanged","hubiere ahorcado","hubieres ahorcado","hubiere ahorcado","hubiéremos ahorcado","hubiereis ahorcado","hubieren ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hanged","hubiera ahorcado","hubieras ahorcado","hubiera ahorcado","hubiéramos ahorcado","hubierais ahorcado","hubieran ahorcado","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hang! Don't hang!","","ahorca","ahorque","ahorquemos","ahorcad","ahorquen","ahorcando","hanging","ahorcado","hanged" +"ahorcar","to hang","Imperativo Negativo","Imperative Negative","Presente","Present","Hang! Don't hang!","","no ahorques","no ahorque","no ahorquemos","no ahorquéis","no ahorquen","ahorcando","hanging","ahorcado","hanged" +"ahorrar","to save","Indicativo","Indicative","Presente","Present","I save, am saving","ahorro","ahorras","ahorra","ahorramos","ahorráis","ahorran","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Futuro","Future","I will save","ahorraré","ahorrarás","ahorrará","ahorraremos","ahorraréis","ahorrarán","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Imperfecto","Imperfect","I was saving, used to save, saved","ahorraba","ahorrabas","ahorraba","ahorrábamos","ahorrabais","ahorraban","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Pretérito","Preterite","I saved","ahorré","ahorraste","ahorró","ahorramos","ahorrasteis","ahorraron","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Condicional","Conditional","I would save","ahorraría","ahorrarías","ahorraría","ahorraríamos","ahorraríais","ahorrarían","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Presente perfecto","Present Perfect","I have saved","he ahorrado","has ahorrado","ha ahorrado","hemos ahorrado","habéis ahorrado","han ahorrado","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have saved","habré ahorrado","habrás ahorrado","habrá ahorrado","habremos ahorrado","habréis ahorrado","habrán ahorrado","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had saved","había ahorrado","habías ahorrado","había ahorrado","habíamos ahorrado","habíais ahorrado","habían ahorrado","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had saved","hube ahorrado","hubiste ahorrado","hubo ahorrado","hubimos ahorrado","hubisteis ahorrado","hubieron ahorrado","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have saved","habría ahorrado","habrías ahorrado","habría ahorrado","habríamos ahorrado","habríais ahorrado","habrían ahorrado","ahorrando","saving","ahorrado","saved" +"ahorremos" +"ahorrar","to save","Subjuntivo","Subjunctive","Presente","Present","I save, am saving","ahorre","ahorres","ahorre","ahorremos","ahorréis","ahorren","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I saved, was saving","ahorrara","ahorraras","ahorrara","ahorráramos","ahorrarais","ahorraran","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Subjuntivo","Subjunctive","Futuro","Future","I will save","ahorrare","ahorrares","ahorrare","ahorráremos","ahorrareis","ahorraren","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have saved, saved","haya ahorrado","hayas ahorrado","haya ahorrado","hayamos ahorrado","hayáis ahorrado","hayan ahorrado","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have saved","hubiere ahorrado","hubieres ahorrado","hubiere ahorrado","hubiéremos ahorrado","hubiereis ahorrado","hubieren ahorrado","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had saved","hubiera ahorrado","hubieras ahorrado","hubiera ahorrado","hubiéramos ahorrado","hubierais ahorrado","hubieran ahorrado","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Save! Don't save!","","ahorra","ahorre","ahorremos","ahorrad","ahorren","ahorrando","saving","ahorrado","saved" +"ahorrar","to save","Imperativo Negativo","Imperative Negative","Presente","Present","Save! Don't save!","","no ahorres","no ahorre","no ahorremos","no ahorréis","no ahorren","ahorrando","saving","ahorrado","saved" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Presente","Present","I reach, am reaching","alcanzo","alcanzas","alcanza","alcanzamos","alcanzáis","alcanzan","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Futuro","Future","I will reach","alcanzaré","alcanzarás","alcanzará","alcanzaremos","alcanzaréis","alcanzarán","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Imperfecto","Imperfect","I was reaching, used to reach, reached","alcanzaba","alcanzabas","alcanzaba","alcanzábamos","alcanzabais","alcanzaban","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Pretérito","Preterite","I reached","alcancé","alcanzaste","alcanzó","alcanzamos","alcanzasteis","alcanzaron","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Condicional","Conditional","I would reach","alcanzaría","alcanzarías","alcanzaría","alcanzaríamos","alcanzaríais","alcanzarían","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Presente perfecto","Present Perfect","I have reached","he alcanzado","has alcanzado","ha alcanzado","hemos alcanzado","habéis alcanzado","han alcanzado","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have reached","habré alcanzado","habrás alcanzado","habrá alcanzado","habremos alcanzado","habréis alcanzado","habrán alcanzado","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had reached","había alcanzado","habías alcanzado","había alcanzado","habíamos alcanzado","habíais alcanzado","habían alcanzado","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had reached","hube alcanzado","hubiste alcanzado","hubo alcanzado","hubimos alcanzado","hubisteis alcanzado","hubieron alcanzado","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have reached","habría alcanzado","habrías alcanzado","habría alcanzado","habríamos alcanzado","habríais alcanzado","habrían alcanzado","alcanzando","reaching","alcanzado","reached" +"alcancemos" +"alcanzar","to reach, catch, catch up to, catch up with","Subjuntivo","Subjunctive","Presente","Present","I reach, am reaching","alcance","alcances","alcance","alcancemos","alcancéis","alcancen","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I reached, was reaching","alcanzara","alcanzaras","alcanzara","alcanzáramos","alcanzarais","alcanzaran","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Subjuntivo","Subjunctive","Futuro","Future","I will reach","alcanzare","alcanzares","alcanzare","alcanzáremos","alcanzareis","alcanzaren","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have reached, reached","haya alcanzado","hayas alcanzado","haya alcanzado","hayamos alcanzado","hayáis alcanzado","hayan alcanzado","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have reached","hubiere alcanzado","hubieres alcanzado","hubiere alcanzado","hubiéremos alcanzado","hubiereis alcanzado","hubieren alcanzado","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had reached","hubiera alcanzado","hubieras alcanzado","hubiera alcanzado","hubiéramos alcanzado","hubierais alcanzado","hubieran alcanzado","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Reach! Don't reach!","","alcanza","alcance","alcancemos","alcanzad","alcancen","alcanzando","reaching","alcanzado","reached" +"alcanzar","to reach, catch, catch up to, catch up with","Imperativo Negativo","Imperative Negative","Presente","Present","Reach! Don't reach!","","no alcances","no alcance","no alcancemos","no alcancéis","no alcancen","alcanzando","reaching","alcanzado","reached" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Presente","Present","I make happy, am making happy","alegro","alegras","alegra","alegramos","alegráis","alegran","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Futuro","Future","I will make happy","alegraré","alegrarás","alegrará","alegraremos","alegraréis","alegrarán","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Imperfecto","Imperfect","I was making happy, used to make happy, made happy","alegraba","alegrabas","alegraba","alegrábamos","alegrabais","alegraban","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Pretérito","Preterite","I made happy","alegré","alegraste","alegró","alegramos","alegrasteis","alegraron","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Condicional","Conditional","I would make happy","alegraría","alegrarías","alegraría","alegraríamos","alegraríais","alegrarían","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Presente perfecto","Present Perfect","I have made happy","he alegrado","has alegrado","ha alegrado","hemos alegrado","habéis alegrado","han alegrado","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have made happy","habré alegrado","habrás alegrado","habrá alegrado","habremos alegrado","habréis alegrado","habrán alegrado","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had made happy","había alegrado","habías alegrado","había alegrado","habíamos alegrado","habíais alegrado","habían alegrado","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had made happy","hube alegrado","hubiste alegrado","hubo alegrado","hubimos alegrado","hubisteis alegrado","hubieron alegrado","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have made happy","habría alegrado","habrías alegrado","habría alegrado","habríamos alegrado","habríais alegrado","habrían alegrado","alegrando","making happy","alegrado","made happy" +"alegremos" +"alegrar","to make happy, cheer [up], gladden","Subjuntivo","Subjunctive","Presente","Present","I make happy, am making happy","alegre","alegres","alegre","alegremos","alegréis","alegren","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I made happy, was making happy","alegrara","alegraras","alegrara","alegráramos","alegrarais","alegraran","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Subjuntivo","Subjunctive","Futuro","Future","I will make happy","alegrare","alegrares","alegrare","alegráremos","alegrareis","alegraren","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have made happy, made happy","haya alegrado","hayas alegrado","haya alegrado","hayamos alegrado","hayáis alegrado","hayan alegrado","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have made happy","hubiere alegrado","hubieres alegrado","hubiere alegrado","hubiéremos alegrado","hubiereis alegrado","hubieren alegrado","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had made happy","hubiera alegrado","hubieras alegrado","hubiera alegrado","hubiéramos alegrado","hubierais alegrado","hubieran alegrado","alegrando","making happy","alegrado","made happy" +"alegrar","to make happy, cheer [up], gladden","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Make happy! Don't make happy!","","alegra","alegre","alegremos","alegrad","alegren","alegrando","making happy","alegrado","made happy", +"alegrar","to make happy, cheer [up], gladden","Imperativo Negativo","Imperative Negative","Presente","Present","Make happy! Don't make happy!","","no alegres","no alegre","no alegremos","no alegréis","no alegren","alegrando","making happy","alegrado","made happy", +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Presente","Present","I am glad","me alegro","te alegras","se alegra","nos alegramos","os alegráis","se alegran","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Futuro","Future","I will be glad","me alegraré","te alegrarás","se alegrará","nos alegraremos","os alegraréis","se alegrarán","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Imperfecto","Imperfect","I was glad, used to be glad","me alegraba","te alegrabas","se alegraba","nos alegrábamos","os alegrabais","se alegraban","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Pretérito","Preterite","I was glad","me alegré","te alegraste","se alegró","nos alegramos","alegrasteis","se alegraron","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Condicional","Conditional","I would be glad","me alegraría","te alegrarías","se alegraría","nos alegraríamos","os alegraríais","se alegrarían","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been glad","me he alegrado","te has alegrado","se ha alegrado","nos hemos alegrado","os habéis alegrado","se han alegrado","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been glad","me habré alegrado","te habrás alegrado","se habrá alegrado","nos habremos alegrado","os habréis alegrado","se habrán alegrado","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been glad","me había alegrado","te habías alegrado","se había alegrado","nos habíamos alegrado","os habíais alegrado","se habían alegrado","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been glad","me hube alegrado","te hubiste alegrado","se hubo alegrado","nos hubimos alegrado","os hubisteis alegrado","se hubieron alegrado","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been glad","me habría alegrado","te habrías alegrado","se habría alegrado","nos habríamos alegrado","os habríais alegrado","se habrían alegrado","alegrándose","being glad","alegrado","been glad" +"nos alegremos" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Subjuntivo","Subjunctive","Presente","Present","I be glad","me alegre","te alegres","se alegre","nos alegremos","os alegréis","se alegren","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was glad","me alegrara","te alegraras","se alegrara","nos alegráramos","os alegrarais","se alegraran","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Subjuntivo","Subjunctive","Futuro","Future","I will be glad","me alegrare","te alegrares","se alegrare","nos alegráremos","os alegrareis","se alegraren","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been glad, was glad","me haya alegrado","te hayas alegrado","se haya alegrado","nos hayamos alegrado","os hayáis alegrado","se hayan alegrado","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been glad","me hubiere alegrado","te hubieres alegrado","se hubiere alegrado","nos hubiéremos alegrado","os hubiereis alegrado","se hubieren alegrado","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been glad","me hubiera alegrado","te hubieras alegrado","se hubiera alegrado","nos hubiéramos alegrado","os hubierais alegrado","se hubieran alegrado","alegrándose","being glad","alegrado","been glad" +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be glad! Don't be glad!","","alégrate","alégrese","nos alegremos","alegraos","alégrense","alegrándose","being glad","alegrado","been glad", +"alegrarse","to be glad, happy; to become/get happy; to rejoice","Imperativo Negativo","Imperative Negative","Presente","Present","Be glad! Don't be glad!","","no te alegres","no se alegre","no nos alegremos","no os alegréis","no se alegren","alegrándose","being glad","alegrado","been glad", +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Presente","Present","I encourage, am encouraging","aliento","alientas","alienta","alentamos","alentáis","alientan","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Futuro","Future","I will encourage","alentaré","alentarás","alentará","alentaremos","alentaréis","alentarán","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Imperfecto","Imperfect","I was encouraging, used to encourage, encouraged","alentaba","alentabas","alentaba","alentábamos","alentabais","alentaban","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Pretérito","Preterite","I encouraged","alenté","alentaste","alentó","alentamos","alentasteis","alentaron","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Condicional","Conditional","I would encourage","alentaría","alentarías","alentaría","alentaríamos","alentaríais","alentarían","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have encouraged","he alentado","has alentado","ha alentado","hemos alentado","habéis alentado","han alentado","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have encouraged","habré alentado","habrás alentado","habrá alentado","habremos alentado","habréis alentado","habrán alentado","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had encouraged","había alentado","habías alentado","había alentado","habíamos alentado","habíais alentado","habían alentado","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had encouraged","hube alentado","hubiste alentado","hubo alentado","hubimos alentado","hubisteis alentado","hubieron alentado","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have encouraged","habría alentado","habrías alentado","habría alentado","habríamos alentado","habríais alentado","habrían alentado","alentando","encouraging","alentado","encouraged" +"alentemos" +"alentar","to encourage, cheer, inspire, bolster up","Subjuntivo","Subjunctive","Presente","Present","I encourage, am encouraging","aliente","alientes","aliente","alentemos","alentéis","alienten","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I encouraged, was encouraging","alentara","alentaras","alentara","alentáramos","alentarais","alentaran","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Subjuntivo","Subjunctive","Futuro","Future","I will encourage","alentare","alentares","alentare","alentáremos","alentareis","alentaren","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have encouraged, encouraged","haya alentado","hayas alentado","haya alentado","hayamos alentado","hayáis alentado","hayan alentado","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have encouraged","hubiere alentado","hubieres alentado","hubiere alentado","hubiéremos alentado","hubiereis alentado","hubieren alentado","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had encouraged","hubiera alentado","hubieras alentado","hubiera alentado","hubiéramos alentado","hubierais alentado","hubieran alentado","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Encourage! Don't encourage!","","alienta","aliente","alentemos","alentad","alienten","alentando","encouraging","alentado","encouraged" +"alentar","to encourage, cheer, inspire, bolster up","Imperativo Negativo","Imperative Negative","Presente","Present","Encourage! Don't encourage!","","no alientes","no aliente","no alentemos","no alentéis","no alienten","alentando","encouraging","alentado","encouraged" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Presente","Present","I alleviate, am alleviating","alivio","alivias","alivia","aliviamos","aliviáis","alivian","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Futuro","Future","I will alleviate","aliviaré","aliviarás","aliviará","aliviaremos","aliviaréis","aliviarán","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Imperfecto","Imperfect","I was alleviating, used to alleviate, alleviated","aliviaba","aliviabas","aliviaba","aliviábamos","aliviabais","aliviaban","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Pretérito","Preterite","I alleviated","alivié","aliviaste","alivió","aliviamos","aliviasteis","aliviaron","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Condicional","Conditional","I would alleviate","aliviaría","aliviarías","aliviaría","aliviaríamos","aliviaríais","aliviarían","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Presente perfecto","Present Perfect","I have alleviated","he aliviado","has aliviado","ha aliviado","hemos aliviado","habéis aliviado","han aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have alleviated","habré aliviado","habrás aliviado","habrá aliviado","habremos aliviado","habréis aliviado","habrán aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had alleviated","había aliviado","habías aliviado","había aliviado","habíamos aliviado","habíais aliviado","habían aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had alleviated","hube aliviado","hubiste aliviado","hubo aliviado","hubimos aliviado","hubisteis aliviado","hubieron aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have alleviated","habría aliviado","habrías aliviado","habría aliviado","habríamos aliviado","habríais aliviado","habrían aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviemos" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Subjuntivo","Subjunctive","Presente","Present","I alleviate, am alleviating","alivie","alivies","alivie","aliviemos","aliviéis","alivien","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I alleviated, was alleviating","aliviara","aliviaras","aliviara","aliviáramos","aliviarais","aliviaran","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Subjuntivo","Subjunctive","Futuro","Future","I will alleviate","aliviare","aliviares","aliviare","aliviáremos","aliviareis","aliviaren","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have alleviated, alleviated","haya aliviado","hayas aliviado","haya aliviado","hayamos aliviado","hayáis aliviado","hayan aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have alleviated","hubiere aliviado","hubieres aliviado","hubiere aliviado","hubiéremos aliviado","hubiereis aliviado","hubieren aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had alleviated","hubiera aliviado","hubieras aliviado","hubiera aliviado","hubiéramos aliviado","hubierais aliviado","hubieran aliviado","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Alleviate! Don't alleviate!","","alivia","alivie","aliviemos","aliviad","alivien","aliviando","alleviating","aliviado","alleviated" +"aliviar","to alleviate, ease, lessen, lighthen, relieve","Imperativo Negativo","Imperative Negative","Presente","Present","Alleviate! Don't alleviate!","","no alivies","no alivie","no aliviemos","no aliviéis","no alivien","aliviando","alleviating","aliviado","alleviated" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Presente","Present","I lunch, am lunching","almuerzo","almuerzas","almuerza","almorzamos","almorzáis","almuerzan","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Futuro","Future","I will lunch","almorzaré","almorzarás","almorzará","almorzaremos","almorzaréis","almorzarán","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Imperfecto","Imperfect","I was lunching, used to lunch, lunched","almorzaba","almorzabas","almorzaba","almorzábamos","almorzabais","almorzaban","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Pretérito","Preterite","I lunched","almorcé","almorzaste","almorzó","almorzamos","almorzasteis","almorzaron","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Condicional","Conditional","I would lunch","almorzaría","almorzarías","almorzaría","almorzaríamos","almorzaríais","almorzarían","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lunched","he almorzado","has almorzado","ha almorzado","hemos almorzado","habéis almorzado","han almorzado","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lunched","habré almorzado","habrás almorzado","habrá almorzado","habremos almorzado","habréis almorzado","habrán almorzado","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lunched","había almorzado","habías almorzado","había almorzado","habíamos almorzado","habíais almorzado","habían almorzado","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lunched","hube almorzado","hubiste almorzado","hubo almorzado","hubimos almorzado","hubisteis almorzado","hubieron almorzado","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lunched","habría almorzado","habrías almorzado","habría almorzado","habríamos almorzado","habríais almorzado","habrían almorzado","almorzando","lunching","almorzado","lunched" +"almorcemos" +"almorzar","to lunch, eat lunch, have lunch","Subjuntivo","Subjunctive","Presente","Present","I lunch, am lunching","almuerce","almuerces","almuerce","almorcemos","almorcéis","almuercen","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lunched, was lunching","almorzara","almorzaras","almorzara","almorzáramos","almorzarais","almorzaran","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Subjuntivo","Subjunctive","Futuro","Future","I will lunch","almorzare","almorzares","almorzare","almorzáremos","almorzareis","almorzaren","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lunched, lunched","haya almorzado","hayas almorzado","haya almorzado","hayamos almorzado","hayáis almorzado","hayan almorzado","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lunched","hubiere almorzado","hubieres almorzado","hubiere almorzado","hubiéremos almorzado","hubiereis almorzado","hubieren almorzado","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lunched","hubiera almorzado","hubieras almorzado","hubiera almorzado","hubiéramos almorzado","hubierais almorzado","hubieran almorzado","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","lunch! Don't lunch!","","almuerza","almuerce","almorcemos","almorzad","almuercen","almorzando","lunching","almorzado","lunched" +"almorzar","to lunch, eat lunch, have lunch","Imperativo Negativo","Imperative Negative","Presente","Present","lunch! Don't lunch!","","no almuerces","no almuerce","no almorcemos","no almorcéis","no almuercen","almorzando","lunching","almorzado","lunched" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Presente","Present","I rent, am renting","alquilo","alquilas","alquila","alquilamos","alquiláis","alquilan","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Futuro","Future","I will rent","alquilaré","alquilarás","alquilará","alquilaremos","alquilaréis","alquilarán","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Imperfecto","Imperfect","I was renting, used to rent, rented","alquilaba","alquilabas","alquilaba","alquilábamos","alquilabais","alquilaban","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Pretérito","Preterite","I rented","alquilé","alquilaste","alquiló","alquilamos","alquilasteis","alquilaron","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Condicional","Conditional","I would rent","alquilaría","alquilarías","alquilaría","alquilaríamos","alquilaríais","alquilarían","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Presente perfecto","Present Perfect","I have rented","he alquilado","has alquilado","ha alquilado","hemos alquilado","habéis alquilado","han alquilado","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have rented","habré alquilado","habrás alquilado","habrá alquilado","habremos alquilado","habréis alquilado","habrán alquilado","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had rented","había alquilado","habías alquilado","había alquilado","habíamos alquilado","habíais alquilado","habían alquilado","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had rented","hube alquilado","hubiste alquilado","hubo alquilado","hubimos alquilado","hubisteis alquilado","hubieron alquilado","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have rented","habría alquilado","habrías alquilado","habría alquilado","habríamos alquilado","habríais alquilado","habrían alquilado","alquilando","renting","alquilado","rented" +"alquilemos" +"alquilar","to rent; to rent out, let","Subjuntivo","Subjunctive","Presente","Present","I rent, am renting","alquile","alquiles","alquile","alquilemos","alquiléis","alquilen","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I rented, was renting","alquilara","alquilaras","alquilara","alquiláramos","alquilarais","alquilaran","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Subjuntivo","Subjunctive","Futuro","Future","I will rent","alquilare","alquilares","alquilare","alquiláremos","alquilareis","alquilaren","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have rented, rented","haya alquilado","hayas alquilado","haya alquilado","hayamos alquilado","hayáis alquilado","hayan alquilado","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have rented","hubiere alquilado","hubieres alquilado","hubiere alquilado","hubiéremos alquilado","hubiereis alquilado","hubieren alquilado","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had rented","hubiera alquilado","hubieras alquilado","hubiera alquilado","hubiéramos alquilado","hubierais alquilado","hubieran alquilado","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Rent! Don't rent!","","alquila","alquile","alquilemos","alquilad","alquilen","alquilando","renting","alquilado","rented" +"alquilar","to rent; to rent out, let","Imperativo Negativo","Imperative Negative","Presente","Present","Rent! Don't rent!","","no alquiles","no alquile","no alquilemos","no alquiléis","no alquilen","alquilando","renting","alquilado","rented" +"amanecer","to dawn","Indicativo","Indicative","Presente","Present","I dawn, am dawning","amanezco","amaneces","amanece","amanecemos","amanecéis","amanecen","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Futuro","Future","I will dawn","amaneceré","amanecerás","amanecerá","amaneceremos","amaneceréis","amanecerán","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Imperfecto","Imperfect","I was dawning, used to dawn, dawned","amanecía","amanecías","amanecía","amanecíamos","amanecíais","amanecían","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Pretérito","Preterite","I dawned","amanecí","amaneciste","amaneció","amanecimos","amanecisteis","amanecieron","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Condicional","Conditional","I would dawn","amanecería","amanecerías","amanecería","amaneceríamos","amaneceríais","amanecerían","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dawned","he amanecido","has amanecido","ha amanecido","hemos amanecido","habéis amanecido","han amanecido","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dawned","habré amanecido","habrás amanecido","habrá amanecido","habremos amanecido","habréis amanecido","habrán amanecido","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dawned","había amanecido","habías amanecido","había amanecido","habíamos amanecido","habíais amanecido","habían amanecido","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dawned","hube amanecido","hubiste amanecido","hubo amanecido","hubimos amanecido","hubisteis amanecido","hubieron amanecido","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dawned","habría amanecido","habrías amanecido","habría amanecido","habríamos amanecido","habríais amanecido","habrían amanecido","amaneciendo","dawning","amanecido","dawned" +"amanezcamos" +"amanecer","to dawn","Subjuntivo","Subjunctive","Presente","Present","I dawn, am dawning","amanezca","amanezcas","amanezca","amanezcamos","amanezcáis","amanezcan","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dawned, was dawning","amaneciera","amanecieras","amaneciera","amaneciéramos","amanecierais","amanecieran","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Subjuntivo","Subjunctive","Futuro","Future","I will dawn","amaneciere","amanecieres","amaneciere","amaneciéremos","amaneciereis","amanecieren","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dawned, dawned","haya amanecido","hayas amanecido","haya amanecido","hayamos amanecido","hayáis amanecido","hayan amanecido","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dawned","hubiere amanecido","hubieres amanecido","hubiere amanecido","hubiéremos amanecido","hubiereis amanecido","hubieren amanecido","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dawned","hubiera amanecido","hubieras amanecido","hubiera amanecido","hubiéramos amanecido","hubierais amanecido","hubieran amanecido","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dawn! Don't dawn!","","amanece","amanezca","amanezcamos","amaneced","amanezcan","amaneciendo","dawning","amanecido","dawned" +"amanecer","to dawn","Imperativo Negativo","Imperative Negative","Presente","Present","Dawn! Don't dawn!","","no amanezcas","no amanezca","no amanezcamos","no amanezcáis","no amanezcan","amaneciendo","dawning","amanecido","dawned" +"amar","to love","Indicativo","Indicative","Presente","Present","I love, am loving","amo","amas","ama","amamos","amáis","aman","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Futuro","Future","I will love","amaré","amarás","amará","amaremos","amaréis","amarán","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Imperfecto","Imperfect","I was loving, used to love, loved","amaba","amabas","amaba","amábamos","amabais","amaban","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Pretérito","Preterite","I loved","amé","amaste","amó","amamos","amasteis","amaron","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Condicional","Conditional","I would love","amaría","amarías","amaría","amaríamos","amaríais","amarían","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Presente perfecto","Present Perfect","I have loved","he amado","has amado","ha amado","hemos amado","habéis amado","han amado","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have loved","habré amado","habrás amado","habrá amado","habremos amado","habréis amado","habrán amado","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had loved","había amado","habías amado","había amado","habíamos amado","habíais amado","habían amado","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had loved","hube amado","hubiste amado","hubo amado","hubimos amado","hubisteis amado","hubieron amado","amando","loving","amado","loved" +"amar","to love","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have loved","habría amado","habrías amado","habría amado","habríamos amado","habríais amado","habrían amado","amando","loving","amado","loved" +"amemos" +"amar","to love","Subjuntivo","Subjunctive","Presente","Present","I love, am loving","ame","ames","ame","amemos","améis","amen","amando","loving","amado","loved" +"amar","to love","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I loved, was loving","amara","amaras","amara","amáramos","amarais","amaran","amando","loving","amado","loved" +"amar","to love","Subjuntivo","Subjunctive","Futuro","Future","I will love","amare","amares","amare","amáremos","amareis","amaren","amando","loving","amado","loved" +"amar","to love","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have loved, loved","haya amado","hayas amado","haya amado","hayamos amado","hayáis amado","hayan amado","amando","loving","amado","loved" +"amar","to love","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have loved","hubiere amado","hubieres amado","hubiere amado","hubiéremos amado","hubiereis amado","hubieren amado","amando","loving","amado","loved" +"amar","to love","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had loved","hubiera amado","hubieras amado","hubiera amado","hubiéramos amado","hubierais amado","hubieran amado","amando","loving","amado","loved" +"amar","to love","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Love! Don't love!","","ama","ame","amemos","amad","amen","amando","loving","amado","loved" +"amar","to love","Imperativo Negativo","Imperative Negative","Presente","Present","Love! Don't love!","","no ames","no ame","no amemos","no améis","no amen","amando","loving","amado","loved" +"amenazar","to threaten, menace","Indicativo","Indicative","Presente","Present","I threaten, am threatening","amenazo","amenazas","amenaza","amenazamos","amenazáis","amenazan","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Futuro","Future","I will threaten","amenazaré","amenazarás","amenazará","amenazaremos","amenazaréis","amenazarán","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Imperfecto","Imperfect","I was threatening, used to threaten, threatened","amenazaba","amenazabas","amenazaba","amenazábamos","amenazabais","amenazaban","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Pretérito","Preterite","I threatened","amenacé","amenazaste","amenazó","amenazamos","amenazasteis","amenazaron","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Condicional","Conditional","I would threaten","amenazaría","amenazarías","amenazaría","amenazaríamos","amenazaríais","amenazarían","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Presente perfecto","Present Perfect","I have threatened","he amenazado","has amenazado","ha amenazado","hemos amenazado","habéis amenazado","han amenazado","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have threatened","habré amenazado","habrás amenazado","habrá amenazado","habremos amenazado","habréis amenazado","habrán amenazado","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had threatened","había amenazado","habías amenazado","había amenazado","habíamos amenazado","habíais amenazado","habían amenazado","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had threatened","hube amenazado","hubiste amenazado","hubo amenazado","hubimos amenazado","hubisteis amenazado","hubieron amenazado","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have threatened","habría amenazado","habrías amenazado","habría amenazado","habríamos amenazado","habríais amenazado","habrían amenazado","amenazando","threatening","amenazado","threatened" +"amenacemos" +"amenazar","to threaten, menace","Subjuntivo","Subjunctive","Presente","Present","I threaten, am threatening","amenace","amenaces","amenace","amenacemos","amenacéis","amenacen","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I threatened, was threatening","amenazara","amenazaras","amenazara","amenazáramos","amenazarais","amenazaran","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Subjuntivo","Subjunctive","Futuro","Future","I will threaten","amenazare","amenazares","amenazare","amenazáremos","amenazareis","amenazaren","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have threatened, threatened","haya amenazado","hayas amenazado","haya amenazado","hayamos amenazado","hayáis amenazado","hayan amenazado","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have threatened","hubiere amenazado","hubieres amenazado","hubiere amenazado","hubiéremos amenazado","hubiereis amenazado","hubieren amenazado","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had threatened","hubiera amenazado","hubieras amenazado","hubiera amenazado","hubiéramos amenazado","hubierais amenazado","hubieran amenazado","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Threaten! Don't threaten!","","amenaza","amenace","amenacemos","amenazad","amenacen","amenazando","threatening","amenazado","threatened" +"amenazar","to threaten, menace","Imperativo Negativo","Imperative Negative","Presente","Present","Threaten! Don't threaten!","","no amenaces","no amenace","no amenacemos","no amenacéis","no amenacen","amenazando","threatening","amenazado","threatened" +"andar","to walk, go","Indicativo","Indicative","Presente","Present","I walk, am walking","ando","andas","anda","andamos","andáis","andan","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Futuro","Future","I will walk","andaré","andarás","andará","andaremos","andaréis","andarán","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Imperfecto","Imperfect","I was walking, used to walk, walked","andaba","andabas","andaba","andábamos","andabais","andaban","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Pretérito","Preterite","I walked","anduve","anduviste","anduvo","anduvimos","anduvisteis","anduvieron","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Condicional","Conditional","I would walk","andaría","andarías","andaría","andaríamos","andaríais","andarían","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Presente perfecto","Present Perfect","I have walked","he andado","has andado","ha andado","hemos andado","habéis andado","han andado","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have walked","habré andado","habrás andado","habrá andado","habremos andado","habréis andado","habrán andado","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had walked","había andado","habías andado","había andado","habíamos andado","habíais andado","habían andado","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had walked","hube andado","hubiste andado","hubo andado","hubimos andado","hubisteis andado","hubieron andado","andando","walking","andado","walked" +"andar","to walk, go","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have walked","habría andado","habrías andado","habría andado","habríamos andado","habríais andado","habrían andado","andando","walking","andado","walked" +"andemos" +"andar","to walk, go","Subjuntivo","Subjunctive","Presente","Present","I walk, am walking","ande","andes","ande","andemos","andéis","anden","andando","walking","andado","walked" +"andar","to walk, go","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I walked, was walking","anduviera","anduvieras","anduviera","anduviéramos","anduvierais","anduvieran","andando","walking","andado","walked" +"andar","to walk, go","Subjuntivo","Subjunctive","Futuro","Future","I will walk","anduviere","anduvieres","anduviere","anduviéremos","anduviereis","anduvieren","andando","walking","andado","walked" +"andar","to walk, go","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have walked, walked","haya andado","hayas andado","haya andado","hayamos andado","hayáis andado","hayan andado","andando","walking","andado","walked" +"andar","to walk, go","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have walked","hubiere andado","hubieres andado","hubiere andado","hubiéremos andado","hubiereis andado","hubieren andado","andando","walking","andado","walked" +"andar","to walk, go","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had walked","hubiera andado","hubieras andado","hubiera andado","hubiéramos andado","hubierais andado","hubieran andado","andando","walking","andado","walked" +"andar","to walk, go","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Walk! Don't walk!","","anda","ande","andemos","andad","anden","andando","walking","andado","walked" +"andar","to walk, go","Imperativo Negativo","Imperative Negative","Presente","Present","Walk! Don't walk!","","no andes","no ande","no andemos","no andéis","no anden","andando","walking","andado","walked" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Presente","Present","I am eager for","anhelo","anhelas","anhela","anhelamos","anheláis","anhelan","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Futuro","Future","I will be eager for","anhelaré","anhelarás","anhelará","anhelaremos","anhelaréis","anhelarán","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Imperfecto","Imperfect","I was eager for, used to be eager for","anhelaba","anhelabas","anhelaba","anhelábamos","anhelabais","anhelaban","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Pretérito","Preterite","I was eager for","anhelé","anhelaste","anheló","anhelamos","anhelasteis","anhelaron","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Condicional","Conditional","I would be eager for","anhelaría","anhelarías","anhelaría","anhelaríamos","anhelaríais","anhelarían","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been eager for","he anhelado","has anhelado","ha anhelado","hemos anhelado","habéis anhelado","han anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been eager for","habré anhelado","habrás anhelado","habrá anhelado","habremos anhelado","habréis anhelado","habrán anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been eager for","había anhelado","habías anhelado","había anhelado","habíamos anhelado","habíais anhelado","habían anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been eager for","hube anhelado","hubiste anhelado","hubo anhelado","hubimos anhelado","hubisteis anhelado","hubieron anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been eager for","habría anhelado","habrías anhelado","habría anhelado","habríamos anhelado","habríais anhelado","habrían anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelemos" +"anhelar","to be eager for/to, long for/to, yearn for/to","Subjuntivo","Subjunctive","Presente","Present","I am eager for","anhele","anheles","anhele","anhelemos","anheléis","anhelen","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was eager for","anhelara","anhelaras","anhelara","anheláramos","anhelarais","anhelaran","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Subjuntivo","Subjunctive","Futuro","Future","I will be eager for","anhelare","anhelares","anhelare","anheláremos","anhelareis","anhelaren","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been eager for","haya anhelado","hayas anhelado","haya anhelado","hayamos anhelado","hayáis anhelado","hayan anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been eager for","hubiere anhelado","hubieres anhelado","hubiere anhelado","hubiéremos anhelado","hubiereis anhelado","hubieren anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been eager for","hubiera anhelado","hubieras anhelado","hubiera anhelado","hubiéramos anhelado","hubierais anhelado","hubieran anhelado","anhelando","be eager foring","anhelado","eager for" +"anhelar","to be eager for/to, long for/to, yearn for/to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be eager for! Don't be eager for!","","anhela","anhele","anhelemos","anhelad","anhelen","anhelando","be eager foring","anhelado","eager for", +"anhelar","to be eager for/to, long for/to, yearn for/to","Imperativo Negativo","Imperative Negative","Presente","Present","Be eager for! Don't be eager for!","","no anheles","no anhele","no anhelemos","no anheléis","no anhelen","anhelando","be eager foring","anhelado","eager for", +"anunciar","to announce","Indicativo","Indicative","Presente","Present","I announce, am announcing","anuncio","anuncias","anuncia","anunciamos","anunciáis","anuncian","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Futuro","Future","I will announce","anunciaré","anunciarás","anunciará","anunciaremos","anunciaréis","anunciarán","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Imperfecto","Imperfect","I was announcing, used to announce, announced","anunciaba","anunciabas","anunciaba","anunciábamos","anunciabais","anunciaban","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Pretérito","Preterite","I announced","anuncié","anunciaste","anunció","anunciamos","anunciasteis","anunciaron","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Condicional","Conditional","I would announce","anunciaría","anunciarías","anunciaría","anunciaríamos","anunciaríais","anunciarían","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have announced","he anunciado","has anunciado","ha anunciado","hemos anunciado","habéis anunciado","han anunciado","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have announced","habré anunciado","habrás anunciado","habrá anunciado","habremos anunciado","habréis anunciado","habrán anunciado","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had announced","había anunciado","habías anunciado","había anunciado","habíamos anunciado","habíais anunciado","habían anunciado","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had announced","hube anunciado","hubiste anunciado","hubo anunciado","hubimos anunciado","hubisteis anunciado","hubieron anunciado","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have announced","habría anunciado","habrías anunciado","habría anunciado","habríamos anunciado","habríais anunciado","habrían anunciado","anunciando","announcing","anunciado","announced" +"anunciemos" +"anunciar","to announce","Subjuntivo","Subjunctive","Presente","Present","I announce, am announcing","anuncie","anuncies","anuncie","anunciemos","anunciéis","anuncien","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I announced, was announcing","anunciara","anunciaras","anunciara","anunciáramos","anunciarais","anunciaran","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Subjuntivo","Subjunctive","Futuro","Future","I will announce","anunciare","anunciares","anunciare","anunciáremos","anunciareis","anunciaren","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have announced, announced","haya anunciado","hayas anunciado","haya anunciado","hayamos anunciado","hayáis anunciado","hayan anunciado","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have announced","hubiere anunciado","hubieres anunciado","hubiere anunciado","hubiéremos anunciado","hubiereis anunciado","hubieren anunciado","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had announced","hubiera anunciado","hubieras anunciado","hubiera anunciado","hubiéramos anunciado","hubierais anunciado","hubieran anunciado","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Announce! Don't announce!","","anuncia","anuncie","anunciemos","anunciad","anuncien","anunciando","announcing","anunciado","announced" +"anunciar","to announce","Imperativo Negativo","Imperative Negative","Presente","Present","Announce! Don't announce!","","no anuncies","no anuncie","no anunciemos","no anunciéis","no anuncien","anunciando","announcing","anunciado","announced" +"añadir","to add; to increase","Indicativo","Indicative","Presente","Present","I add, am adding","añado","añades","añade","añadimos","añadís","añaden","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Futuro","Future","I will add","añadiré","añadirás","añadirá","añadiremos","añadiréis","añadirán","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Imperfecto","Imperfect","I was adding, used to add, added","añadía","añadías","añadía","añadíamos","añadíais","añadían","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Pretérito","Preterite","I added","añadí","añadiste","añadió","añadimos","añadisteis","añadieron","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Condicional","Conditional","I would add","añadiría","añadirías","añadiría","añadiríamos","añadiríais","añadirían","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Presente perfecto","Present Perfect","I have added","he añadido","has añadido","ha añadido","hemos añadido","habéis añadido","han añadido","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have added","habré añadido","habrás añadido","habrá añadido","habremos añadido","habréis añadido","habrán añadido","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had added","había añadido","habías añadido","había añadido","habíamos añadido","habíais añadido","habían añadido","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had added","hube añadido","hubiste añadido","hubo añadido","hubimos añadido","hubisteis añadido","hubieron añadido","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have added","habría añadido","habrías añadido","habría añadido","habríamos añadido","habríais añadido","habrían añadido","añadiendo","adding","añadido","added" +"añadamos" +"añadir","to add; to increase","Subjuntivo","Subjunctive","Presente","Present","I add, am adding","añada","añadas","añada","añadamos","añadáis","añadan","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I added, was adding","añadiera","añadieras","añadiera","añadiéramos","añadierais","añadieran","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Subjuntivo","Subjunctive","Futuro","Future","I will add","añadiere","añadieres","añadiere","añadiéremos","añadiereis","añadieren","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have added, added","haya añadido","hayas añadido","haya añadido","hayamos añadido","hayáis añadido","hayan añadido","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have added","hubiere añadido","hubieres añadido","hubiere añadido","hubiéremos añadido","hubiereis añadido","hubieren añadido","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had added","hubiera añadido","hubieras añadido","hubiera añadido","hubiéramos añadido","hubierais añadido","hubieran añadido","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Add! Don't add!","","añade","añada","añadamos","añadid","añadan","añadiendo","adding","añadido","added" +"añadir","to add; to increase","Imperativo Negativo","Imperative Negative","Presente","Present","Add! Don't add!","","no añadas","no añada","no añadamos","no añadáis","no añadan","añadiendo","adding","añadido","added" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Presente","Present","I extinguish, am extinguishing","apago","apagas","apaga","apagamos","apagáis","apagan","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Futuro","Future","I will extinguish","apagaré","apagarás","apagará","apagaremos","apagaréis","apagarán","apagando","extinguishing","apagado","extinguished" +"apoyar","to support, hold up, prop up; to back","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I supported, was supporting","apoyara","apoyaras","apoyara","apoyáramos","apoyarais","apoyaran","apoyando","supporting","apoyado","supported" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Imperfecto","Imperfect","I was extinguishing, used to extinguish, extinguished","apagaba","apagabas","apagaba","apagábamos","apagabais","apagaban","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Pretérito","Preterite","I extinguished","apagué","apagaste","apagó","apagamos","apagasteis","apagaron","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Condicional","Conditional","I would extinguish","apagaría","apagarías","apagaría","apagaríamos","apagaríais","apagarían","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Presente perfecto","Present Perfect","I have extinguished","he apagado","has apagado","ha apagado","hemos apagado","habéis apagado","han apagado","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have extinguished","habré apagado","habrás apagado","habrá apagado","habremos apagado","habréis apagado","habrán apagado","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had extinguished","había apagado","habías apagado","había apagado","habíamos apagado","habíais apagado","habían apagado","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had extinguished","hube apagado","hubiste apagado","hubo apagado","hubimos apagado","hubisteis apagado","hubieron apagado","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have extinguished","habría apagado","habrías apagado","habría apagado","habríamos apagado","habríais apagado","habrían apagado","apagando","extinguishing","apagado","extinguished" +"apaguemos" +"apagar","to extinguish, put out, turn off","Subjuntivo","Subjunctive","Presente","Present","I extinguish, am extinguishing","apague","apagues","apague","apaguemos","apaguéis","apaguen","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I extinguished, was extinguishing","apagara","apagaras","apagara","apagáramos","apagarais","apagaran","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Subjuntivo","Subjunctive","Futuro","Future","I will extinguish","apagare","apagares","apagare","apagáremos","apagareis","apagaren","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have extinguished, extinguished","haya apagado","hayas apagado","haya apagado","hayamos apagado","hayáis apagado","hayan apagado","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have extinguished","hubiere apagado","hubieres apagado","hubiere apagado","hubiéremos apagado","hubiereis apagado","hubieren apagado","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had extinguished","hubiera apagado","hubieras apagado","hubiera apagado","hubiéramos apagado","hubierais apagado","hubieran apagado","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Extinguish! Don't extinguish!","","apaga","apague","apaguemos","apagad","apaguen","apagando","extinguishing","apagado","extinguished" +"apagar","to extinguish, put out, turn off","Imperativo Negativo","Imperative Negative","Presente","Present","Extinguish! Don't extinguish!","","no apagues","no apague","no apaguemos","no apaguéis","no apaguen","apagando","extinguishing","apagado","extinguished" +"aparecer","to appear","Indicativo","Indicative","Presente","Present","I appear, am appearing","aparezco","apareces","aparece","aparecemos","aparecéis","aparecen","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Futuro","Future","I will appear","apareceré","aparecerás","aparecerá","apareceremos","apareceréis","aparecerán","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Imperfecto","Imperfect","I was appearing, used to appear, appeared","aparecía","aparecías","aparecía","aparecíamos","aparecíais","aparecían","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Pretérito","Preterite","I appeared","aparecí","apareciste","apareció","aparecimos","aparecisteis","aparecieron","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Condicional","Conditional","I would appear","aparecería","aparecerías","aparecería","apareceríamos","apareceríais","aparecerían","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have appeared","he aparecido","has aparecido","ha aparecido","hemos aparecido","habéis aparecido","han aparecido","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have appeared","habré aparecido","habrás aparecido","habrá aparecido","habremos aparecido","habréis aparecido","habrán aparecido","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had appeared","había aparecido","habías aparecido","había aparecido","habíamos aparecido","habíais aparecido","habían aparecido","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had appeared","hube aparecido","hubiste aparecido","hubo aparecido","hubimos aparecido","hubisteis aparecido","hubieron aparecido","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have appeared","habría aparecido","habrías aparecido","habría aparecido","habríamos aparecido","habríais aparecido","habrían aparecido","apareciendo","appearing","aparecido","appeared" +"aparezcamos" +"aparecer","to appear","Subjuntivo","Subjunctive","Presente","Present","I appear, am appearing","aparezca","aparezcas","aparezca","aparezcamos","aparezcáis","aparezcan","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I appeared, was appearing","apareciera","aparecieras","apareciera","apareciéramos","aparecierais","aparecieran","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Subjuntivo","Subjunctive","Futuro","Future","I will appear","apareciere","aparecieres","apareciere","apareciéremos","apareciereis","aparecieren","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have appeared, appeared","haya aparecido","hayas aparecido","haya aparecido","hayamos aparecido","hayáis aparecido","hayan aparecido","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have appeared","hubiere aparecido","hubieres aparecido","hubiere aparecido","hubiéremos aparecido","hubiereis aparecido","hubieren aparecido","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had appeared","hubiera aparecido","hubieras aparecido","hubiera aparecido","hubiéramos aparecido","hubierais aparecido","hubieran aparecido","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Appear! Don't appear!","","aparece","aparezca","aparezcamos","apareced","aparezcan","apareciendo","appearing","aparecido","appeared" +"aparecer","to appear","Imperativo Negativo","Imperative Negative","Presente","Present","Appear! Don't appear!","","no aparezcas","no aparezca","no aparezcamos","no aparezcáis","no aparezcan","apareciendo","appearing","aparecido","appeared" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Presente","Present","I applaud, am applauding","aplaudo","aplaudes","aplaude","aplaudimos","aplaudís","aplauden","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Futuro","Future","I will applaud","aplaudiré","aplaudirás","aplaudirá","aplaudiremos","aplaudiréis","aplaudirán","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Imperfecto","Imperfect","I was applauding, used to applaud, applauded","aplaudía","aplaudías","aplaudía","aplaudíamos","aplaudíais","aplaudían","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Pretérito","Preterite","I applauded","aplaudí","aplaudiste","aplaudió","aplaudimos","aplaudisteis","aplaudieron","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Condicional","Conditional","I would applaud","aplaudiría","aplaudirías","aplaudiría","aplaudiríamos","aplaudiríais","aplaudirían","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Presente perfecto","Present Perfect","I have applauded","he aplaudido","has aplaudido","ha aplaudido","hemos aplaudido","habéis aplaudido","han aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have applauded","habré aplaudido","habrás aplaudido","habrá aplaudido","habremos aplaudido","habréis aplaudido","habrán aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had applauded","había aplaudido","habías aplaudido","había aplaudido","habíamos aplaudido","habíais aplaudido","habían aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had applauded","hube aplaudido","hubiste aplaudido","hubo aplaudido","hubimos aplaudido","hubisteis aplaudido","hubieron aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have applauded","habría aplaudido","habrías aplaudido","habría aplaudido","habríamos aplaudido","habríais aplaudido","habrían aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudamos" +"aplaudir","to applaud, cheer, clap","Subjuntivo","Subjunctive","Presente","Present","I applaud, am applauding","aplauda","aplaudas","aplauda","aplaudamos","aplaudáis","aplaudan","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I applauded, was applauding","aplaudiera","aplaudieras","aplaudiera","aplaudiéramos","aplaudierais","aplaudieran","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Subjuntivo","Subjunctive","Futuro","Future","I will applaud","aplaudiere","aplaudieres","aplaudiere","aplaudiéremos","aplaudiereis","aplaudieren","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have applauded, applauded","haya aplaudido","hayas aplaudido","haya aplaudido","hayamos aplaudido","hayáis aplaudido","hayan aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have applauded","hubiere aplaudido","hubieres aplaudido","hubiere aplaudido","hubiéremos aplaudido","hubiereis aplaudido","hubieren aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had applauded","hubiera aplaudido","hubieras aplaudido","hubiera aplaudido","hubiéramos aplaudido","hubierais aplaudido","hubieran aplaudido","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Applaud! Don't applaud!","","aplaude","aplauda","aplaudamos","aplaudid","aplaudan","aplaudiendo","applauding","aplaudido","applauded" +"aplaudir","to applaud, cheer, clap","Imperativo Negativo","Imperative Negative","Presente","Present","Applaud! Don't applaud!","","no aplaudas","no aplauda","no aplaudamos","no aplaudáis","no aplaudan","aplaudiendo","applauding","aplaudido","applauded" +"aplicar","to apply","Indicativo","Indicative","Presente","Present","I apply, am applying","aplico","aplicas","aplica","aplicamos","aplicáis","aplican","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Futuro","Future","I will apply","aplicaré","aplicarás","aplicará","aplicaremos","aplicaréis","aplicarán","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Imperfecto","Imperfect","I was applying, used to apply, applied","aplicaba","aplicabas","aplicaba","aplicábamos","aplicabais","aplicaban","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Pretérito","Preterite","I applied","apliqué","aplicaste","aplicó","aplicamos","aplicasteis","aplicaron","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Condicional","Conditional","I would apply","aplicaría","aplicarías","aplicaría","aplicaríamos","aplicaríais","aplicarían","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Presente perfecto","Present Perfect","I have applied","he aplicado","has aplicado","ha aplicado","hemos aplicado","habéis aplicado","han aplicado","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have applied","habré aplicado","habrás aplicado","habrá aplicado","habremos aplicado","habréis aplicado","habrán aplicado","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had applied","había aplicado","habías aplicado","había aplicado","habíamos aplicado","habíais aplicado","habían aplicado","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had applied","hube aplicado","hubiste aplicado","hubo aplicado","hubimos aplicado","hubisteis aplicado","hubieron aplicado","aplicando","applying","aplicado","applied" +"aplicar","to apply","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have applied","habría aplicado","habrías aplicado","habría aplicado","habríamos aplicado","habríais aplicado","habrían aplicado","aplicando","applying","aplicado","applied" +"apliquemos" +"aplicar","to apply","Subjuntivo","Subjunctive","Presente","Present","I apply, am applying","aplique","apliques","aplique","apliquemos","apliquéis","apliquen","aplicando","applying","aplicado","applied" +"aplicar","to apply","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I applied, was applying","aplicara","aplicaras","aplicara","aplicáramos","aplicarais","aplicaran","aplicando","applying","aplicado","applied" +"aplicar","to apply","Subjuntivo","Subjunctive","Futuro","Future","I will apply","aplicare","aplicares","aplicare","aplicáremos","aplicareis","aplicaren","aplicando","applying","aplicado","applied" +"aplicar","to apply","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have applied, applied","haya aplicado","hayas aplicado","haya aplicado","hayamos aplicado","hayáis aplicado","hayan aplicado","aplicando","applying","aplicado","applied" +"aplicar","to apply","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have applied","hubiere aplicado","hubieres aplicado","hubiere aplicado","hubiéremos aplicado","hubiereis aplicado","hubieren aplicado","aplicando","applying","aplicado","applied" +"aplicar","to apply","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had applied","hubiera aplicado","hubieras aplicado","hubiera aplicado","hubiéramos aplicado","hubierais aplicado","hubieran aplicado","aplicando","applying","aplicado","applied" +"aplicar","to apply","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Apply! Don't apply!","","aplica","aplique","apliquemos","aplicad","apliquen","aplicando","applying","aplicado","applied" +"aplicar","to apply","Imperativo Negativo","Imperative Negative","Presente","Present","Apply! Don't apply!","","no apliques","no aplique","no apliquemos","no apliquéis","no apliquen","aplicando","applying","aplicado","applied" +"apostar","to bet, wager","Indicativo","Indicative","Presente","Present","I bet, am betting","apuesto","apuestas","apuesta","apostamos","apostáis","apuestan","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Futuro","Future","I will bet","apostaré","apostarás","apostará","apostaremos","apostaréis","apostarán","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Imperfecto","Imperfect","I was betting, used to bet, bet","apostaba","apostabas","apostaba","apostábamos","apostabais","apostaban","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Pretérito","Preterite","I bet","aposté","apostaste","apostó","apostamos","apostasteis","apostaron","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Condicional","Conditional","I would bet","apostaría","apostarías","apostaría","apostaríamos","apostaríais","apostarían","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Presente perfecto","Present Perfect","I have bet","he apostado","has apostado","ha apostado","hemos apostado","habéis apostado","han apostado","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have bet","habré apostado","habrás apostado","habrá apostado","habremos apostado","habréis apostado","habrán apostado","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had bet","había apostado","habías apostado","había apostado","habíamos apostado","habíais apostado","habían apostado","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had bet","hube apostado","hubiste apostado","hubo apostado","hubimos apostado","hubisteis apostado","hubieron apostado","apostando","betting","apostado","bet" +"apostar","to bet, wager","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have bet","habría apostado","habrías apostado","habría apostado","habríamos apostado","habríais apostado","habrían apostado","apostando","betting","apostado","bet" +"apostemos" +"apostar","to bet, wager","Subjuntivo","Subjunctive","Presente","Present","I bet, am betting","apueste","apuestes","apueste","apostemos","apostéis","apuesten","apostando","betting","apostado","bet" +"apostar","to bet, wager","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I bet, was betting","apostara","apostaras","apostara","apostáramos","apostarais","apostaran","apostando","betting","apostado","bet" +"apostar","to bet, wager","Subjuntivo","Subjunctive","Futuro","Future","I will bet","apostare","apostares","apostare","apostáremos","apostareis","apostaren","apostando","betting","apostado","bet" +"apostar","to bet, wager","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have bet, bet","haya apostado","hayas apostado","haya apostado","hayamos apostado","hayáis apostado","hayan apostado","apostando","betting","apostado","bet" +"apostar","to bet, wager","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have bet","hubiere apostado","hubieres apostado","hubiere apostado","hubiéremos apostado","hubiereis apostado","hubieren apostado","apostando","betting","apostado","bet" +"apostar","to bet, wager","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had bet","hubiera apostado","hubieras apostado","hubiera apostado","hubiéramos apostado","hubierais apostado","hubieran apostado","apostando","betting","apostado","bet" +"apostar","to bet, wager","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bet! Don't bet!","","apuesta","apueste","apostemos","apostad","apuesten","apostando","betting","apostado","bet" +"apostar","to bet, wager","Imperativo Negativo","Imperative Negative","Presente","Present","Bet! Don't bet!","","no apuestes","no apueste","no apostemos","no apostéis","no apuesten","apostando","betting","apostado","bet" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Presente","Present","I support, am supporting","apoyo","apoyas","apoya","apoyamos","apoyáis","apoyan","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Futuro","Future","I will support","apoyaré","apoyarás","apoyará","apoyaremos","apoyaréis","apoyarán","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Imperfecto","Imperfect","I was supporting, used to support, supported","apoyaba","apoyabas","apoyaba","apoyábamos","apoyabais","apoyaban","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Pretérito","Preterite","I supported","apoyé","apoyaste","apoyó","apoyamos","apoyasteis","apoyaron","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Condicional","Conditional","I would support","apoyaría","apoyarías","apoyaría","apoyaríamos","apoyaríais","apoyarían","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Presente perfecto","Present Perfect","I have supported","he apoyado","has apoyado","ha apoyado","hemos apoyado","habéis apoyado","han apoyado","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have supported","habré apoyado","habrás apoyado","habrá apoyado","habremos apoyado","habréis apoyado","habrán apoyado","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had supported","había apoyado","habías apoyado","había apoyado","habíamos apoyado","habíais apoyado","habían apoyado","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had supported","hube apoyado","hubiste apoyado","hubo apoyado","hubimos apoyado","hubisteis apoyado","hubieron apoyado","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have supported","habría apoyado","habrías apoyado","habría apoyado","habríamos apoyado","habríais apoyado","habrían apoyado","apoyando","supporting","apoyado","supported" +"apoyemos" +"apoyar","to support, hold up, prop up; to back","Subjuntivo","Subjunctive","Presente","Present","I support, am supporting","apoye","apoyes","apoye","apoyemos","apoyéis","apoyen","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Subjuntivo","Subjunctive","Futuro","Future","I will support","apoyare","apoyares","apoyare","apoyáremos","apoyareis","apoyaren","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have supported, supported","haya apoyado","hayas apoyado","haya apoyado","hayamos apoyado","hayáis apoyado","hayan apoyado","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have supported","hubiere apoyado","hubieres apoyado","hubiere apoyado","hubiéremos apoyado","hubiereis apoyado","hubieren apoyado","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had supported","hubiera apoyado","hubieras apoyado","hubiera apoyado","hubiéramos apoyado","hubierais apoyado","hubieran apoyado","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Support! Don't support!","","apoya","apoye","apoyemos","apoyad","apoyen","apoyando","supporting","apoyado","supported" +"apoyar","to support, hold up, prop up; to back","Imperativo Negativo","Imperative Negative","Presente","Present","Support! Don't support!","","no apoyes","no apoye","no apoyemos","no apoyéis","no apoyen","apoyando","supporting","apoyado","supported" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Presente","Present","I appreciate, am appreciating","aprecio","aprecias","aprecia","apreciamos","apreciáis","aprecian","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Futuro","Future","I will appreciate","apreciaré","apreciarás","apreciará","apreciaremos","apreciaréis","apreciarán","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Imperfecto","Imperfect","I was appreciating, used to appreciate, appreciated","apreciaba","apreciabas","apreciaba","apreciábamos","apreciabais","apreciaban","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Pretérito","Preterite","I appreciated","aprecié","apreciaste","apreció","apreciamos","apreciasteis","apreciaron","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Condicional","Conditional","I would appreciate","apreciaría","apreciarías","apreciaría","apreciaríamos","apreciaríais","apreciarían","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Presente perfecto","Present Perfect","I have appreciated","he apreciado","has apreciado","ha apreciado","hemos apreciado","habéis apreciado","han apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have appreciated","habré apreciado","habrás apreciado","habrá apreciado","habremos apreciado","habréis apreciado","habrán apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had appreciated","había apreciado","habías apreciado","había apreciado","habíamos apreciado","habíais apreciado","habían apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had appreciated","hube apreciado","hubiste apreciado","hubo apreciado","hubimos apreciado","hubisteis apreciado","hubieron apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have appreciated","habría apreciado","habrías apreciado","habría apreciado","habríamos apreciado","habríais apreciado","habrían apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciemos" +"apreciar","to appreciate, value, esteem, estimate, notice","Subjuntivo","Subjunctive","Presente","Present","I appreciate, am appreciating","aprecie","aprecies","aprecie","apreciemos","apreciéis","aprecien","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I appreciated, was appreciating","apreciara","apreciaras","apreciara","apreciáramos","apreciarais","apreciaran","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Subjuntivo","Subjunctive","Futuro","Future","I will appreciate","apreciare","apreciares","apreciare","apreciáremos","apreciareis","apreciaren","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have appreciated, appreciated","haya apreciado","hayas apreciado","haya apreciado","hayamos apreciado","hayáis apreciado","hayan apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have appreciated","hubiere apreciado","hubieres apreciado","hubiere apreciado","hubiéremos apreciado","hubiereis apreciado","hubieren apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had appreciated","hubiera apreciado","hubieras apreciado","hubiera apreciado","hubiéramos apreciado","hubierais apreciado","hubieran apreciado","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","appreciate! Don't appreciate!","","aprecia","aprecie","apreciemos","apreciad","aprecien","apreciando","appreciating","apreciado","appreciated" +"apreciar","to appreciate, value, esteem, estimate, notice","Imperativo Negativo","Imperative Negative","Presente","Present","appreciate! Don't appreciate!","","no aprecies","no aprecie","no apreciemos","no apreciéis","no aprecien","apreciando","appreciating","apreciado","appreciated" +"aprender","to learn","Indicativo","Indicative","Presente","Present","I learn, am learning","aprendo","aprendes","aprende","aprendemos","aprendéis","aprenden","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Futuro","Future","I will learn","aprenderé","aprenderás","aprenderá","aprenderemos","aprenderéis","aprenderán","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Imperfecto","Imperfect","I was learning, used to learn, learned","aprendía","aprendías","aprendía","aprendíamos","aprendíais","aprendían","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Pretérito","Preterite","I learned","aprendí","aprendiste","aprendió","aprendimos","aprendisteis","aprendieron","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Condicional","Conditional","I would learn","aprendería","aprenderías","aprendería","aprenderíamos","aprenderíais","aprenderían","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Presente perfecto","Present Perfect","I have learned","he aprendido","has aprendido","ha aprendido","hemos aprendido","habéis aprendido","han aprendido","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have learned","habré aprendido","habrás aprendido","habrá aprendido","habremos aprendido","habréis aprendido","habrán aprendido","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had learned","había aprendido","habías aprendido","había aprendido","habíamos aprendido","habíais aprendido","habían aprendido","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had learned","hube aprendido","hubiste aprendido","hubo aprendido","hubimos aprendido","hubisteis aprendido","hubieron aprendido","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have learned","habría aprendido","habrías aprendido","habría aprendido","habríamos aprendido","habríais aprendido","habrían aprendido","aprendiendo","learning","aprendido","learned" +"aprendamos" +"aprender","to learn","Subjuntivo","Subjunctive","Presente","Present","I learn, am learning","aprenda","aprendas","aprenda","aprendamos","aprendáis","aprendan","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I learned, was learning","aprendiera","aprendieras","aprendiera","aprendiéramos","aprendierais","aprendieran","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Subjuntivo","Subjunctive","Futuro","Future","I will learn","aprendiere","aprendieres","aprendiere","aprendiéremos","aprendiereis","aprendieren","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have learned, learned","haya aprendido","hayas aprendido","haya aprendido","hayamos aprendido","hayáis aprendido","hayan aprendido","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have learned","hubiere aprendido","hubieres aprendido","hubiere aprendido","hubiéremos aprendido","hubiereis aprendido","hubieren aprendido","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had learned","hubiera aprendido","hubieras aprendido","hubiera aprendido","hubiéramos aprendido","hubierais aprendido","hubieran aprendido","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Learn! Don't learn!","","aprende","aprenda","aprendamos","aprended","aprendan","aprendiendo","learning","aprendido","learned" +"aprender","to learn","Imperativo Negativo","Imperative Negative","Presente","Present","Learn! Don't learn!","","no aprendas","no aprenda","no aprendamos","no aprendáis","no aprendan","aprendiendo","learning","aprendido","learned" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Presente","Present","I am too tight, am being too tight","aprieto","aprietas","aprieta","apretamos","apretáis","aprietan","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Futuro","Future","I will be too tight","apretaré","apretarás","apretará","apretaremos","apretaréis","apretarán","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Imperfecto","Imperfect","I was being too tight, used to be too tight, was too tight","apretaba","apretabas","apretaba","apretábamos","apretabais","apretaban","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Pretérito","Preterite","I was too tight","apreté","apretaste","apretó","apretamos","apretasteis","apretaron","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Condicional","Conditional","I would be too tight","apretaría","apretarías","apretaría","apretaríamos","apretaríais","apretarían","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been too tight","he apretado","has apretado","ha apretado","hemos apretado","habéis apretado","han apretado","apretando","being too tight","apretado","was too tight" +"asistamos" +"asistir","to attend","Subjuntivo","Subjunctive","Presente","Present","I attend, am attending","asista","asistas","asista","asistamos","asistáis","asistan","asistiendo","attending","asistido","attended" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been too tight","habré apretado","habrás apretado","habrá apretado","habremos apretado","habréis apretado","habrán apretado","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been too tight","había apretado","habías apretado","había apretado","habíamos apretado","habíais apretado","habían apretado","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been too tight","hube apretado","hubiste apretado","hubo apretado","hubimos apretado","hubisteis apretado","hubieron apretado","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been too tight","habría apretado","habrías apretado","habría apretado","habríamos apretado","habríais apretado","habrían apretado","apretando","being too tight","apretado","was too tight" +"apretemos" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Subjuntivo","Subjunctive","Presente","Present","I am too tight, am being too tight","apriete","aprietes","apriete","apretemos","apretéis","aprieten","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was too tight, was being too tight","apretara","apretaras","apretara","apretáramos","apretarais","apretaran","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Subjuntivo","Subjunctive","Futuro","Future","I will be too tight","apretare","apretares","apretare","apretáremos","apretareis","apretaren","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been too tight, was too tight","haya apretado","hayas apretado","haya apretado","hayamos apretado","hayáis apretado","hayan apretado","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been too tight","hubiere apretado","hubieres apretado","hubiere apretado","hubiéremos apretado","hubiereis apretado","hubieren apretado","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been too tight","hubiera apretado","hubieras apretado","hubiera apretado","hubiéramos apretado","hubierais apretado","hubieran apretado","apretando","being too tight","apretado","was too tight" +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be too tight! Don't be too tight!","","aprieta","apriete","apretemos","apretad","aprieten","apretando","being too tight","apretado","was too tight", +"apretar","to be too tight; to squeeze; to tighten [up]; to press [down/against]","Imperativo Negativo","Imperative Negative","Presente","Present","Be too tight! Don't be too tight!","","no aprietes","no apriete","no apretemos","no apretéis","no aprieten","apretando","being too tight","apretado","was too tight", +"aprobar","to pass","Indicativo","Indicative","Presente","Present","I pass, am passing","apruebo","apruebas","aprueba","aprobamos","aprobáis","aprueban","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Futuro","Future","I will pass","aprobaré","aprobarás","aprobará","aprobaremos","aprobaréis","aprobarán","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Imperfecto","Imperfect","I was passing, used to pass, passed","aprobaba","aprobabas","aprobaba","aprobábamos","aprobabais","aprobaban","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Pretérito","Preterite","I passed","aprobé","aprobaste","aprobó","aprobamos","aprobasteis","aprobaron","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Condicional","Conditional","I would pass","aprobaría","aprobarías","aprobaría","aprobaríamos","aprobaríais","aprobarían","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Presente perfecto","Present Perfect","I have passed","he aprobado","has aprobado","ha aprobado","hemos aprobado","habéis aprobado","han aprobado","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have passed","habré aprobado","habrás aprobado","habrá aprobado","habremos aprobado","habréis aprobado","habrán aprobado","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had passed","había aprobado","habías aprobado","había aprobado","habíamos aprobado","habíais aprobado","habían aprobado","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had passed","hube aprobado","hubiste aprobado","hubo aprobado","hubimos aprobado","hubisteis aprobado","hubieron aprobado","aprobando","passing","aprobado","passed" +"aprobar","to pass","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have passed","habría aprobado","habrías aprobado","habría aprobado","habríamos aprobado","habríais aprobado","habrían aprobado","aprobando","passing","aprobado","passed" +"aprobemos" +"aprobar","to pass","Subjuntivo","Subjunctive","Presente","Present","I pass, am passing","apruebe","apruebes","apruebe","aprobemos","aprobéis","aprueben","aprobando","passing","aprobado","passed" +"aprobar","to pass","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I passed, was passing","aprobara","aprobaras","aprobara","aprobáramos","aprobarais","aprobaran","aprobando","passing","aprobado","passed" +"aprobar","to pass","Subjuntivo","Subjunctive","Futuro","Future","I will pass","aprobare","aprobares","aprobare","aprobáremos","aprobareis","aprobaren","aprobando","passing","aprobado","passed" +"aprobar","to pass","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have passed, passed","haya aprobado","hayas aprobado","haya aprobado","hayamos aprobado","hayáis aprobado","hayan aprobado","aprobando","passing","aprobado","passed" +"aprobar","to pass","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have passed","hubiere aprobado","hubieres aprobado","hubiere aprobado","hubiéremos aprobado","hubiereis aprobado","hubieren aprobado","aprobando","passing","aprobado","passed" +"aprobar","to pass","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had passed","hubiera aprobado","hubieras aprobado","hubiera aprobado","hubiéramos aprobado","hubierais aprobado","hubieran aprobado","aprobando","passing","aprobado","passed" +"aprobar","to pass","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Pass! Don't pass!","","aprueba","apruebe","aprobemos","aprobad","aprueben","aprobando","passing","aprobado","passed" +"aprobar","to pass","Imperativo Negativo","Imperative Negative","Presente","Present","Pass! Don't pass!","","no apruebes","no apruebe","no aprobemos","no aprobéis","no aprueben","aprobando","passing","aprobado","passed" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Presente","Present","I arrange, am arranging","arreglo","arreglas","arregla","arreglamos","arregláis","arreglan","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Futuro","Future","I will arrange","arreglaré","arreglarás","arreglará","arreglaremos","arreglaréis","arreglarán","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Imperfecto","Imperfect","I was arranging, used to arrange, arranged","arreglaba","arreglabas","arreglaba","arreglábamos","arreglabais","arreglaban","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Pretérito","Preterite","I arranged","arreglé","arreglaste","arregló","arreglamos","arreglasteis","arreglaron","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Condicional","Conditional","I would arrange","arreglaría","arreglarías","arreglaría","arreglaríamos","arreglaríais","arreglarían","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have arranged","he arreglado","has arreglado","ha arreglado","hemos arreglado","habéis arreglado","han arreglado","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have arranged","habré arreglado","habrás arreglado","habrá arreglado","habremos arreglado","habréis arreglado","habrán arreglado","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had arranged","había arreglado","habías arreglado","había arreglado","habíamos arreglado","habíais arreglado","habían arreglado","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had arranged","hube arreglado","hubiste arreglado","hubo arreglado","hubimos arreglado","hubisteis arreglado","hubieron arreglado","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have arranged","habría arreglado","habrías arreglado","habría arreglado","habríamos arreglado","habríais arreglado","habrían arreglado","arreglando","arranging","arreglado","arranged" +"arreglemos" +"arreglar","to arrange, settle, fix up, repair, tidy up","Subjuntivo","Subjunctive","Presente","Present","I arrange, am arranging","arregle","arregles","arregle","arreglemos","arregléis","arreglen","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I arranged, was arranging","arreglara","arreglaras","arreglara","arregláramos","arreglarais","arreglaran","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Subjuntivo","Subjunctive","Futuro","Future","I will arrange","arreglare","arreglares","arreglare","arregláremos","arreglareis","arreglaren","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have arranged, arranged","haya arreglado","hayas arreglado","haya arreglado","hayamos arreglado","hayáis arreglado","hayan arreglado","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have arranged","hubiere arreglado","hubieres arreglado","hubiere arreglado","hubiéremos arreglado","hubiereis arreglado","hubieren arreglado","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had arranged","hubiera arreglado","hubieras arreglado","hubiera arreglado","hubiéramos arreglado","hubierais arreglado","hubieran arreglado","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Arrange! Don't arrange!","","arregla","arregle","arreglemos","arreglad","arreglen","arreglando","arranging","arreglado","arranged" +"arreglar","to arrange, settle, fix up, repair, tidy up","Imperativo Negativo","Imperative Negative","Presente","Present","Arrange! Don't arrange!","","no arregles","no arregle","no arreglemos","no arregléis","no arreglen","arreglando","arranging","arreglado","arranged" +"ayudar","to help","Indicativo","Indicative","Presente","Present","I help, am helping","ayudo","ayudas","ayuda","ayudamos","ayudáis","ayudan","ayudando","helping","ayudado","helped" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Presente","Present","I repent, am repenting","me arrepiento","te arrepientes","se arrepiente","nos arrepentimos","os arrepentís","se arrepienten","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Futuro","Future","I will repent","me arrepentiré","te arrepentirás","se arrepentirá","nos arrepentiremos","os arrepentiréis","se arrepentirán","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Imperfecto","Imperfect","I was repenting, used to repent, repented","me arrepentía","te arrepentías","se arrepentía","nos arrepentíamos","os arrepentíais","se arrepentían","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Pretérito","Preterite","I repented","me arrepentí","te arrepentiste","se arrepintió","nos arrepentimos","os arrepentisteis","se arrepintieron","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Condicional","Conditional","I would repent","me arrepentiría","te arrepentirías","se arrepentiría","nos arrepentiríamos","os arrepentiríais","se arrepentirían","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Presente perfecto","Present Perfect","I have repented","me he arrepentido","te has arrepentido","se ha arrepentido","nos hemos arrepentido","os habéis arrepentido","se han arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have repented","me habré arrepentido","te habrás arrepentido","se habrá arrepentido","nos habremos arrepentido","os habréis arrepentido","se habrán arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had repented","me había arrepentido","te habías arrepentido","se había arrepentido","nos habíamos arrepentido","os habíais arrepentido","se habían arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had repented","me hube arrepentido","te hubiste arrepentido","se hubo arrepentido","nos hubimos arrepentido","os hubisteis arrepentido","se hubieron arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have repented","me habría arrepentido","te habrías arrepentido","se habría arrepentido","nos habríamos arrepentido","os habríais arrepentido","se habrían arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"nos arrepintamos" +"arrepentirse","to repent, be repentant, regret","Subjuntivo","Subjunctive","Presente","Present","I repent, am repenting","me arrepienta","te arrepientas","se arrepienta","nos arrepintamos","os arrepintáis","se arrepientan","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I repented, was repenting","me arrepintiera","te arrepintieras","se arrepintiera","nos arrepintiéramos","os arrepintierais","se arrepintieran","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Subjuntivo","Subjunctive","Futuro","Future","I will repent","me arrepintiere","te arrepintieres","se arrepintiere","nos arrepintiéremos","os arrepintiereis","se arrepintieren","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have repented, repented","me haya arrepentido","te hayas arrepentido","se haya arrepentido","nos hayamos arrepentido","os hayáis arrepentido","se hayan arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have repented","me hubiere arrepentido","te hubieres arrepentido","se hubiere arrepentido","nos hubiéremos arrepentido","os hubiereis arrepentido","se hubieren arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had repented","me hubiera arrepentido","te hubieras arrepentido","se hubiera arrepentido","nos hubiéramos arrepentido","os hubierais arrepentido","se hubieran arrepentido","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Repent! Don't repent!","","arrepiéntete","arrepiéntase","arrepintámonos","arrepentíos","arrepiéntanse","arrepintiéndose","repenting","arrepentido","repented" +"arrepentirse","to repent, be repentant, regret","Imperativo Negativo","Imperative Negative","Presente","Present","Repent! Don't repent!","","no te arrepientas","no se arrepienta","no nos arrepintamos","no os arrepentáis","no se arrepientan","arrepintiéndose","repenting","arrepentido","repented" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Presente","Present","I throw, am throwing","arrojo","arrojas","arroja","arrojamos","arrojáis","arrojan","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Futuro","Future","I will throw","arrojaré","arrojarás","arrojará","arrojaremos","arrojaréis","arrojarán","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Imperfecto","Imperfect","I was throwing, used to throw, threw","arrojaba","arrojabas","arrojaba","arrojábamos","arrojabais","arrojaban","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Pretérito","Preterite","I threw","arrojé","arrojaste","arrojó","arrojamos","arrojasteis","arrojaron","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Condicional","Conditional","I would throw","arrojaría","arrojarías","arrojaría","arrojaríamos","arrojaríais","arrojarían","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Presente perfecto","Present Perfect","I have thrown","he arrojado","has arrojado","ha arrojado","hemos arrojado","habéis arrojado","han arrojado","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have thrown","habré arrojado","habrás arrojado","habrá arrojado","habremos arrojado","habréis arrojado","habrán arrojado","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had thrown","había arrojado","habías arrojado","había arrojado","habíamos arrojado","habíais arrojado","habían arrojado","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had thrown","hube arrojado","hubiste arrojado","hubo arrojado","hubimos arrojado","hubisteis arrojado","hubieron arrojado","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have thrown","habría arrojado","habrías arrojado","habría arrojado","habríamos arrojado","habríais arrojado","habrían arrojado","arrojando","throwing","arrojado","thrown" +"arrojemos" +"arrojar","to throw, hurl, cast, toss","Subjuntivo","Subjunctive","Presente","Present","I throw, am throwing","arroje","arrojes","arroje","arrojemos","arrojéis","arrojen","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I threw, was throwing","arrojara","arrojaras","arrojara","arrojáramos","arrojarais","arrojaran","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Subjuntivo","Subjunctive","Futuro","Future","I will throw","arrojare","arrojares","arrojare","arrojáremos","arrojareis","arrojaren","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have thrown, threw","haya arrojado","hayas arrojado","haya arrojado","hayamos arrojado","hayáis arrojado","hayan arrojado","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have thrown","hubiere arrojado","hubieres arrojado","hubiere arrojado","hubiéremos arrojado","hubiereis arrojado","hubieren arrojado","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had thrown","hubiera arrojado","hubieras arrojado","hubiera arrojado","hubiéramos arrojado","hubierais arrojado","hubieran arrojado","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Throw! Don't throw!","","arroja","arroje","arrojemos","arrojad","arrojen","arrojando","throwing","arrojado","thrown" +"arrojar","to throw, hurl, cast, toss","Imperativo Negativo","Imperative Negative","Presente","Present","Throw! Don't throw!","","no arrojes","no arroje","no arrojemos","no arrojéis","no arrojen","arrojando","throwing","arrojado","thrown" +"asistir","to attend","Indicativo","Indicative","Presente","Present","I attend, am attending","asisto","asistes","asiste","asistimos","asistís","asisten","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Futuro","Future","I will attend","asistiré","asistirás","asistirá","asistiremos","asistiréis","asistirán","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Imperfecto","Imperfect","I was attending, used to attend, attended","asistía","asistías","asistía","asistíamos","asistíais","asistían","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Pretérito","Preterite","I attended","asistí","asististe","asistió","asistimos","asististeis","asistieron","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Condicional","Conditional","I would attend","asistiría","asistirías","asistiría","asistiríamos","asistiríais","asistirían","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have attended","he asistido","has asistido","ha asistido","hemos asistido","habéis asistido","han asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have attended","habré asistido","habrás asistido","habrá asistido","habremos asistido","habréis asistido","habrán asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had attended","había asistido","habías asistido","había asistido","habíamos asistido","habíais asistido","habían asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had attended","hube asistido","hubiste asistido","hubo asistido","hubimos asistido","hubisteis asistido","hubieron asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have attended","habría asistido","habrías asistido","habría asistido","habríamos asistido","habríais asistido","habrían asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I attended, was attending","asistiera","asistieras","asistiera","asistiéramos","asistierais","asistieran","asistiendo","attending","asistido","attended" +"asistir","to attend","Subjuntivo","Subjunctive","Futuro","Future","I will attend","asistiere","asistieres","asistiere","asistiéremos","asistiereis","asistieren","asistiendo","attending","asistido","attended" +"asistir","to attend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have attended, attended","haya asistido","hayas asistido","haya asistido","hayamos asistido","hayáis asistido","hayan asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have attended","hubiere asistido","hubieres asistido","hubiere asistido","hubiéremos asistido","hubiereis asistido","hubieren asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had attended","hubiera asistido","hubieras asistido","hubiera asistido","hubiéramos asistido","hubierais asistido","hubieran asistido","asistiendo","attending","asistido","attended" +"asistir","to attend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Attend! Don't attend!","","asiste","asista","arrojemos","asistid","asistan","asistiendo","attending","asistido","attended" +"asistir","to attend","Imperativo Negativo","Imperative Negative","Presente","Present","Attend! Don't attend!","","no asistas","no asista","no arrojemos","no asistáis","no asistan","asistiendo","attending","asistido","attended" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Presente","Present","I associate, am associating","asocio","asocias","asocia","asociamos","asociáis","asocian","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Futuro","Future","I will associate","asociaré","asociarás","asociará","asociaremos","asociaréis","asociarán","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Imperfecto","Imperfect","I was associating, used to associate, associated","asociaba","asociabas","asociaba","asociábamos","asociabais","asociaban","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Pretérito","Preterite","I associated","asocié","asociaste","asoció","asociamos","asociasteis","asociaron","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Condicional","Conditional","I would associate","asociaría","asociarías","asociaría","asociaríamos","asociaríais","asociarían","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Presente perfecto","Present Perfect","I have associated","he asociado","has asociado","ha asociado","hemos asociado","habéis asociado","han asociado","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have associated","habré asociado","habrás asociado","habrá asociado","habremos asociado","habréis asociado","habrán asociado","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had associated","había asociado","habías asociado","había asociado","habíamos asociado","habíais asociado","habían asociado","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had associated","hube asociado","hubiste asociado","hubo asociado","hubimos asociado","hubisteis asociado","hubieron asociado","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have associated","habría asociado","habrías asociado","habría asociado","habríamos asociado","habríais asociado","habrían asociado","asociando","associating","asociado","associated" +"asociemos" +"asociar","to associate; to pool, put together","Subjuntivo","Subjunctive","Presente","Present","I associate, am associating","asocie","asocies","asocie","asociemos","asociéis","asocien","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I associated, was associating","asociara","asociaras","asociara","asociáramos","asociarais","asociaran","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Subjuntivo","Subjunctive","Futuro","Future","I will associate","asociare","asociares","asociare","asociáremos","asociareis","asociaren","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have associated, associated","haya asociado","hayas asociado","haya asociado","hayamos asociado","hayáis asociado","hayan asociado","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have associated","hubiere asociado","hubieres asociado","hubiere asociado","hubiéremos asociado","hubiereis asociado","hubieren asociado","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had associated","hubiera asociado","hubieras asociado","hubiera asociado","hubiéramos asociado","hubierais asociado","hubieran asociado","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Associate! Don't associate!","","asocia","asocie","asociemos","asociad","asocien","asociando","associating","asociado","associated" +"asociar","to associate; to pool, put together","Imperativo Negativo","Imperative Negative","Presente","Present","Associate! Don't associate!","","no asocies","no asocie","no asociemos","no asociéis","no asocien","asociando","associating","asociado","associated" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Presente","Present","I breath in, am breathing in","aspiro","aspiras","aspira","aspiramos","aspiráis","aspiran","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Futuro","Future","I will breath in","aspiraré","aspirarás","aspirará","aspiraremos","aspiraréis","aspirarán","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Imperfecto","Imperfect","I was breathing in, used to breath in, breathed in","aspiraba","aspirabas","aspiraba","aspirábamos","aspirabais","aspiraban","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Pretérito","Preterite","I breathed in","aspiré","aspiraste","aspiró","aspiramos","aspirasteis","aspiraron","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Condicional","Conditional","I would breath in","aspiraría","aspirarías","aspiraría","aspiraríamos","aspiraríais","aspirarían","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Presente perfecto","Present Perfect","I have breathed in","he aspirado","has aspirado","ha aspirado","hemos aspirado","habéis aspirado","han aspirado","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have breathed in","habré aspirado","habrás aspirado","habrá aspirado","habremos aspirado","habréis aspirado","habrán aspirado","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had breathed in","había aspirado","habías aspirado","había aspirado","habíamos aspirado","habíais aspirado","habían aspirado","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had breathed in","hube aspirado","hubiste aspirado","hubo aspirado","hubimos aspirado","hubisteis aspirado","hubieron aspirado","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have breathed in","habría aspirado","habrías aspirado","habría aspirado","habríamos aspirado","habríais aspirado","habrían aspirado","aspirando","breathing in","aspirado","breathed in" +"aspiremos" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Subjuntivo","Subjunctive","Presente","Present","I breath in, am breathing in","aspire","aspires","aspire","aspiremos","aspiréis","aspiren","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I breathed in, was breathing in","aspirara","aspiraras","aspirara","aspiráramos","aspirarais","aspiraran","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Subjuntivo","Subjunctive","Futuro","Future","I will breath in","aspirare","aspirares","aspirare","aspiráremos","aspirareis","aspiraren","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have breathed in, breathed in","haya aspirado","hayas aspirado","haya aspirado","hayamos aspirado","hayáis aspirado","hayan aspirado","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have breathed in","hubiere aspirado","hubieres aspirado","hubiere aspirado","hubiéremos aspirado","hubiereis aspirado","hubieren aspirado","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had breathed in","hubiera aspirado","hubieras aspirado","hubiera aspirado","hubiéramos aspirado","hubierais aspirado","hubieran aspirado","aspirando","breathing in","aspirado","breathed in" +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Breath in! Don't breath in!","","aspira","aspire","aspiremos","aspirad","aspiren","aspirando","breathing in","aspirado","breathed in", +"aspirar","to breath in, inhale; to suck in; to aspirate; to aspire","Imperativo Negativo","Imperative Negative","Presente","Present","Breath in! Don't breath in!","","no aspires","no aspire","no aspiremos","no aspiréis","no aspiren","aspirando","breathing in","aspirado","breathed in", +"asustar","to frighten, scare, startle","Indicativo","Indicative","Presente","Present","I frighten, am frightening","asusto","asustas","asusta","asustamos","asustáis","asustan","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Futuro","Future","I will frighten","asustaré","asustarás","asustará","asustaremos","asustaréis","asustarán","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Imperfecto","Imperfect","I was frightening, used to frighten, frightened","asustaba","asustabas","asustaba","asustábamos","asustabais","asustaban","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Pretérito","Preterite","I frightened","asusté","asustaste","asustó","asustamos","asustasteis","asustaron","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Condicional","Conditional","I would frighten","asustaría","asustarías","asustaría","asustaríamos","asustaríais","asustarían","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Presente perfecto","Present Perfect","I have frightened","he asustado","has asustado","ha asustado","hemos asustado","habéis asustado","han asustado","asustando","frightening","asustado","frightened" +"ayudar","to help","Indicativo","Indicative","Futuro","Future","I will help","ayudaré","ayudarás","ayudará","ayudaremos","ayudaréis","ayudarán","ayudando","helping","ayudado","helped" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have frightened","habré asustado","habrás asustado","habrá asustado","habremos asustado","habréis asustado","habrán asustado","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had frightened","había asustado","habías asustado","había asustado","habíamos asustado","habíais asustado","habían asustado","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had frightened","hube asustado","hubiste asustado","hubo asustado","hubimos asustado","hubisteis asustado","hubieron asustado","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have frightened","habría asustado","habrías asustado","habría asustado","habríamos asustado","habríais asustado","habrían asustado","asustando","frightening","asustado","frightened" +"asustemos" +"asustar","to frighten, scare, startle","Subjuntivo","Subjunctive","Presente","Present","I frighten, am frightening","asuste","asustes","asuste","asustemos","asustéis","asusten","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I frightened, was frightening","asustara","asustaras","asustara","asustáramos","asustarais","asustaran","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Subjuntivo","Subjunctive","Futuro","Future","I will frighten","asustare","asustares","asustare","asustáremos","asustareis","asustaren","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have frightened, frightened","haya asustado","hayas asustado","haya asustado","hayamos asustado","hayáis asustado","hayan asustado","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have frightened","hubiere asustado","hubieres asustado","hubiere asustado","hubiéremos asustado","hubiereis asustado","hubieren asustado","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had frightened","hubiera asustado","hubieras asustado","hubiera asustado","hubiéramos asustado","hubierais asustado","hubieran asustado","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Frighten! Don't frighten!","","asusta","asuste","asustemos","asustad","asusten","asustando","frightening","asustado","frightened" +"asustar","to frighten, scare, startle","Imperativo Negativo","Imperative Negative","Presente","Present","Frighten! Don't frighten!","","no asustes","no asuste","no asustemos","no asustéis","no asusten","asustando","frightening","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Presente","Present","I am frightened, am being frightened","me asusto","te asustas","se asusta","nos asustamos","os asustáis","se asustan","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Futuro","Future","I will be frightened","me asustaré","te asustarás","se asustará","nos asustaremos","os asustaréis","se asustarán","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was being frightened, used to be frightened, was frightened","me asustaba","te asustabas","se asustaba","nos asustábamos","os asustabais","se asustaban","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Pretérito","Preterite","I was frightened","me asusté","te asustaste","se asustó","nos asustamos","os asustasteis","se asustaron","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Condicional","Conditional","I would be frightened","me asustaría","te asustarías","se asustaría","nos asustaríamos","os asustaríais","se asustarían","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been frightened","me he asustado","te has asustado","se ha asustado","nos hemos asustado","os habéis asustado","se han asustado","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been frightened","me habré asustado","te habrás asustado","se habrá asustado","nos habremos asustado","os habréis asustado","se habrán asustado","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been frightened","me había asustado","te habías asustado","se había asustado","nos habíamos asustado","os habíais asustado","se habían asustado","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been frightened","me hube asustado","te hubiste asustado","se hubo asustado","nos hubimos asustado","os hubisteis asustado","se hubieron asustado","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been frightened","me habría asustado","te habrías asustado","se habría asustado","nos habríamos asustado","os habríais asustado","se habrían asustado","asustándose","being frightened","asustado","frightened" +"nos asustemos" +"asustarse","to be frightened [oneself]","Subjuntivo","Subjunctive","Presente","Present","I am frightened, am being frightened","me asuste","te asustes","se asuste","nos asustemos","os asustéis","se asusten","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was frightened, was being frightened","me asustara","te asustaras","se asustara","nos asustáramos","os asustarais","se asustaran","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will be frightened","me asustare","te asustares","se asustare","nos asustáremos","os asustareis","se asustaren","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been frightened, was frightened","me haya asustado","te hayas asustado","se haya asustado","nos hayamos asustado","os hayáis asustado","se hayan asustado","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been frightened","me hubiere asustado","te hubieres asustado","se hubiere asustado","nos hubiéremos asustado","os hubiereis asustado","se hubieren asustado","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been frightened","me hubiera asustado","te hubieras asustado","se hubiera asustado","nos hubiéramos asustado","os hubierais asustado","se hubieran asustado","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be frightened! Don't be frightened!","","asústate","asústese","nos asustemos","asustaos","asústense","asustándose","being frightened","asustado","frightened" +"asustarse","to be frightened [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Be frightened! Don't be frightened!","","no te asustes","no se asuste","no nos asustemos","no os asustéis","no se asusten","asustándose","being frightened","asustado","frightened" +"atacar","to attack","Indicativo","Indicative","Presente","Present","I attack, am attacking","ataco","atacas","ataca","atacamos","atacáis","atacan","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Futuro","Future","I will attack","atacaré","atacarás","atacará","atacaremos","atacaréis","atacarán","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Imperfecto","Imperfect","I was attacking, used to attack, attacked","atacaba","atacabas","atacaba","atacábamos","atacabais","atacaban","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Pretérito","Preterite","I attacked","ataqué","atacaste","atacó","atacamos","atacasteis","atacaron","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Condicional","Conditional","I would attack","atacaría","atacarías","atacaría","atacaríamos","atacaríais","atacarían","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Presente perfecto","Present Perfect","I have attacked","he atacado","has atacado","ha atacado","hemos atacado","habéis atacado","han atacado","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have attacked","habré atacado","habrás atacado","habrá atacado","habremos atacado","habréis atacado","habrán atacado","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had attacked","había atacado","habías atacado","había atacado","habíamos atacado","habíais atacado","habían atacado","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had attacked","hube atacado","hubiste atacado","hubo atacado","hubimos atacado","hubisteis atacado","hubieron atacado","atacando","attacking","atacado","attacked" +"atacar","to attack","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have attacked","habría atacado","habrías atacado","habría atacado","habríamos atacado","habríais atacado","habrían atacado","atacando","attacking","atacado","attacked" +"ataquemos" +"atacar","to attack","Subjuntivo","Subjunctive","Presente","Present","I attack, am attacking","ataque","ataques","ataque","ataquemos","ataquéis","ataquen","atacando","attacking","atacado","attacked" +"atacar","to attack","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I attacked, was attacking","atacara","atacaras","atacara","atacáramos","atacarais","atacaran","atacando","attacking","atacado","attacked" +"atacar","to attack","Subjuntivo","Subjunctive","Futuro","Future","I will attack","atacare","atacares","atacare","atacáremos","atacareis","atacaren","atacando","attacking","atacado","attacked" +"atacar","to attack","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have attacked, attacked","haya atacado","hayas atacado","haya atacado","hayamos atacado","hayáis atacado","hayan atacado","atacando","attacking","atacado","attacked" +"atacar","to attack","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have attacked","hubiere atacado","hubieres atacado","hubiere atacado","hubiéremos atacado","hubiereis atacado","hubieren atacado","atacando","attacking","atacado","attacked" +"atacar","to attack","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had attacked","hubiera atacado","hubieras atacado","hubiera atacado","hubiéramos atacado","hubierais atacado","hubieran atacado","atacando","attacking","atacado","attacked" +"atacar","to attack","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Attack! Don't attack!","","ataca","ataque","ataquemos","atacad","ataquen","atacando","attacking","atacado","attacked" +"atacar","to attack","Imperativo Negativo","Imperative Negative","Presente","Present","Attack! Don't attack!","","no ataques","no ataque","no ataquemos","no ataquéis","no ataquen","atacando","attacking","atacado","attacked" +"atender","to attend to, pay attention to","Indicativo","Indicative","Presente","Present","I attend to, am attending to","atiendo","atiendes","atiende","atendemos","atendéis","atienden","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Futuro","Future","I will attend to","atenderé","atenderás","atenderá","atenderemos","atenderéis","atenderán","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Imperfecto","Imperfect","I was attending to, used to attend to, attended to","atendía","atendías","atendía","atendíamos","atendíais","atendían","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Pretérito","Preterite","I attended to","atendí","atendiste","atendió","atendimos","atendisteis","atendieron","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Condicional","Conditional","I would attend to","atendería","atenderías","atendería","atenderíamos","atenderíais","atenderían","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have attended to","he atendido","has atendido","ha atendido","hemos atendido","habéis atendido","han atendido","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have attended to","habré atendido","habrás atendido","habrá atendido","habremos atendido","habréis atendido","habrán atendido","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had attended to","había atendido","habías atendido","había atendido","habíamos atendido","habíais atendido","habían atendido","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had attended to","hube atendido","hubiste atendido","hubo atendido","hubimos atendido","hubisteis atendido","hubieron atendido","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have attended to","habría atendido","habrías atendido","habría atendido","habríamos atendido","habríais atendido","habrían atendido","atendiendo","attending to","atendido","attended to" +"atendamos" +"atender","to attend to, pay attention to","Subjuntivo","Subjunctive","Presente","Present","I attend to, am attending to","atienda","atiendas","atienda","atendamos","atendáis","atiendan","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I attended to, was attending to","atendiera","atendieras","atendiera","atendiéramos","atendierais","atendieran","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Subjuntivo","Subjunctive","Futuro","Future","I will attend to","atendiere","atendieres","atendiere","atendiéremos","atendiereis","atendieren","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have attended to, attended to","haya atendido","hayas atendido","haya atendido","hayamos atendido","hayáis atendido","hayan atendido","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have attended to","hubiere atendido","hubieres atendido","hubiere atendido","hubiéremos atendido","hubiereis atendido","hubieren atendido","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had attended to","hubiera atendido","hubieras atendido","hubiera atendido","hubiéramos atendido","hubierais atendido","hubieran atendido","atendiendo","attending to","atendido","attended to" +"atender","to attend to, pay attention to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Attend to! Don't attend to!","","atiende","atienda","atendamos","atended","atiendan","atendiendo","attending to","atendido","attended to", +"atender","to attend to, pay attention to","Imperativo Negativo","Imperative Negative","Presente","Present","Attend to! Don't attend to!","","no atiendas","no atienda","no atendamos","no atendáis","no atiendan","atendiendo","attending to","atendido","attended to", +"atraer","to attract, draw, lure","Indicativo","Indicative","Presente","Present","I attract, am attracting","atraigo","atraes","atrae","atraemos","atraéis","atraen","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Futuro","Future","I will attract","atraeré","atraerás","atraerá","atraeremos","atraeréis","atraerán","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Imperfecto","Imperfect","I was attracting, used to attract, attracted","atraía","atraías","atraía","atraíamos","atraíais","atraían","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Pretérito","Preterite","I attracted","atraje","atrajiste","atrajo","atrajimos","atrajisteis","atrajeron","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Condicional","Conditional","I would attract","atraería","atraerías","atraería","atraeríamos","atraeríais","atraerían","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Presente perfecto","Present Perfect","I have attracted","he atraído","has atraído","ha atraído","hemos atraído","habéis atraído","han atraído","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have attracted","habré atraído","habrás atraído","habrá atraído","habremos atraído","habréis atraído","habrán atraído","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had attracted","había atraído","habías atraído","había atraído","habíamos atraído","habíais atraído","habían atraído","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had attracted","hube atraído","hubiste atraído","hubo atraído","hubimos atraído","hubisteis atraído","hubieron atraído","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have attracted","habría atraído","habrías atraído","habría atraído","habríamos atraído","habríais atraído","habrían atraído","atrayendo","attracting","atraído","attracted" +"atraigamos" +"atraer","to attract, draw, lure","Subjuntivo","Subjunctive","Presente","Present","I attract, am attracting","atraiga","atraigas","atraiga","atraigamos","atraigáis","atraigan","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was attracting, attracted","atrajera","atrajeras","atrajera","atrajéramos","atrajerais","atrajeran","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Subjuntivo","Subjunctive","Futuro","Future","I will attract","atrajere","atrajeres","atrajere","atrajéremos","atrajereis","atrajeren","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have attracted, attracted","haya atraído","hayas atraído","haya atraído","hayamos atraído","hayáis atraído","hayan atraído","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have attracted","hubiere atraído","hubieres atraído","hubiere atraído","hubiéremos atraído","hubiereis atraído","hubieren atraído","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had attracted","hubiera atraído","hubieras atraído","hubiera atraído","hubiéramos atraído","hubierais atraído","hubieran atraído","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Attract!, Don't attract!","","atrae","atraiga","atraigamos","atraed","atraigan","atrayendo","attracting","atraído","attracted" +"atraer","to attract, draw, lure","Imperativo Negativo","Imperative Negative","Presente","Present","Attract!, Don't attract!","","no atraigas","no atraiga","no atraigamos","no atraigáis","no atraigan","atrayendo","attracting","atraído","attracted" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Presente","Present","I cross, am crossing","atravieso","atraviesas","atraviesa","atravesamos","atravesáis","atraviesan","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Futuro","Future","I will cross","atravesaré","atravesarás","atravesará","atravesaremos","atravesaréis","atravesarán","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Imperfecto","Imperfect","I was crossing, used to cross, crossed","atravesaba","atravesabas","atravesaba","atravesábamos","atravesabais","atravesaban","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Pretérito","Preterite","I crossed","atravesé","atravesaste","atravesó","atravesamos","atravesasteis","atravesaron","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Condicional","Conditional","I would cross","atravesaría","atravesarías","atravesaría","atravesaríamos","atravesaríais","atravesarían","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Presente perfecto","Present Perfect","I have crossed","he atravesado","has atravesado","ha atravesado","hemos atravesado","habéis atravesado","han atravesado","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have crossed","habré atravesado","habrás atravesado","habrá atravesado","habremos atravesado","habréis atravesado","habrán atravesado","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had crossed","había atravesado","habías atravesado","había atravesado","habíamos atravesado","habíais atravesado","habían atravesado","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had crossed","hube atravesado","hubiste atravesado","hubo atravesado","hubimos atravesado","hubisteis atravesado","hubieron atravesado","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have crossed","habría atravesado","habrías atravesado","habría atravesado","habríamos atravesado","habríais atravesado","habrían atravesado","atravesando","crossing","atravesado","crossed" +"atravesemos" +"atravesar","to cross, cross over, go across, go over, pass through","Subjuntivo","Subjunctive","Presente","Present","I cross, am crossing","atraviese","atravieses","atraviese","atravesemos","atraveséis","atraviesen","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I crossed, was crossing","atravesara","atravesaras","atravesara","atravesáramos","atravesarais","atravesaran","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Subjuntivo","Subjunctive","Futuro","Future","I will cross","atravesare","atravesares","atravesare","atravesáremos","atravesareis","atravesaren","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have crossed, crossed","haya atravesado","hayas atravesado","haya atravesado","hayamos atravesado","hayáis atravesado","hayan atravesado","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have crossed","hubiere atravesado","hubieres atravesado","hubiere atravesado","hubiéremos atravesado","hubiereis atravesado","hubieren atravesado","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had crossed","hubiera atravesado","hubieras atravesado","hubiera atravesado","hubiéramos atravesado","hubierais atravesado","hubieran atravesado","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cross! Don't cross!","","atraviesa","atraviese","atravesemos","atravesad","atraviesen","atravesando","crossing","atravesado","crossed" +"atravesar","to cross, cross over, go across, go over, pass through","Imperativo Negativo","Imperative Negative","Presente","Present","Cross! Don't cross!","","no atravieses","no atraviese","no atravesemos","no atraveséis","no atraviesen","atravesando","crossing","atravesado","crossed" +"atreverse","to dare","Indicativo","Indicative","Presente","Present","I dare, am daring","me atrevo","te atreves","se atreve","nos atrevemos","os atrevéis","se atreven","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Futuro","Future","I will dare","me atreveré","te atreverás","se atreverá","nos atreveremos","os atreveréis","se atreverán","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Imperfecto","Imperfect","I was daring, used to dare, dared","me atrevía","te atrevías","se atrevía","nos atrevíamos","os atrevíais","se atrevían","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Pretérito","Preterite","I dared","me atreví","te atreviste","se atrevió","nos atrevimos","os atrevisteis","se atrevieron","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Condicional","Conditional","I would dare","me atrevería","te atreverías","se atrevería","nos atreveríamos","os atreveríais","se atreverían","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dared","me he atrevido","te has atrevido","se ha atrevido","nos hemos atrevido","os habéis atrevido","se han atrevido","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dared","me habré atrevido","te habrás atrevido","se habrá atrevido","nos habremos atrevido","os habréis atrevido","se habrán atrevido","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dared","me había atrevido","te habías atrevido","se había atrevido","nos habíamos atrevido","os habíais atrevido","se habían atrevido","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dared","me hube atrevido","te hubiste atrevido","se hubo atrevido","nos hubimos atrevido","os hubisteis atrevido","se hubieron atrevido","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dared","me habría atrevido","te habrías atrevido","se habría atrevido","nos habríamos atrevido","os habríais atrevido","se habrían atrevido","atreviéndose","daring","atrevido","dared" +"nos atrevamos" +"atreverse","to dare","Subjuntivo","Subjunctive","Presente","Present","I dare, am daring","me atreva","te atrevas","se atreva","nos atrevamos","os atreváis","se atrevan","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dared, was daring","me atreviera","te atrevieras","se atreviera","nos atreviéramos","os atrevierais","se atrevieran","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Subjuntivo","Subjunctive","Futuro","Future","I will dare","me atreviere","te atrevieres","se atreviere","nos atreviéremos","os atreviereis","se atrevieren","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dared, dared","me haya atrevido","te hayas atrevido","se haya atrevido","nos hayamos atrevido","os hayáis atrevido","se hayan atrevido","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dared","me hubiere atrevido","te hubieres atrevido","se hubiere atrevido","nos hubiéremos atrevido","os hubiereis atrevido","se hubieren atrevido","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dared","me hubiera atrevido","te hubieras atrevido","se hubiera atrevido","nos hubiéramos atrevido","os hubierais atrevido","se hubieran atrevido","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dare! Don't dare!","","atrévete","atrévase","nos atrevamos","atreveos","atrévanse","atreviéndose","daring","atrevido","dared" +"atreverse","to dare","Imperativo Negativo","Imperative Negative","Presente","Present","Dare! Don't dare!","","no te atrevas","no se atreva","no nos atrevamos","no os atreváis","no se atrevan","atreviéndose","daring","atrevido","dared" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Presente","Present","I increase, am increasing","aumento","aumentas","aumenta","aumentamos","aumentáis","aumentan","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Futuro","Future","I will increase","aumentaré","aumentarás","aumentará","aumentaremos","aumentaréis","aumentarán","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Imperfecto","Imperfect","I was increasing, used to increase, increased","aumentaba","aumentabas","aumentaba","aumentábamos","aumentabais","aumentaban","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Pretérito","Preterite","I increased","aumenté","aumentaste","aumentó","aumentamos","aumentasteis","aumentaron","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Condicional","Conditional","I would increase","aumentaría","aumentarías","aumentaría","aumentaríamos","aumentaríais","aumentarían","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Presente perfecto","Present Perfect","I have increased","he aumentado","has aumentado","ha aumentado","hemos aumentado","habéis aumentado","han aumentado","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have increased","habré aumentado","habrás aumentado","habrá aumentado","habremos aumentado","habréis aumentado","habrán aumentado","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had increased","había aumentado","habías aumentado","había aumentado","habíamos aumentado","habíais aumentado","habían aumentado","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had increased","hube aumentado","hubiste aumentado","hubo aumentado","hubimos aumentado","hubisteis aumentado","hubieron aumentado","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have increased","habría aumentado","habrías aumentado","habría aumentado","habríamos aumentado","habríais aumentado","habrían aumentado","aumentando","increasing","aumentado","increased" +"aumentemos" +"aumentar","to increase, add to, augment; to be on the increase, rise","Subjuntivo","Subjunctive","Presente","Present","I increase, am increasing","aumente","aumentes","aumente","aumentemos","aumentéis","aumenten","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I increased, was increasing","aumentara","aumentaras","aumentara","aumentáramos","aumentarais","aumentaran","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Subjuntivo","Subjunctive","Futuro","Future","I will increase","aumentare","aumentares","aumentare","aumentáremos","aumentareis","aumentaren","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have increased, increased","haya aumentado","hayas aumentado","haya aumentado","hayamos aumentado","hayáis aumentado","hayan aumentado","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have increased","hubiere aumentado","hubieres aumentado","hubiere aumentado","hubiéremos aumentado","hubiereis aumentado","hubieren aumentado","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had increased","hubiera aumentado","hubieras aumentado","hubiera aumentado","hubiéramos aumentado","hubierais aumentado","hubieran aumentado","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Increase! Don't increase!","","aumenta","aumente","aumentemos","aumentad","aumenten","aumentando","increasing","aumentado","increased" +"aumentar","to increase, add to, augment; to be on the increase, rise","Imperativo Negativo","Imperative Negative","Presente","Present","Increase! Don't increase!","","no aumentes","no aumente","no aumentemos","no aumentéis","no aumenten","aumentando","increasing","aumentado","increased" +"avanzar","to advance, move forward","Indicativo","Indicative","Presente","Present","I advance, am advancing","avanzo","avanzas","avanza","avanzamos","avanzáis","avanzan","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Futuro","Future","I will advance","avanzaré","avanzarás","avanzará","avanzaremos","avanzaréis","avanzarán","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Imperfecto","Imperfect","I was advancing, used to advance, advanced","avanzaba","avanzabas","avanzaba","avanzábamos","avanzabais","avanzaban","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Pretérito","Preterite","I advanced","avancé","avanzaste","avanzó","avanzamos","avanzasteis","avanzaron","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Condicional","Conditional","I would advance","avanzaría","avanzarías","avanzaría","avanzaríamos","avanzaríais","avanzarían","avanzando","advancing","avanzado","advanced" +"burlarse","to mock, ridicule, make fun of [someone/something]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Mock! Don't mock!","","búrlate","búrlese","aumentemos","burlaos","búrlense","burlándose","mocking","burlado","mocked" +"avanzar","to advance, move forward","Indicativo","Indicative","Presente perfecto","Present Perfect","I have advanced","he avanzado","has avanzado","ha avanzado","hemos avanzado","habéis avanzado","han avanzado","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have advanced","habré avanzado","habrás avanzado","habrá avanzado","habremos avanzado","habréis avanzado","habrán avanzado","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had advanced","había avanzado","habías avanzado","había avanzado","habíamos avanzado","habíais avanzado","habían avanzado","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had advanced","hube avanzado","hubiste avanzado","hubo avanzado","hubimos avanzado","hubisteis avanzado","hubieron avanzado","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have advanced","habría avanzado","habrías avanzado","habría avanzado","habríamos avanzado","habríais avanzado","habrían avanzado","avanzando","advancing","avanzado","advanced" +"avancemos" +"avanzar","to advance, move forward","Subjuntivo","Subjunctive","Presente","Present","I advance, am advancing","avance","avances","avance","avancemos","avancéis","avancen","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I advanced, was advancing","avanzara","avanzaras","avanzara","avanzáramos","avanzarais","avanzaran","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Subjuntivo","Subjunctive","Futuro","Future","I will advance","avanzare","avanzares","avanzare","avanzáremos","avanzareis","avanzaren","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have advanced, advanced","haya avanzado","hayas avanzado","haya avanzado","hayamos avanzado","hayáis avanzado","hayan avanzado","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have advanced","hubiere avanzado","hubieres avanzado","hubiere avanzado","hubiéremos avanzado","hubiereis avanzado","hubieren avanzado","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had advanced","hubiera avanzado","hubieras avanzado","hubiera avanzado","hubiéramos avanzado","hubierais avanzado","hubieran avanzado","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Advance! Don't advance!","","avanza","avance","avancemos","avanzad","avancen","avanzando","advancing","avanzado","advanced" +"avanzar","to advance, move forward","Imperativo Negativo","Imperative Negative","Presente","Present","Advance! Don't advance!","","no avances","no avance","no avancemos","no avancéis","no avancen","avanzando","advancing","avanzado","advanced" +"averiguar","to find out, discover","Indicativo","Indicative","Presente","Present","I find out, am finding out","averiguo","averiguas","averigua","averiguamos","averiguáis","averiguan","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Futuro","Future","I will find out","averiguaré","averiguarás","averiguará","averiguaremos","averiguaréis","averiguarán","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Imperfecto","Imperfect","I was finding out, used to find out, found out","averiguaba","averiguabas","averiguaba","averiguábamos","averiguabais","averiguaban","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Pretérito","Preterite","I found out","averigüé","averiguaste","averiguó","averiguamos","averiguasteis","averiguaron","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Condicional","Conditional","I would find out","averiguaría","averiguarías","averiguaría","averiguaríamos","averiguaríais","averiguarían","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Presente perfecto","Present Perfect","I have found out","he averiguado","has averiguado","ha averiguado","hemos averiguado","habéis averiguado","han averiguado","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have found out","habré averiguado","habrás averiguado","habrá averiguado","habremos averiguado","habréis averiguado","habrán averiguado","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had found out","había averiguado","habías averiguado","había averiguado","habíamos averiguado","habíais averiguado","habían averiguado","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had found out","hube averiguado","hubiste averiguado","hubo averiguado","hubimos averiguado","hubisteis averiguado","hubieron averiguado","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have found out","habría averiguado","habrías averiguado","habría averiguado","habríamos averiguado","habríais averiguado","habrían averiguado","averiguando","finding out","averiguado","found out" +"averigüemos" +"averiguar","to find out, discover","Subjuntivo","Subjunctive","Presente","Present","I find out, am finding out","averigüe","averigües","averigüe","averigüemos","averigüéis","averigüen","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I found out, was finding out","averiguara","averiguaras","averiguara","averiguáramos","averiguarais","averiguaran","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Subjuntivo","Subjunctive","Futuro","Future","I will find out","averiguare","averiguares","averiguare","averiguáremos","averiguareis","averiguaren","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have found out, found out","haya averiguado","hayas averiguado","haya averiguado","hayamos averiguado","hayáis averiguado","hayan averiguado","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have found out","hubiere averiguado","hubieres averiguado","hubiere averiguado","hubiéremos averiguado","hubiereis averiguado","hubieren averiguado","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had found out","hubiera averiguado","hubieras averiguado","hubiera averiguado","hubiéramos averiguado","hubierais averiguado","hubieran averiguado","averiguando","finding out","averiguado","found out" +"averiguar","to find out, discover","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Find out! Don't find out!","","averigua","averigüe","averigüemos","averiguad","averigüen","averiguando","finding out","averiguado","found out", +"averiguar","to find out, discover","Imperativo Negativo","Imperative Negative","Presente","Present","Find out! Don't find out!","","no averigües","no averigüe","no averigüemos","no averigüéis","no averigüen","averiguando","finding out","averiguado","found out", +"avisar","to warn, inform, notify","Indicativo","Indicative","Presente","Present","I warn, am warning","aviso","avisas","avisa","avisamos","avisáis","avisan","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Futuro","Future","I will warn","avisaré","avisarás","avisará","avisaremos","avisaréis","avisarán","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Imperfecto","Imperfect","I was warning, used to warn, warned","avisaba","avisabas","avisaba","avisábamos","avisabais","avisaban","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Pretérito","Preterite","I warned","avisé","avisaste","avisó","avisamos","avisasteis","avisaron","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Condicional","Conditional","I would warn","avisaría","avisarías","avisaría","avisaríamos","avisaríais","avisarían","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Presente perfecto","Present Perfect","I have warned","he avisado","has avisado","ha avisado","hemos avisado","habéis avisado","han avisado","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have warned","habré avisado","habrás avisado","habrá avisado","habremos avisado","habréis avisado","habrán avisado","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had warned","había avisado","habías avisado","había avisado","habíamos avisado","habíais avisado","habían avisado","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had warned","hube avisado","hubiste avisado","hubo avisado","hubimos avisado","hubisteis avisado","hubieron avisado","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have warned","habría avisado","habrías avisado","habría avisado","habríamos avisado","habríais avisado","habrían avisado","avisando","warning","avisado","warned" +"avisemos" +"avisar","to warn, inform, notify","Subjuntivo","Subjunctive","Presente","Present","I warn, am warning","avise","avises","avise","avisemos","aviséis","avisen","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I warned, was warning","avisara","avisaras","avisara","avisáramos","avisarais","avisaran","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Subjuntivo","Subjunctive","Futuro","Future","I will warn","avisare","avisares","avisare","avisáremos","avisareis","avisaren","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have warned, warned","haya avisado","hayas avisado","haya avisado","hayamos avisado","hayáis avisado","hayan avisado","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have warned","hubiere avisado","hubieres avisado","hubiere avisado","hubiéremos avisado","hubiereis avisado","hubieren avisado","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had warned","hubiera avisado","hubieras avisado","hubiera avisado","hubiéramos avisado","hubierais avisado","hubieran avisado","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Warn! Don't warn!","","avisa","avise","avisemos","avisad","avisen","avisando","warning","avisado","warned" +"avisar","to warn, inform, notify","Imperativo Negativo","Imperative Negative","Presente","Present","Warn! Don't warn!","","no avises","no avise","no avisemos","no aviséis","no avisen","avisando","warning","avisado","warned" +"ayudar","to help","Indicativo","Indicative","Imperfecto","Imperfect","I was helping, used to help, helped","ayudaba","ayudabas","ayudaba","ayudábamos","ayudabais","ayudaban","ayudando","helping","ayudado","helped" +"ayudar","to help","Indicativo","Indicative","Pretérito","Preterite","I helped","ayudé","ayudaste","ayudó","ayudamos","ayudasteis","ayudaron","ayudando","helping","ayudado","helped" +"ayudar","to help","Indicativo","Indicative","Condicional","Conditional","I would help","ayudaría","ayudarías","ayudaría","ayudaríamos","ayudaríais","ayudarían","ayudando","helping","ayudado","helped" +"ayudar","to help","Indicativo","Indicative","Presente perfecto","Present Perfect","I have helped","he ayudado","has ayudado","ha ayudado","hemos ayudado","habéis ayudado","han ayudado","ayudando","helping","ayudado","helped" +"ayudar","to help","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have helped","habré ayudado","habrás ayudado","habrá ayudado","habremos ayudado","habréis ayudado","habrán ayudado","ayudando","helping","ayudado","helped" +"ayudar","to help","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had helped","había ayudado","habías ayudado","había ayudado","habíamos ayudado","habíais ayudado","habían ayudado","ayudando","helping","ayudado","helped" +"ayudar","to help","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had helped","hube ayudado","hubiste ayudado","hubo ayudado","hubimos ayudado","hubisteis ayudado","hubieron ayudado","ayudando","helping","ayudado","helped" +"ayudar","to help","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have helped","habría ayudado","habrías ayudado","habría ayudado","habríamos ayudado","habríais ayudado","habrían ayudado","ayudando","helping","ayudado","helped" +"ayudemos" +"ayudar","to help","Subjuntivo","Subjunctive","Presente","Present","I help, am helping","ayude","ayudes","ayude","ayudemos","ayudéis","ayuden","ayudando","helping","ayudado","helped" +"ayudar","to help","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I helped, was helping","ayudara","ayudaras","ayudara","ayudáramos","ayudarais","ayudaran","ayudando","helping","ayudado","helped" +"ayudar","to help","Subjuntivo","Subjunctive","Futuro","Future","I will help","ayudare","ayudares","ayudare","ayudáremos","ayudareis","ayudaren","ayudando","helping","ayudado","helped" +"ayudar","to help","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have helped, helped","haya ayudado","hayas ayudado","haya ayudado","hayamos ayudado","hayáis ayudado","hayan ayudado","ayudando","helping","ayudado","helped" +"ayudar","to help","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have helped","hubiere ayudado","hubieres ayudado","hubiere ayudado","hubiéremos ayudado","hubiereis ayudado","hubieren ayudado","ayudando","helping","ayudado","helped" +"ayudar","to help","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had helped","hubiera ayudado","hubieras ayudado","hubiera ayudado","hubiéramos ayudado","hubierais ayudado","hubieran ayudado","ayudando","helping","ayudado","helped" +"ayudar","to help","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Help! Don't help!","","ayuda","ayude","ayudemos","ayudad","ayuden","ayudando","helping","ayudado","helped" +"ayudar","to help","Imperativo Negativo","Imperative Negative","Presente","Present","Help! Don't help!","","no ayudes","no ayude","no ayudemos","no ayudéis","no ayuden","ayudando","helping","ayudado","helped" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Presente","Present","I lower, am lowering","bajo","bajas","baja","bajamos","bajáis","bajan","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Futuro","Future","I will lower","bajaré","bajarás","bajará","bajaremos","bajaréis","bajarán","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Imperfecto","Imperfect","I was lowering, used to lower, lowered","bajaba","bajabas","bajaba","bajábamos","bajabais","bajaban","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Pretérito","Preterite","I lowered","bajé","bajaste","bajó","bajamos","bajasteis","bajaron","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Condicional","Conditional","I would lower","bajaría","bajarías","bajaría","bajaríamos","bajaríais","bajarían","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lowered","he bajado","has bajado","ha bajado","hemos bajado","habéis bajado","han bajado","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lowered","habré bajado","habrás bajado","habrá bajado","habremos bajado","habréis bajado","habrán bajado","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lowered","había bajado","habías bajado","había bajado","habíamos bajado","habíais bajado","habían bajado","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lowered","hube bajado","hubiste bajado","hubo bajado","hubimos bajado","hubisteis bajado","hubieron bajado","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lowered","habría bajado","habrías bajado","habría bajado","habríamos bajado","habríais bajado","habrían bajado","bajando","lowering","bajado","lowered" +"bajemos" +"bajar","to lower, go down, descend, download","Subjuntivo","Subjunctive","Presente","Present","I lower, am lowering","baje","bajes","baje","bajemos","bajéis","bajen","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lowered, was lowering","bajara","bajaras","bajara","bajáramos","bajarais","bajaran","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Subjuntivo","Subjunctive","Futuro","Future","I will lower","bajare","bajares","bajare","bajáremos","bajareis","bajaren","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lowered, lowered","haya bajado","hayas bajado","haya bajado","hayamos bajado","hayáis bajado","hayan bajado","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lowered","hubiere bajado","hubieres bajado","hubiere bajado","hubiéremos bajado","hubiereis bajado","hubieren bajado","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lowered","hubiera bajado","hubieras bajado","hubiera bajado","hubiéramos bajado","hubierais bajado","hubieran bajado","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Lower! Don't lower!","","baja","baje","bajemos","bajad","bajen","bajando","lowering","bajado","lowered" +"bajar","to lower, go down, descend, download","Imperativo Negativo","Imperative Negative","Presente","Present","Lower! Don't lower!","","no bajes","no baje","no bajemos","no bajéis","no bajen","bajando","lowering","bajado","lowered" +"bañar","to give a bath","Indicativo","Indicative","Presente","Present","I give a bath, am giving a bath","baño","bañas","baña","bañamos","bañáis","bañan","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Futuro","Future","I will give a bath","bañaré","bañarás","bañará","bañaremos","bañaréis","bañarán","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Imperfecto","Imperfect","I was giving a bath, used to give a bath, gave a bath","bañaba","bañabas","bañaba","bañábamos","bañabais","bañaban","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Pretérito","Preterite","I gave a bath","bañé","bañaste","bañó","bañamos","bañasteis","bañaron","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Condicional","Conditional","I would give a bath","bañaría","bañarías","bañaría","bañaríamos","bañaríais","bañarían","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Presente perfecto","Present Perfect","I have given a bath","he bañado","has bañado","ha bañado","hemos bañado","habéis bañado","han bañado","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have given a bath","habré bañado","habrás bañado","habrá bañado","habremos bañado","habréis bañado","habrán bañado","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had given a bath","había bañado","habías bañado","había bañado","habíamos bañado","habíais bañado","habían bañado","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had given a bath","hube bañado","hubiste bañado","hubo bañado","hubimos bañado","hubisteis bañado","hubieron bañado","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have given a bath","habría bañado","habrías bañado","habría bañado","habríamos bañado","habríais bañado","habrían bañado","bañando","giving a bath","bañado","given a bath" +"bañemos" +"bañar","to give a bath","Subjuntivo","Subjunctive","Presente","Present","I give a bath, am giving a bath","bañe","bañes","bañe","bañemos","bañéis","bañen","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I gave a bath, was giving a bath","bañara","bañaras","bañara","bañáramos","bañarais","bañaran","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Subjuntivo","Subjunctive","Futuro","Future","I will give a bath","bañare","bañares","bañare","bañáremos","bañareis","bañaren","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have given a bath, gave a bath","haya bañado","hayas bañado","haya bañado","hayamos bañado","hayáis bañado","hayan bañado","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have given a bath","hubiere bañado","hubieres bañado","hubiere bañado","hubiéremos bañado","hubiereis bañado","hubieren bañado","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had given a bath","hubiera bañado","hubieras bañado","hubiera bañado","hubiéramos bañado","hubierais bañado","hubieran bañado","bañando","giving a bath","bañado","given a bath" +"bañar","to give a bath","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Give a bath! Don't give a bath!","","baña","bañe","bañemos","bañad","bañen","bañando","giving a bath","bañado","given a bath", +"bañar","to give a bath","Imperativo Negativo","Imperative Negative","Presente","Present","Give a bath! Don't give a bath!","","no bañes","no bañe","no bañemos","no bañéis","no bañen","bañando","giving a bath","bañado","given a bath", +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Presente","Present","I take a bath, am taking a bath","me baño","te bañas","se baña","nos bañamos","os bañáis","se bañan","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Futuro","Future","I will take a bath","me bañaré","te bañarás","se bañará","nos bañaremos","os bañaréis","se bañarán","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was taking a bath, used to take a bath, took a bath","me bañaba","te bañabas","se bañaba","nos bañábamos","os bañabais","se bañaban","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Pretérito","Preterite","I took a bath","me bañé","te bañaste","se bañó","nos bañamos","os bañasteis","se bañaron","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Condicional","Conditional","I would take a bath","me bañaría","te bañarías","se bañaría","nos bañaríamos","os bañaríais","se bañarían","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have taken a bath","me he bañado","te has bañado","se ha bañado","nos hemos bañado","os habéis bañado","se han bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have taken a bath","me habré bañado","te habrás bañado","se habrá bañado","nos habremos bañado","os habréis bañado","se habrán bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had taken a bath","me había bañado","te habías bañado","se había bañado","nos habíamos bañado","os habíais bañado","se habían bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had taken a bath","me hube bañado","te hubiste bañado","se hubo bañado","nos hubimos bañado","os hubisteis bañado","se hubieron bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have taken a bath","me habría bañado","te habrías bañado","se habría bañado","nos habríamos bañado","os habríais bañado","se habrían bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"nos bañemos" +"bañarse","to take a bath, bathe [oneself]","Subjuntivo","Subjunctive","Presente","Present","I take a bath, am taking a bath","me bañe","te bañes","se bañe","nos bañemos","os bañéis","se bañen","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I took a bath, was taking a bath","me bañara","te bañaras","se bañara","nos bañáramos","os bañarais","se bañaran","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will take a bath","me bañare","te bañares","se bañare","nos bañáremos","os bañareis","se bañaren","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have taken a bath, took a bath","me haya bañado","te hayas bañado","se haya bañado","nos hayamos bañado","os hayáis bañado","se hayan bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have taken a bath","me hubiere bañado","te hubieres bañado","se hubiere bañado","nos hubiéremos bañado","os hubiereis bañado","se hubieren bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had taken a bath","me hubiera bañado","te hubieras bañado","se hubiera bañado","nos hubiéramos bañado","os hubierais bañado","se hubieran bañado","bañándose","taking a bath","bañado","bathed, taken a bath" +"bañarse","to take a bath, bathe [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Take a bath! Don't take a bath!","","báñate","báñese","nos bañemos","bañaos","báñense","bañándose","taking a bath","bañado","bathed, taken a bath", +"bañarse","to take a bath, bathe [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Take a bath! Don't take a bath!","","no te bañes","no se bañe","no nos bañemos","no os bañéis","no se bañen","bañándose","taking a bath","bañado","bathed, taken a bath", +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Presente","Present","I sweep, am sweeping","barro","barres","barre","barremos","barréis","barren","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Futuro","Future","I will sweep","barreré","barrerás","barrerá","barreremos","barreréis","barrerán","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Imperfecto","Imperfect","I was sweeping, used to sweep, swept","barría","barrías","barría","barríamos","barríais","barrían","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Pretérito","Preterite","I swept","barrí","barriste","barrió","barrimos","barristeis","barrieron","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Condicional","Conditional","I would sweep","barrería","barrerías","barrería","barreríamos","barreríais","barrerían","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Presente perfecto","Present Perfect","I have swept","he barrido","has barrido","ha barrido","hemos barrido","habéis barrido","han barrido","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have swept","habré barrido","habrás barrido","habrá barrido","habremos barrido","habréis barrido","habrán barrido","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had swept","había barrido","habías barrido","había barrido","habíamos barrido","habíais barrido","habían barrido","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had swept","hube barrido","hubiste barrido","hubo barrido","hubimos barrido","hubisteis barrido","hubieron barrido","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have swept","habría barrido","habrías barrido","habría barrido","habríamos barrido","habríais barrido","habrían barrido","barriendo","sweeping","barrido","swept" +"barramos" +"barrer","to sweep, sweep clean, sweep out, sweep away","Subjuntivo","Subjunctive","Presente","Present","I sweep, am sweeping","barra","barras","barra","barramos","barráis","barran","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I swept, was sweeping","barriera","barrieras","barriera","barriéramos","barrierais","barrieran","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Subjuntivo","Subjunctive","Futuro","Future","I will sweep","barriere","barrieres","barriere","barriéremos","barriereis","barrieren","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have swept, swept","haya barrido","hayas barrido","haya barrido","hayamos barrido","hayáis barrido","hayan barrido","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have swept","hubiere barrido","hubieres barrido","hubiere barrido","hubiéremos barrido","hubiereis barrido","hubieren barrido","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had swept","hubiera barrido","hubieras barrido","hubiera barrido","hubiéramos barrido","hubierais barrido","hubieran barrido","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sweep! Don't sweep!","","barre","barra","barramos","barred","barran","barriendo","sweeping","barrido","swept" +"barrer","to sweep, sweep clean, sweep out, sweep away","Imperativo Negativo","Imperative Negative","Presente","Present","Sweep! Don't sweep!","","no barras","no barra","no barramos","no barráis","no barran","barriendo","sweeping","barrido","swept" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Presente","Present","I beat, am beating","bato","bates","bate","batimos","batís","baten","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Futuro","Future","I will beat","batiré","batirás","batirá","batiremos","batiréis","batirán","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Imperfecto","Imperfect","I was beating, used to beat, beat","batía","batías","batía","batíamos","batíais","batían","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Pretérito","Preterite","I beat","batí","batiste","batió","batimos","batisteis","batieron","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Condicional","Conditional","I would beat","batiría","batirías","batiría","batiríamos","batiríais","batirían","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have beaten","he batido","has batido","ha batido","hemos batido","habéis batido","han batido","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have beaten","habré batido","habrás batido","habrá batido","habremos batido","habréis batido","habrán batido","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had beaten","había batido","habías batido","había batido","habíamos batido","habíais batido","habían batido","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had beaten","hube batido","hubiste batido","hubo batido","hubimos batido","hubisteis batido","hubieron batido","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have beaten","habría batido","habrías batido","habría batido","habríamos batido","habríais batido","habrían batido","batiendo","beating","batido","beat" +"batamos" +"batir","to beat, hammer, pound [on]","Subjuntivo","Subjunctive","Presente","Present","I beat, am beating","bata","batas","bata","batamos","batáis","batan","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I beat, was beating","batiera","batieras","batiera","batiéramos","batierais","batieran","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Subjuntivo","Subjunctive","Futuro","Future","I will beat","batiere","batieres","batiere","batiéremos","batiereis","batieren","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have beaten, beat","haya batido","hayas batido","haya batido","hayamos batido","hayáis batido","hayan batido","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have beaten","hubiere batido","hubieres batido","hubiere batido","hubiéremos batido","hubiereis batido","hubieren batido","batiendo","beating","batido","beat" +"castigar","to punish, penalize, castigate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Punish! Don't punish!","","castiga","castigue","batamos","castigad","castiguen","castigando","punishing","castigado","punished" +"batir","to beat, hammer, pound [on]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had beaten","hubiera batido","hubieras batido","hubiera batido","hubiéramos batido","hubierais batido","hubieran batido","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Beat! Don't beat!","","bate","bata","batamos","batid","batan","batiendo","beating","batido","beat" +"batir","to beat, hammer, pound [on]","Imperativo Negativo","Imperative Negative","Presente","Present","Beat! Don't beat!","","no batas","no bata","no batamos","no batáis","no batan","batiendo","beating","batido","beat" +"bautizar","to baptize, christen","Indicativo","Indicative","Presente","Present","I baptize, am baptizing","bautizo","bautizas","bautiza","bautizamos","bautizáis","bautizan","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Futuro","Future","I will baptize","bautizaré","bautizarás","bautizará","bautizaremos","bautizaréis","bautizarán","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Imperfecto","Imperfect","I was baptizing, used to baptize, baptized","bautizaba","bautizabas","bautizaba","bautizábamos","bautizabais","bautizaban","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Pretérito","Preterite","I baptized","bauticé","bautizaste","bautizó","bautizamos","bautizasteis","bautizaron","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Condicional","Conditional","I would baptize","bautizaría","bautizarías","bautizaría","bautizaríamos","bautizaríais","bautizarían","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Presente perfecto","Present Perfect","I have baptized","he bautizado","has bautizado","ha bautizado","hemos bautizado","habéis bautizado","han bautizado","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have baptized","habré bautizado","habrás bautizado","habrá bautizado","habremos bautizado","habréis bautizado","habrán bautizado","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had baptized","había bautizado","habías bautizado","había bautizado","habíamos bautizado","habíais bautizado","habían bautizado","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had baptized","hube bautizado","hubiste bautizado","hubo bautizado","hubimos bautizado","hubisteis bautizado","hubieron bautizado","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have baptized","habría bautizado","habrías bautizado","habría bautizado","habríamos bautizado","habríais bautizado","habrían bautizado","bautizando","baptizing","bautizado","baptized" +"bauticemos" +"bautizar","to baptize, christen","Subjuntivo","Subjunctive","Presente","Present","I baptize, am baptizing","bautice","bautices","bautice","bauticemos","bauticéis","bauticen","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I baptized, was baptizing","bautizara","bautizaras","bautizara","bautizáramos","bautizarais","bautizaran","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Subjuntivo","Subjunctive","Futuro","Future","I will baptize","bautizare","bautizares","bautizare","bautizáremos","bautizareis","bautizaren","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have baptized, baptized","haya bautizado","hayas bautizado","haya bautizado","hayamos bautizado","hayáis bautizado","hayan bautizado","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have baptized","hubiere bautizado","hubieres bautizado","hubiere bautizado","hubiéremos bautizado","hubiereis bautizado","hubieren bautizado","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had baptized","hubiera bautizado","hubieras bautizado","hubiera bautizado","hubiéramos bautizado","hubierais bautizado","hubieran bautizado","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Baptize! Don't baptize!","","bautiza","bautice","bauticemos","bautizad","bauticen","bautizando","baptizing","bautizado","baptized" +"bautizar","to baptize, christen","Imperativo Negativo","Imperative Negative","Presente","Present","Baptize! Don't baptize!","","no bautices","no bautice","no bauticemos","no bauticéis","no bauticen","bautizando","baptizing","bautizado","baptized" +"beber","to drink","Indicativo","Indicative","Presente","Present","I drink, am drinking","bebo","bebes","bebe","bebemos","bebéis","beben","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Futuro","Future","I will drink","beberé","beberás","beberá","beberemos","beberéis","beberán","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Imperfecto","Imperfect","I was drinking, used to drink, drank","bebía","bebías","bebía","bebíamos","bebíais","bebían","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Pretérito","Preterite","I drank","bebí","bebiste","bebió","bebimos","bebisteis","bebieron","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Condicional","Conditional","I would drink","bebería","beberías","bebería","beberíamos","beberíais","beberían","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Presente perfecto","Present Perfect","I have drunk","he bebido","has bebido","ha bebido","hemos bebido","habéis bebido","han bebido","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have drunk","habré bebido","habrás bebido","habrá bebido","habremos bebido","habréis bebido","habrán bebido","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had drunk","había bebido","habías bebido","había bebido","habíamos bebido","habíais bebido","habían bebido","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had drunk","hube bebido","hubiste bebido","hubo bebido","hubimos bebido","hubisteis bebido","hubieron bebido","bebiendo","drinking","bebido","drunk" +"beber","to drink","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have drunk","habría bebido","habrías bebido","habría bebido","habríamos bebido","habríais bebido","habrían bebido","bebiendo","drinking","bebido","drunk" +"bebamos" +"beber","to drink","Subjuntivo","Subjunctive","Presente","Present","I drink, am drinking","beba","bebas","beba","bebamos","bebáis","beban","bebiendo","drinking","bebido","drunk" +"beber","to drink","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I drank, was drinking","bebiera","bebieras","bebiera","bebiéramos","bebierais","bebieran","bebiendo","drinking","bebido","drunk" +"beber","to drink","Subjuntivo","Subjunctive","Futuro","Future","I will drink","bebiere","bebieres","bebiere","bebiéremos","bebiereis","bebieren","bebiendo","drinking","bebido","drunk" +"beber","to drink","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have drunk, drank","haya bebido","hayas bebido","haya bebido","hayamos bebido","hayáis bebido","hayan bebido","bebiendo","drinking","bebido","drunk" +"beber","to drink","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have drunk","hubiere bebido","hubieres bebido","hubiere bebido","hubiéremos bebido","hubiereis bebido","hubieren bebido","bebiendo","drinking","bebido","drunk" +"beber","to drink","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had drunk","hubiera bebido","hubieras bebido","hubiera bebido","hubiéramos bebido","hubierais bebido","hubieran bebido","bebiendo","drinking","bebido","drunk" +"beber","to drink","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Drink! Don't drink!","","bebe","beba","bebamos","bebed","beban","bebiendo","drinking","bebido","drunk" +"beber","to drink","Imperativo Negativo","Imperative Negative","Presente","Present","Drink! Don't drink!","","no bebas","no beba","no bebamos","no bebáis","no beban","bebiendo","drinking","bebido","drunk" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Presente","Present","I bless, am blessing","bendigo","bendices","bendice","bendecimos","bendecís","bendicen","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Futuro","Future","I will bless","bendeciré","bendecirás","bendecirá","bendeciremos","bendeciréis","bendecirán","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Imperfecto","Imperfect","I was blessing, used to bless, blessed","bendecía","bendecías","bendecía","bendecíamos","bendecíais","bendecían","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Pretérito","Preterite","I blessed","bendije","bendijiste","bendijo","bendijimos","bendijisteis","bendijeron","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Condicional","Conditional","I would bless","bendeciría","bendecirías","bendeciría","bendeciríamos","bendeciríais","bendecirían","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Presente perfecto","Present Perfect","I have blessed","he bendecido","has bendecido","ha bendecido","hemos bendecido","habéis bendecido","han bendecido","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have blessed","habré bendecido","habrás bendecido","habrá bendecido","habremos bendecido","habréis bendecido","habrán bendecido","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had blessed","había bendecido","habías bendecido","había bendecido","habíamos bendecido","habíais bendecido","habían bendecido","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had blessed","hube bendecido","hubiste bendecido","hubo bendecido","hubimos bendecido","hubisteis bendecido","hubieron bendecido","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have blessed","habría bendecido","habrías bendecido","habría bendecido","habríamos bendecido","habríais bendecido","habrían bendecido","bendiciendo","blessing","bendito","blessed" +"bendigamos" +"bendecir","to bless, foretell, forecast","Subjuntivo","Subjunctive","Presente","Present","I bless, am blessing","bendiga","bendigas","bendiga","bendigamos","bendigáis","bendigan","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I blessed, was blessing","bendijera","bendijeras","bendijera","bendijéramos","bendijerais","bendijeran","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Subjuntivo","Subjunctive","Futuro","Future","I will bless","bendijere","bendijeres","bendijere","bendijéremos","bendijereis","bendijeren","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have blessed, blessed","haya bendecido","hayas bendecido","haya bendecido","hayamos bendecido","hayáis bendecido","hayan bendecido","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have blessed","hubiere bendecido","hubieres bendecido","hubiere bendecido","hubiéremos bendecido","hubiereis bendecido","hubieren bendecido","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had blessed","hubiera bendecido","hubieras bendecido","hubiera bendecido","hubiéramos bendecido","hubierais bendecido","hubieran bendecido","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bless! Don't bless!","","bendice","bendiga","bendigamos","bendecid","bendigan","bendiciendo","blessing","bendito","blessed" +"bendecir","to bless, foretell, forecast","Imperativo Negativo","Imperative Negative","Presente","Present","Bless! Don't bless!","","no bendigas","no bendiga","no bendigamos","no bendigáis","no bendigan","bendiciendo","blessing","bendito","blessed" +"bordar","to embroider","Indicativo","Indicative","Presente","Present","I embroider, am embroidering","bordo","bordas","borda","bordamos","bordáis","bordan","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Futuro","Future","I will embroider","bordaré","bordarás","bordará","bordaremos","bordaréis","bordarán","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Imperfecto","Imperfect","I was embroidering, used to embroider, embroidered","bordaba","bordabas","bordaba","bordábamos","bordabais","bordaban","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Pretérito","Preterite","I embroidered","bordé","bordaste","bordó","bordamos","bordasteis","bordaron","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Condicional","Conditional","I would embroider","bordaría","bordarías","bordaría","bordaríamos","bordaríais","bordarían","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Presente perfecto","Present Perfect","I have embroidered","he bordado","has bordado","ha bordado","hemos bordado","habéis bordado","han bordado","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have embroidered","habré bordado","habrás bordado","habrá bordado","habremos bordado","habréis bordado","habrán bordado","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had embroidered","había bordado","habías bordado","había bordado","habíamos bordado","habíais bordado","habían bordado","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had embroidered","hube bordado","hubiste bordado","hubo bordado","hubimos bordado","hubisteis bordado","hubieron bordado","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have embroidered","habría bordado","habrías bordado","habría bordado","habríamos bordado","habríais bordado","habrían bordado","bordando","embroidering","bordado","embroidered" +"bordemos" +"bordar","to embroider","Subjuntivo","Subjunctive","Presente","Present","I embroider, am embroidering","borde","bordes","borde","bordemos","bordéis","borden","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I embroidered, was embroidering","bordara","bordaras","bordara","bordáramos","bordarais","bordaran","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Subjuntivo","Subjunctive","Futuro","Future","I will embroider","bordare","bordares","bordare","bordáremos","bordareis","bordaren","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have embroidered, embroidered","haya bordado","hayas bordado","haya bordado","hayamos bordado","hayáis bordado","hayan bordado","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have embroidered","hubiere bordado","hubieres bordado","hubiere bordado","hubiéremos bordado","hubiereis bordado","hubieren bordado","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had embroidered","hubiera bordado","hubieras bordado","hubiera bordado","hubiéramos bordado","hubierais bordado","hubieran bordado","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Embroider! Don't embroider!","","borda","borde","bordemos","bordad","borden","bordando","embroidering","bordado","embroidered" +"bordar","to embroider","Imperativo Negativo","Imperative Negative","Presente","Present","Embroider! Don't embroider!","","no bordes","no borde","no bordemos","no bordéis","no borden","bordando","embroidering","bordado","embroidered" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Presente","Present","I erase, am erasing","borro","borras","borra","borramos","borráis","borran","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Futuro","Future","I will erase","borraré","borrarás","borrará","borraremos","borraréis","borrarán","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Imperfecto","Imperfect","I was erasing, used to erase, erased","borraba","borrabas","borraba","borrábamos","borrabais","borraban","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Pretérito","Preterite","I erased","borré","borraste","borró","borramos","borrasteis","borraron","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Condicional","Conditional","I would erase","borraría","borrarías","borraría","borraríamos","borraríais","borrarían","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have erased","he borrado","has borrado","ha borrado","hemos borrado","habéis borrado","han borrado","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have erased","habré borrado","habrás borrado","habrá borrado","habremos borrado","habréis borrado","habrán borrado","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had erased","había borrado","habías borrado","había borrado","habíamos borrado","habíais borrado","habían borrado","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had erased","hube borrado","hubiste borrado","hubo borrado","hubimos borrado","hubisteis borrado","hubieron borrado","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have erased","habría borrado","habrías borrado","habría borrado","habríamos borrado","habríais borrado","habrían borrado","borrando","erasing","borrado","erased" +"borremos" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Subjuntivo","Subjunctive","Presente","Present","I erase, am erasing","borre","borres","borre","borremos","borréis","borren","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I erased, was erasing","borrara","borraras","borrara","borráramos","borrarais","borraran","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Subjuntivo","Subjunctive","Futuro","Future","I will erase","borrare","borrares","borrare","borráremos","borrareis","borraren","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have erased, erased","haya borrado","hayas borrado","haya borrado","hayamos borrado","hayáis borrado","hayan borrado","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have erased","hubiere borrado","hubieres borrado","hubiere borrado","hubiéremos borrado","hubiereis borrado","hubieren borrado","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had erased","hubiera borrado","hubieras borrado","hubiera borrado","hubiéramos borrado","hubierais borrado","hubieran borrado","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Erase! Don't erase!","","borra","borre","borremos","borrad","borren","borrando","erasing","borrado","erased" +"borrar","to erase, rub out, to cross out, obliterate, wipe out","Imperativo Negativo","Imperative Negative","Presente","Present","Erase! Don't erase!","","no borres","no borre","no borremos","no borréis","no borren","borrando","erasing","borrado","erased" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Presente","Present","I shine, am shining","brillo","brillas","brilla","brillamos","brilláis","brillan","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Futuro","Future","I will shine","brillaré","brillarás","brillará","brillaremos","brillaréis","brillarán","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Imperfecto","Imperfect","I was shining, used to shine, shined","brillaba","brillabas","brillaba","brillábamos","brillabais","brillaban","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Pretérito","Preterite","I shined","brillé","brillaste","brilló","brillamos","brillasteis","brillaron","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Condicional","Conditional","I would shine","brillaría","brillarías","brillaría","brillaríamos","brillaríais","brillarían","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shone","he brillado","has brillado","ha brillado","hemos brillado","habéis brillado","han brillado","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shone","habré brillado","habrás brillado","habrá brillado","habremos brillado","habréis brillado","habrán brillado","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shone","había brillado","habías brillado","había brillado","habíamos brillado","habíais brillado","habían brillado","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shone","hube brillado","hubiste brillado","hubo brillado","hubimos brillado","hubisteis brillado","hubieron brillado","brillando","shining","brillado","shone" +"charlemos" +"charlar","to chat, talk","Subjuntivo","Subjunctive","Presente","Present","I chat, am chatting","charle","charles","charle","charlemos","charléis","charlen","charlando","chatting","charlado","chatted" +"brillar","to shine, sparkle, glitter, gleam","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shone","habría brillado","habrías brillado","habría brillado","habríamos brillado","habríais brillado","habrían brillado","brillando","shining","brillado","shone" +"brillemos" +"brillar","to shine, sparkle, glitter, gleam","Subjuntivo","Subjunctive","Presente","Present","I shine, am shining","brille","brilles","brille","brillemos","brilléis","brillen","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shined, was shining","brillara","brillaras","brillara","brilláramos","brillarais","brillaran","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Subjuntivo","Subjunctive","Futuro","Future","I will shine","brillare","brillares","brillare","brilláremos","brillareis","brillaren","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shone, shined","haya brillado","hayas brillado","haya brillado","hayamos brillado","hayáis brillado","hayan brillado","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shone","hubiere brillado","hubieres brillado","hubiere brillado","hubiéremos brillado","hubiereis brillado","hubieren brillado","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shone","hubiera brillado","hubieras brillado","hubiera brillado","hubiéramos brillado","hubierais brillado","hubieran brillado","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Shine! Don't shine!","","brilla","brille","brillemos","brillad","brillen","brillando","shining","brillado","shone" +"brillar","to shine, sparkle, glitter, gleam","Imperativo Negativo","Imperative Negative","Presente","Present","Shine! Don't shine!","","no brilles","no brille","no brillemos","no brilléis","no brillen","brillando","shining","brillado","shone" +"brindar","to toast","Indicativo","Indicative","Presente","Present","I toast, am toasting","brindo","brindas","brinda","brindamos","brindáis","brindan","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Futuro","Future","I will toast","brindaré","brindarás","brindará","brindaremos","brindaréis","brindarán","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Imperfecto","Imperfect","I was toasting, used to toast, toasted","brindaba","brindabas","brindaba","brindábamos","brindabais","brindaban","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Pretérito","Preterite","I toasted","brindé","brindaste","brindó","brindamos","brindasteis","brindaron","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Condicional","Conditional","I would toast","brindaría","brindarías","brindaría","brindaríamos","brindaríais","brindarían","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Presente perfecto","Present Perfect","I have toasted","he brindado","has brindado","ha brindado","hemos brindado","habéis brindado","han brindado","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have toasted","habré brindado","habrás brindado","habrá brindado","habremos brindado","habréis brindado","habrán brindado","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had toasted","había brindado","habías brindado","había brindado","habíamos brindado","habíais brindado","habían brindado","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had toasted","hube brindado","hubiste brindado","hubo brindado","hubimos brindado","hubisteis brindado","hubieron brindado","brindando","toasting","brindado","toasted" +"brindar","to toast","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have toasted","habría brindado","habrías brindado","habría brindado","habríamos brindado","habríais brindado","habrían brindado","brindando","toasting","brindado","toasted" +"brindemos" +"brindar","to toast","Subjuntivo","Subjunctive","Presente","Present","I toast, am toasting","brinde","brindes","brinde","brindemos","brindéis","brinden","brindando","toasting","brindado","toasted" +"brindar","to toast","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I toasted, was toasting","brindara","brindaras","brindara","brindáramos","brindarais","brindaran","brindando","toasting","brindado","toasted" +"brindar","to toast","Subjuntivo","Subjunctive","Futuro","Future","I will toast","brindare","brindares","brindare","brindáremos","brindareis","brindaren","brindando","toasting","brindado","toasted" +"brindar","to toast","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have toasted, toasted","haya brindado","hayas brindado","haya brindado","hayamos brindado","hayáis brindado","hayan brindado","brindando","toasting","brindado","toasted" +"brindar","to toast","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have toasted","hubiere brindado","hubieres brindado","hubiere brindado","hubiéremos brindado","hubiereis brindado","hubieren brindado","brindando","toasting","brindado","toasted" +"brindar","to toast","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had toasted","hubiera brindado","hubieras brindado","hubiera brindado","hubiéramos brindado","hubierais brindado","hubieran brindado","brindando","toasting","brindado","toasted" +"brindar","to toast","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Toast! Don't toast!","","brinda","brinde","brindemos","brindad","brinden","brindando","toasting","brindado","toasted" +"brindar","to toast","Imperativo Negativo","Imperative Negative","Presente","Present","Toast! Don't toast!","","no brindes","no brinde","no brindemos","no brindéis","no brinden","brindando","toasting","brindado","toasted" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Presente","Present","I get a suntan, am getting a suntan","me bronceo","te bronceas","se broncea","nos bronceamos","os bronceáis","se broncean","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Futuro","Future","I will get a suntan","me broncearé","te broncearás","se bronceará","nos broncearemos","os broncearéis","se broncearán","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Imperfecto","Imperfect","I was getting a suntan, used to get a suntan, got a suntan","me bronceaba","te bronceabas","se bronceaba","nos bronceábamos","os bronceabais","se bronceaban","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Pretérito","Preterite","I got a suntan","me bronceé","te bronceaste","se bronceó","nos bronceamos","os bronceasteis","se broncearon","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Condicional","Conditional","I would get a suntan","me broncearía","te broncearías","se broncearía","nos broncearíamos","os broncearíais","se broncearían","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten a suntan","me he bronceado","te has bronceado","se ha bronceado","nos hemos bronceado","os habéis bronceado","se han bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten a suntan","me habré bronceado","te habrás bronceado","se habrá bronceado","nos habremos bronceado","os habréis bronceado","se habrán bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten a suntan","me había bronceado","te habías bronceado","se había bronceado","nos habíamos bronceado","os habíais bronceado","se habían bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten a suntan","me hube bronceado","te hubiste bronceado","se hubo bronceado","nos hubimos bronceado","os hubisteis bronceado","se hubieron bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten a suntan","me habría bronceado","te habrías bronceado","se habría bronceado","nos habríamos bronceado","os habríais bronceado","se habrían bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"nos bronceemos" +"broncearse","to get a suntan, tan","Subjuntivo","Subjunctive","Presente","Present","I get a suntan, am getting a suntan","me broncee","te broncees","se broncee","nos bronceemos","os bronceéis","se bronceen","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got a suntan, was getting a suntan","me bronceara","te broncearas","se bronceara","nos bronceáramos","os broncearais","se broncearan","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Subjuntivo","Subjunctive","Futuro","Future","I will get a suntan","me bronceare","te bronceares","se bronceare","nos bronceáremos","os bronceareis","se broncearen","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten a suntan, got a suntan","me haya bronceado","te hayas bronceado","se haya bronceado","nos hayamos bronceado","os hayáis bronceado","se hayan bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten a suntan","me hubiere bronceado","te hubieres bronceado","se hubiere bronceado","nos hubiéremos bronceado","os hubiereis bronceado","se hubieren bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten a suntan","me hubiera bronceado","te hubieras bronceado","se hubiera bronceado","nos hubiéramos bronceado","os hubierais bronceado","se hubieran bronceado","bronceándose","getting a suntan","bronceado","got a suntan" +"broncearse","to get a suntan, tan","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get a suntan! Don't get a suntan!","","broncéate","broncéese","nos bronceemos","bronceaos","broncéense","bronceándose","getting a suntan","bronceado","got a suntan", +"broncearse","to get a suntan, tan","Imperativo Negativo","Imperative Negative","Presente","Present","Get a suntan! Don't get a suntan!","","no te broncees","no se broncee","no nos bronceemos","no os bronceéis","no se bronceen","bronceándose","getting a suntan","bronceado","got a suntan", +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Presente","Present","I skin-dive, am skin-diving","buceo","buceas","bucea","buceamos","buceáis","bucean","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Futuro","Future","I will skin-dive","bucearé","bucearás","buceará","bucearemos","bucearéis","bucearán","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Imperfecto","Imperfect","I was skin-diving, used to skin-dive, skin-dived","buceaba","buceabas","buceaba","buceábamos","buceabais","buceaban","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Pretérito","Preterite","I skin-dived","buceé","buceaste","buceó","buceamos","buceasteis","bucearon","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Condicional","Conditional","I would skin-dive","bucearía","bucearías","bucearía","bucearíamos","bucearíais","bucearían","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Presente perfecto","Present Perfect","I have skin-dived","he buceado","has buceado","ha buceado","hemos buceado","habéis buceado","han buceado","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have skin-dived","habré buceado","habrás buceado","habrá buceado","habremos buceado","habréis buceado","habrán buceado","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had skin-dived","había buceado","habías buceado","había buceado","habíamos buceado","habíais buceado","habían buceado","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had skin-dived","hube buceado","hubiste buceado","hubo buceado","hubimos buceado","hubisteis buceado","hubieron buceado","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have skin-dived","habría buceado","habrías buceado","habría buceado","habríamos buceado","habríais buceado","habrían buceado","buceando","skin-diving","buceado","skin-dived" +"buceemos" +"bucear","to skin-dive; to dive under water; to dive","Subjuntivo","Subjunctive","Presente","Present","I skin-dive, am skin-diving","bucee","bucees","bucee","buceemos","buceéis","buceen","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I skin-dived, was skin-diving","buceara","bucearas","buceara","buceáramos","bucearais","bucearan","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Subjuntivo","Subjunctive","Futuro","Future","I will skin-dive","buceare","buceares","buceare","buceáremos","buceareis","bucearen","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have skin-dived, skin-dived","haya buceado","hayas buceado","haya buceado","hayamos buceado","hayáis buceado","hayan buceado","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have skin-dived","hubiere buceado","hubieres buceado","hubiere buceado","hubiéremos buceado","hubiereis buceado","hubieren buceado","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had skin-dived","hubiera buceado","hubieras buceado","hubiera buceado","hubiéramos buceado","hubierais buceado","hubieran buceado","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Skin-dive! Don't skin-dive!","","bucea","bucee","buceemos","bucead","buceen","buceando","skin-diving","buceado","skin-dived" +"bucear","to skin-dive; to dive under water; to dive","Imperativo Negativo","Imperative Negative","Presente","Present","Skin-dive! Don't skin-dive!","","no bucees","no bucee","no buceemos","no buceéis","no buceen","buceando","skin-diving","buceado","skin-dived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Presente","Present","I deceive, am deceiving","burlo","burlas","burla","burlamos","burláis","burlan","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Futuro","Future","I will deceive","burlaré","burlarás","burlará","burlaremos","burlaréis","burlarán","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Imperfecto","Imperfect","I was deceiving, used to deceive, deceived","burlaba","burlabas","burlaba","burlábamos","burlabais","burlaban","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Pretérito","Preterite","I deceived","burlé","burlaste","burló","burlamos","burlasteis","burlaron","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Condicional","Conditional","I would deceive","burlaría","burlarías","burlaría","burlaríamos","burlaríais","burlarían","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have deceived","he burlado","has burlado","ha burlado","hemos burlado","habéis burlado","han burlado","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have deceived","habré burlado","habrás burlado","habrá burlado","habremos burlado","habréis burlado","habrán burlado","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had deceived","había burlado","habías burlado","había burlado","habíamos burlado","habíais burlado","habían burlado","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had deceived","hube burlado","hubiste burlado","hubo burlado","hubimos burlado","hubisteis burlado","hubieron burlado","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have deceived","habría burlado","habrías burlado","habría burlado","habríamos burlado","habríais burlado","habrían burlado","burlando","deceiving","burlado","deceived" +"burlemos" +"burlar","to deceive, trick; to seduce","Subjuntivo","Subjunctive","Presente","Present","I deceive, am deceiving","burle","burles","burle","burlemos","burléis","burlen","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I deceived, was deceiving","burlara","burlaras","burlara","burláramos","burlarais","burlaran","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Subjuntivo","Subjunctive","Futuro","Future","I will deceive","burlare","burlares","burlare","burláremos","burlareis","burlaren","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have deceived, deceived","haya burlado","hayas burlado","haya burlado","hayamos burlado","hayáis burlado","hayan burlado","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have deceived","hubiere burlado","hubieres burlado","hubiere burlado","hubiéremos burlado","hubiereis burlado","hubieren burlado","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had deceived","hubiera burlado","hubieras burlado","hubiera burlado","hubiéramos burlado","hubierais burlado","hubieran burlado","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Deceive! Don't deceive!","","burla","burle","burlemos","burlad","burlen","burlando","deceiving","burlado","deceived" +"burlar","to deceive, trick; to seduce","Imperativo Negativo","Imperative Negative","Presente","Present","Deceive! Don't deceive!","","no burles","no burle","no burlemos","no burléis","no burlen","burlando","deceiving","burlado","deceived" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Presente","Present","I mock, am mocking","me burlo","te burlas","se burla","nos burlamos","os burláis","se burlan","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Futuro","Future","I will mock","me burlaré","te burlarás","se burlará","nos burlaremos","os burlaréis","se burlarán","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Imperfecto","Imperfect","I was mocking, used to mock, mocked","me burlaba","te burlabas","se burlaba","nos burlábamos","os burlabais","se burlaban","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Pretérito","Preterite","I mocked","me burlé","te burlaste","se burló","nos burlamos","os burlasteis","se burlaron","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Condicional","Conditional","I would mock","me burlaría","te burlarías","se burlaría","nos burlaríamos","os burlaríais","se burlarían","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have mocked","me he burlado","te has burlado","se ha burlado","nos hemos burlado","os habéis burlado","se han burlado","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have mocked","me habré burlado","te habrás burlado","se habrá burlado","nos habremos burlado","os habréis burlado","se habrán burlado","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had mocked","me había burlado","te habías burlado","se había burlado","nos habíamos burlado","os habíais burlado","se habían burlado","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had mocked","me hube burlado","te hubiste burlado","se hubo burlado","nos hubimos burlado","os hubisteis burlado","se hubieron burlado","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have mocked","me habría burlado","te habrías burlado","se habría burlado","nos habríamos burlado","os habríais burlado","se habrían burlado","burlándose","mocking","burlado","mocked" +"nos burlemos" +"burlarse","to mock, ridicule, make fun of [someone/something]","Subjuntivo","Subjunctive","Presente","Present","I mock, am mocking","me burle","te burles","se burle","nos burlemos","os burléis","se burlen","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I mocked, was mocking","me burlara","te burlaras","se burlara","nos burláramos","os burlarais","se burlaran","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Subjuntivo","Subjunctive","Futuro","Future","I will mock","me burlare","te burlares","se burlare","nos burláremos","os burlareis","se burlaren","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have mocked, mocked","me haya burlado","te hayas burlado","se haya burlado","nos hayamos burlado","os hayáis burlado","se hayan burlado","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have mocked","me hubiere burlado","te hubieres burlado","se hubiere burlado","nos hubiéremos burlado","os hubiereis burlado","se hubieren burlado","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had mocked","me hubiera burlado","te hubieras burlado","se hubiera burlado","nos hubiéramos burlado","os hubierais burlado","se hubieran burlado","burlándose","mocking","burlado","mocked" +"burlarse","to mock, ridicule, make fun of [someone/something]","Imperativo Negativo","Imperative Negative","Presente","Present","Mock! Don't mock!","","no te burles","no se burle","no nos burlemos","no os burléis","no se burlen","burlándose","mocking","burlado","mocked" +"buscar","to search for, look for","Indicativo","Indicative","Presente","Present","I search for, am searching for","busco","buscas","busca","buscamos","buscáis","buscan","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Futuro","Future","I will search for","buscaré","buscarás","buscará","buscaremos","buscaréis","buscarán","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Imperfecto","Imperfect","I was searching for, used to search for, searched for","buscaba","buscabas","buscaba","buscábamos","buscabais","buscaban","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Pretérito","Preterite","I searched for","busqué","buscaste","buscó","buscamos","buscasteis","buscaron","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Condicional","Conditional","I would search for","buscaría","buscarías","buscaría","buscaríamos","buscaríais","buscarían","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have searched for","he buscado","has buscado","ha buscado","hemos buscado","habéis buscado","han buscado","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have searched for","habré buscado","habrás buscado","habrá buscado","habremos buscado","habréis buscado","habrán buscado","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had searched for","había buscado","habías buscado","había buscado","habíamos buscado","habíais buscado","habían buscado","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had searched for","hube buscado","hubiste buscado","hubo buscado","hubimos buscado","hubisteis buscado","hubieron buscado","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have searched for","habría buscado","habrías buscado","habría buscado","habríamos buscado","habríais buscado","habrían buscado","buscando","searching for","buscado","searched for" +"busquemos" +"buscar","to search for, look for","Subjuntivo","Subjunctive","Presente","Present","I search for, am searching for","busque","busques","busque","busquemos","busquéis","busquen","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I searched for, was searching for","buscara","buscaras","buscara","buscáramos","buscarais","buscaran","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Subjuntivo","Subjunctive","Futuro","Future","I will search for","buscare","buscares","buscare","buscáremos","buscareis","buscaren","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have searched for, searched for","haya buscado","hayas buscado","haya buscado","hayamos buscado","hayáis buscado","hayan buscado","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have searched for","hubiere buscado","hubieres buscado","hubiere buscado","hubiéremos buscado","hubiereis buscado","hubieren buscado","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had searched for","hubiera buscado","hubieras buscado","hubiera buscado","hubiéramos buscado","hubierais buscado","hubieran buscado","buscando","searching for","buscado","searched for" +"buscar","to search for, look for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Search for! Don't search for!","","busca","busque","busquemos","buscad","busquen","buscando","searching for","buscado","searched for", +"buscar","to search for, look for","Imperativo Negativo","Imperative Negative","Presente","Present","Search for! Don't search for!","","no busques","no busque","no busquemos","no busquéis","no busquen","buscando","searching for","buscado","searched for", +"caber","to fit","Indicativo","Indicative","Presente","Present","I fit","quepo","cabes","cabe","cabemos","cabéis","caben","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Futuro","Future","I will fit","cabré","cabrás","cabrá","cabremos","cabréis","cabrán","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Imperfecto","Imperfect","I used to fit, fit","cabía","cabías","cabía","cabíamos","cabíais","cabían","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Pretérito","Preterite","I fit","cupe","cupiste","cupo","cupimos","cupisteis","cupieron","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Condicional","Conditional","I would fit","cabría","cabrías","cabría","cabríamos","cabríais","cabrían","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fit","he cabido","has cabido","ha cabido","hemos cabido","habéis cabido","han cabido","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fit","habré cabido","habrás cabido","habrá cabido","habremos cabido","habréis cabido","habrán cabido","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fit","había cabido","habías cabido","había cabido","habíamos cabido","habíais cabido","habían cabido","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fit","hube cabido","hubiste cabido","hubo cabido","hubimos cabido","hubisteis cabido","hubieron cabido","cabiendo","fitting","cabido","fit" +"caber","to fit","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fit","habría cabido","habrías cabido","habría cabido","habríamos cabido","habríais cabido","habrían cabido","cabiendo","fitting","cabido","fit" +"quepamos" +"caber","to fit","Subjuntivo","Subjunctive","Presente","Present","I fit","quepa","quepas","quepa","quepamos","quepáis","quepan","cabiendo","fitting","cabido","fit" +"caber","to fit","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fit, was fitting","cupiera","cupieras","cupiera","cupiéramos","cupierais","cupieran","cabiendo","fitting","cabido","fit" +"caber","to fit","Subjuntivo","Subjunctive","Futuro","Future","I will fit","cupiere","cupieres","cupiere","cupiéremos","cupiereis","cupieren","cabiendo","fitting","cabido","fit" +"caber","to fit","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fit, fit","haya cabido","hayas cabido","haya cabido","hayamos cabido","hayáis cabido","hayan cabido","cabiendo","fitting","cabido","fit" +"caber","to fit","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fit","hubiere cabido","hubieres cabido","hubiere cabido","hubiéremos cabido","hubiereis cabido","hubieren cabido","cabiendo","fitting","cabido","fit" +"caber","to fit","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fit","hubiera cabido","hubieras cabido","hubiera cabido","hubiéramos cabido","hubierais cabido","hubieran cabido","cabiendo","fitting","cabido","fit" +"caber","to fit","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fit! Don't fit!","","cabe","quepa","quepamos","cabed","quepan","cabiendo","fitting","cabido","fit" +"caber","to fit","Imperativo Negativo","Imperative Negative","Presente","Present","Fit! Don't fit!","","no quepas","no quepa","no quepamos","no quepáis","no quepan","cabiendo","fitting","cabido","fit" +"caer","to fall","Indicativo","Indicative","Presente","Present","I fall, am falling","caigo","caes","cae","caemos","caéis","caen","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Futuro","Future","I will fall","caeré","caerás","caerá","caeremos","caeréis","caerán","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Imperfecto","Imperfect","I was falling, used to fall, fell","caía","caías","caía","caíamos","caíais","caían","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Pretérito","Preterite","I fell","caí","caíste","cayó","caímos","caísteis","cayeron","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Condicional","Conditional","I would fall","caería","caerías","caería","caeríamos","caeríais","caerían","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fallen","he caído","has caído","ha caído","hemos caído","habéis caído","han caído","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fallen","habré caído","habrás caído","habrá caído","habremos caído","habréis caído","habrán caído","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fallen","había caído","habías caído","había caído","habíamos caído","habíais caído","habían caído","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fallen","hube caído","hubiste caído","hubo caído","hubimos caído","hubisteis caído","hubieron caído","cayendo","falling","caído","fallen" +"caer","to fall","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fallen","habría caído","habrías caído","habría caído","habríamos caído","habríais caído","habrían caído","cayendo","falling","caído","fallen" +"caigamos" +"caer","to fall","Subjuntivo","Subjunctive","Presente","Present","I fall, am falling","caiga","caigas","caiga","caigamos","caigáis","caigan","cayendo","falling","caído","fallen" +"caer","to fall","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fell, was falling","cayera","cayeras","cayera","cayéramos","cayerais","cayeran","cayendo","falling","caído","fallen" +"caer","to fall","Subjuntivo","Subjunctive","Futuro","Future","I will fall","cayere","cayeres","cayere","cayéremos","cayereis","cayeren","cayendo","falling","caído","fallen" +"caer","to fall","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fallen, fell","haya caído","hayas caído","haya caído","hayamos caído","hayáis caído","hayan caído","cayendo","falling","caído","fallen" +"caer","to fall","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fallen","hubiere caído","hubieres caído","hubiere caído","hubiéremos caído","hubiereis caído","hubieren caído","cayendo","falling","caído","fallen" +"caer","to fall","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fallen","hubiera caído","hubieras caído","hubiera caído","hubiéramos caído","hubierais caído","hubieran caído","cayendo","falling","caído","fallen" +"caer","to fall","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fall! Don't fall!","","cae","caiga","caigamos","caed","caigan","cayendo","falling","caído","fallen" +"caer","to fall","Imperativo Negativo","Imperative Negative","Presente","Present","Fall! Don't fall!","","no caigas","no caiga","no caigamos","no caigáis","no caigan","cayendo","falling","caído","fallen" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Presente","Present","I calculate, am calculating","calculo","calculas","calcula","calculamos","calculáis","calculan","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Futuro","Future","I will calculate","calcularé","calcularás","calculará","calcularemos","calcularéis","calcularán","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Imperfecto","Imperfect","I was calculating, used to calculate, calculated","calculaba","calculabas","calculaba","calculábamos","calculabais","calculaban","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Pretérito","Preterite","I calculated","calculé","calculaste","calculó","calculamos","calculasteis","calcularon","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Condicional","Conditional","I would calculate","calcularía","calcularías","calcularía","calcularíamos","calcularíais","calcularían","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have calculated","he calculado","has calculado","ha calculado","hemos calculado","habéis calculado","han calculado","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have calculated","habré calculado","habrás calculado","habrá calculado","habremos calculado","habréis calculado","habrán calculado","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had calculated","había calculado","habías calculado","había calculado","habíamos calculado","habíais calculado","habían calculado","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had calculated","hube calculado","hubiste calculado","hubo calculado","hubimos calculado","hubisteis calculado","hubieron calculado","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have calculated","habría calculado","habrías calculado","habría calculado","habríamos calculado","habríais calculado","habrían calculado","calculando","calculating","calculado","calculated" +"calculemos" +"calcular","to calculate, compute, add up","Subjuntivo","Subjunctive","Presente","Present","I calculate, am calculating","calcule","calcules","calcule","calculemos","calculéis","calculen","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I calculated, was calculating","calculara","calcularas","calculara","calculáramos","calcularais","calcularan","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Subjuntivo","Subjunctive","Futuro","Future","I will calculate","calculare","calculares","calculare","calculáremos","calculareis","calcularen","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have calculated, calculated","haya calculado","hayas calculado","haya calculado","hayamos calculado","hayáis calculado","hayan calculado","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have calculated","hubiere calculado","hubieres calculado","hubiere calculado","hubiéremos calculado","hubiereis calculado","hubieren calculado","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had calculated","hubiera calculado","hubieras calculado","hubiera calculado","hubiéramos calculado","hubierais calculado","hubieran calculado","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Calculate! Don't calculate!","","calcula","calcule","calculemos","calculad","calculen","calculando","calculating","calculado","calculated" +"calcular","to calculate, compute, add up","Imperativo Negativo","Imperative Negative","Presente","Present","Calculate! Don't calculate!","","no calcules","no calcule","no calculemos","no calculéis","no calculen","calculando","calculating","calculado","calculated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Presente","Present","I heat, am heating","caliento","calientas","calienta","calentamos","calentáis","calientan","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Futuro","Future","I will heat","calentaré","calentarás","calentará","calentaremos","calentaréis","calentarán","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Imperfecto","Imperfect","I was heating, used to heat, heated","calentaba","calentabas","calentaba","calentábamos","calentabais","calentaban","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Pretérito","Preterite","I heated","calenté","calentaste","calentó","calentamos","calentasteis","calentaron","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Condicional","Conditional","I would heat","calentaría","calentarías","calentaría","calentaríamos","calentaríais","calentarían","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have heated","he calentado","has calentado","ha calentado","hemos calentado","habéis calentado","han calentado","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have heated","habré calentado","habrás calentado","habrá calentado","habremos calentado","habréis calentado","habrán calentado","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had heated","había calentado","habías calentado","había calentado","habíamos calentado","habíais calentado","habían calentado","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had heated","hube calentado","hubiste calentado","hubo calentado","hubimos calentado","hubisteis calentado","hubieron calentado","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have heated","habría calentado","habrías calentado","habría calentado","habríamos calentado","habríais calentado","habrían calentado","calentando","heating","calentado","heated" +"calentemos" +"calentar","to heat [up], warm [up]","Subjuntivo","Subjunctive","Presente","Present","I heat, am heating","caliente","calientes","caliente","calentemos","calentéis","calienten","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I heated, was heating","calentara","calentaras","calentara","calentáramos","calentarais","calentaran","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Subjuntivo","Subjunctive","Futuro","Future","I will heat","calentare","calentares","calentare","calentáremos","calentareis","calentaren","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have heated, heated","haya calentado","hayas calentado","haya calentado","hayamos calentado","hayáis calentado","hayan calentado","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have heated","hubiere calentado","hubieres calentado","hubiere calentado","hubiéremos calentado","hubiereis calentado","hubieren calentado","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had heated","hubiera calentado","hubieras calentado","hubiera calentado","hubiéramos calentado","hubierais calentado","hubieran calentado","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Heat! Don't heat!","","calienta","caliente","calentemos","calentad","calienten","calentando","heating","calentado","heated" +"calentar","to heat [up], warm [up]","Imperativo Negativo","Imperative Negative","Presente","Present","Heat! Don't heat!","","no calientes","no caliente","no calentemos","no calentéis","no calienten","calentando","heating","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Presente","Present","I get heated, am getting heated","me caliento","te calientas","se calienta","nos calentamos","os calentáis","se calientan","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Futuro","Future","I will get heated","me calentaré","te calentarás","se calentará","nos calentaremos","os calentaréis","se calentarán","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Imperfecto","Imperfect","I was getting heated, used to get heated, got heated","me calentaba","te calentabas","se calentaba","nos calentábamos","os calentabais","se calentaban","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Pretérito","Preterite","I got heated","me calenté","te calentaste","se calentó","nos calentamos","os calentasteis","se calentaron","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Condicional","Conditional","I would get heated","me calentaría","te calentarías","se calentaría","nos calentaríamos","os calentaríais","se calentarían","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten heated","me he calentado","te has calentado","se ha calentado","nos hemos calentado","os habéis calentado","se han calentado","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten heated","me habré calentado","te habrás calentado","se habrá calentado","nos habremos calentado","os habréis calentado","se habrán calentado","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten heated","me había calentado","te habías calentado","se había calentado","nos habíamos calentado","os habíais calentado","se habían calentado","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten heated","me hube calentado","te hubiste calentado","se hubo calentado","nos hubimos calentado","os hubisteis calentado","se hubieron calentado","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten heated","me habría calentado","te habrías calentado","se habría calentado","nos habríamos calentado","os habríais calentado","se habrían calentado","calentándose","getting heated","calentado","heated" +"nos calentemos" +"calentarse","to heat up, warm up","Subjuntivo","Subjunctive","Presente","Present","I get heated, am getting heated","me caliente","te calientes","se caliente","nos calentemos","os calentéis","se calienten","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got heated, was getting heated","me calentara","te calentaras","se calentara","nos calentáramos","os calentarais","se calentaran","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Subjuntivo","Subjunctive","Futuro","Future","I will get heated","me calentare","te calentares","se calentare","nos calentáremos","os calentareis","se calentaren","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten heated, got heated","me haya calentado","te hayas calentado","se haya calentado","nos hayamos calentado","os hayáis calentado","se hayan calentado","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten heated","me hubiere calentado","te hubieres calentado","se hubiere calentado","nos hubiéremos calentado","os hubiereis calentado","se hubieren calentado","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten heated","me hubiera calentado","te hubieras calentado","se hubiera calentado","nos hubiéramos calentado","os hubierais calentado","se hubieran calentado","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get heated! Don't get heated!","","caliéntate","caliéntese","nos calentemos","calentaos","caliéntense","calentándose","getting heated","calentado","heated" +"calentarse","to heat up, warm up","Imperativo Negativo","Imperative Negative","Presente","Present","Get heated! Don't get heated!","","no te calientes","no se caliente","no nos calentemos","no os calentéis","no se calienten","calentándose","getting heated","calentado","heated" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Presente","Present","I keep quiet about, am keeping quiet about","callo","callas","calla","callamos","calláis","callan","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Futuro","Future","I will keep quiet about","callaré","callarás","callará","callaremos","callaréis","callarán","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Imperfecto","Imperfect","I was keeping quiet about, used to keep quiet about, kept quiet about","callaba","callabas","callaba","callábamos","callabais","callaban","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Pretérito","Preterite","I kept quiet about","callé","callaste","calló","callamos","callasteis","callaron","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Condicional","Conditional","I would keep quiet about","callaría","callarías","callaría","callaríamos","callaríais","callarían","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Presente perfecto","Present Perfect","I have kept quiet about","he callado","has callado","ha callado","hemos callado","habéis callado","han callado","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have kept quiet about","habré callado","habrás callado","habrá callado","habremos callado","habréis callado","habrán callado","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had kept quiet about","había callado","habías callado","había callado","habíamos callado","habíais callado","habían callado","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had kept quiet about","hube callado","hubiste callado","hubo callado","hubimos callado","hubisteis callado","hubieron callado","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have kept quiet about","habría callado","habrías callado","habría callado","habríamos callado","habríais callado","habrían callado","callando","keeping quiet about","callado","kept quiet about" +"callemos" +"callar","to keep quiet about, pass over in silence; to hush","Subjuntivo","Subjunctive","Presente","Present","I keep quiet about, am keeping quiet about","calle","calles","calle","callemos","calléis","callen","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I kept quiet about, was keeping quiet about","callara","callaras","callara","calláramos","callarais","callaran","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Subjuntivo","Subjunctive","Futuro","Future","I will keep quiet about","callare","callares","callare","calláremos","callareis","callaren","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have kept quiet about, kept quiet about","haya callado","hayas callado","haya callado","hayamos callado","hayáis callado","hayan callado","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have kept quiet about","hubiere callado","hubieres callado","hubiere callado","hubiéremos callado","hubiereis callado","hubieren callado","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had kept quiet about","hubiera callado","hubieras callado","hubiera callado","hubiéramos callado","hubierais callado","hubieran callado","callando","keeping quiet about","callado","kept quiet about" +"callar","to keep quiet about, pass over in silence; to hush","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Keep quiet about! Don't keep quiet about!","","calla","calle","callemos","callad","callen","callando","keeping quiet about","callado","kept quiet about", +"callar","to keep quiet about, pass over in silence; to hush","Imperativo Negativo","Imperative Negative","Presente","Present","Keep quiet about! Don't keep quiet about!","","no calles","no calle","no callemos","no calléis","no callen","callando","keeping quiet about","callado","kept quiet about", +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Presente","Present","I keep quiet, am keeping quiet","me callo","te callas","se calla","nos callamos","os calláis","se callan","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Futuro","Future","I will keep quiet","me callaré","te callarás","se callará","nos callaremos","os callaréis","se callarán","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Imperfecto","Imperfect","I was keeping quiet, used to keep quiet, kept quiet","me callaba","te callabas","se callaba","nos callábamos","os callabais","se callaban","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Pretérito","Preterite","I kept quiet","me callé","te callaste","se calló","nos callamos","os callasteis","se callaron","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Condicional","Conditional","I would keep quiet","me callaría","te callarías","se callaría","nos callaríamos","os callaríais","se callarían","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Presente perfecto","Present Perfect","I have kept quiet","me he callado","te has callado","se ha callado","nos hemos callado","os habéis callado","se han callado","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have kept quiet","me habré callado","te habrás callado","se habrá callado","nos habremos callado","os habréis callado","se habrán callado","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had kept quiet","me había callado","te habías callado","se había callado","nos habíamos callado","os habíais callado","se habían callado","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had kept quiet","me hube callado","te hubiste callado","se hubo callado","nos hubimos callado","os hubisteis callado","se hubieron callado","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have kept quiet","me habría callado","te habrías callado","se habría callado","nos habríamos callado","os habríais callado","se habrían callado","callándose","keeping quiet","callado","quiet" +"nos callemos" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Subjuntivo","Subjunctive","Presente","Present","I keep quiet, am keeping quiet","me calle","te calles","se calle","nos callemos","os calléis","se callen","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I kept quiet, was keeping quiet","me callara","te callaras","se callara","nos calláramos","os callarais","se callaran","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Subjuntivo","Subjunctive","Futuro","Future","I will keep quiet","me callare","te callares","se callare","nos calláremos","os callareis","se callaren","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have kept quiet, kept quiet","me haya callado","te hayas callado","se haya callado","nos hayamos callado","os hayáis callado","se hayan callado","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have kept quiet","me hubiere callado","te hubieres callado","se hubiere callado","nos hubiéremos callado","os hubiereis callado","se hubieren callado","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had kept quiet","me hubiera callado","te hubieras callado","se hubiera callado","nos hubiéramos callado","os hubierais callado","se hubieran callado","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Keep quiet! Don't keep quiet!","","cállate","cállese","nos callemos","callaos","cállense","callándose","keeping quiet","callado","quiet" +"callarse","to keep quiet , be quiet, shut up, be silent, remain silent","Imperativo Negativo","Imperative Negative","Presente","Present","Keep quiet! Don't keep quiet!","","no te calles","no se calle","no nos callemos","no os calléis","no se callen","callándose","keeping quiet","callado","quiet" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Presente","Present","I calm, am calming","calmo","calmas","calma","calmamos","calmáis","calman","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Futuro","Future","I will calm","calmaré","calmarás","calmará","calmaremos","calmaréis","calmarán","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Imperfecto","Imperfect","I was calming, used to calm, calmed","calmaba","calmabas","calmaba","calmábamos","calmabais","calmaban","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Pretérito","Preterite","I calmed","calmé","calmaste","calmó","calmamos","calmasteis","calmaron","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Condicional","Conditional","I would calm","calmaría","calmarías","calmaría","calmaríamos","calmaríais","calmarían","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Presente perfecto","Present Perfect","I have calmed","he calmado","has calmado","ha calmado","hemos calmado","habéis calmado","han calmado","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have calmed","habré calmado","habrás calmado","habrá calmado","habremos calmado","habréis calmado","habrán calmado","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had calmed","había calmado","habías calmado","había calmado","habíamos calmado","habíais calmado","habían calmado","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had calmed","hube calmado","hubiste calmado","hubo calmado","hubimos calmado","hubisteis calmado","hubieron calmado","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have calmed","habría calmado","habrías calmado","habría calmado","habríamos calmado","habríais calmado","habrían calmado","calmando","calming","calmado","calm" +"calmemos" +"calmar","to calm (down), quiet, soothe","Subjuntivo","Subjunctive","Presente","Present","I calm, am calming","calme","calmes","calme","calmemos","calméis","calmen","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I calmed, was calming","calmara","calmaras","calmara","calmáramos","calmarais","calmaran","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Subjuntivo","Subjunctive","Futuro","Future","I will calm","calmare","calmares","calmare","calmáremos","calmareis","calmaren","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have calmed, calmed","haya calmado","hayas calmado","haya calmado","hayamos calmado","hayáis calmado","hayan calmado","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have calmed","hubiere calmado","hubieres calmado","hubiere calmado","hubiéremos calmado","hubiereis calmado","hubieren calmado","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had calmed","hubiera calmado","hubieras calmado","hubiera calmado","hubiéramos calmado","hubierais calmado","hubieran calmado","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Calm! Don't calm!","","calma","calme","calmemos","calmad","calmen","calmando","calming","calmado","calm" +"calmar","to calm (down), quiet, soothe","Imperativo Negativo","Imperative Negative","Presente","Present","Calm! Don't calm!","","no calmes","no calme","no calmemos","no calméis","no calmen","calmando","calming","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Presente","Present","I calm down, am calming down","me calmo","te calmas","se calma","nos calmamos","os calmáis","se calman","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Futuro","Future","I will calm down","me calmaré","te calmarás","se calmará","nos calmaremos","os calmaréis","se calmarán","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was calming down, used to calm down, calmed down","me calmaba","te calmabas","se calmaba","nos calmábamos","os calmabais","se calmaban","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Pretérito","Preterite","I calmed down","me calmé","te calmaste","se calmó","nos calmamos","os calmasteis","se calmaron","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Condicional","Conditional","I would calm down","me calmaría","te calmarías","se calmaría","nos calmaríamos","os calmaríais","se calmarían","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have calmed down","me he calmado","te has calmado","se ha calmado","nos hemos calmado","os habéis calmado","se han calmado","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have calmed down","me habré calmado","te habrás calmado","se habrá calmado","nos habremos calmado","os habréis calmado","se habrán calmado","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had calmed down","me había calmado","te habías calmado","se había calmado","nos habíamos calmado","os habíais calmado","se habían calmado","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had calmed down","me hube calmado","te hubiste calmado","se hubo calmado","nos hubimos calmado","os hubisteis calmado","se hubieron calmado","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have calmed down","me habría calmado","te habrías calmado","se habría calmado","nos habríamos calmado","os habríais calmado","se habrían calmado","calmándose","calming down","calmado","calm" +"nos calmemos" +"calmarse","to calm down [oneself]","Subjuntivo","Subjunctive","Presente","Present","I calm down, am calming down","me calme","te calmes","se calme","nos calmemos","os calméis","se calmen","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I calmed down, was calming down","me calmara","te calmaras","se calmara","nos calmáramos","os calmarais","se calmaran","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will calm down","me calmare","te calmares","se calmare","nos calmáremos","os calmareis","se calmaren","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have calmed down, calmed down","me haya calmado","te hayas calmado","se haya calmado","nos hayamos calmado","os hayáis calmado","se hayan calmado","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have calmed down","me hubiere calmado","te hubieres calmado","se hubiere calmado","nos hubiéremos calmado","os hubiereis calmado","se hubieren calmado","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had calmed down","me hubiera calmado","te hubieras calmado","se hubiera calmado","nos hubiéramos calmado","os hubierais calmado","se hubieran calmado","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Calm down! Don't calm down!","","cálmate","cálmese","nos calmemos","calmaos","cálmense","calmándose","calming down","calmado","calm" +"calmarse","to calm down [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Calm down! Don't calm down!","","no te calmes","no se calme","no nos calmemos","no os calméis","no se calmen","calmándose","calming down","calmado","calm" +"caminar","to walk, go","Indicativo","Indicative","Presente","Present","I walk, am walking","camino","caminas","camina","caminamos","camináis","caminan","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Futuro","Future","I will walk","caminaré","caminarás","caminará","caminaremos","caminaréis","caminarán","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Imperfecto","Imperfect","I was walking, used to walk, walked","caminaba","caminabas","caminaba","caminábamos","caminabais","caminaban","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Pretérito","Preterite","I walked","caminé","caminaste","caminó","caminamos","caminasteis","caminaron","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Condicional","Conditional","I would walk","caminaría","caminarías","caminaría","caminaríamos","caminaríais","caminarían","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Presente perfecto","Present Perfect","I have walked","he caminado","has caminado","ha caminado","hemos caminado","habéis caminado","han caminado","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have walked","habré caminado","habrás caminado","habrá caminado","habremos caminado","habréis caminado","habrán caminado","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had walked","había caminado","habías caminado","había caminado","habíamos caminado","habíais caminado","habían caminado","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had walked","hube caminado","hubiste caminado","hubo caminado","hubimos caminado","hubisteis caminado","hubieron caminado","caminando","walking","caminado","walked" +"caminar","to walk, go","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have walked","habría caminado","habrías caminado","habría caminado","habríamos caminado","habríais caminado","habrían caminado","caminando","walking","caminado","walked" +"caminemos" +"caminar","to walk, go","Subjuntivo","Subjunctive","Presente","Present","I walk, am walking","camine","camines","camine","caminemos","caminéis","caminen","caminando","walking","caminado","walked" +"caminar","to walk, go","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I walked, was walking","caminara","caminaras","caminara","camináramos","caminarais","caminaran","caminando","walking","caminado","walked" +"caminar","to walk, go","Subjuntivo","Subjunctive","Futuro","Future","I will walk","caminare","caminares","caminare","camináremos","caminareis","caminaren","caminando","walking","caminado","walked" +"caminar","to walk, go","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have walked, walked","haya caminado","hayas caminado","haya caminado","hayamos caminado","hayáis caminado","hayan caminado","caminando","walking","caminado","walked" +"caminar","to walk, go","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have walked","hubiere caminado","hubieres caminado","hubiere caminado","hubiéremos caminado","hubiereis caminado","hubieren caminado","caminando","walking","caminado","walked" +"caminar","to walk, go","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had walked","hubiera caminado","hubieras caminado","hubiera caminado","hubiéramos caminado","hubierais caminado","hubieran caminado","caminando","walking","caminado","walked" +"caminar","to walk, go","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Walk! Don't walk!","","camina","camine","caminemos","caminad","caminen","caminando","walking","caminado","walked" +"caminar","to walk, go","Imperativo Negativo","Imperative Negative","Presente","Present","Walk! Don't walk!","","no camines","no camine","no caminemos","no caminéis","no caminen","caminando","walking","caminado","walked" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Presente","Present","I cancel, am cancelling","cancelo","cancelas","cancela","cancelamos","canceláis","cancelan","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Futuro","Future","I will cancel","cancelaré","cancelarás","cancelará","cancelaremos","cancelaréis","cancelarán","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Imperfecto","Imperfect","I was cancelling, used to cancel, cancelled","cancelaba","cancelabas","cancelaba","cancelábamos","cancelabais","cancelaban","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Pretérito","Preterite","I cancelled","cancelé","cancelaste","canceló","cancelamos","cancelasteis","cancelaron","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Condicional","Conditional","I would cancel","cancelaría","cancelarías","cancelaría","cancelaríamos","cancelaríais","cancelarían","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cancelled","he cancelado","has cancelado","ha cancelado","hemos cancelado","habéis cancelado","han cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cancelled","habré cancelado","habrás cancelado","habrá cancelado","habremos cancelado","habréis cancelado","habrán cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cancelled","había cancelado","habías cancelado","había cancelado","habíamos cancelado","habíais cancelado","habían cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cancelled","hube cancelado","hubiste cancelado","hubo cancelado","hubimos cancelado","hubisteis cancelado","hubieron cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cancelled","habría cancelado","habrías cancelado","habría cancelado","habríamos cancelado","habríais cancelado","habrían cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelemos" +"cancelar","to cancel; to wipe out, write off [debt]","Subjuntivo","Subjunctive","Presente","Present","I cancel, am cancelling","cancele","canceles","cancele","cancelemos","canceléis","cancelen","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cancelled, was cancelling","cancelara","cancelaras","cancelara","canceláramos","cancelarais","cancelaran","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Subjuntivo","Subjunctive","Futuro","Future","I will cancel","cancelare","cancelares","cancelare","canceláremos","cancelareis","cancelaren","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cancelled, cancelled","haya cancelado","hayas cancelado","haya cancelado","hayamos cancelado","hayáis cancelado","hayan cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cancelled","hubiere cancelado","hubieres cancelado","hubiere cancelado","hubiéremos cancelado","hubiereis cancelado","hubieren cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cancelled","hubiera cancelado","hubieras cancelado","hubiera cancelado","hubiéramos cancelado","hubierais cancelado","hubieran cancelado","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cancel! Don't cancel!","","cancela","cancele","cancelemos","cancelad","cancelen","cancelando","cancelling","cancelado","cancelled" +"cancelar","to cancel; to wipe out, write off [debt]","Imperativo Negativo","Imperative Negative","Presente","Present","Cancel! Don't cancel!","","no canceles","no cancele","no cancelemos","no canceléis","no cancelen","cancelando","cancelling","cancelado","cancelled" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Presente","Present","I tire, am tiring","canso","cansas","cansa","cansamos","cansáis","cansan","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Futuro","Future","I will tire","cansaré","cansarás","cansará","cansaremos","cansaréis","cansarán","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Imperfecto","Imperfect","I was tiring, used to tire, tired","cansaba","cansabas","cansaba","cansábamos","cansabais","cansaban","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Pretérito","Preterite","I tired","cansé","cansaste","cansó","cansamos","cansasteis","cansaron","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Condicional","Conditional","I would tire","cansaría","cansarías","cansaría","cansaríamos","cansaríais","cansarían","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have tired","he cansado","has cansado","ha cansado","hemos cansado","habéis cansado","han cansado","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have tired","habré cansado","habrás cansado","habrá cansado","habremos cansado","habréis cansado","habrán cansado","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had tired","había cansado","habías cansado","había cansado","habíamos cansado","habíais cansado","habían cansado","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had tired","hube cansado","hubiste cansado","hubo cansado","hubimos cansado","hubisteis cansado","hubieron cansado","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have tired","habría cansado","habrías cansado","habría cansado","habríamos cansado","habríais cansado","habrían cansado","cansando","tiring","cansado","tired" +"cansemos" +"cansar","to tire, tire out, fatigue, wear out","Subjuntivo","Subjunctive","Presente","Present","I tire, am tiring","canse","canses","canse","cansemos","canséis","cansen","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I tired, was tiring","cansara","cansaras","cansara","cansáramos","cansarais","cansaran","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Subjuntivo","Subjunctive","Futuro","Future","I will tire","cansare","cansares","cansare","cansáremos","cansareis","cansaren","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have tired, tired","haya cansado","hayas cansado","haya cansado","hayamos cansado","hayáis cansado","hayan cansado","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have tired","hubiere cansado","hubieres cansado","hubiere cansado","hubiéremos cansado","hubiereis cansado","hubieren cansado","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had tired","hubiera cansado","hubieras cansado","hubiera cansado","hubiéramos cansado","hubierais cansado","hubieran cansado","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Tire! Don't tire!","","cansa","canse","cansemos","cansad","cansen","cansando","tiring","cansado","tired" +"cansar","to tire, tire out, fatigue, wear out","Imperativo Negativo","Imperative Negative","Presente","Present","Tire! Don't tire!","","no canses","no canse","no cansemos","no canséis","no cansen","cansando","tiring","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Presente","Present","I get tired, am getting tired","me canso","te cansas","se cansa","nos cansamos","os cansáis","se cansan","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Futuro","Future","I will get tired","me cansaré","te cansarás","se cansará","nos cansaremos","os cansaréis","se cansarán","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Imperfecto","Imperfect","I was getting tired, used to get tired, got tired","me cansaba","te cansabas","se cansaba","nos cansábamos","os cansabais","se cansaban","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Pretérito","Preterite","I got tired","me cansé","te cansaste","se cansó","nos cansamos","os cansasteis","se cansaron","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Condicional","Conditional","I would get tired","me cansaría","te cansarías","se cansaría","nos cansaríamos","os cansaríais","se cansarían","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten tired","me he cansado","te has cansado","se ha cansado","nos hemos cansado","os habéis cansado","se han cansado","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten tired","me habré cansado","te habrás cansado","se habrá cansado","nos habremos cansado","os habréis cansado","se habrán cansado","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten tired","me había cansado","te habías cansado","se había cansado","nos habíamos cansado","os habíais cansado","se habían cansado","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten tired","me hube cansado","te hubiste cansado","se hubo cansado","nos hubimos cansado","os hubisteis cansado","se hubieron cansado","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten tired","me habría cansado","te habrías cansado","se habría cansado","nos habríamos cansado","os habríais cansado","se habrían cansado","cansándose","getting tired","cansado","tired" +"comer","to eat","Indicativo","Indicative","Condicional","Conditional","I would eat","comería","comerías","comería","comeríamos","comeríais","comerían","comiendo","eating","comido","eaten" +"nos cansemos" +"cansarse","to get tired, get worn out, get weary","Subjuntivo","Subjunctive","Presente","Present","I get tired, am getting tired","me canse","te canses","se canse","nos cansemos","os canséis","se cansen","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got tired, was getting tired","me cansara","te cansaras","se cansara","nos cansáramos","os cansarais","se cansaran","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Subjuntivo","Subjunctive","Futuro","Future","I will get tired","me cansare","te cansares","se cansare","nos cansáremos","os cansareis","se cansaren","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten tired, got tired","me haya cansado","te hayas cansado","se haya cansado","nos hayamos cansado","os hayáis cansado","se hayan cansado","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten tired","me hubiere cansado","te hubieres cansado","se hubiere cansado","nos hubiéremos cansado","os hubiereis cansado","se hubieren cansado","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten tired","me hubiera cansado","te hubieras cansado","se hubiera cansado","nos hubiéramos cansado","os hubierais cansado","se hubieran cansado","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get tired! Don't get tired!","","cánsate","cánsese","nos cansemos","cansaos","cánsense","cansándose","getting tired","cansado","tired" +"cansarse","to get tired, get worn out, get weary","Imperativo Negativo","Imperative Negative","Presente","Present","Get tired! Don't get tired!","","no te canses","no se canse","no nos cansemos","no os canséis","no se cansen","cansándose","getting tired","cansado","tired" +"caracterizar","to characterize","Indicativo","Indicative","Presente","Present","I characterize, am characterizing","caracterizo","caracterizas","caracteriza","caracterizamos","caracterizáis","caracterizan","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Futuro","Future","I will characterize","caracterizaré","caracterizarás","caracterizará","caracterizaremos","caracterizaréis","caracterizarán","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Imperfecto","Imperfect","I was characterizing, used to characterize, characterized","caracterizaba","caracterizabas","caracterizaba","caracterizábamos","caracterizabais","caracterizaban","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Pretérito","Preterite","I characterized","caractericé","caracterizaste","caracterizó","caracterizamos","caracterizasteis","caracterizaron","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Condicional","Conditional","I would characterize","caracterizaría","caracterizarías","caracterizaría","caracterizaríamos","caracterizaríais","caracterizarían","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have characterized","he caracterizado","has caracterizado","ha caracterizado","hemos caracterizado","habéis caracterizado","han caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have characterized","habré caracterizado","habrás caracterizado","habrá caracterizado","habremos caracterizado","habréis caracterizado","habrán caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had characterized","había caracterizado","habías caracterizado","había caracterizado","habíamos caracterizado","habíais caracterizado","habían caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had characterized","hube caracterizado","hubiste caracterizado","hubo caracterizado","hubimos caracterizado","hubisteis caracterizado","hubieron caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have characterized","habría caracterizado","habrías caracterizado","habría caracterizado","habríamos caracterizado","habríais caracterizado","habrían caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caractericemos" +"caracterizar","to characterize","Subjuntivo","Subjunctive","Presente","Present","I characterize, am characterizing","caracterice","caracterices","caracterice","caractericemos","caractericéis","caractericen","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I characterized, was characterizing","caracterizara","caracterizaras","caracterizara","caracterizáramos","caracterizarais","caracterizaran","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Subjuntivo","Subjunctive","Futuro","Future","I will characterize","caracterizare","caracterizares","caracterizare","caracterizáremos","caracterizareis","caracterizaren","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have characterized, characterized","haya caracterizado","hayas caracterizado","haya caracterizado","hayamos caracterizado","hayáis caracterizado","hayan caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have characterized","hubiere caracterizado","hubieres caracterizado","hubiere caracterizado","hubiéremos caracterizado","hubiereis caracterizado","hubieren caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had characterized","hubiera caracterizado","hubieras caracterizado","hubiera caracterizado","hubiéramos caracterizado","hubierais caracterizado","hubieran caracterizado","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Characterize! Don't characterize!","","caracteriza","caracterice","caractericemos","caracterizad","caractericen","caracterizando","characterizing","caracterizado","characterized" +"caracterizar","to characterize","Imperativo Negativo","Imperative Negative","Presente","Present","Characterize! Don't characterize!","","no caracterices","no caracterice","no caractericemos","no caractericéis","no caractericen","caracterizando","characterizing","caracterizado","characterized" +"cargar","to load, load up; to charge","Indicativo","Indicative","Presente","Present","I load, am loading","cargo","cargas","carga","cargamos","cargáis","cargan","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Futuro","Future","I will load","cargaré","cargarás","cargará","cargaremos","cargaréis","cargarán","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Imperfecto","Imperfect","I was loading, used to load, loaded","cargaba","cargabas","cargaba","cargábamos","cargabais","cargaban","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Pretérito","Preterite","I loaded","cargué","cargaste","cargó","cargamos","cargasteis","cargaron","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Condicional","Conditional","I would load","cargaría","cargarías","cargaría","cargaríamos","cargaríais","cargarían","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Presente perfecto","Present Perfect","I have loaded","he cargado","has cargado","ha cargado","hemos cargado","habéis cargado","han cargado","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have loaded","habré cargado","habrás cargado","habrá cargado","habremos cargado","habréis cargado","habrán cargado","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had loaded","había cargado","habías cargado","había cargado","habíamos cargado","habíais cargado","habían cargado","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had loaded","hube cargado","hubiste cargado","hubo cargado","hubimos cargado","hubisteis cargado","hubieron cargado","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have loaded","habría cargado","habrías cargado","habría cargado","habríamos cargado","habríais cargado","habrían cargado","cargando","loading","cargado","loaded" +"carguemos" +"cargar","to load, load up; to charge","Subjuntivo","Subjunctive","Presente","Present","I load, am loading","cargue","cargues","cargue","carguemos","carguéis","carguen","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I loaded, was loading","cargara","cargaras","cargara","cargáramos","cargarais","cargaran","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Subjuntivo","Subjunctive","Futuro","Future","I will load","cargare","cargares","cargare","cargáremos","cargareis","cargaren","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have loaded, loaded","haya cargado","hayas cargado","haya cargado","hayamos cargado","hayáis cargado","hayan cargado","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have loaded","hubiere cargado","hubieres cargado","hubiere cargado","hubiéremos cargado","hubiereis cargado","hubieren cargado","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had loaded","hubiera cargado","hubieras cargado","hubiera cargado","hubiéramos cargado","hubierais cargado","hubieran cargado","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Load! Don't load!","","carga","cargue","carguemos","cargad","carguen","cargando","loading","cargado","loaded" +"cargar","to load, load up; to charge","Imperativo Negativo","Imperative Negative","Presente","Present","Load! Don't load!","","no cargues","no cargue","no carguemos","no carguéis","no carguen","cargando","loading","cargado","loaded" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Presente","Present","I marry, am marrying","caso","casas","casa","casamos","casáis","casan","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Futuro","Future","I will marry","casaré","casarás","casará","casaremos","casaréis","casarán","casando","marrying","casado","married" +"cortar","to cut","Subjuntivo","Subjunctive","Futuro","Future","I will cut","cortare","cortares","cortare","cortáremos","cortareis","cortaren","cortando","cutting","cortado","cut" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Imperfecto","Imperfect","I was marrying, used to marry, married","casaba","casabas","casaba","casábamos","casabais","casaban","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Pretérito","Preterite","I married","casé","casaste","casó","casamos","casasteis","casaron","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Condicional","Conditional","I would marry","casaría","casarías","casaría","casaríamos","casaríais","casarían","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Presente perfecto","Present Perfect","I have married","he casado","has casado","ha casado","hemos casado","habéis casado","han casado","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have married","habré casado","habrás casado","habrá casado","habremos casado","habréis casado","habrán casado","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had married","había casado","habías casado","había casado","habíamos casado","habíais casado","habían casado","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had married","hube casado","hubiste casado","hubo casado","hubimos casado","hubisteis casado","hubieron casado","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have married","habría casado","habrías casado","habría casado","habríamos casado","habríais casado","habrían casado","casando","marrying","casado","married" +"casemos" +"casar","to marry, join in marriage, join in wedlock","Subjuntivo","Subjunctive","Presente","Present","I marry, am marrying","case","cases","case","casemos","caséis","casen","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I married, was marrying","casara","casaras","casara","casáramos","casarais","casaran","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Subjuntivo","Subjunctive","Futuro","Future","I will marry","casare","casares","casare","casáremos","casareis","casaren","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have married, married","haya casado","hayas casado","haya casado","hayamos casado","hayáis casado","hayan casado","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have married","hubiere casado","hubieres casado","hubiere casado","hubiéremos casado","hubiereis casado","hubieren casado","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had married","hubiera casado","hubieras casado","hubiera casado","hubiéramos casado","hubierais casado","hubieran casado","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Marry! Don't marry!","","casa","case","casemos","casad","casen","casando","marrying","casado","married" +"casar","to marry, join in marriage, join in wedlock","Imperativo Negativo","Imperative Negative","Presente","Present","Marry! Don't marry!","","no cases","no case","no casemos","no caséis","no casen","casando","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Presente","Present","I marry, am marrying","me caso","te casas","se casa","nos casamos","os casáis","se casan","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Futuro","Future","I will marry","me casaré","te casarás","se casará","nos casaremos","os casaréis","se casarán","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Imperfecto","Imperfect","I was marrying, used to marry, married","me casaba","te casabas","se casaba","nos casábamos","os casabais","se casaban","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Pretérito","Preterite","I married","me casé","te casaste","se casó","nos casamos","os casasteis","se casaron","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Condicional","Conditional","I would marry","me casaría","te casarías","se casaría","nos casaríamos","os casaríais","se casarían","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have married","me he casado","te has casado","se ha casado","nos hemos casado","os habéis casado","se han casado","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have married","me habré casado","te habrás casado","se habrá casado","nos habremos casado","os habréis casado","se habrán casado","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had married","me había casado","te habías casado","se había casado","nos habíamos casado","os habíais casado","se habían casado","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had married","me hube casado","te hubiste casado","se hubo casado","nos hubimos casado","os hubisteis casado","se hubieron casado","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have married","me habría casado","te habrías casado","se habría casado","nos habríamos casado","os habríais casado","se habrían casado","casándose","marrying","casado","married" +"nos casemos" +"casarse","to marry [someone], get married [to someone]","Subjuntivo","Subjunctive","Presente","Present","I marry, am marrying","me case","te cases","se case","nos casemos","os caséis","se casen","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I married, was marrying","me casara","te casaras","se casara","nos casáramos","os casarais","se casaran","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Subjuntivo","Subjunctive","Futuro","Future","I will marry","me casare","te casares","se casare","nos casáremos","os casareis","se casaren","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have married, married","me haya casado","te hayas casado","se haya casado","nos hayamos casado","os hayáis casado","se hayan casado","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have married","me hubiere casado","te hubieres casado","se hubiere casado","nos hubiéremos casado","os hubiereis casado","se hubieren casado","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had married","me hubiera casado","te hubieras casado","se hubiera casado","nos hubiéramos casado","os hubierais casado","se hubieran casado","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Marry! Don't marry!","","cásate","cásese","nos casemos","casaos","cásense","casándose","marrying","casado","married" +"casarse","to marry [someone], get married [to someone]","Imperativo Negativo","Imperative Negative","Presente","Present","Marry! Don't marry!","","no te cases","no se case","no nos casemos","no os caséis","no se casen","casándose","marrying","casado","married" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Presente","Present","I punish, am punishing","castigo","castigas","castiga","castigamos","castigáis","castigan","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Futuro","Future","I will punish","castigaré","castigarás","castigará","castigaremos","castigaréis","castigarán","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Imperfecto","Imperfect","I was punishing, used to punish, punished","castigaba","castigabas","castigaba","castigábamos","castigabais","castigaban","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Pretérito","Preterite","I punished","castigué","castigaste","castigó","castigamos","castigasteis","castigaron","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Condicional","Conditional","I would punish","castigaría","castigarías","castigaría","castigaríamos","castigaríais","castigarían","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have punished","he castigado","has castigado","ha castigado","hemos castigado","habéis castigado","han castigado","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have punished","habré castigado","habrás castigado","habrá castigado","habremos castigado","habréis castigado","habrán castigado","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had punished","había castigado","habías castigado","había castigado","habíamos castigado","habíais castigado","habían castigado","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had punished","hube castigado","hubiste castigado","hubo castigado","hubimos castigado","hubisteis castigado","hubieron castigado","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have punished","habría castigado","habrías castigado","habría castigado","habríamos castigado","habríais castigado","habrían castigado","castigando","punishing","castigado","punished" +"castiguemos" +"castigar","to punish, penalize, castigate","Subjuntivo","Subjunctive","Presente","Present","I punish, am punishing","castigue","castigues","castigue","castiguemos","castiguéis","castiguen","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I punished, was punishing","castigara","castigaras","castigara","castigáramos","castigarais","castigaran","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Subjuntivo","Subjunctive","Futuro","Future","I will punish","castigare","castigares","castigare","castigáremos","castigareis","castigaren","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have punished, punished","haya castigado","hayas castigado","haya castigado","hayamos castigado","hayáis castigado","hayan castigado","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have punished","hubiere castigado","hubieres castigado","hubiere castigado","hubiéremos castigado","hubiereis castigado","hubieren castigado","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had punished","hubiera castigado","hubieras castigado","hubiera castigado","hubiéramos castigado","hubierais castigado","hubieran castigado","castigando","punishing","castigado","punished" +"castigar","to punish, penalize, castigate","Imperativo Negativo","Imperative Negative","Presente","Present","Punish! Don't punish!","","no castigues","no castigue","no castiguemos","no castiguéis","no castiguen","castigando","punishing","castigado","punished" +"causar","to cause; to create, make","Indicativo","Indicative","Presente","Present","I cause, am causing","causo","causas","causa","causamos","causáis","causan","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Futuro","Future","I will cause","causaré","causarás","causará","causaremos","causaréis","causarán","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Imperfecto","Imperfect","I was causing, used to cause, caused","causaba","causabas","causaba","causábamos","causabais","causaban","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Pretérito","Preterite","I caused","causé","causaste","causó","causamos","causasteis","causaron","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Condicional","Conditional","I would cause","causaría","causarías","causaría","causaríamos","causaríais","causarían","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Presente perfecto","Present Perfect","I have caused","he causado","has causado","ha causado","hemos causado","habéis causado","han causado","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have caused","habré causado","habrás causado","habrá causado","habremos causado","habréis causado","habrán causado","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had caused","había causado","habías causado","había causado","habíamos causado","habíais causado","habían causado","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had caused","hube causado","hubiste causado","hubo causado","hubimos causado","hubisteis causado","hubieron causado","causando","causing","causado","caused" +"causar","to cause; to create, make","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have caused","habría causado","habrías causado","habría causado","habríamos causado","habríais causado","habrían causado","causando","causing","causado","caused" +"causemos" +"causar","to cause; to create, make","Subjuntivo","Subjunctive","Presente","Present","I cause, am causing","cause","causes","cause","causemos","causéis","causen","causando","causing","causado","caused" +"causar","to cause; to create, make","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I caused, was causing","causara","causaras","causara","causáramos","causarais","causaran","causando","causing","causado","caused" +"causar","to cause; to create, make","Subjuntivo","Subjunctive","Futuro","Future","I will cause","causare","causares","causare","causáremos","causareis","causaren","causando","causing","causado","caused" +"causar","to cause; to create, make","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have caused, caused","haya causado","hayas causado","haya causado","hayamos causado","hayáis causado","hayan causado","causando","causing","causado","caused" +"causar","to cause; to create, make","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have caused","hubiere causado","hubieres causado","hubiere causado","hubiéremos causado","hubiereis causado","hubieren causado","causando","causing","causado","caused" +"causar","to cause; to create, make","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had caused","hubiera causado","hubieras causado","hubiera causado","hubiéramos causado","hubierais causado","hubieran causado","causando","causing","causado","caused" +"causar","to cause; to create, make","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cause! Don't cause!","","causa","cause","causemos","causad","causen","causando","causing","causado","caused" +"causar","to cause; to create, make","Imperativo Negativo","Imperative Negative","Presente","Present","Cause! Don't cause!","","no causes","no cause","no causemos","no causéis","no causen","causando","causing","causado","caused" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Presente","Present","I hunt, am hunting","cazo","cazas","caza","cazamos","cazáis","cazan","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Futuro","Future","I will hunt","cazaré","cazarás","cazará","cazaremos","cazaréis","cazarán","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Imperfecto","Imperfect","I was hunting, used to hunt, hunted","cazaba","cazabas","cazaba","cazábamos","cazabais","cazaban","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Pretérito","Preterite","I hunted","cacé","cazaste","cazó","cazamos","cazasteis","cazaron","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Condicional","Conditional","I would hunt","cazaría","cazarías","cazaría","cazaríamos","cazaríais","cazarían","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hunted","he cazado","has cazado","ha cazado","hemos cazado","habéis cazado","han cazado","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hunted","habré cazado","habrás cazado","habrá cazado","habremos cazado","habréis cazado","habrán cazado","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hunted","había cazado","habías cazado","había cazado","habíamos cazado","habíais cazado","habían cazado","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hunted","hube cazado","hubiste cazado","hubo cazado","hubimos cazado","hubisteis cazado","hubieron cazado","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hunted","habría cazado","habrías cazado","habría cazado","habríamos cazado","habríais cazado","habrían cazado","cazando","hunting","cazado","hunted" +"cacemos" +"cazar","to hunt, represent, stand for","Subjuntivo","Subjunctive","Presente","Present","I hunt, am hunting","cace","caces","cace","cacemos","cacéis","cacen","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hunted, was hunting","cazara","cazaras","cazara","cazáramos","cazarais","cazaran","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Subjuntivo","Subjunctive","Futuro","Future","I will hunt","cazare","cazares","cazare","cazáremos","cazareis","cazaren","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hunted, hunted","haya cazado","hayas cazado","haya cazado","hayamos cazado","hayáis cazado","hayan cazado","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hunted","hubiere cazado","hubieres cazado","hubiere cazado","hubiéremos cazado","hubiereis cazado","hubieren cazado","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hunted","hubiera cazado","hubieras cazado","hubiera cazado","hubiéramos cazado","hubierais cazado","hubieran cazado","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hunt! Don't hunt!","","caza","cace","cacemos","cazad","cacen","cazando","hunting","cazado","hunted" +"cazar","to hunt, represent, stand for","Imperativo Negativo","Imperative Negative","Presente","Present","Hunt! Don't hunt!","","no caces","no cace","no cacemos","no cacéis","no cacen","cazando","hunting","cazado","hunted" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Presente","Present","I celebrate, am celebrating","celebro","celebras","celebra","celebramos","celebráis","celebran","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Futuro","Future","I will celebrate","celebraré","celebrarás","celebrará","celebraremos","celebraréis","celebrarán","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Imperfecto","Imperfect","I was celebrating, used to celebrate, celebrated","celebraba","celebrabas","celebraba","celebrábamos","celebrabais","celebraban","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Pretérito","Preterite","I celebrated","celebré","celebraste","celebró","celebramos","celebrasteis","celebraron","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Condicional","Conditional","I would celebrate","celebraría","celebrarías","celebraría","celebraríamos","celebraríais","celebrarían","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Presente perfecto","Present Perfect","I have celebrated","he celebrado","has celebrado","ha celebrado","hemos celebrado","habéis celebrado","han celebrado","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have celebrated","habré celebrado","habrás celebrado","habrá celebrado","habremos celebrado","habréis celebrado","habrán celebrado","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had celebrated","había celebrado","habías celebrado","había celebrado","habíamos celebrado","habíais celebrado","habían celebrado","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had celebrated","hube celebrado","hubiste celebrado","hubo celebrado","hubimos celebrado","hubisteis celebrado","hubieron celebrado","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have celebrated","habría celebrado","habrías celebrado","habría celebrado","habríamos celebrado","habríais celebrado","habrían celebrado","celebrando","celebrating","celebrado","celebrated" +"celebremos" +"celebrar","to celebrate; to praise, applaud","Subjuntivo","Subjunctive","Presente","Present","I celebrate, am celebrating","celebre","celebres","celebre","celebremos","celebréis","celebren","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I celebrated, was celebrating","celebrara","celebraras","celebrara","celebráramos","celebrarais","celebraran","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Subjuntivo","Subjunctive","Futuro","Future","I will celebrate","celebrare","celebrares","celebrare","celebráremos","celebrareis","celebraren","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have celebrated, celebrated","haya celebrado","hayas celebrado","haya celebrado","hayamos celebrado","hayáis celebrado","hayan celebrado","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have celebrated","hubiere celebrado","hubieres celebrado","hubiere celebrado","hubiéremos celebrado","hubiereis celebrado","hubieren celebrado","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had celebrated","hubiera celebrado","hubieras celebrado","hubiera celebrado","hubiéramos celebrado","hubierais celebrado","hubieran celebrado","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Celebrate! Don't celebrate!","","celebra","celebre","celebremos","celebrad","celebren","celebrando","celebrating","celebrado","celebrated" +"celebrar","to celebrate; to praise, applaud","Imperativo Negativo","Imperative Negative","Presente","Present","Celebrate! Don't celebrate!","","no celebres","no celebre","no celebremos","no celebréis","no celebren","celebrando","celebrating","celebrado","celebrated" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Presente","Present","I eat supper, am eating supper","ceno","cenas","cena","cenamos","cenáis","cenan","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Futuro","Future","I will eat supper","cenaré","cenarás","cenará","cenaremos","cenaréis","cenarán","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Imperfecto","Imperfect","I was eating supper, used to eat supper, ate supper","cenaba","cenabas","cenaba","cenábamos","cenabais","cenaban","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Pretérito","Preterite","I ate supper","cené","cenaste","cenó","cenamos","cenasteis","cenaron","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Condicional","Conditional","I would eat supper","cenaría","cenarías","cenaría","cenaríamos","cenaríais","cenarían","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have eaten supper","he cenado","has cenado","ha cenado","hemos cenado","habéis cenado","han cenado","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have eaten supper","habré cenado","habrás cenado","habrá cenado","habremos cenado","habréis cenado","habrán cenado","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had eaten supper","había cenado","habías cenado","había cenado","habíamos cenado","habíais cenado","habían cenado","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had eaten supper","hube cenado","hubiste cenado","hubo cenado","hubimos cenado","hubisteis cenado","hubieron cenado","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have eaten supper","habría cenado","habrías cenado","habría cenado","habríamos cenado","habríais cenado","habrían cenado","cenando","eating supper","cenado","eaten supper" +"cenemos" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Subjuntivo","Subjunctive","Presente","Present","I eat supper, am eating supper","cene","cenes","cene","cenemos","cenéis","cenen","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ate supper, was eating supper","cenara","cenaras","cenara","cenáramos","cenarais","cenaran","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Subjuntivo","Subjunctive","Futuro","Future","I will eat supper","cenare","cenares","cenare","cenáremos","cenareis","cenaren","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have eaten supper, ate supper","haya cenado","hayas cenado","haya cenado","hayamos cenado","hayáis cenado","hayan cenado","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have eaten supper","hubiere cenado","hubieres cenado","hubiere cenado","hubiéremos cenado","hubiereis cenado","hubieren cenado","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had eaten supper","hubiera cenado","hubieras cenado","hubiera cenado","hubiéramos cenado","hubierais cenado","hubieran cenado","cenando","eating supper","cenado","eaten supper" +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Eat supper! Don't eat supper!","","cena","cene","cenemos","cenad","cenen","cenando","eating supper","cenado","eaten supper", +"cenar","to eat supper, have supper; to eat dinner, have dinner; to dine; to have for supper [or dinner]","Imperativo Negativo","Imperative Negative","Presente","Present","Eat supper! Don't eat supper!","","no cenes","no cene","no cenemos","no cenéis","no cenen","cenando","eating supper","cenado","eaten supper", +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Presente","Present","I censor, am censoring","censuro","censuras","censura","censuramos","censuráis","censuran","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Futuro","Future","I will censor","censuraré","censurarás","censurará","censuraremos","censuraréis","censurarán","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Imperfecto","Imperfect","I was censoring, used to censor, censored","censuraba","censurabas","censuraba","censurábamos","censurabais","censuraban","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Pretérito","Preterite","I censored","censuré","censuraste","censuró","censuramos","censurasteis","censuraron","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Condicional","Conditional","I would censor","censuraría","censurarías","censuraría","censuraríamos","censuraríais","censurarían","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Presente perfecto","Present Perfect","I have censored","he censurado","has censurado","ha censurado","hemos censurado","habéis censurado","han censurado","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have censored","habré censurado","habrás censurado","habrá censurado","habremos censurado","habréis censurado","habrán censurado","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had censored","había censurado","habías censurado","había censurado","habíamos censurado","habíais censurado","habían censurado","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had censored","hube censurado","hubiste censurado","hubo censurado","hubimos censurado","hubisteis censurado","hubieron censurado","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have censored","habría censurado","habrías censurado","habría censurado","habríamos censurado","habríais censurado","habrían censurado","censurando","censoring","censurado","censored" +"censuremos" +"censurar","to censor; to censure, criticize, blame","Subjuntivo","Subjunctive","Presente","Present","I censor, am censoring","censure","censures","censure","censuremos","censuréis","censuren","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I censored, was censoring","censurara","censuraras","censurara","censuráramos","censurarais","censuraran","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Subjuntivo","Subjunctive","Futuro","Future","I will censor","censurare","censurares","censurare","censuráremos","censurareis","censuraren","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have censored, censored","haya censurado","hayas censurado","haya censurado","hayamos censurado","hayáis censurado","hayan censurado","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have censored","hubiere censurado","hubieres censurado","hubiere censurado","hubiéremos censurado","hubiereis censurado","hubieren censurado","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had censored","hubiera censurado","hubieras censurado","hubiera censurado","hubiéramos censurado","hubierais censurado","hubieran censurado","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Censor! Don't censor!","","censura","censure","censuremos","censurad","censuren","censurando","censoring","censurado","censored" +"censurar","to censor; to censure, criticize, blame","Imperativo Negativo","Imperative Negative","Presente","Present","Censor! Don't censor!","","no censures","no censure","no censuremos","no censuréis","no censuren","censurando","censoring","censurado","censored" +"cepillar","to brush","Indicativo","Indicative","Presente","Present","I brush, am brushing","cepillo","cepillas","cepilla","cepillamos","cepilláis","cepillan","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Futuro","Future","I will brush","cepillaré","cepillarás","cepillará","cepillaremos","cepillaréis","cepillarán","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Imperfecto","Imperfect","I was brushing, used to brush, brushed","cepillaba","cepillabas","cepillaba","cepillábamos","cepillabais","cepillaban","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Pretérito","Preterite","I brushed","cepillé","cepillaste","cepilló","cepillamos","cepillasteis","cepillaron","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Condicional","Conditional","I would brush","cepillaría","cepillarías","cepillaría","cepillaríamos","cepillaríais","cepillarían","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Presente perfecto","Present Perfect","I have brushed","he cepillado","has cepillado","ha cepillado","hemos cepillado","cepilléis cepillado","han cepillado","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have brushed","cepillré cepillado","cepillrás cepillado","cepillrá cepillado","cepillremos cepillado","cepillréis cepillado","cepillrán cepillado","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had brushed","cepillía cepillado","cepillías cepillado","cepillía cepillado","cepillíamos cepillado","cepillíais cepillado","cepillían cepillado","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had brushed","hube cepillado","hubiste cepillado","hubo cepillado","hubimos cepillado","hubisteis cepillado","hubieron cepillado","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have brushed","cepillría cepillado","cepillrías cepillado","cepillría cepillado","cepillríamos cepillado","cepillríais cepillado","cepillrían cepillado","cepillando","brushing","cepillado","brushed" +"cepillemos" +"cepillar","to brush","Subjuntivo","Subjunctive","Presente","Present","I brush, am brushing","cepille","cepilles","cepille","cepillemos","cepilléis","cepillen","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I brushed, was brushing","cepillara","cepillaras","cepillara","cepilláramos","cepillarais","cepillaran","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Subjuntivo","Subjunctive","Futuro","Future","I will brush","cepillare","cepillares","cepillare","cepilláremos","cepillareis","cepillaren","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have brushed, brushed","haya cepillado","hayas cepillado","haya cepillado","hayamos cepillado","hayáis cepillado","hayan cepillado","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have brushed","hubiere cepillado","hubieres cepillado","hubiere cepillado","hubiéremos cepillado","hubiereis cepillado","hubieren cepillado","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had brushed","hubiera cepillado","hubieras cepillado","hubiera cepillado","hubiéramos cepillado","hubierais cepillado","hubieran cepillado","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Brush! Don't brush!","","cepilla","cepille","cepillemos","cepillad","cepillen","cepillando","brushing","cepillado","brushed" +"cepillar","to brush","Imperativo Negativo","Imperative Negative","Presente","Present","Brush! Don't brush!","","no cepilles","no cepille","no cepillemos","no cepilléis","no cepillen","cepillando","brushing","cepillado","brushed" +"cerrar","to close, shut","Indicativo","Indicative","Presente","Present","I close, am closing","cierro","cierras","cierra","cerramos","cerráis","cierran","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Futuro","Future","I will close","cerraré","cerrarás","cerrará","cerraremos","cerraréis","cerrarán","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Imperfecto","Imperfect","I was closing, used to close, closed","cerraba","cerrabas","cerraba","cerrábamos","cerrabais","cerraban","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Pretérito","Preterite","I closed","cerré","cerraste","cerró","cerramos","cerrasteis","cerraron","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Condicional","Conditional","I would close","cerraría","cerrarías","cerraría","cerraríamos","cerraríais","cerrarían","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Presente perfecto","Present Perfect","I have closed","he cerrado","has cerrado","ha cerrado","hemos cerrado","habéis cerrado","han cerrado","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have closed","habré cerrado","habrás cerrado","habrá cerrado","habremos cerrado","habréis cerrado","habrán cerrado","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had closed","había cerrado","habías cerrado","había cerrado","habíamos cerrado","habíais cerrado","habían cerrado","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had closed","hube cerrado","hubiste cerrado","hubo cerrado","hubimos cerrado","hubisteis cerrado","hubieron cerrado","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have closed","habría cerrado","habrías cerrado","habría cerrado","habríamos cerrado","habríais cerrado","habrían cerrado","cerrando","closing","cerrado","closed" +"cerremos" +"cerrar","to close, shut","Subjuntivo","Subjunctive","Presente","Present","I close, am closing","cierre","cierres","cierre","cerremos","cerréis","cierren","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I closed, was closing","cerrara","cerraras","cerrara","cerráramos","cerrarais","cerraran","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Subjuntivo","Subjunctive","Futuro","Future","I will close","cerrare","cerrares","cerrare","cerráremos","cerrareis","cerraren","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have closed, closed","haya cerrado","hayas cerrado","haya cerrado","hayamos cerrado","hayáis cerrado","hayan cerrado","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have closed","hubiere cerrado","hubieres cerrado","hubiere cerrado","hubiéremos cerrado","hubiereis cerrado","hubieren cerrado","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had closed","hubiera cerrado","hubieras cerrado","hubiera cerrado","hubiéramos cerrado","hubierais cerrado","hubieran cerrado","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Close! Don't close!","","cierra","cierre","cerremos","cerrad","cierren","cerrando","closing","cerrado","closed" +"cerrar","to close, shut","Imperativo Negativo","Imperative Negative","Presente","Present","Close! Don't close!","","no cierres","no cierre","no cerremos","no cerréis","no cierren","cerrando","closing","cerrado","closed" +"cesar","to cease, stop","Indicativo","Indicative","Presente","Present","I cease, am ceasing","ceso","cesas","cesa","cesamos","cesáis","cesan","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Futuro","Future","I will cease","cesaré","cesarás","cesará","cesaremos","cesaréis","cesarán","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Imperfecto","Imperfect","I was ceasing, used to cease, ceased","cesaba","cesabas","cesaba","cesábamos","cesabais","cesaban","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Pretérito","Preterite","I ceased","cesé","cesaste","cesó","cesamos","cesasteis","cesaron","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Condicional","Conditional","I would cease","cesaría","cesarías","cesaría","cesaríamos","cesaríais","cesarían","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Presente perfecto","Present Perfect","I have ceased","he cesado","has cesado","ha cesado","hemos cesado","habéis cesado","han cesado","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have ceased","habré cesado","habrás cesado","habrá cesado","habremos cesado","habréis cesado","habrán cesado","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had ceased","había cesado","habías cesado","había cesado","habíamos cesado","habíais cesado","habían cesado","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had ceased","hube cesado","hubiste cesado","hubo cesado","hubimos cesado","hubisteis cesado","hubieron cesado","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have ceased","habría cesado","habrías cesado","habría cesado","habríamos cesado","habríais cesado","habrían cesado","cesando","ceasing","cesado","ceased" +"cesemos" +"cesar","to cease, stop","Subjuntivo","Subjunctive","Presente","Present","I cease, am ceasing","cese","ceses","cese","cesemos","ceséis","cesen","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ceased, was ceasing","cesara","cesaras","cesara","cesáramos","cesarais","cesaran","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Subjuntivo","Subjunctive","Futuro","Future","I will cease","cesare","cesares","cesare","cesáremos","cesareis","cesaren","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have ceased, ceased","haya cesado","hayas cesado","haya cesado","hayamos cesado","hayáis cesado","hayan cesado","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have ceased","hubiere cesado","hubieres cesado","hubiere cesado","hubiéremos cesado","hubiereis cesado","hubieren cesado","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had ceased","hubiera cesado","hubieras cesado","hubiera cesado","hubiéramos cesado","hubierais cesado","hubieran cesado","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cease! Don't cease!","","cesa","cese","cesemos","cesad","cesen","cesando","ceasing","cesado","ceased" +"cesar","to cease, stop","Imperativo Negativo","Imperative Negative","Presente","Present","Cease! Don't cease!","","no ceses","no cese","no cesemos","no ceséis","no cesen","cesando","ceasing","cesado","ceased" +"charlar","to chat, talk","Indicativo","Indicative","Presente","Present","I chat, am chatting","charlo","charlas","charla","charlamos","charláis","charlan","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Futuro","Future","I will chat","charlaré","charlarás","charlará","charlaremos","charlaréis","charlarán","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Imperfecto","Imperfect","I was chatting, used to chat, chatted","charlaba","charlabas","charlaba","charlábamos","charlabais","charlaban","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Pretérito","Preterite","I chatted","charlé","charlaste","charló","charlamos","charlasteis","charlaron","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Condicional","Conditional","I would chat","charlaría","charlarías","charlaría","charlaríamos","charlaríais","charlarían","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Presente perfecto","Present Perfect","I have chatted","he charlado","has charlado","ha charlado","hemos charlado","habéis charlado","han charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have chatted","habré charlado","habrás charlado","habrá charlado","habremos charlado","habréis charlado","habrán charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had chatted","había charlado","habías charlado","había charlado","habíamos charlado","habíais charlado","habían charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had chatted","hube charlado","hubiste charlado","hubo charlado","hubimos charlado","hubisteis charlado","hubieron charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have chatted","habría charlado","habrías charlado","habría charlado","habríamos charlado","habríais charlado","habrían charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I chatted, was chatting","charlara","charlaras","charlara","charláramos","charlarais","charlaran","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Subjuntivo","Subjunctive","Futuro","Future","I will chat","charlare","charlares","charlare","charláremos","charlareis","charlaren","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have chatted, chatted","haya charlado","hayas charlado","haya charlado","hayamos charlado","hayáis charlado","hayan charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have chatted","hubiere charlado","hubieres charlado","hubiere charlado","hubiéremos charlado","hubiereis charlado","hubieren charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had chatted","hubiera charlado","hubieras charlado","hubiera charlado","hubiéramos charlado","hubierais charlado","hubieran charlado","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Chat! Don't chat!","","charla","charle","cesemos","charlad","charlen","charlando","chatting","charlado","chatted" +"charlar","to chat, talk","Imperativo Negativo","Imperative Negative","Presente","Present","Chat! Don't chat!","","no charles","no charle","no cesemos","no charléis","no charlen","charlando","chatting","charlado","chatted" +"chismear","to gossip","Indicativo","Indicative","Presente","Present","I gossip, am gossiping","chismeo","chismeas","chismea","chismeamos","chismeáis","chismean","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Futuro","Future","I will gossip","chismearé","chismearás","chismeará","chismearemos","chismearéis","chismearán","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Imperfecto","Imperfect","I was gossiping, used to gossip, gossiped","chismeaba","chismeabas","chismeaba","chismeábamos","chismeabais","chismeaban","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Pretérito","Preterite","I gossiped","chismeé","chismeaste","chismeó","chismeamos","chismeasteis","chismearon","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Condicional","Conditional","I would gossip","chismearía","chismearías","chismearía","chismearíamos","chismearíais","chismearían","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gossiped","he chismeado","has chismeado","ha chismeado","hemos chismeado","habéis chismeado","han chismeado","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gossiped","habré chismeado","habrás chismeado","habrá chismeado","habremos chismeado","habréis chismeado","habrán chismeado","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gossiped","había chismeado","habías chismeado","había chismeado","habíamos chismeado","habíais chismeado","habían chismeado","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gossiped","hube chismeado","hubiste chismeado","hubo chismeado","hubimos chismeado","hubisteis chismeado","hubieron chismeado","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gossiped","habría chismeado","habrías chismeado","habría chismeado","habríamos chismeado","habríais chismeado","habrían chismeado","chismeando","gossiping","chismeado","gossiped" +"chismeemos" +"chismear","to gossip","Subjuntivo","Subjunctive","Presente","Present","I gossip, am gossiping","chismee","chismees","chismee","chismeemos","chismeéis","chismeen","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I gossiped, was gossiping","chismeara","chismearas","chismeara","chismeáramos","chismearais","chismearan","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Subjuntivo","Subjunctive","Futuro","Future","I will gossip","chismeare","chismeares","chismeare","chismeáremos","chismeareis","chismearen","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gossiped, gossiped","haya chismeado","hayas chismeado","haya chismeado","hayamos chismeado","hayáis chismeado","hayan chismeado","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gossiped","hubiere chismeado","hubieres chismeado","hubiere chismeado","hubiéremos chismeado","hubiereis chismeado","hubieren chismeado","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gossiped","hubiera chismeado","hubieras chismeado","hubiera chismeado","hubiéramos chismeado","hubierais chismeado","hubieran chismeado","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Gossip! Don't gossip!","","chismea","chismee","chismeemos","chismead","chismeen","chismeando","gossiping","chismeado","gossiped" +"chismear","to gossip","Imperativo Negativo","Imperative Negative","Presente","Present","Gossip! Don't gossip!","","no chismees","no chismee","no chismeemos","no chismeéis","no chismeen","chismeando","gossiping","chismeado","gossiped" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Presente","Present","I shock, am shocking","choco","chocas","choca","chocamos","chocáis","chocan","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Futuro","Future","I will shock","chocaré","chocarás","chocará","chocaremos","chocaréis","chocarán","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Imperfecto","Imperfect","I was shocking, used to shock, shocked","chocaba","chocabas","chocaba","chocábamos","chocabais","chocaban","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Pretérito","Preterite","I shocked","choqué","chocaste","chocó","chocamos","chocasteis","chocaron","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Condicional","Conditional","I would shock","chocaría","chocarías","chocaría","chocaríamos","chocaríais","chocarían","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shocked","he chocado","has chocado","ha chocado","hemos chocado","habéis chocado","han chocado","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shocked","habré chocado","habrás chocado","habrá chocado","habremos chocado","habréis chocado","habrán chocado","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shocked","había chocado","habías chocado","había chocado","habíamos chocado","habíais chocado","habían chocado","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shocked","hube chocado","hubiste chocado","hubo chocado","hubimos chocado","hubisteis chocado","hubieron chocado","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shocked","habría chocado","habrías chocado","habría chocado","habríamos chocado","habríais chocado","habrían chocado","chocando","shocking","chocado","shocked" +"choquemos" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Subjuntivo","Subjunctive","Presente","Present","I shock, am shocking","choque","choques","choque","choquemos","choquéis","choquen","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shocked, was shocking","chocara","chocaras","chocara","chocáramos","chocarais","chocaran","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Subjuntivo","Subjunctive","Futuro","Future","I will shock","chocare","chocares","chocare","chocáremos","chocareis","chocaren","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shocked, shocked","haya chocado","hayas chocado","haya chocado","hayamos chocado","hayáis chocado","hayan chocado","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shocked","hubiere chocado","hubieres chocado","hubiere chocado","hubiéremos chocado","hubiereis chocado","hubieren chocado","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shocked","hubiera chocado","hubieras chocado","hubiera chocado","hubiéramos chocado","hubierais chocado","hubieran chocado","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Shock! Don't shock!","","choca","choque","choquemos","chocad","choquen","chocando","shocking","chocado","shocked" +"chocar","to shock; to startle; to be suprising, startling; to collide, crash","Imperativo Negativo","Imperative Negative","Presente","Present","Shock! Don't shock!","","no choques","no choque","no choquemos","no choquéis","no choquen","chocando","shocking","chocado","shocked" +"civilizar","to civilize","Indicativo","Indicative","Presente","Present","I civilize, am civilizing","civilizo","civilizas","civiliza","civilizamos","civilizáis","civilizan","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Futuro","Future","I will civilize","civilizaré","civilizarás","civilizará","civilizaremos","civilizaréis","civilizarán","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Imperfecto","Imperfect","I was civilizing, used to civilize, civilized","civilizaba","civilizabas","civilizaba","civilizábamos","civilizabais","civilizaban","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Pretérito","Preterite","I civilized","civilicé","civilizaste","civilizó","civilizamos","civilizasteis","civilizaron","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Condicional","Conditional","I would civilize","civilizaría","civilizarías","civilizaría","civilizaríamos","civilizaríais","civilizarían","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have civilized","he civilizado","has civilizado","ha civilizado","hemos civilizado","habéis civilizado","han civilizado","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have civilized","habré civilizado","habrás civilizado","habrá civilizado","habremos civilizado","habréis civilizado","habrán civilizado","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had civilized","había civilizado","habías civilizado","había civilizado","habíamos civilizado","habíais civilizado","habían civilizado","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had civilized","hube civilizado","hubiste civilizado","hubo civilizado","hubimos civilizado","hubisteis civilizado","hubieron civilizado","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have civilized","habría civilizado","habrías civilizado","habría civilizado","habríamos civilizado","habríais civilizado","habrían civilizado","civilizando","civilizing","civilizado","civilized" +"civilicemos" +"civilizar","to civilize","Subjuntivo","Subjunctive","Presente","Present","I civilize, am civilizing","civilice","civilices","civilice","civilicemos","civilicéis","civilicen","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I civilized, was civilizing","civilizara","civilizaras","civilizara","civilizáramos","civilizarais","civilizaran","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Subjuntivo","Subjunctive","Futuro","Future","I will civilize","civilizare","civilizares","civilizare","civilizáremos","civilizareis","civilizaren","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have civilized, civilized","haya civilizado","hayas civilizado","haya civilizado","hayamos civilizado","hayáis civilizado","hayan civilizado","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have civilized","hubiere civilizado","hubieres civilizado","hubiere civilizado","hubiéremos civilizado","hubiereis civilizado","hubieren civilizado","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had civilized","hubiera civilizado","hubieras civilizado","hubiera civilizado","hubiéramos civilizado","hubierais civilizado","hubieran civilizado","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Civilize! Don't civilize!","","civiliza","civilice","civilicemos","civilizad","civilicen","civilizando","civilizing","civilizado","civilized" +"civilizar","to civilize","Imperativo Negativo","Imperative Negative","Presente","Present","Civilize! Don't civilize!","","no civilices","no civilice","no civilicemos","no civilicéis","no civilicen","civilizando","civilizing","civilizado","civilized" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Presente","Present","I clarify, am clarifying","clarifico","clarificas","clarifica","clarificamos","clarificáis","clarifican","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Futuro","Future","I will clarify","clarificaré","clarificarás","clarificará","clarificaremos","clarificaréis","clarificarán","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Imperfecto","Imperfect","I was clarifying, used to clarify, clarified","clarificaba","clarificabas","clarificaba","clarificábamos","clarificabais","clarificaban","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Pretérito","Preterite","I clarified","clarifiqué","clarificaste","clarificó","clarificamos","clarificasteis","clarificaron","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Condicional","Conditional","I would clarify","clarificaría","clarificarías","clarificaría","clarificaríamos","clarificaríais","clarificarían","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Presente perfecto","Present Perfect","I have clarified","he clarificado","has clarificado","ha clarificado","hemos clarificado","habéis clarificado","han clarificado","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have clarified","habré clarificado","habrás clarificado","habrá clarificado","habremos clarificado","habréis clarificado","habrán clarificado","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had clarified","había clarificado","habías clarificado","había clarificado","habíamos clarificado","habíais clarificado","habían clarificado","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had clarified","hube clarificado","hubiste clarificado","hubo clarificado","hubimos clarificado","hubisteis clarificado","hubieron clarificado","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have clarified","habría clarificado","habrías clarificado","habría clarificado","habríamos clarificado","habríais clarificado","habrían clarificado","clarificando","clarifying","clarificado","clarified" +"clarifiquemos" +"clarificar","to clarify, illuminate, light [up], brighten","Subjuntivo","Subjunctive","Presente","Present","I clarify, am clarifying","clarifique","clarifiques","clarifique","clarifiquemos","clarifiquéis","clarifiquen","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I clarified, was clarifying","clarificara","clarificaras","clarificara","clarificáramos","clarificarais","clarificaran","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Subjuntivo","Subjunctive","Futuro","Future","I will clarify","clarificare","clarificares","clarificare","clarificáremos","clarificareis","clarificaren","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have clarified, clarified","haya clarificado","hayas clarificado","haya clarificado","hayamos clarificado","hayáis clarificado","hayan clarificado","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have clarified","hubiere clarificado","hubieres clarificado","hubiere clarificado","hubiéremos clarificado","hubiereis clarificado","hubieren clarificado","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had clarified","hubiera clarificado","hubieras clarificado","hubiera clarificado","hubiéramos clarificado","hubierais clarificado","hubieran clarificado","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Clarify! Don't clarify!","","clarifica","clarifique","clarifiquemos","clarificad","clarifiquen","clarificando","clarifying","clarificado","clarified" +"clarificar","to clarify, illuminate, light [up], brighten","Imperativo Negativo","Imperative Negative","Presente","Present","Clarify! Don't clarify!","","no clarifiques","no clarifique","no clarifiquemos","no clarifiquéis","no clarifiquen","clarificando","clarifying","clarificado","clarified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Presente","Present","I classify, am classifying","clasifico","clasificas","clasifica","clasificamos","clasificáis","clasifican","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Futuro","Future","I will classify","clasificaré","clasificarás","clasificará","clasificaremos","clasificaréis","clasificarán","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Imperfecto","Imperfect","I was classifying, used to classify, classified","clasificaba","clasificabas","clasificaba","clasificábamos","clasificabais","clasificaban","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Pretérito","Preterite","I classified","clasifiqué","clasificaste","clasificó","clasificamos","clasificasteis","clasificaron","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Condicional","Conditional","I would classify","clasificaría","clasificarías","clasificaría","clasificaríamos","clasificaríais","clasificarían","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Presente perfecto","Present Perfect","I have classified","he clasificado","has clasificado","ha clasificado","hemos clasificado","habéis clasificado","han clasificado","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have classified","habré clasificado","habrás clasificado","habrá clasificado","habremos clasificado","habréis clasificado","habrán clasificado","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had classified","había clasificado","habías clasificado","había clasificado","habíamos clasificado","habíais clasificado","habían clasificado","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had classified","hube clasificado","hubiste clasificado","hubo clasificado","hubimos clasificado","hubisteis clasificado","hubieron clasificado","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have classified","habría clasificado","habrías clasificado","habría clasificado","habríamos clasificado","habríais clasificado","habrían clasificado","clasificando","classifying","clasificado","classified" +"clasifiquemos" +"clasificar","to classify, grade, rate, sort","Subjuntivo","Subjunctive","Presente","Present","I classify, am classifying","clasifique","clasifiques","clasifique","clasifiquemos","clasifiquéis","clasifiquen","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I classified, was classifying","clasificara","clasificaras","clasificara","clasificáramos","clasificarais","clasificaran","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Subjuntivo","Subjunctive","Futuro","Future","I will classify","clasificare","clasificares","clasificare","clasificáremos","clasificareis","clasificaren","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have classified, classified","haya clasificado","hayas clasificado","haya clasificado","hayamos clasificado","hayáis clasificado","hayan clasificado","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have classified","hubiere clasificado","hubieres clasificado","hubiere clasificado","hubiéremos clasificado","hubiereis clasificado","hubieren clasificado","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had classified","hubiera clasificado","hubieras clasificado","hubiera clasificado","hubiéramos clasificado","hubierais clasificado","hubieran clasificado","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Classify! Don't classify!","","clasifica","clasifique","clasifiquemos","clasificad","clasifiquen","clasificando","classifying","clasificado","classified" +"clasificar","to classify, grade, rate, sort","Imperativo Negativo","Imperative Negative","Presente","Present","Classify! Don't classify!","","no clasifiques","no clasifique","no clasifiquemos","no clasifiquéis","no clasifiquen","clasificando","classifying","clasificado","classified" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Presente","Present","I charge, am charging","cobro","cobras","cobra","cobramos","cobráis","cobran","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Futuro","Future","I will charge","cobraré","cobrarás","cobrará","cobraremos","cobraréis","cobrarán","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Imperfecto","Imperfect","I was charging, used to charge, charged","cobraba","cobrabas","cobraba","cobrábamos","cobrabais","cobraban","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Pretérito","Preterite","I charged","cobré","cobraste","cobró","cobramos","cobrasteis","cobraron","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Condicional","Conditional","I would charge","cobraría","cobrarías","cobraría","cobraríamos","cobraríais","cobrarían","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have charged","he cobrado","has cobrado","ha cobrado","hemos cobrado","habéis cobrado","han cobrado","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have charged","habré cobrado","habrás cobrado","habrá cobrado","habremos cobrado","habréis cobrado","habrán cobrado","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had charged","había cobrado","habías cobrado","había cobrado","habíamos cobrado","habíais cobrado","habían cobrado","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had charged","hube cobrado","hubiste cobrado","hubo cobrado","hubimos cobrado","hubisteis cobrado","hubieron cobrado","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have charged","habría cobrado","habrías cobrado","habría cobrado","habríamos cobrado","habríais cobrado","habrían cobrado","cobrando","charging","cobrado","charged" +"cobremos" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Subjuntivo","Subjunctive","Presente","Present","I charge, am charging","cobre","cobres","cobre","cobremos","cobréis","cobren","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I charged, was charging","cobrara","cobraras","cobrara","cobráramos","cobrarais","cobraran","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Subjuntivo","Subjunctive","Futuro","Future","I will charge","cobrare","cobrares","cobrare","cobráremos","cobrareis","cobraren","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have charged, charged","haya cobrado","hayas cobrado","haya cobrado","hayamos cobrado","hayáis cobrado","hayan cobrado","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have charged","hubiere cobrado","hubieres cobrado","hubiere cobrado","hubiéremos cobrado","hubiereis cobrado","hubieren cobrado","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had charged","hubiera cobrado","hubieras cobrado","hubiera cobrado","hubiéramos cobrado","hubierais cobrado","hubieran cobrado","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Charge! Don't charge!","","cobra","cobre","cobremos","cobrad","cobren","cobrando","charging","cobrado","charged" +"cobrar","to charge [a price]; to cash [a check]; to collect, receive [an amount]","Imperativo Negativo","Imperative Negative","Presente","Present","Charge! Don't charge!","","no cobres","no cobre","no cobremos","no cobréis","no cobren","cobrando","charging","cobrado","charged" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Presente","Present","I cook, am cooking","cocino","cocinas","cocina","cocinamos","cocináis","cocinan","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Futuro","Future","I will cook","cocinaré","cocinarás","cocinará","cocinaremos","cocinaréis","cocinarán","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Imperfecto","Imperfect","I was cooking, used to cook, cooked","cocinaba","cocinabas","cocinaba","cocinábamos","cocinabais","cocinaban","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Pretérito","Preterite","I cooked","cociné","cocinaste","cocinó","cocinamos","cocinasteis","cocinaron","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Condicional","Conditional","I would cook","cocinaría","cocinarías","cocinaría","cocinaríamos","cocinaríais","cocinarían","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cooked","he cocinado","has cocinado","ha cocinado","hemos cocinado","habéis cocinado","han cocinado","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cooked","habré cocinado","habrás cocinado","habrá cocinado","habremos cocinado","habréis cocinado","habrán cocinado","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cooked","había cocinado","habías cocinado","había cocinado","habíamos cocinado","habíais cocinado","habían cocinado","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cooked","hube cocinado","hubiste cocinado","hubo cocinado","hubimos cocinado","hubisteis cocinado","hubieron cocinado","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cooked","habría cocinado","habrías cocinado","habría cocinado","habríamos cocinado","habríais cocinado","habrían cocinado","cocinando","cooking","cocinado","cooked" +"cocinemos" +"cocinar","to cook; to do the cooking","Subjuntivo","Subjunctive","Presente","Present","I cook, am cooking","cocine","cocines","cocine","cocinemos","cocinéis","cocinen","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cooked, was cooking","cocinara","cocinaras","cocinara","cocináramos","cocinarais","cocinaran","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Subjuntivo","Subjunctive","Futuro","Future","I will cook","cocinare","cocinares","cocinare","cocináremos","cocinareis","cocinaren","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cooked, cooked","haya cocinado","hayas cocinado","haya cocinado","hayamos cocinado","hayáis cocinado","hayan cocinado","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cooked","hubiere cocinado","hubieres cocinado","hubiere cocinado","hubiéremos cocinado","hubiereis cocinado","hubieren cocinado","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cooked","hubiera cocinado","hubieras cocinado","hubiera cocinado","hubiéramos cocinado","hubierais cocinado","hubieran cocinado","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cook! Don't cook!","","cocina","cocine","cocinemos","cocinad","cocinen","cocinando","cooking","cocinado","cooked" +"cocinar","to cook; to do the cooking","Imperativo Negativo","Imperative Negative","Presente","Present","Cook! Don't cook!","","no cocines","no cocine","no cocinemos","no cocinéis","no cocinen","cocinando","cooking","cocinado","cooked" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Presente","Present","I catch, am catching","cojo","coges","coge","cogemos","cogéis","cogen","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Futuro","Future","I will catch","cogeré","cogerás","cogerá","cogeremos","cogeréis","cogerán","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Imperfecto","Imperfect","I was catching, used to catch, caught","cogía","cogías","cogía","cogíamos","cogíais","cogían","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Pretérito","Preterite","I caught","cogí","cogiste","cogió","cogimos","cogisteis","cogieron","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Condicional","Conditional","I would catch","cogería","cogerías","cogería","cogeríamos","cogeríais","cogerían","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Presente perfecto","Present Perfect","I have caught","he cogido","has cogido","ha cogido","hemos cogido","habéis cogido","han cogido","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have caught","habré cogido","habrás cogido","habrá cogido","habremos cogido","habréis cogido","habrán cogido","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had caught","había cogido","habías cogido","había cogido","habíamos cogido","habíais cogido","habían cogido","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had caught","hube cogido","hubiste cogido","hubo cogido","hubimos cogido","hubisteis cogido","hubieron cogido","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have caught","habría cogido","habrías cogido","habría cogido","habríamos cogido","habríais cogido","habrían cogido","cogiendo","catching","cogido","caught" +"cojamos" +"coger","to catch, grasp, take hold of","Subjuntivo","Subjunctive","Presente","Present","I catch, am catching","coja","cojas","coja","cojamos","cojáis","cojan","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I caught, was catching","cogiera","cogieras","cogiera","cogiéramos","cogierais","cogieran","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Subjuntivo","Subjunctive","Futuro","Future","I will catch","cogiere","cogieres","cogiere","cogiéremos","cogiereis","cogieren","cogiendo","catching","cogido","caught" +"comer","to eat","Indicativo","Indicative","Presente perfecto","Present Perfect","I have eaten","he comido","has comido","ha comido","hemos comido","habéis comido","han comido","comiendo","eating","comido","eaten" +"coger","to catch, grasp, take hold of","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have caught, caught","haya cogido","hayas cogido","haya cogido","hayamos cogido","hayáis cogido","hayan cogido","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have caught","hubiere cogido","hubieres cogido","hubiere cogido","hubiéremos cogido","hubiereis cogido","hubieren cogido","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had caught","hubiera cogido","hubieras cogido","hubiera cogido","hubiéramos cogido","hubierais cogido","hubieran cogido","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Catch! Don't catch!","","coge","coja","cojamos","coged","cojan","cogiendo","catching","cogido","caught" +"coger","to catch, grasp, take hold of","Imperativo Negativo","Imperative Negative","Presente","Present","Catch! Don't catch!","","no cojas","no coja","no cojamos","no cojáis","no cojan","cogiendo","catching","cogido","caught" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Presente","Present","I hang, am hanging","cuelgo","cuelgas","cuelga","colgamos","colgáis","cuelgan","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Futuro","Future","I will hang","colgaré","colgarás","colgará","colgaremos","colgaréis","colgarán","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Imperfecto","Imperfect","I was hanging, used to hang, hung","colgaba","colgabas","colgaba","colgábamos","colgabais","colgaban","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Pretérito","Preterite","I hung","colgué","colgaste","colgó","colgamos","colgasteis","colgaron","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Condicional","Conditional","I would hang","colgaría","colgarías","colgaría","colgaríamos","colgaríais","colgarían","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hung","he colgado","has colgado","ha colgado","hemos colgado","habéis colgado","han colgado","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hung","habré colgado","habrás colgado","habrá colgado","habremos colgado","habréis colgado","habrán colgado","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hung","había colgado","habías colgado","había colgado","habíamos colgado","habíais colgado","habían colgado","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hung","hube colgado","hubiste colgado","hubo colgado","hubimos colgado","hubisteis colgado","hubieron colgado","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hung","habría colgado","habrías colgado","habría colgado","habríamos colgado","habríais colgado","habrían colgado","colgando","hanging","colgado","hung" +"colguemos" +"colgar","to hang, hang up, be hanging, be suspended","Subjuntivo","Subjunctive","Presente","Present","I hang, am hanging","cuelgue","cuelgues","cuelgue","colguemos","colguéis","cuelguen","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hung, was hanging","colgara","colgaras","colgara","colgáramos","colgarais","colgaran","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Subjuntivo","Subjunctive","Futuro","Future","I will hang","colgare","colgares","colgare","colgáremos","colgareis","colgaren","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hung, hung","haya colgado","hayas colgado","haya colgado","hayamos colgado","hayáis colgado","hayan colgado","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hung","hubiere colgado","hubieres colgado","hubiere colgado","hubiéremos colgado","hubiereis colgado","hubieren colgado","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hung","hubiera colgado","hubieras colgado","hubiera colgado","hubiéramos colgado","hubierais colgado","hubieran colgado","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","hang! Don't hang!","","cuelga","cuelgue","colguemos","colgad","cuelguen","colgando","hanging","colgado","hung" +"colgar","to hang, hang up, be hanging, be suspended","Imperativo Negativo","Imperative Negative","Presente","Present","hang! Don't hang!","","no cuelgues","no cuelgue","no colguemos","no colguéis","no cuelguen","colgando","hanging","colgado","hung" +"colocar","to locate, place","Indicativo","Indicative","Presente","Present","I locate, am locating","coloco","colocas","coloca","colocamos","colocáis","colocan","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Futuro","Future","I will locate","colocaré","colocarás","colocará","colocaremos","colocaréis","colocarán","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Imperfecto","Imperfect","I was locating, used to locate, located","colocaba","colocabas","colocaba","colocábamos","colocabais","colocaban","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Pretérito","Preterite","I located","coloqué","colocaste","colocó","colocamos","colocasteis","colocaron","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Condicional","Conditional","I would locate","colocaría","colocarías","colocaría","colocaríamos","colocaríais","colocarían","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Presente perfecto","Present Perfect","I have located","he colocado","has colocado","ha colocado","hemos colocado","habéis colocado","han colocado","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have located","habré colocado","habrás colocado","habrá colocado","habremos colocado","habréis colocado","habrán colocado","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had located","había colocado","habías colocado","había colocado","habíamos colocado","habíais colocado","habían colocado","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had located","hube colocado","hubiste colocado","hubo colocado","hubimos colocado","hubisteis colocado","hubieron colocado","colocando","locating","colocado","located" +"colocar","to locate, place","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have located","habría colocado","habrías colocado","habría colocado","habríamos colocado","habríais colocado","habrían colocado","colocando","locating","colocado","located" +"coloquemos" +"colocar","to locate, place","Subjuntivo","Subjunctive","Presente","Present","I locate, am locating","coloque","coloques","coloque","coloquemos","coloquéis","coloquen","colocando","locating","colocado","located" +"colocar","to locate, place","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I located, was locating","colocara","colocaras","colocara","colocáramos","colocarais","colocaran","colocando","locating","colocado","located" +"colocar","to locate, place","Subjuntivo","Subjunctive","Futuro","Future","I will locate","colocare","colocares","colocare","colocáremos","colocareis","colocaren","colocando","locating","colocado","located" +"colocar","to locate, place","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have located, located","haya colocado","hayas colocado","haya colocado","hayamos colocado","hayáis colocado","hayan colocado","colocando","locating","colocado","located" +"colocar","to locate, place","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have located","hubiere colocado","hubieres colocado","hubiere colocado","hubiéremos colocado","hubiereis colocado","hubieren colocado","colocando","locating","colocado","located" +"colocar","to locate, place","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had located","hubiera colocado","hubieras colocado","hubiera colocado","hubiéramos colocado","hubierais colocado","hubieran colocado","colocando","locating","colocado","located" +"colocar","to locate, place","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Locate! Don't locate!","","coloca","coloque","coloquemos","colocad","coloquen","colocando","locating","colocado","located" +"colocar","to locate, place","Imperativo Negativo","Imperative Negative","Presente","Present","Locate! Don't locate!","","no coloques","no coloque","no coloquemos","no coloquéis","no coloquen","colocando","locating","colocado","located" +"colonizar","to colonize, settle","Indicativo","Indicative","Presente","Present","I colonize, am colonizing","colonizo","colonizas","coloniza","colonizamos","colonizáis","colonizan","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Futuro","Future","I will colonize","colonizaré","colonizarás","colonizará","colonizaremos","colonizaréis","colonizarán","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Imperfecto","Imperfect","I was colonizing, used to colonize, colonized","colonizaba","colonizabas","colonizaba","colonizábamos","colonizabais","colonizaban","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Pretérito","Preterite","I colonized","colonicé","colonizaste","colonizó","colonizamos","colonizasteis","colonizaron","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Condicional","Conditional","I would colonize","colonizaría","colonizarías","colonizaría","colonizaríamos","colonizaríais","colonizarían","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Presente perfecto","Present Perfect","I have colonized","he colonizado","has colonizado","ha colonizado","hemos colonizado","habéis colonizado","han colonizado","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have colonized","habré colonizado","habrás colonizado","habrá colonizado","habremos colonizado","habréis colonizado","habrán colonizado","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had colonized","había colonizado","habías colonizado","había colonizado","habíamos colonizado","habíais colonizado","habían colonizado","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had colonized","hube colonizado","hubiste colonizado","hubo colonizado","hubimos colonizado","hubisteis colonizado","hubieron colonizado","colonizando","colonizing","colonizado","colonized" +"comprar","to buy, purchase","Indicativo","Indicative","Futuro","Future","I will buy","compraré","comprarás","comprará","compraremos","compraréis","comprarán","comprando","buying","comprado","bought" +"colonizar","to colonize, settle","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have colonized","habría colonizado","habrías colonizado","habría colonizado","habríamos colonizado","habríais colonizado","habrían colonizado","colonizando","colonizing","colonizado","colonized" +"colonicemos" +"colonizar","to colonize, settle","Subjuntivo","Subjunctive","Presente","Present","I colonize, am colonizing","colonice","colonices","colonice","colonicemos","colonicéis","colonicen","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I colonized, was colonizing","colonizara","colonizaras","colonizara","colonizáramos","colonizarais","colonizaran","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Subjuntivo","Subjunctive","Futuro","Future","I will colonize","colonizare","colonizares","colonizare","colonizáremos","colonizareis","colonizaren","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have colonized, colonized","haya colonizado","hayas colonizado","haya colonizado","hayamos colonizado","hayáis colonizado","hayan colonizado","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have colonized","hubiere colonizado","hubieres colonizado","hubiere colonizado","hubiéremos colonizado","hubiereis colonizado","hubieren colonizado","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had colonized","hubiera colonizado","hubieras colonizado","hubiera colonizado","hubiéramos colonizado","hubierais colonizado","hubieran colonizado","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Colonize! Don't colonize!","","coloniza","colonice","colonicemos","colonizad","colonicen","colonizando","colonizing","colonizado","colonized" +"colonizar","to colonize, settle","Imperativo Negativo","Imperative Negative","Presente","Present","Colonize! Don't colonize!","","no colonices","no colonice","no colonicemos","no colonicéis","no colonicen","colonizando","colonizing","colonizado","colonized" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Presente","Present","I combat, am combating","combato","combates","combate","combatimos","combatís","combaten","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Futuro","Future","I will combat","combatiré","combatirás","combatirá","combatiremos","combatiréis","combatirán","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Imperfecto","Imperfect","I was combating, used to combat, combated","combatía","combatías","combatía","combatíamos","combatíais","combatían","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Pretérito","Preterite","I combated","combatí","combatiste","combatió","combatimos","combatisteis","combatieron","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Condicional","Conditional","I would combat","combatiría","combatirías","combatiría","combatiríamos","combatiríais","combatirían","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Presente perfecto","Present Perfect","I have combated","he combatido","has combatido","ha combatido","hemos combatido","habéis combatido","han combatido","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have combated","habré combatido","habrás combatido","habrá combatido","habremos combatido","habréis combatido","habrán combatido","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had combated","había combatido","habías combatido","había combatido","habíamos combatido","habíais combatido","habían combatido","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had combated","hube combatido","hubiste combatido","hubo combatido","hubimos combatido","hubisteis combatido","hubieron combatido","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have combated","habría combatido","habrías combatido","habría combatido","habríamos combatido","habríais combatido","habrían combatido","combatiendo","combating","combatido","combated" +"combatamos" +"combatir","to combat, fight, oppose; to attack","Subjuntivo","Subjunctive","Presente","Present","I combat, am combating","combata","combatas","combata","combatamos","combatáis","combatan","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I combated, was combating","combatiera","combatieras","combatiera","combatiéramos","combatierais","combatieran","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Subjuntivo","Subjunctive","Futuro","Future","I will combat","combatiere","combatieres","combatiere","combatiéremos","combatiereis","combatieren","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have combated, combated","haya combatido","hayas combatido","haya combatido","hayamos combatido","hayáis combatido","hayan combatido","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have combated","hubiere combatido","hubieres combatido","hubiere combatido","hubiéremos combatido","hubiereis combatido","hubieren combatido","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had combated","hubiera combatido","hubieras combatido","hubiera combatido","hubiéramos combatido","hubierais combatido","hubieran combatido","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Combat! Don't combat!","","combate","combata","combatamos","combatid","combatan","combatiendo","combating","combatido","combated" +"combatir","to combat, fight, oppose; to attack","Imperativo Negativo","Imperative Negative","Presente","Present","Combat! Don't combat!","","no combatas","no combata","no combatamos","no combatáis","no combatan","combatiendo","combating","combatido","combated" +"comenzar","to begin, start, commence","Indicativo","Indicative","Presente","Present","I begin, am beginning","comienzo","comienzas","comienza","comenzamos","comenzáis","comienzan","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Futuro","Future","I will begin","comenzaré","comenzarás","comenzará","comenzaremos","comenzaréis","comenzarán","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Imperfecto","Imperfect","I was beginning, used to begin, began","comenzaba","comenzabas","comenzaba","comenzábamos","comenzabais","comenzaban","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Pretérito","Preterite","I began","comencé","comenzaste","comenzó","comenzamos","comenzasteis","comenzaron","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Condicional","Conditional","I would begin","comenzaría","comenzarías","comenzaría","comenzaríamos","comenzaríais","comenzarían","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Presente perfecto","Present Perfect","I have begun","he comenzado","has comenzado","ha comenzado","hemos comenzado","habéis comenzado","han comenzado","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have begun","habré comenzado","habrás comenzado","habrá comenzado","habremos comenzado","habréis comenzado","habrán comenzado","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had begun","había comenzado","habías comenzado","había comenzado","habíamos comenzado","habíais comenzado","habían comenzado","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had begun","hube comenzado","hubiste comenzado","hubo comenzado","hubimos comenzado","hubisteis comenzado","hubieron comenzado","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have begun","habría comenzado","habrías comenzado","habría comenzado","habríamos comenzado","habríais comenzado","habrían comenzado","comenzando","beginning","comenzado","begun" +"comencemos" +"comenzar","to begin, start, commence","Subjuntivo","Subjunctive","Presente","Present","I begin, am beginning","comience","comiences","comience","comencemos","comencéis","comiencen","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I began, was beginning","comenzara","comenzaras","comenzara","comenzáramos","comenzarais","comenzaran","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Subjuntivo","Subjunctive","Futuro","Future","I will begin","comenzare","comenzares","comenzare","comenzáremos","comenzareis","comenzaren","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have begun, began","haya comenzado","hayas comenzado","haya comenzado","hayamos comenzado","hayáis comenzado","hayan comenzado","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have begun","hubiere comenzado","hubieres comenzado","hubiere comenzado","hubiéremos comenzado","hubiereis comenzado","hubieren comenzado","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had begun","hubiera comenzado","hubieras comenzado","hubiera comenzado","hubiéramos comenzado","hubierais comenzado","hubieran comenzado","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Begin! Don't begin!","","comienza","comience","comencemos","comenzad","comiencen","comenzando","beginning","comenzado","begun" +"comenzar","to begin, start, commence","Imperativo Negativo","Imperative Negative","Presente","Present","Begin! Don't begin!","","no comiences","no comience","no comencemos","no comencéis","no comiencen","comenzando","beginning","comenzado","begun" +"comer","to eat","Indicativo","Indicative","Presente","Present","I eat, am eating","como","comes","come","comemos","coméis","comen","comiendo","eating","comido","eaten" +"comer","to eat","Indicativo","Indicative","Futuro","Future","I will eat","comeré","comerás","comerá","comeremos","comeréis","comerán","comiendo","eating","comido","eaten" +"comer","to eat","Indicativo","Indicative","Imperfecto","Imperfect","I was eating, used to eat, ate","comía","comías","comía","comíamos","comíais","comían","comiendo","eating","comido","eaten" +"comer","to eat","Indicativo","Indicative","Pretérito","Preterite","I ate","comí","comiste","comió","comimos","comisteis","comieron","comiendo","eating","comido","eaten" +"comer","to eat","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have eaten","habré comido","habrás comido","habrá comido","habremos comido","habréis comido","habrán comido","comiendo","eating","comido","eaten" +"comer","to eat","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had eaten","había comido","habías comido","había comido","habíamos comido","habíais comido","habían comido","comiendo","eating","comido","eaten" +"comer","to eat","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had eaten","hube comido","hubiste comido","hubo comido","hubimos comido","hubisteis comido","hubieron comido","comiendo","eating","comido","eaten" +"comer","to eat","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have eaten","habría comido","habrías comido","habría comido","habríamos comido","habríais comido","habrían comido","comiendo","eating","comido","eaten" +"comamos" +"comer","to eat","Subjuntivo","Subjunctive","Presente","Present","I eat, am eating","coma","comas","coma","comamos","comáis","coman","comiendo","eating","comido","eaten" +"comer","to eat","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ate, was eating","comiera","comieras","comiera","comiéramos","comierais","comieran","comiendo","eating","comido","eaten" +"comer","to eat","Subjuntivo","Subjunctive","Futuro","Future","I will eat","comiere","comieres","comiere","comiéremos","comiereis","comieren","comiendo","eating","comido","eaten" +"comer","to eat","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have eaten, ate","haya comido","hayas comido","haya comido","hayamos comido","hayáis comido","hayan comido","comiendo","eating","comido","eaten" +"comer","to eat","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have eaten","hubiere comido","hubieres comido","hubiere comido","hubiéremos comido","hubiereis comido","hubieren comido","comiendo","eating","comido","eaten" +"comer","to eat","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had eaten","hubiera comido","hubieras comido","hubiera comido","hubiéramos comido","hubierais comido","hubieran comido","comiendo","eating","comido","eaten" +"comer","to eat","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Eat! Don't eat!","","come","coma","comamos","comed","coman","comiendo","eating","comido","eaten" +"comer","to eat","Imperativo Negativo","Imperative Negative","Presente","Present","Eat! Don't eat!","","no comas","no coma","no comamos","no comáis","no coman","comiendo","eating","comido","eaten" +"competir","to compete","Indicativo","Indicative","Presente","Present","I compete, am competing","compito","compites","compite","competimos","competís","compiten","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Futuro","Future","I will compete","competiré","competirás","competirá","competiremos","competiréis","competirán","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Imperfecto","Imperfect","I was competing, used to compete, competed","competía","competías","competía","competíamos","competíais","competían","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Pretérito","Preterite","I competed","competí","competiste","compitió","competimos","competisteis","compitieron","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Condicional","Conditional","I would compete","competiría","competirías","competiría","competiríamos","competiríais","competirían","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Presente perfecto","Present Perfect","I have competed","he competido","has competido","ha competido","hemos competido","habéis competido","han competido","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have competed","habré competido","habrás competido","habrá competido","habremos competido","habréis competido","habrán competido","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had competed","había competido","habías competido","había competido","habíamos competido","habíais competido","habían competido","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had competed","hube competido","hubiste competido","hubo competido","hubimos competido","hubisteis competido","hubieron competido","compitiendo","competing","competido","competed" +"competir","to compete","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have competed","habría competido","habrías competido","habría competido","habríamos competido","habríais competido","habrían competido","compitiendo","competing","competido","competed" +"compitamos" +"competir","to compete","Subjuntivo","Subjunctive","Presente","Present","I compete, am competing","compita","compitas","compita","compitamos","compitáis","compitan","compitiendo","competing","competido","competed" +"competir","to compete","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I competed, was competing","compitiera","compitieras","compitiera","compitiéramos","compitierais","compitieran","compitiendo","competing","competido","competed" +"competir","to compete","Subjuntivo","Subjunctive","Futuro","Future","I will compete","compitiere","compitieres","compitiere","compitiéremos","compitiereis","compitieren","compitiendo","competing","competido","competed" +"competir","to compete","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have competed, competed","haya competido","hayas competido","haya competido","hayamos competido","hayáis competido","hayan competido","compitiendo","competing","competido","competed" +"competir","to compete","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have competed","hubiere competido","hubieres competido","hubiere competido","hubiéremos competido","hubiereis competido","hubieren competido","compitiendo","competing","competido","competed" +"competir","to compete","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had competed","hubiera competido","hubieras competido","hubiera competido","hubiéramos competido","hubierais competido","hubieran competido","compitiendo","competing","competido","competed" +"competir","to compete","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Compete! Don't compete!","","compite","compita","compitamos","competid","compitan","compitiendo","competing","competido","competed" +"competir","to compete","Imperativo Negativo","Imperative Negative","Presente","Present","Compete! Don't compete!","","no compitas","no compita","no compitamos","no compitáis","no compitan","compitiendo","competing","competido","competed" +"componer","to compose, make up, put together","Indicativo","Indicative","Presente","Present","I compose, am composing","compongo","compones","compone","componemos","componéis","componen","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Futuro","Future","I will compose","compondré","compondrás","compondrá","compondremos","compondréis","compondrán","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Imperfecto","Imperfect","I was composing, used to compose, composed","componía","componías","componía","componíamos","componíais","componían","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Pretérito","Preterite","I composed","compuse","compusiste","compuso","compusimos","compusisteis","compusieron","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Condicional","Conditional","I would compose","compondría","compondrías","compondría","compondríamos","compondríais","compondrían","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Presente perfecto","Present Perfect","I have composed","he compuesto","has compuesto","ha compuesto","hemos compuesto","habéis compuesto","han compuesto","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have composed","habré compuesto","habrás compuesto","habrá compuesto","habremos compuesto","habréis compuesto","habrán compuesto","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had composed","había compuesto","habías compuesto","había compuesto","habíamos compuesto","habíais compuesto","habían compuesto","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had composed","hube compuesto","hubiste compuesto","hubo compuesto","hubimos compuesto","hubisteis compuesto","hubieron compuesto","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have composed","habría compuesto","habrías compuesto","habría compuesto","habríamos compuesto","habríais compuesto","habrían compuesto","componiendo","composing","compuesto","composed" +"compongamos" +"componer","to compose, make up, put together","Subjuntivo","Subjunctive","Presente","Present","I compose, am composing","componga","compongas","componga","compongamos","compongáis","compongan","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I composed, was composing","compusiera","compusieras","compusiera","compusiéramos","compusierais","compusieran","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Subjuntivo","Subjunctive","Futuro","Future","I will compose","compusiere","compusieres","compusiere","compusiéremos","compusiereis","compusieren","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have composed, composed","haya compuesto","hayas compuesto","haya compuesto","hayamos compuesto","hayáis compuesto","hayan compuesto","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have composed","hubiere compuesto","hubieres compuesto","hubiere compuesto","hubiéremos compuesto","hubiereis compuesto","hubieren compuesto","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had composed","hubiera compuesto","hubieras compuesto","hubiera compuesto","hubiéramos compuesto","hubierais compuesto","hubieran compuesto","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Compose! Don't compose!","","compón","componga","compongamos","componed","compongan","componiendo","composing","compuesto","composed" +"componer","to compose, make up, put together","Imperativo Negativo","Imperative Negative","Presente","Present","Compose! Don't compose!","","no compongas","no componga","no compongamos","no compongáis","no compongan","componiendo","composing","compuesto","composed" +"comprar","to buy, purchase","Indicativo","Indicative","Presente","Present","I buy, am buying","compro","compras","compra","compramos","compráis","compran","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Imperfecto","Imperfect","I was buying, used to buy, bought","compraba","comprabas","compraba","comprábamos","comprabais","compraban","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Pretérito","Preterite","I bought","compré","compraste","compró","compramos","comprasteis","compraron","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Condicional","Conditional","I would buy","compraría","comprarías","compraría","compraríamos","compraríais","comprarían","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Presente perfecto","Present Perfect","I have bought","he comprado","has comprado","ha comprado","hemos comprado","habéis comprado","han comprado","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have bought","habré comprado","habrás comprado","habrá comprado","habremos comprado","habréis comprado","habrán comprado","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had bought","había comprado","habías comprado","había comprado","habíamos comprado","habíais comprado","habían comprado","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had bought","hube comprado","hubiste comprado","hubo comprado","hubimos comprado","hubisteis comprado","hubieron comprado","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have bought","habría comprado","habrías comprado","habría comprado","habríamos comprado","habríais comprado","habrían comprado","comprando","buying","comprado","bought" +"compremos" +"comprar","to buy, purchase","Subjuntivo","Subjunctive","Presente","Present","I buy, am buying","compre","compres","compre","compremos","compréis","compren","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I bought, was buying","comprara","compraras","comprara","compráramos","comprarais","compraran","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Subjuntivo","Subjunctive","Futuro","Future","I will buy","comprare","comprares","comprare","compráremos","comprareis","compraren","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have bought, bought","haya comprado","hayas comprado","haya comprado","hayamos comprado","hayáis comprado","hayan comprado","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have bought","hubiere comprado","hubieres comprado","hubiere comprado","hubiéremos comprado","hubiereis comprado","hubieren comprado","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had bought","hubiera comprado","hubieras comprado","hubiera comprado","hubiéramos comprado","hubierais comprado","hubieran comprado","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Buy! Don't buy!","","compra","compre","compremos","comprad","compren","comprando","buying","comprado","bought" +"comprar","to buy, purchase","Imperativo Negativo","Imperative Negative","Presente","Present","Buy! Don't buy!","","no compres","no compre","no compremos","no compréis","no compren","comprando","buying","comprado","bought" +"comprender","to understand, comprehend","Indicativo","Indicative","Presente","Present","I understand, am understanding","comprendo","comprendes","comprende","comprendemos","comprendéis","comprenden","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Futuro","Future","I will understand","comprenderé","comprenderás","comprenderá","comprenderemos","comprenderéis","comprenderán","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Imperfecto","Imperfect","I was understanding, used to understand, understood","comprendía","comprendías","comprendía","comprendíamos","comprendíais","comprendían","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Pretérito","Preterite","I understood","comprendí","comprendiste","comprendió","comprendimos","comprendisteis","comprendieron","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Condicional","Conditional","I would understand","comprendería","comprenderías","comprendería","comprenderíamos","comprenderíais","comprenderían","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have understood","he comprendido","has comprendido","ha comprendido","hemos comprendido","habéis comprendido","han comprendido","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have understood","habré comprendido","habrás comprendido","habrá comprendido","habremos comprendido","habréis comprendido","habrán comprendido","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had understood","había comprendido","habías comprendido","había comprendido","habíamos comprendido","habíais comprendido","habían comprendido","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had understood","hube comprendido","hubiste comprendido","hubo comprendido","hubimos comprendido","hubisteis comprendido","hubieron comprendido","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have understood","habría comprendido","habrías comprendido","habría comprendido","habríamos comprendido","habríais comprendido","habrían comprendido","comprendiendo","understanding","comprendido","understood" +"comprendamos" +"comprender","to understand, comprehend","Subjuntivo","Subjunctive","Presente","Present","I understand, am understanding","comprenda","comprendas","comprenda","comprendamos","comprendáis","comprendan","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I understood, was understanding","comprendiera","comprendieras","comprendiera","comprendiéramos","comprendierais","comprendieran","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Subjuntivo","Subjunctive","Futuro","Future","I will understand","comprendiere","comprendieres","comprendiere","comprendiéremos","comprendiereis","comprendieren","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have understood, understood","haya comprendido","hayas comprendido","haya comprendido","hayamos comprendido","hayáis comprendido","hayan comprendido","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have understood","hubiere comprendido","hubieres comprendido","hubiere comprendido","hubiéremos comprendido","hubiereis comprendido","hubieren comprendido","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had understood","hubiera comprendido","hubieras comprendido","hubiera comprendido","hubiéramos comprendido","hubierais comprendido","hubieran comprendido","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Understand! Don't understand!","","comprende","comprenda","comprendamos","comprended","comprendan","comprendiendo","understanding","comprendido","understood" +"comprender","to understand, comprehend","Imperativo Negativo","Imperative Negative","Presente","Present","Understand! Don't understand!","","no comprendas","no comprenda","no comprendamos","no comprendáis","no comprendan","comprendiendo","understanding","comprendido","understood" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Presente","Present","I communicate, am communicating","comunico","comunicas","comunica","comunicamos","comunicáis","comunican","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Futuro","Future","I will communicate","comunicaré","comunicarás","comunicará","comunicaremos","comunicaréis","comunicarán","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Imperfecto","Imperfect","I was communicating, used to communicate, communicated","comunicaba","comunicabas","comunicaba","comunicábamos","comunicabais","comunicaban","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Pretérito","Preterite","I communicated","comuniqué","comunicaste","comunicó","comunicamos","comunicasteis","comunicaron","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Condicional","Conditional","I would communicate","comunicaría","comunicarías","comunicaría","comunicaríamos","comunicaríais","comunicarían","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Presente perfecto","Present Perfect","I have communicated","he comunicado","has comunicado","ha comunicado","hemos comunicado","habéis comunicado","han comunicado","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have communicated","habré comunicado","habrás comunicado","habrá comunicado","habremos comunicado","habréis comunicado","habrán comunicado","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had communicated","había comunicado","habías comunicado","había comunicado","habíamos comunicado","habíais comunicado","habían comunicado","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had communicated","hube comunicado","hubiste comunicado","hubo comunicado","hubimos comunicado","hubisteis comunicado","hubieron comunicado","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have communicated","habría comunicado","habrías comunicado","habría comunicado","habríamos comunicado","habríais comunicado","habrían comunicado","comunicando","communicating","comunicado","communicated" +"comuniquemos" +"comunicar","to communicate, transmit, tell, pass on","Subjuntivo","Subjunctive","Presente","Present","I communicate, am communicating","comunique","comuniques","comunique","comuniquemos","comuniquéis","comuniquen","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I communicated, was communicating","comunicara","comunicaras","comunicara","comunicáramos","comunicarais","comunicaran","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Subjuntivo","Subjunctive","Futuro","Future","I will communicate","comunicare","comunicares","comunicare","comunicáremos","comunicareis","comunicaren","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have communicated, communicated","haya comunicado","hayas comunicado","haya comunicado","hayamos comunicado","hayáis comunicado","hayan comunicado","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have communicated","hubiere comunicado","hubieres comunicado","hubiere comunicado","hubiéremos comunicado","hubiereis comunicado","hubieren comunicado","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had communicated","hubiera comunicado","hubieras comunicado","hubiera comunicado","hubiéramos comunicado","hubierais comunicado","hubieran comunicado","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","communicate! Don't communicate!","","comunica","comunique","comuniquemos","comunicad","comuniquen","comunicando","communicating","comunicado","communicated" +"comunicar","to communicate, transmit, tell, pass on","Imperativo Negativo","Imperative Negative","Presente","Present","communicate! Don't communicate!","","no comuniques","no comunique","no comuniquemos","no comuniquéis","no comuniquen","comunicando","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Presente","Present","I communicate, am communicating","me comunico","te comunicas","se comunica","nos comunicamos","os comunicáis","se comunican","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Futuro","Future","I will communicate","me comunicaré","te comunicarás","se comunicará","nos comunicaremos","os comunicaréis","se comunicarán","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Imperfecto","Imperfect","I was communicating, used to communicate, communicated","me comunicaba","te comunicabas","se comunicaba","nos comunicábamos","os comunicabais","se comunicaban","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Pretérito","Preterite","I communicated","me comuniqué","te comunicaste","se comunicó","nos comunicamos","os comunicasteis","se comunicaron","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Condicional","Conditional","I would communicate","me comunicaría","te comunicarías","se comunicaría","nos comunicaríamos","os comunicaríais","se comunicarían","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Presente perfecto","Present Perfect","I have communicated","me he comunicado","te has comunicado","se ha comunicado","nos hemos comunicado","os habéis comunicado","se han comunicado","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have communicated","me habré comunicado","te habrás comunicado","se habrá comunicado","nos habremos comunicado","os habréis comunicado","se habrán comunicado","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had communicated","me había comunicado","te habías comunicado","se había comunicado","nos habíamos comunicado","os habíais comunicado","se habían comunicado","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had communicated","me hube comunicado","te hubiste comunicado","se hubo comunicado","nos hubimos comunicado","os hubisteis comunicado","se hubieron comunicado","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have communicated","me habría comunicado","te habrías comunicado","se habría comunicado","nos habríamos comunicado","os habríais comunicado","se habrían comunicado","comunicándose","communicating","comunicado","communicated" +"nos comuniquemos" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Subjuntivo","Subjunctive","Presente","Present","I communicate, am communicating","me comunique","te comuniques","se comunique","nos comuniquemos","os comuniquéis","se comuniquen","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I communicated, was communicating","me comunicara","te comunicaras","se comunicara","nos comunicáramos","os comunicarais","se comunicaran","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Subjuntivo","Subjunctive","Futuro","Future","I will communicate","me comunicare","te comunicares","se comunicare","nos comunicáremos","os comunicareis","se comunicaren","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have communicated, communicated","me haya comunicado","te hayas comunicado","se haya comunicado","nos hayamos comunicado","os hayáis comunicado","se hayan comunicado","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have communicated","me hubiere comunicado","te hubieres comunicado","se hubiere comunicado","nos hubiéremos comunicado","os hubiereis comunicado","se hubieren comunicado","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had communicated","me hubiera comunicado","te hubieras comunicado","se hubiera comunicado","nos hubiéramos comunicado","os hubierais comunicado","se hubieran comunicado","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Communicate! Don't communicate!","","comunícate","comuníquese","nos comuniquemos","comunicaos","comuníquense","comunicándose","communicating","comunicado","communicated" +"comunicarse","to communicate [e.g., with someone], be in touch, correspond; to be transmitted","Imperativo Negativo","Imperative Negative","Presente","Present","Communicate! Don't communicate!","","no te comuniques","no se comunique","no nos comuniquemos","no os comuniquéis","no se comuniquen","comunicándose","communicating","comunicado","communicated" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Presente","Present","I condemn, am condemning","condeno","condenas","condena","condenamos","condenáis","condenan","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Futuro","Future","I will condemn","condenaré","condenarás","condenará","condenaremos","condenaréis","condenarán","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Imperfecto","Imperfect","I was condemning, used to condemn, condemned","condenaba","condenabas","condenaba","condenábamos","condenabais","condenaban","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Pretérito","Preterite","I condemned","condené","condenaste","condenó","condenamos","condenasteis","condenaron","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Condicional","Conditional","I would condemn","condenaría","condenarías","condenaría","condenaríamos","condenaríais","condenarían","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Presente perfecto","Present Perfect","I have condemned","he condenado","has condenado","ha condenado","hemos condenado","habéis condenado","han condenado","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have condemned","habré condenado","habrás condenado","habrá condenado","habremos condenado","habréis condenado","habrán condenado","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had condemned","había condenado","habías condenado","había condenado","habíamos condenado","habíais condenado","habían condenado","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had condemned","hube condenado","hubiste condenado","hubo condenado","hubimos condenado","hubisteis condenado","hubieron condenado","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have condemned","habría condenado","habrías condenado","habría condenado","habríamos condenado","habríais condenado","habrían condenado","condenando","condemning","condenado","condemned" +"condenemos" +"condenar","to condemn, convict, sentence","Subjuntivo","Subjunctive","Presente","Present","I condemn, am condemning","condene","condenes","condene","condenemos","condenéis","condenen","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I condemned, was condemning","condenara","condenaras","condenara","condenáramos","condenarais","condenaran","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Subjuntivo","Subjunctive","Futuro","Future","I will condemn","condenare","condenares","condenare","condenáremos","condenareis","condenaren","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have condemned, condemned","haya condenado","hayas condenado","haya condenado","hayamos condenado","hayáis condenado","hayan condenado","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have condemned","hubiere condenado","hubieres condenado","hubiere condenado","hubiéremos condenado","hubiereis condenado","hubieren condenado","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had condemned","hubiera condenado","hubieras condenado","hubiera condenado","hubiéramos condenado","hubierais condenado","hubieran condenado","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Condemn! Don't condemn!","","condena","condene","condenemos","condenad","condenen","condenando","condemning","condenado","condemned" +"condenar","to condemn, convict, sentence","Imperativo Negativo","Imperative Negative","Presente","Present","Condemn! Don't condemn!","","no condenes","no condene","no condenemos","no condenéis","no condenen","condenando","condemning","condenado","condemned" +"conducir","to drive, conduct","Indicativo","Indicative","Presente","Present","I drive, am driving","conduzco","conduces","conduce","conducimos","conducís","conducen","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Futuro","Future","I will drive","conduciré","conducirás","conducirá","conduciremos","conduciréis","conducirán","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Imperfecto","Imperfect","I was driving, used to drive, drove","conducía","conducías","conducía","conducíamos","conducíais","conducían","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Pretérito","Preterite","I drove","conduje","condujiste","condujo","condujimos","condujisteis","condujeron","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Condicional","Conditional","I would drive","conduciría","conducirías","conduciría","conduciríamos","conduciríais","conducirían","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Presente perfecto","Present Perfect","I have driven","he conducido","has conducido","ha conducido","hemos conducido","habéis conducido","han conducido","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have driven","habré conducido","habrás conducido","habrá conducido","habremos conducido","habréis conducido","habrán conducido","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had driven","había conducido","habías conducido","había conducido","habíamos conducido","habíais conducido","habían conducido","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had driven","hube conducido","hubiste conducido","hubo conducido","hubimos conducido","hubisteis conducido","hubieron conducido","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have driven","habría conducido","habrías conducido","habría conducido","habríamos conducido","habríais conducido","habrían conducido","conduciendo","driving","conducido","driven" +"conduzcamos" +"conducir","to drive, conduct","Subjuntivo","Subjunctive","Presente","Present","I drive, am driving","conduzca","conduzcas","conduzca","conduzcamos","conduzcáis","conduzcan","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I drove, was driving","condujera","condujeras","condujera","condujéramos","condujerais","condujeran","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Subjuntivo","Subjunctive","Futuro","Future","I will drive","condujere","condujeres","condujere","condujéremos","condujereis","condujeren","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have driven, drove","haya conducido","hayas conducido","haya conducido","hayamos conducido","hayáis conducido","hayan conducido","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have driven","hubiere conducido","hubieres conducido","hubiere conducido","hubiéremos conducido","hubiereis conducido","hubieren conducido","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had driven","hubiera conducido","hubieras conducido","hubiera conducido","hubiéramos conducido","hubierais conducido","hubieran conducido","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Drive! Don't drive!","","conduce","conduzca","conduzcamos","conducid","conduzcan","conduciendo","driving","conducido","driven" +"conducir","to drive, conduct","Imperativo Negativo","Imperative Negative","Presente","Present","Drive! Don't drive!","","no conduzcas","no conduzca","no conduzcamos","no conduzcáis","no conduzcan","conduciendo","driving","conducido","driven" +"confesar","to confess","Indicativo","Indicative","Presente","Present","I confess, am confessing","confieso","confiesas","confiesa","confesamos","confesáis","confiesan","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Futuro","Future","I will confess","confesaré","confesarás","confesará","confesaremos","confesaréis","confesarán","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Imperfecto","Imperfect","I was confessing, used to confess, confessed","confesaba","confesabas","confesaba","confesábamos","confesabais","confesaban","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Pretérito","Preterite","I confessed","confesé","confesaste","confesó","confesamos","confesasteis","confesaron","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Condicional","Conditional","I would confess","confesaría","confesarías","confesaría","confesaríamos","confesaríais","confesarían","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Presente perfecto","Present Perfect","I have confessed","he confesado","has confesado","ha confesado","hemos confesado","habéis confesado","han confesado","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have confessed","habré confesado","habrás confesado","habrá confesado","habremos confesado","habréis confesado","habrán confesado","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had confessed","había confesado","habías confesado","había confesado","habíamos confesado","habíais confesado","habían confesado","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had confessed","hube confesado","hubiste confesado","hubo confesado","hubimos confesado","hubisteis confesado","hubieron confesado","confesando","confessing","confesado","confessed" +"confesar","to confess","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have confessed","habría confesado","habrías confesado","habría confesado","habríamos confesado","habríais confesado","habrían confesado","confesando","confessing","confesado","confessed" +"confesemos" +"confesar","to confess","Subjuntivo","Subjunctive","Presente","Present","I confess, am confessing","confiese","confieses","confiese","confesemos","confeséis","confiesen","confesando","confessing","confesado","confessed" +"confesar","to confess","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I confessed, was confessing","confesara","confesaras","confesara","confesáramos","confesarais","confesaran","confesando","confessing","confesado","confessed" +"confesar","to confess","Subjuntivo","Subjunctive","Futuro","Future","I will confess","confesare","confesares","confesare","confesáremos","confesareis","confesaren","confesando","confessing","confesado","confessed" +"confesar","to confess","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have confessed, confessed","haya confesado","hayas confesado","haya confesado","hayamos confesado","hayáis confesado","hayan confesado","confesando","confessing","confesado","confessed" +"confesar","to confess","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have confessed","hubiere confesado","hubieres confesado","hubiere confesado","hubiéremos confesado","hubiereis confesado","hubieren confesado","confesando","confessing","confesado","confessed" +"confesar","to confess","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had confessed","hubiera confesado","hubieras confesado","hubiera confesado","hubiéramos confesado","hubierais confesado","hubieran confesado","confesando","confessing","confesado","confessed" +"confesar","to confess","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Confess! Don't confess!","","confiesa","confiese","confesemos","confesad","confiesen","confesando","confessing","confesado","confessed" +"confesar","to confess","Imperativo Negativo","Imperative Negative","Presente","Present","Confess! Don't confess!","","no confieses","no confiese","no confesemos","no confeséis","no confiesen","confesando","confessing","confesado","confessed" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Presente","Present","I trust, am trusting","confío","confías","confía","confiamos","confiáis","confían","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Futuro","Future","I will trust","confiaré","confiarás","confiará","confiaremos","confiaréis","confiarán","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Imperfecto","Imperfect","I was trusting, used to trust, trusted","confiaba","confiabas","confiaba","confiábamos","confiabais","confiaban","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Pretérito","Preterite","I trusted","confié","confiaste","confió","confiamos","confiasteis","confiaron","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Condicional","Conditional","I would trust","confiaría","confiarías","confiaría","confiaríamos","confiaríais","confiarían","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Presente perfecto","Present Perfect","I have trusted","he confiado","has confiado","ha confiado","hemos confiado","habéis confiado","han confiado","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have trusted","habré confiado","habrás confiado","habrá confiado","habremos confiado","habréis confiado","habrán confiado","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had trusted","había confiado","habías confiado","había confiado","habíamos confiado","habíais confiado","habían confiado","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had trusted","hube confiado","hubiste confiado","hubo confiado","hubimos confiado","hubisteis confiado","hubieron confiado","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have trusted","habría confiado","habrías confiado","habría confiado","habríamos confiado","habríais confiado","habrían confiado","confiando","trusting","confiado","trusted" +"confiemos" +"confiar","to trust, be trusting, entrust","Subjuntivo","Subjunctive","Presente","Present","I trust, am trusting","confíe","confíes","confíe","confiemos","confiéis","confíen","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I trusted, was trusting","confiara","confiaras","confiara","confiáramos","confiarais","confiaran","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Subjuntivo","Subjunctive","Futuro","Future","I will trust","confiare","confiares","confiare","confiáremos","confiareis","confiaren","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have trusted, trusted","haya confiado","hayas confiado","haya confiado","hayamos confiado","hayáis confiado","hayan confiado","confiando","trusting","confiado","trusted" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Futuro","Future","I will conquer","conquistaré","conquistarás","conquistará","conquistaremos","conquistaréis","conquistarán","conquistando","conquering","conquistado","conquered" +"confiar","to trust, be trusting, entrust","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have trusted","hubiere confiado","hubieres confiado","hubiere confiado","hubiéremos confiado","hubiereis confiado","hubieren confiado","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had trusted","hubiera confiado","hubieras confiado","hubiera confiado","hubiéramos confiado","hubierais confiado","hubieran confiado","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Trust! Don't trust!","","confía","confíe","confiemos","confiad","confíen","confiando","trusting","confiado","trusted" +"confiar","to trust, be trusting, entrust","Imperativo Negativo","Imperative Negative","Presente","Present","Trust! Don't trust!","","no confíes","no confíe","no confiemos","no confiéis","no confíen","confiando","trusting","confiado","trusted" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Presente","Present","I confirm, am confirming","confirmo","confirmas","confirma","confirmamos","confirmáis","confirman","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Futuro","Future","I will confirm","confirmaré","confirmarás","confirmará","confirmaremos","confirmaréis","confirmarán","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Imperfecto","Imperfect","I was confirming, used to confirm, confirmed","confirmaba","confirmabas","confirmaba","confirmábamos","confirmabais","confirmaban","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Pretérito","Preterite","I confirmed","confirmé","confirmaste","confirmó","confirmamos","confirmasteis","confirmaron","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Condicional","Conditional","I would confirm","confirmaría","confirmarías","confirmaría","confirmaríamos","confirmaríais","confirmarían","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Presente perfecto","Present Perfect","I have confirmed","he confirmado","has confirmado","ha confirmado","hemos confirmado","habéis confirmado","han confirmado","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have confirmed","habré confirmado","habrás confirmado","habrá confirmado","habremos confirmado","habréis confirmado","habrán confirmado","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had confirmed","había confirmado","habías confirmado","había confirmado","habíamos confirmado","habíais confirmado","habían confirmado","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had confirmed","hube confirmado","hubiste confirmado","hubo confirmado","hubimos confirmado","hubisteis confirmado","hubieron confirmado","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have confirmed","habría confirmado","habrías confirmado","habría confirmado","habríamos confirmado","habríais confirmado","habrían confirmado","confirmando","confirming","confirmado","confirmed" +"confirmemos" +"confirmar","to confirm, corroborate, endorse","Subjuntivo","Subjunctive","Presente","Present","I confirm, am confirming","confirme","confirmes","confirme","confirmemos","confirméis","confirmen","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I confirmed, was confirming","confirmara","confirmaras","confirmara","confirmáramos","confirmarais","confirmaran","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Subjuntivo","Subjunctive","Futuro","Future","I will confirm","confirmare","confirmares","confirmare","confirmáremos","confirmareis","confirmaren","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have confirmed, confirmed","haya confirmado","hayas confirmado","haya confirmado","hayamos confirmado","hayáis confirmado","hayan confirmado","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have confirmed","hubiere confirmado","hubieres confirmado","hubiere confirmado","hubiéremos confirmado","hubiereis confirmado","hubieren confirmado","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had confirmed","hubiera confirmado","hubieras confirmado","hubiera confirmado","hubiéramos confirmado","hubierais confirmado","hubieran confirmado","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Confirm! Don't confirm!","","confirma","confirme","confirmemos","confirmad","confirmen","confirmando","confirming","confirmado","confirmed" +"confirmar","to confirm, corroborate, endorse","Imperativo Negativo","Imperative Negative","Presente","Present","Confirm! Don't confirm!","","no confirmes","no confirme","no confirmemos","no confirméis","no confirmen","confirmando","confirming","confirmado","confirmed" +"compartir","to share; to divide [up]","Indicativo","Indicative","Presente","Present","I share, am sharing","comparto","compartes","comparte","compartimos","compartís","comparten","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Futuro","Future","I will share","compartiré","compartirás","compartirá","compartiremos","compartiréis","compartirán","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Imperfecto","Imperfect","I was sharing, used to share, shared","compartía","compartías","compartía","compartíamos","compartíais","compartían","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Pretérito","Preterite","I shared","compartí","compartiste","compartió","compartimos","compartisteis","compartieron","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Condicional","Conditional","I would share","compartiría","compartirías","compartiría","compartiríamos","compartiríais","compartirían","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shared","he compartido","has compartido","ha compartido","hemos compartido","habéis compartido","han compartido","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shared","habré compartido","habrás compartido","habrá compartido","habremos compartido","habréis compartido","habrán compartido","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shared","había compartido","habías compartido","había compartido","habíamos compartido","habíais compartido","habían compartido","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shared","hube compartido","hubiste compartido","hubo compartido","hubimos compartido","hubisteis compartido","hubieron compartido","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shared","habría compartido","habrías compartido","habría compartido","habríamos compartido","habríais compartido","habrían compartido","compartiendo","sharing","compartido","shared" +"compartamos" +"compartir","to share; to divide [up]","Subjuntivo","Subjunctive","Presente","Present","I share, am sharing","comparta","compartas","comparta","compartamos","compartáis","compartan","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shared, was sharing","compartiera","compartieras","compartiera","compartiéramos","compartierais","compartieran","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Subjuntivo","Subjunctive","Futuro","Future","I will share","compartiere","compartieres","compartiere","compartiéremos","compartiereis","compartieren","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shared, shared","haya compartido","hayas compartido","haya compartido","hayamos compartido","hayáis compartido","hayan compartido","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shared","hubiere compartido","hubieres compartido","hubiere compartido","hubiéremos compartido","hubiereis compartido","hubieren compartido","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shared","hubiera compartido","hubieras compartido","hubiera compartido","hubiéramos compartido","hubierais compartido","hubieran compartido","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Share! Don't share!","","comparte","comparta","compartamos","compartid","compartan","compartiendo","sharing","compartido","shared" +"compartir","to share; to divide [up]","Imperativo Negativo","Imperative Negative","Presente","Present","Share! Don't share!","","no compartas","no comparta","no compartamos","no compartáis","no compartan","compartiendo","sharing","compartido","shared" +"confiscar","to confiscate","Indicativo","Indicative","Presente","Present","I confiscate, am confiscating","confisco","confiscas","confisca","confiscamos","confiscáis","confiscan","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Futuro","Future","I will confiscate","confiscaré","confiscarás","confiscará","confiscaremos","confiscaréis","confiscarán","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Imperfecto","Imperfect","I was confiscating, used to confiscate, confiscated","confiscaba","confiscabas","confiscaba","confiscábamos","confiscabais","confiscaban","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Pretérito","Preterite","I confiscated","confisqué","confiscaste","confiscó","confiscamos","confiscasteis","confiscaron","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Condicional","Conditional","I would confiscate","confiscaría","confiscarías","confiscaría","confiscaríamos","confiscaríais","confiscarían","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have confiscated","he confiscado","has confiscado","ha confiscado","hemos confiscado","habéis confiscado","han confiscado","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have confiscated","habré confiscado","habrás confiscado","habrá confiscado","habremos confiscado","habréis confiscado","habrán confiscado","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had confiscated","había confiscado","habías confiscado","había confiscado","habíamos confiscado","habíais confiscado","habían confiscado","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had confiscated","hube confiscado","hubiste confiscado","hubo confiscado","hubimos confiscado","hubisteis confiscado","hubieron confiscado","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have confiscated","habría confiscado","habrías confiscado","habría confiscado","habríamos confiscado","habríais confiscado","habrían confiscado","confiscando","confiscating","confiscado","confiscated" +"confisquemos" +"confiscar","to confiscate","Subjuntivo","Subjunctive","Presente","Present","I confiscate, am confiscating","confisque","confisques","confisque","confisquemos","confisquéis","confisquen","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I confiscated, was confiscating","confiscara","confiscaras","confiscara","confiscáramos","confiscarais","confiscaran","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Subjuntivo","Subjunctive","Futuro","Future","I will confiscate","confiscare","confiscares","confiscare","confiscáremos","confiscareis","confiscaren","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have confiscated, confiscated","haya confiscado","hayas confiscado","haya confiscado","hayamos confiscado","hayáis confiscado","hayan confiscado","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have confiscated","hubiere confiscado","hubieres confiscado","hubiere confiscado","hubiéremos confiscado","hubiereis confiscado","hubieren confiscado","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had confiscated","hubiera confiscado","hubieras confiscado","hubiera confiscado","hubiéramos confiscado","hubierais confiscado","hubieran confiscado","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Confiscate! Don't confiscate!","","confisca","confisque","confisquemos","confiscad","confisquen","confiscando","confiscating","confiscado","confiscated" +"confiscar","to confiscate","Imperativo Negativo","Imperative Negative","Presente","Present","Confiscate! Don't confiscate!","","no confisques","no confisque","no confisquemos","no confisquéis","no confisquen","confiscando","confiscating","confiscado","confiscated" +"conjugar","to conjugate","Indicativo","Indicative","Presente","Present","I conjugate, am conjugating","conjugo","conjugas","conjuga","conjugamos","conjugáis","conjugan","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Futuro","Future","I will conjugate","conjugaré","conjugarás","conjugará","conjugaremos","conjugaréis","conjugarán","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Imperfecto","Imperfect","I was conjugating, used to conjugate, conjugated","conjugaba","conjugabas","conjugaba","conjugábamos","conjugabais","conjugaban","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Pretérito","Preterite","I conjugated","conjugué","conjugaste","conjugó","conjugamos","conjugasteis","conjugaron","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Condicional","Conditional","I would conjugate","conjugaría","conjugarías","conjugaría","conjugaríamos","conjugaríais","conjugarían","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have conjugated","he conjugado","has conjugado","ha conjugado","hemos conjugado","habéis conjugado","han conjugado","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have conjugated","habré conjugado","habrás conjugado","habrá conjugado","habremos conjugado","habréis conjugado","habrán conjugado","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had conjugated","había conjugado","habías conjugado","había conjugado","habíamos conjugado","habíais conjugado","habían conjugado","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had conjugated","hube conjugado","hubiste conjugado","hubo conjugado","hubimos conjugado","hubisteis conjugado","hubieron conjugado","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have conjugated","habría conjugado","habrías conjugado","habría conjugado","habríamos conjugado","habríais conjugado","habrían conjugado","conjugando","conjugating","conjugado","conjugated" +"conjuguemos" +"conjugar","to conjugate","Subjuntivo","Subjunctive","Presente","Present","I conjugate, am conjugating","conjugue","conjugues","conjugue","conjuguemos","conjuguéis","conjuguen","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I conjugated, was conjugating","conjugara","conjugaras","conjugara","conjugáramos","conjugarais","conjugaran","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Subjuntivo","Subjunctive","Futuro","Future","I will conjugate","conjugare","conjugares","conjugare","conjugáremos","conjugareis","conjugaren","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have conjugated, conjugated","haya conjugado","hayas conjugado","haya conjugado","hayamos conjugado","hayáis conjugado","hayan conjugado","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have conjugated","hubiere conjugado","hubieres conjugado","hubiere conjugado","hubiéremos conjugado","hubiereis conjugado","hubieren conjugado","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had conjugated","hubiera conjugado","hubieras conjugado","hubiera conjugado","hubiéramos conjugado","hubierais conjugado","hubieran conjugado","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Conjugate! Don't conjugate!","","conjuga","conjugue","conjuguemos","conjugad","conjuguen","conjugando","conjugating","conjugado","conjugated" +"conjugar","to conjugate","Imperativo Negativo","Imperative Negative","Presente","Present","Conjugate! Don't conjugate!","","no conjugues","no conjugue","no conjuguemos","no conjuguéis","no conjuguen","conjugando","conjugating","conjugado","conjugated" +"conocer","to know","Indicativo","Indicative","Presente","Present","I know","conozco","conoces","conoce","conocemos","conocéis","conocen","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Futuro","Future","I will know","conoceré","conocerás","conocerá","conoceremos","conoceréis","conocerán","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Imperfecto","Imperfect","I used to know, knew","conocía","conocías","conocía","conocíamos","conocíais","conocían","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Pretérito","Preterite","I knew","conocí","conociste","conoció","conocimos","conocisteis","conocieron","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Condicional","Conditional","I would know","conocería","conocerías","conocería","conoceríamos","conoceríais","conocerían","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Presente perfecto","Present Perfect","I have known","he conocido","has conocido","ha conocido","hemos conocido","habéis conocido","han conocido","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have known","habré conocido","habrás conocido","habrá conocido","habremos conocido","habréis conocido","habrán conocido","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had known","había conocido","habías conocido","había conocido","habíamos conocido","habíais conocido","habían conocido","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had known","hube conocido","hubiste conocido","hubo conocido","hubimos conocido","hubisteis conocido","hubieron conocido","conociendo","knowing","conocido","known" +"conocer","to know","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have known","habría conocido","habrías conocido","habría conocido","habríamos conocido","habríais conocido","habrían conocido","conociendo","knowing","conocido","known" +"conozcamos" +"conocer","to know","Subjuntivo","Subjunctive","Presente","Present","I know","conozca","conozcas","conozca","conozcamos","conozcáis","conozcan","conociendo","knowing","conocido","known" +"conocer","to know","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I knew, was knowing","conociera","conocieras","conociera","conociéramos","conocierais","conocieran","conociendo","knowing","conocido","known" +"conocer","to know","Subjuntivo","Subjunctive","Futuro","Future","I will know","conociere","conocieres","conociere","conociéremos","conociereis","conocieren","conociendo","knowing","conocido","known" +"conocer","to know","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have known, knew","haya conocido","hayas conocido","haya conocido","hayamos conocido","hayáis conocido","hayan conocido","conociendo","knowing","conocido","known" +"conocer","to know","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have known","hubiere conocido","hubieres conocido","hubiere conocido","hubiéremos conocido","hubiereis conocido","hubieren conocido","conociendo","knowing","conocido","known" +"conocer","to know","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had known","hubiera conocido","hubieras conocido","hubiera conocido","hubiéramos conocido","hubierais conocido","hubieran conocido","conociendo","knowing","conocido","known" +"conocer","to know","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Know! Don't know!","","conoce","conozca","conozcamos","conoced","conozcan","conociendo","knowing","conocido","known" +"conocer","to know","Imperativo Negativo","Imperative Negative","Presente","Present","Know! Don't know!","","no conozcas","no conozca","no conozcamos","no conozcáis","no conozcan","conociendo","knowing","conocido","known" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Presente","Present","I conquer, am conquering","conquisto","conquistas","conquista","conquistamos","conquistáis","conquistan","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Imperfecto","Imperfect","I was conquering, used to conquer, conquered","conquistaba","conquistabas","conquistaba","conquistábamos","conquistabais","conquistaban","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Pretérito","Preterite","I conquered","conquisté","conquistaste","conquistó","conquistamos","conquistasteis","conquistaron","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Condicional","Conditional","I would conquer","conquistaría","conquistarías","conquistaría","conquistaríamos","conquistaríais","conquistarían","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Presente perfecto","Present Perfect","I have conquered","he conquistado","has conquistado","ha conquistado","hemos conquistado","habéis conquistado","han conquistado","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have conquered","habré conquistado","habrás conquistado","habrá conquistado","habremos conquistado","habréis conquistado","habrán conquistado","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had conquered","había conquistado","habías conquistado","había conquistado","habíamos conquistado","habíais conquistado","habían conquistado","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had conquered","hube conquistado","hubiste conquistado","hubo conquistado","hubimos conquistado","hubisteis conquistado","hubieron conquistado","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have conquered","habría conquistado","habrías conquistado","habría conquistado","habríamos conquistado","habríais conquistado","habrían conquistado","conquistando","conquering","conquistado","conquered" +"conquistemos" +"conquistar","to conquer, overcome, win","Subjuntivo","Subjunctive","Presente","Present","I conquer, am conquering","conquiste","conquistes","conquiste","conquistemos","conquistéis","conquisten","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I conquered, was conquering","conquistara","conquistaras","conquistara","conquistáramos","conquistarais","conquistaran","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Subjuntivo","Subjunctive","Futuro","Future","I will conquer","conquistare","conquistares","conquistare","conquistáremos","conquistareis","conquistaren","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have conquered, conquered","haya conquistado","hayas conquistado","haya conquistado","hayamos conquistado","hayáis conquistado","hayan conquistado","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have conquered","hubiere conquistado","hubieres conquistado","hubiere conquistado","hubiéremos conquistado","hubiereis conquistado","hubieren conquistado","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had conquered","hubiera conquistado","hubieras conquistado","hubiera conquistado","hubiéramos conquistado","hubierais conquistado","hubieran conquistado","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Conquer! Don't conquer!","","conquista","conquiste","conquistemos","conquistad","conquisten","conquistando","conquering","conquistado","conquered" +"conquistar","to conquer, overcome, win","Imperativo Negativo","Imperative Negative","Presente","Present","Conquer! Don't conquer!","","no conquistes","no conquiste","no conquistemos","no conquistéis","no conquisten","conquistando","conquering","conquistado","conquered" +"conseguir","to get, obtain","Indicativo","Indicative","Presente","Present","I get, am getting","consigo","consigues","consigue","conseguimos","conseguís","consiguen","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Futuro","Future","I will get","conseguiré","conseguirás","conseguirá","conseguiremos","conseguiréis","conseguirán","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Imperfecto","Imperfect","I was getting, used to get, got","conseguía","conseguías","conseguía","conseguíamos","conseguíais","conseguían","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Pretérito","Preterite","I got","conseguí","conseguiste","consiguió","conseguimos","conseguisteis","consiguieron","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Condicional","Conditional","I would get","conseguiría","conseguirías","conseguiría","conseguiríamos","conseguiríais","conseguirían","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten","he conseguido","has conseguido","ha conseguido","hemos conseguido","habéis conseguido","han conseguido","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten","habré conseguido","habrás conseguido","habrá conseguido","habremos conseguido","habréis conseguido","habrán conseguido","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten","había conseguido","habías conseguido","había conseguido","habíamos conseguido","habíais conseguido","habían conseguido","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten","hube conseguido","hubiste conseguido","hubo conseguido","hubimos conseguido","hubisteis conseguido","hubieron conseguido","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten","habría conseguido","habrías conseguido","habría conseguido","habríamos conseguido","habríais conseguido","habrían conseguido","consiguiendo","getting","conseguido","gotten" +"consigamos" +"conseguir","to get, obtain","Subjuntivo","Subjunctive","Presente","Present","I get, am getting","consiga","consigas","consiga","consigamos","consigáis","consigan","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got, was getting","consiguiera","consiguieras","consiguiera","consiguiéramos","consiguierais","consiguieran","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Subjuntivo","Subjunctive","Futuro","Future","I will get","consiguiere","consiguieres","consiguiere","consiguiéremos","consiguiereis","consiguieren","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten, got","haya conseguido","hayas conseguido","haya conseguido","hayamos conseguido","hayáis conseguido","hayan conseguido","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten","hubiere conseguido","hubieres conseguido","hubiere conseguido","hubiéremos conseguido","hubiereis conseguido","hubieren conseguido","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten","hubiera conseguido","hubieras conseguido","hubiera conseguido","hubiéramos conseguido","hubierais conseguido","hubieran conseguido","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get! Don't get!","","consigue","consiga","consigamos","conseguid","consigan","consiguiendo","getting","conseguido","gotten" +"conseguir","to get, obtain","Imperativo Negativo","Imperative Negative","Presente","Present","Get! Don't get!","","no consigas","no consiga","no consigamos","no consigáis","no consigan","consiguiendo","getting","conseguido","gotten" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Presente","Present","I consent to, am consenting to","consiento","consientes","consiente","consentimos","consentís","consienten","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Futuro","Future","I will consent to","consentiré","consentirás","consentirá","consentiremos","consentiréis","consentirán","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Imperfecto","Imperfect","I was consenting to, used to consent to, consented to","consentía","consentías","consentía","consentíamos","consentíais","consentían","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Pretérito","Preterite","I consented to","consentí","consentiste","consintió","consentimos","consentisteis","consintieron","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Condicional","Conditional","I would consent to","consentiría","consentirías","consentiría","consentiríamos","consentiríais","consentirían","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Presente perfecto","Present Perfect","I have consented to","he consentido","has consentido","ha consentido","hemos consentido","habéis consentido","han consentido","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have consented to","habré consentido","habrás consentido","habrá consentido","habremos consentido","habréis consentido","habrán consentido","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had consented to","había consentido","habías consentido","había consentido","habíamos consentido","habíais consentido","habían consentido","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had consented to","hube consentido","hubiste consentido","hubo consentido","hubimos consentido","hubisteis consentido","hubieron consentido","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have consented to","habría consentido","habrías consentido","habría consentido","habríamos consentido","habríais consentido","habrían consentido","consintiendo","consenting to","consentido","consented to" +"consintamos" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Subjuntivo","Subjunctive","Presente","Present","I consent to, am consenting to","consienta","consientas","consienta","consintamos","consintáis","consientan","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I consented to, was consenting to","consintiera","consintieras","consintiera","consintiéramos","consintierais","consintieran","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Subjuntivo","Subjunctive","Futuro","Future","I will consent to","consintiere","consintieres","consintiere","consintiéremos","consintiereis","consintieren","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have consented to, consented to","haya consentido","hayas consentido","haya consentido","hayamos consentido","hayáis consentido","hayan consentido","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have consented to","hubiere consentido","hubieres consentido","hubiere consentido","hubiéremos consentido","hubiereis consentido","hubieren consentido","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had consented to","hubiera consentido","hubieras consentido","hubiera consentido","hubiéramos consentido","hubierais consentido","hubieran consentido","consintiendo","consenting to","consentido","consented to" +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Consent to! Don't consent to!","","consiente","consienta","consintamos","consentid","consientan","consintiendo","consenting to","consentido","consented to", +"consentir","to consent to; to allow, permit; to tolerate, put up with; to admit; to agree, consent","Imperativo Negativo","Imperative Negative","Presente","Present","Consent to! Don't consent to!","","no consientas","no consienta","no consintamos","no consintáis","no consientan","consintiendo","consenting to","consentido","consented to", +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Presente","Present","I preserve, am preserving","conservo","conservas","conserva","conservamos","conserváis","conservan","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Futuro","Future","I will preserve","conservaré","conservarás","conservará","conservaremos","conservaréis","conservarán","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Imperfecto","Imperfect","I was preserving, used to preserve, preserved","conservaba","conservabas","conservaba","conservábamos","conservabais","conservaban","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Pretérito","Preterite","I preserved","conservé","conservaste","conservó","conservamos","conservasteis","conservaron","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Condicional","Conditional","I would preserve","conservaría","conservarías","conservaría","conservaríamos","conservaríais","conservarían","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have preserved","he conservado","has conservado","ha conservado","hemos conservado","habéis conservado","han conservado","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have preserved","habré conservado","habrás conservado","habrá conservado","habremos conservado","habréis conservado","habrán conservado","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had preserved","había conservado","habías conservado","había conservado","habíamos conservado","habíais conservado","habían conservado","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had preserved","hube conservado","hubiste conservado","hubo conservado","hubimos conservado","hubisteis conservado","hubieron conservado","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have preserved","habría conservado","habrías conservado","habría conservado","habríamos conservado","habríais conservado","habrían conservado","conservando","preserving","conservado","preserved" +"conservemos" +"conservar","to preserve, conserve; to keep, retain","Subjuntivo","Subjunctive","Presente","Present","I preserve, am preserving","conserve","conserves","conserve","conservemos","conservéis","conserven","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I preserved, was preserving","conservara","conservaras","conservara","conserváramos","conservarais","conservaran","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Subjuntivo","Subjunctive","Futuro","Future","I will preserve","conservare","conservares","conservare","conserváremos","conservareis","conservaren","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have preserved, preserved","haya conservado","hayas conservado","haya conservado","hayamos conservado","hayáis conservado","hayan conservado","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have preserved","hubiere conservado","hubieres conservado","hubiere conservado","hubiéremos conservado","hubiereis conservado","hubieren conservado","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had preserved","hubiera conservado","hubieras conservado","hubiera conservado","hubiéramos conservado","hubierais conservado","hubieran conservado","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Preserve! Don't preserve!","","conserva","conserve","conservemos","conservad","conserven","conservando","preserving","conservado","preserved" +"conservar","to preserve, conserve; to keep, retain","Imperativo Negativo","Imperative Negative","Presente","Present","Preserve! Don't preserve!","","no conserves","no conserve","no conservemos","no conservéis","no conserven","conservando","preserving","conservado","preserved" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Presente","Present","I consist, am consisting","consisto","consistes","consiste","consistimos","consistís","consisten","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Futuro","Future","I will consist","consistiré","consistirás","consistirá","consistiremos","consistiréis","consistirán","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Imperfecto","Imperfect","I was consisting, used to consist, consisted","consistía","consistías","consistía","consistíamos","consistíais","consistían","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Pretérito","Preterite","I consisted","consistí","consististe","consistió","consistimos","consististeis","consistieron","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Condicional","Conditional","I would consist","consistiría","consistirías","consistiría","consistiríamos","consistiríais","consistirían","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have consisted","he consistido","has consistido","ha consistido","hemos consistido","habéis consistido","han consistido","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have consisted","habré consistido","habrás consistido","habrá consistido","habremos consistido","habréis consistido","habrán consistido","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had consisted","había consistido","habías consistido","había consistido","habíamos consistido","habíais consistido","habían consistido","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had consisted","hube consistido","hubiste consistido","hubo consistido","hubimos consistido","hubisteis consistido","hubieron consistido","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have consisted","habría consistido","habrías consistido","habría consistido","habríamos consistido","habríais consistido","habrían consistido","consistiendo","consisting","consistido","consisted" +"consistamos" +"consistir","to consist [of], be composed [of]","Subjuntivo","Subjunctive","Presente","Present","I consist, am consisting","consista","consistas","consista","consistamos","consistáis","consistan","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I consisted, was consisting","consistiera","consistieras","consistiera","consistiéramos","consistierais","consistieran","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Subjuntivo","Subjunctive","Futuro","Future","I will consist","consistiere","consistieres","consistiere","consistiéremos","consistiereis","consistieren","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have consisted, consisted","haya consistido","hayas consistido","haya consistido","hayamos consistido","hayáis consistido","hayan consistido","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have consisted","hubiere consistido","hubieres consistido","hubiere consistido","hubiéremos consistido","hubiereis consistido","hubieren consistido","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had consisted","hubiera consistido","hubieras consistido","hubiera consistido","hubiéramos consistido","hubierais consistido","hubieran consistido","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Consist! Don't consist!","","consiste","consista","consistamos","consistid","consistan","consistiendo","consisting","consistido","consisted" +"consistir","to consist [of], be composed [of]","Imperativo Negativo","Imperative Negative","Presente","Present","Consist! Don't consist!","","no consistas","no consista","no consistamos","no consistáis","no consistan","consistiendo","consisting","consistido","consisted" +"constituir","to constitute","Indicativo","Indicative","Presente","Present","I constitute, am constituting","constituyo","constituyes","constituye","constituimos","constituís","constituyen","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Futuro","Future","I will constitute","constituiré","constituirás","constituirá","constituiremos","constituiréis","constituirán","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Imperfecto","Imperfect","I was constituting, used to constitute, constituted","constituía","constituías","constituía","constituíamos","constituíais","constituían","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Pretérito","Preterite","I constituted","constituí","constituiste","constituyó","constituimos","constituisteis","constituyeron","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Condicional","Conditional","I would constitute","constituiría","constituirías","constituiría","constituiríamos","constituiríais","constituirían","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Presente perfecto","Present Perfect","I have constituted","he constituido","has constituido","ha constituido","hemos constituido","habéis constituido","han constituido","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have constituted","habré constituido","habrás constituido","habrá constituido","habremos constituido","habréis constituido","habrán constituido","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had constituted","había constituido","habías constituido","había constituido","habíamos constituido","habíais constituido","habían constituido","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had constituted","hube constituido","hubiste constituido","hubo constituido","hubimos constituido","hubisteis constituido","hubieron constituido","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have constituted","habría constituido","habrías constituido","habría constituido","habríamos constituido","habríais constituido","habrían constituido","constituyendo","constituting","constituido","constituted" +"constituyamos" +"constituir","to constitute","Subjuntivo","Subjunctive","Presente","Present","I constitute, am constituting","constituya","constituyas","constituya","constituyamos","constituyáis","constituyan","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I constituted, was constituting","constituyera","constituyeras","constituyera","constituyéramos","constituyerais","constituyeran","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Subjuntivo","Subjunctive","Futuro","Future","I will constitute","constituyere","constituyeres","constituyere","constituyéremos","constituyereis","constituyeren","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have constituted, constituted","haya constituido","hayas constituido","haya constituido","hayamos constituido","hayáis constituido","hayan constituido","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have constituted","hubiere constituido","hubieres constituido","hubiere constituido","hubiéremos constituido","hubiereis constituido","hubieren constituido","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had constituted","hubiera constituido","hubieras constituido","hubiera constituido","hubiéramos constituido","hubierais constituido","hubieran constituido","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Constitute! Don't constitute!","","constituye","constituya","constituyamos","constituid","constituyan","constituyendo","constituting","constituido","constituted" +"constituir","to constitute","Imperativo Negativo","Imperative Negative","Presente","Present","Constitute! Don't constitute!","","no constituyas","no constituya","no constituyamos","no constituyáis","no constituyan","constituyendo","constituting","constituido","constituted" +"construir","to build, construct","Indicativo","Indicative","Presente","Present","I build, am building","construyo","construyes","construye","construimos","construís","construyen","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Futuro","Future","I will build","construiré","construirás","construirá","construiremos","construiréis","construirán","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Imperfecto","Imperfect","I was building, used to build, built","construía","construías","construía","construíamos","construíais","construían","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Pretérito","Preterite","I built","construí","construiste","construyó","construimos","construisteis","construyeron","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Condicional","Conditional","I would build","construiría","construirías","construiría","construiríamos","construiríais","construirían","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Presente perfecto","Present Perfect","I have built","he construido","has construido","ha construido","hemos construido","habéis construido","han construido","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have built","habré construido","habrás construido","habrá construido","habremos construido","habréis construido","habrán construido","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had built","había construido","habías construido","había construido","habíamos construido","habíais construido","habían construido","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had built","hube construido","hubiste construido","hubo construido","hubimos construido","hubisteis construido","hubieron construido","construyendo","building","construido","built" +"construir","to build, construct","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have built","habría construido","habrías construido","habría construido","habríamos construido","habríais construido","habrían construido","construyendo","building","construido","built" +"construyamos" +"construir","to build, construct","Subjuntivo","Subjunctive","Presente","Present","I build, am building","construya","construyas","construya","construyamos","construyáis","construyan","construyendo","building","construido","built" +"construir","to build, construct","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I built, was building","construyera","construyeras","construyera","construyéramos","construyerais","construyeran","construyendo","building","construido","built" +"construir","to build, construct","Subjuntivo","Subjunctive","Futuro","Future","I will build","construyere","construyeres","construyere","construyéremos","construyereis","construyeren","construyendo","building","construido","built" +"construir","to build, construct","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have built, built","haya construido","hayas construido","haya construido","hayamos construido","hayáis construido","hayan construido","construyendo","building","construido","built" +"construir","to build, construct","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have built","hubiere construido","hubieres construido","hubiere construido","hubiéremos construido","hubiereis construido","hubieren construido","construyendo","building","construido","built" +"construir","to build, construct","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had built","hubiera construido","hubieras construido","hubiera construido","hubiéramos construido","hubierais construido","hubieran construido","construyendo","building","construido","built" +"construir","to build, construct","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Build! Don't build!","","construye","construya","construyamos","construid","construyan","construyendo","building","construido","built" +"construir","to build, construct","Imperativo Negativo","Imperative Negative","Presente","Present","Build! Don't build!","","no construyas","no construya","no construyamos","no construyáis","no construyan","construyendo","building","construido","built" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Presente","Present","I consume, am consuming","consumo","consumes","consume","consumimos","consumís","consumen","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Futuro","Future","I will consume","consumiré","consumirás","consumirá","consumiremos","consumiréis","consumirán","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Imperfecto","Imperfect","I was consuming, used to consume, consumed","consumía","consumías","consumía","consumíamos","consumíais","consumían","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Pretérito","Preterite","I consumed","consumí","consumiste","consumió","consumimos","consumisteis","consumieron","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Condicional","Conditional","I would consume","consumiría","consumirías","consumiría","consumiríamos","consumiríais","consumirían","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Presente perfecto","Present Perfect","I have consumed","he consumido","has consumido","ha consumido","hemos consumido","habéis consumido","han consumido","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have consumed","habré consumido","habrás consumido","habrá consumido","habremos consumido","habréis consumido","habrán consumido","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had consumed","había consumido","habías consumido","había consumido","habíamos consumido","habíais consumido","habían consumido","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had consumed","hube consumido","hubiste consumido","hubo consumido","hubimos consumido","hubisteis consumido","hubieron consumido","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have consumed","habría consumido","habrías consumido","habría consumido","habríamos consumido","habríais consumido","habrían consumido","consumiendo","consuming","consumido","consumed" +"consumamos" +"consumir","to consume, eat, use upe","Subjuntivo","Subjunctive","Presente","Present","I consume, am consuming","consuma","consumas","consuma","consumamos","consumáis","consuman","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I consumed, was consuming","consumiera","consumieras","consumiera","consumiéramos","consumierais","consumieran","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Subjuntivo","Subjunctive","Futuro","Future","I will consume","consumiere","consumieres","consumiere","consumiéremos","consumiereis","consumieren","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have consumed, consumed","haya consumido","hayas consumido","haya consumido","hayamos consumido","hayáis consumido","hayan consumido","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have consumed","hubiere consumido","hubieres consumido","hubiere consumido","hubiéremos consumido","hubiereis consumido","hubieren consumido","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had consumed","hubiera consumido","hubieras consumido","hubiera consumido","hubiéramos consumido","hubierais consumido","hubieran consumido","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Consume! Don't consume!","","consume","consuma","consumamos","consumid","consuman","consumiendo","consuming","consumido","consumed" +"consumir","to consume, eat, use upe","Imperativo Negativo","Imperative Negative","Presente","Present","Consume! Don't consume!","","no consumas","no consuma","no consumamos","no consumáis","no consuman","consumiendo","consuming","consumido","consumed" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Presente","Present","I contaminate, am contaminating","contamino","contaminas","contamina","contaminamos","contamináis","contaminan","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Futuro","Future","I will contaminate","contaminaré","contaminarás","contaminará","contaminaremos","contaminaréis","contaminarán","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Imperfecto","Imperfect","I was contaminating, used to contaminate, contaminated","contaminaba","contaminabas","contaminaba","contaminábamos","contaminabais","contaminaban","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Pretérito","Preterite","I contaminated","contaminé","contaminaste","contaminó","contaminamos","contaminasteis","contaminaron","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Condicional","Conditional","I would contaminate","contaminaría","contaminarías","contaminaría","contaminaríamos","contaminaríais","contaminarían","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Presente perfecto","Present Perfect","I have contaminated","he contaminado","has contaminado","ha contaminado","hemos contaminado","habéis contaminado","han contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have contaminated","habré contaminado","habrás contaminado","habrá contaminado","habremos contaminado","habréis contaminado","habrán contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had contaminated","había contaminado","habías contaminado","había contaminado","habíamos contaminado","habíais contaminado","habían contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had contaminated","hube contaminado","hubiste contaminado","hubo contaminado","hubimos contaminado","hubisteis contaminado","hubieron contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have contaminated","habría contaminado","habrías contaminado","habría contaminado","habríamos contaminado","habríais contaminado","habrían contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminemos" +"contaminar","to contaminate, pollute; to corrupt","Subjuntivo","Subjunctive","Presente","Present","I contaminate, am contaminating","contamine","contamines","contamine","contaminemos","contaminéis","contaminen","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I contaminated, was contaminating","contaminara","contaminaras","contaminara","contamináramos","contaminarais","contaminaran","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Subjuntivo","Subjunctive","Futuro","Future","I will contaminate","contaminare","contaminares","contaminare","contamináremos","contaminareis","contaminaren","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have contaminated, contaminated","haya contaminado","hayas contaminado","haya contaminado","hayamos contaminado","hayáis contaminado","hayan contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have contaminated","hubiere contaminado","hubieres contaminado","hubiere contaminado","hubiéremos contaminado","hubiereis contaminado","hubieren contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had contaminated","hubiera contaminado","hubieras contaminado","hubiera contaminado","hubiéramos contaminado","hubierais contaminado","hubieran contaminado","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Contaminate! Don't contaminate!","","contamina","contamine","contaminemos","contaminad","contaminen","contaminando","contaminating","contaminado","contaminated" +"contaminar","to contaminate, pollute; to corrupt","Imperativo Negativo","Imperative Negative","Presente","Present","Contaminate! Don't contaminate!","","no contamines","no contamine","no contaminemos","no contaminéis","no contaminen","contaminando","contaminating","contaminado","contaminated" +"contar","to count, relate, tell","Indicativo","Indicative","Presente","Present","I count, am counting","cuento","cuentas","cuenta","contamos","contáis","cuentan","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Futuro","Future","I will count","contaré","contarás","contará","contaremos","contaréis","contarán","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Imperfecto","Imperfect","I was counting, used to count, counted","contaba","contabas","contaba","contábamos","contabais","contaban","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Pretérito","Preterite","I counted","conté","contaste","contó","contamos","contasteis","contaron","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Condicional","Conditional","I would count","contaría","contarías","contaría","contaríamos","contaríais","contarían","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Presente perfecto","Present Perfect","I have counted","he contado","has contado","ha contado","hemos contado","habéis contado","han contado","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have counted","habré contado","habrás contado","habrá contado","habremos contado","habréis contado","habrán contado","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had counted","había contado","habías contado","había contado","habíamos contado","habíais contado","habían contado","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had counted","hube contado","hubiste contado","hubo contado","hubimos contado","hubisteis contado","hubieron contado","contando","counting","contado","counted" +"contar","to count, relate, tell","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have counted","habría contado","habrías contado","habría contado","habríamos contado","habríais contado","habrían contado","contando","counting","contado","counted" +"contemos" +"contar","to count, relate, tell","Subjuntivo","Subjunctive","Presente","Present","I count, am counting","cuente","cuentes","cuente","contemos","contéis","cuenten","contando","counting","contado","counted" +"contar","to count, relate, tell","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I counted, was counting","contara","contaras","contara","contáramos","contarais","contaran","contando","counting","contado","counted" +"contar","to count, relate, tell","Subjuntivo","Subjunctive","Futuro","Future","I will count","contare","contares","contare","contáremos","contareis","contaren","contando","counting","contado","counted" +"contar","to count, relate, tell","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have counted, counted","haya contado","hayas contado","haya contado","hayamos contado","hayáis contado","hayan contado","contando","counting","contado","counted" +"contar","to count, relate, tell","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have counted","hubiere contado","hubieres contado","hubiere contado","hubiéremos contado","hubiereis contado","hubieren contado","contando","counting","contado","counted" +"contar","to count, relate, tell","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had counted","hubiera contado","hubieras contado","hubiera contado","hubiéramos contado","hubierais contado","hubieran contado","contando","counting","contado","counted" +"contar","to count, relate, tell","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Count! Don't count!","","cuenta","cuente","contemos","contad","cuenten","contando","counting","contado","counted" +"contar","to count, relate, tell","Imperativo Negativo","Imperative Negative","Presente","Present","Count! Don't count!","","no cuentes","no cuente","no contemos","no contéis","no cuenten","contando","counting","contado","counted" +"contener","to contain, hold","Indicativo","Indicative","Presente","Present","I contain, am containing","contengo","contienes","contiene","contenemos","contenéis","contienen","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Futuro","Future","I will contain","contendré","contendrás","contendrá","contendremos","contendréis","contendrán","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Imperfecto","Imperfect","I was containing, used to contain, contained","contenía","contenías","contenía","conteníamos","conteníais","contenían","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Pretérito","Preterite","I contained","contuve","contuviste","contuvo","contuvimos","contuvisteis","contuvieron","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Condicional","Conditional","I would contain","contendría","contendrías","contendría","contendríamos","contendríais","contendrían","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Presente perfecto","Present Perfect","I have contained","he contenido","has contenido","ha contenido","hemos contenido","habéis contenido","han contenido","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have contained","habré contenido","habrás contenido","habrá contenido","habremos contenido","habréis contenido","habrán contenido","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had contained","había contenido","habías contenido","había contenido","habíamos contenido","habíais contenido","habían contenido","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had contained","hube contenido","hubiste contenido","hubo contenido","hubimos contenido","hubisteis contenido","hubieron contenido","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have contained","habría contenido","habrías contenido","habría contenido","habríamos contenido","habríais contenido","habrían contenido","conteniendo","containing","contenido","contained" +"contengamos" +"contener","to contain, hold","Subjuntivo","Subjunctive","Presente","Present","I contain, am containing","contenga","contengas","contenga","contengamos","contengáis","contengan","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I contained, was containing","contuviera","contuvieras","contuviera","contuviéramos","contuvierais","contuvieran","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Subjuntivo","Subjunctive","Futuro","Future","I will contain","contuviere","contuvieres","contuviere","contuviéremos","contuviereis","contuvieren","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have contained, contained","haya contenido","hayas contenido","haya contenido","hayamos contenido","hayáis contenido","hayan contenido","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have contained","hubiere contenido","hubieres contenido","hubiere contenido","hubiéremos contenido","hubiereis contenido","hubieren contenido","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had contained","hubiera contenido","hubieras contenido","hubiera contenido","hubiéramos contenido","hubierais contenido","hubieran contenido","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Contain! Don't contain!","","contén","contenga","contengamos","contened","contengan","conteniendo","containing","contenido","contained" +"contener","to contain, hold","Imperativo Negativo","Imperative Negative","Presente","Present","Contain! Don't contain!","","no contengas","no contenga","no contengamos","no contengáis","no contengan","conteniendo","containing","contenido","contained" +"contestar","to answer","Indicativo","Indicative","Presente","Present","I answer, am answering","contesto","contestas","contesta","contestamos","contestáis","contestan","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Futuro","Future","I will answer","contestaré","contestarás","contestará","contestaremos","contestaréis","contestarán","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Imperfecto","Imperfect","I was answering, used to answer, answered","contestaba","contestabas","contestaba","contestábamos","contestabais","contestaban","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Pretérito","Preterite","I answered","contesté","contestaste","contestó","contestamos","contestasteis","contestaron","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Condicional","Conditional","I would answer","contestaría","contestarías","contestaría","contestaríamos","contestaríais","contestarían","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Presente perfecto","Present Perfect","I have answered","he contestado","has contestado","ha contestado","hemos contestado","habéis contestado","han contestado","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have answered","habré contestado","habrás contestado","habrá contestado","habremos contestado","habréis contestado","habrán contestado","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had answered","había contestado","habías contestado","había contestado","habíamos contestado","habíais contestado","habían contestado","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had answered","hube contestado","hubiste contestado","hubo contestado","hubimos contestado","hubisteis contestado","hubieron contestado","contestando","answering","contestado","answered" +"contestar","to answer","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have answered","habría contestado","habrías contestado","habría contestado","habríamos contestado","habríais contestado","habrían contestado","contestando","answering","contestado","answered" +"contestemos" +"contestar","to answer","Subjuntivo","Subjunctive","Presente","Present","I answer, am answering","conteste","contestes","conteste","contestemos","contestéis","contesten","contestando","answering","contestado","answered" +"contestar","to answer","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I answered, was answering","contestara","contestaras","contestara","contestáramos","contestarais","contestaran","contestando","answering","contestado","answered" +"contestar","to answer","Subjuntivo","Subjunctive","Futuro","Future","I will answer","contestare","contestares","contestare","contestáremos","contestareis","contestaren","contestando","answering","contestado","answered" +"contestar","to answer","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have answered, answered","haya contestado","hayas contestado","haya contestado","hayamos contestado","hayáis contestado","hayan contestado","contestando","answering","contestado","answered" +"contestar","to answer","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have answered","hubiere contestado","hubieres contestado","hubiere contestado","hubiéremos contestado","hubiereis contestado","hubieren contestado","contestando","answering","contestado","answered" +"contestar","to answer","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had answered","hubiera contestado","hubieras contestado","hubiera contestado","hubiéramos contestado","hubierais contestado","hubieran contestado","contestando","answering","contestado","answered" +"contestar","to answer","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Answer! Don't answer!","","contesta","conteste","contestemos","contestad","contesten","contestando","answering","contestado","answered" +"contestar","to answer","Imperativo Negativo","Imperative Negative","Presente","Present","Answer! Don't answer!","","no contestes","no conteste","no contestemos","no contestéis","no contesten","contestando","answering","contestado","answered" +"continuar","to continue","Indicativo","Indicative","Presente","Present","I continue, am continuing","continúo","continúas","continúa","continuamos","continuáis","continúan","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Futuro","Future","I will continue","continuaré","continuarás","continuará","continuaremos","continuaréis","continuarán","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Imperfecto","Imperfect","I was continuing, used to continue, continued","continuaba","continuabas","continuaba","continuábamos","continuabais","continuaban","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Pretérito","Preterite","I continued","continué","continuaste","continuó","continuamos","continuasteis","continuaron","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Condicional","Conditional","I would continue","continuaría","continuarías","continuaría","continuaríamos","continuaríais","continuarían","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Presente perfecto","Present Perfect","I have continued","he continuado","has continuado","ha continuado","hemos continuado","habéis continuado","han continuado","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have continued","habré continuado","habrás continuado","habrá continuado","habremos continuado","habréis continuado","habrán continuado","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had continued","había continuado","habías continuado","había continuado","habíamos continuado","habíais continuado","habían continuado","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had continued","hube continuado","hubiste continuado","hubo continuado","hubimos continuado","hubisteis continuado","hubieron continuado","continuando","continuing","continuado","continued" +"continuar","to continue","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have continued","habría continuado","habrías continuado","habría continuado","habríamos continuado","habríais continuado","habrían continuado","continuando","continuing","continuado","continued" +"continuemos" +"continuar","to continue","Subjuntivo","Subjunctive","Presente","Present","I continue, am continuing","continúe","continúes","continúe","continuemos","continuéis","continúen","continuando","continuing","continuado","continued" +"continuar","to continue","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I continued, was continuing","continuara","continuaras","continuara","continuáramos","continuarais","continuaran","continuando","continuing","continuado","continued" +"continuar","to continue","Subjuntivo","Subjunctive","Futuro","Future","I will continue","continuare","continuares","continuare","continuáremos","continuareis","continuaren","continuando","continuing","continuado","continued" +"continuar","to continue","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have continued, continued","haya continuado","hayas continuado","haya continuado","hayamos continuado","hayáis continuado","hayan continuado","continuando","continuing","continuado","continued" +"continuar","to continue","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have continued","hubiere continuado","hubieres continuado","hubiere continuado","hubiéremos continuado","hubiereis continuado","hubieren continuado","continuando","continuing","continuado","continued" +"continuar","to continue","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had continued","hubiera continuado","hubieras continuado","hubiera continuado","hubiéramos continuado","hubierais continuado","hubieran continuado","continuando","continuing","continuado","continued" +"continuar","to continue","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Continue! Don't continue!","","continúa","continúe","continuemos","continuad","continúen","continuando","continuing","continuado","continued" +"continuar","to continue","Imperativo Negativo","Imperative Negative","Presente","Present","Continue! Don't continue!","","no continúes","no continúe","no continuemos","no continuéis","no continúen","continuando","continuing","continuado","continued" +"contribuir","to contribute","Indicativo","Indicative","Presente","Present","I contribute, am contributing","contribuyo","contribuyes","contribuye","contribuimos","contribuís","contribuyen","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Futuro","Future","I will contribute","contribuiré","contribuirás","contribuirá","contribuiremos","contribuiréis","contribuirán","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Imperfecto","Imperfect","I was contributing, used to contribute, contributed","contribuía","contribuías","contribuía","contribuíamos","contribuíais","contribuían","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Pretérito","Preterite","I contributed","contribuí","contribuiste","contribuyó","contribuimos","contribuisteis","contribuyeron","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Condicional","Conditional","I would contribute","contribuiría","contribuirías","contribuiría","contribuiríamos","contribuiríais","contribuirían","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Presente perfecto","Present Perfect","I have contributed","he contribuido","has contribuido","ha contribuido","hemos contribuido","habéis contribuido","han contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have contributed","habré contribuido","habrás contribuido","habrá contribuido","habremos contribuido","habréis contribuido","habrán contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had contributed","había contribuido","habías contribuido","había contribuido","habíamos contribuido","habíais contribuido","habían contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had contributed","hube contribuido","hubiste contribuido","hubo contribuido","hubimos contribuido","hubisteis contribuido","hubieron contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have contributed","habría contribuido","habrías contribuido","habría contribuido","habríamos contribuido","habríais contribuido","habrían contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuyamos" +"contribuir","to contribute","Subjuntivo","Subjunctive","Presente","Present","I contribute, am contributing","contribuya","contribuyas","contribuya","contribuyamos","contribuyáis","contribuyan","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I contributed, was contributing","contribuyera","contribuyeras","contribuyera","contribuyéramos","contribuyerais","contribuyeran","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Subjuntivo","Subjunctive","Futuro","Future","I will contribute","contribuyere","contribuyeres","contribuyere","contribuyéremos","contribuyereis","contribuyeren","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have contributed, contributed","haya contribuido","hayas contribuido","haya contribuido","hayamos contribuido","hayáis contribuido","hayan contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have contributed","hubiere contribuido","hubieres contribuido","hubiere contribuido","hubiéremos contribuido","hubiereis contribuido","hubieren contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had contributed","hubiera contribuido","hubieras contribuido","hubiera contribuido","hubiéramos contribuido","hubierais contribuido","hubieran contribuido","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Contribute! Don't contribute!","","contribuye","contribuya","contribuyamos","contribuid","contribuyan","contribuyendo","contributing","contribuido","contributed" +"contribuir","to contribute","Imperativo Negativo","Imperative Negative","Presente","Present","Contribute! Don't contribute!","","no contribuyas","no contribuya","no contribuyamos","no contribuyáis","no contribuyan","contribuyendo","contributing","contribuido","contributed" +"controlar","to control; to inspect, check","Indicativo","Indicative","Presente","Present","I control, am controlling","controlo","controlas","controla","controlamos","controláis","controlan","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Futuro","Future","I will control","controlaré","controlarás","controlará","controlaremos","controlaréis","controlarán","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Imperfecto","Imperfect","I was controlling, used to control, controlled","controlaba","controlabas","controlaba","controlábamos","controlabais","controlaban","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Pretérito","Preterite","I controlled","controlé","controlaste","controló","controlamos","controlasteis","controlaron","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Condicional","Conditional","I would control","controlaría","controlarías","controlaría","controlaríamos","controlaríais","controlarían","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Presente perfecto","Present Perfect","I have controlled","he controlado","has controlado","ha controlado","hemos controlado","habéis controlado","han controlado","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have controlled","habré controlado","habrás controlado","habrá controlado","habremos controlado","habréis controlado","habrán controlado","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had controlled","había controlado","habías controlado","había controlado","habíamos controlado","habíais controlado","habían controlado","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had controlled","hube controlado","hubiste controlado","hubo controlado","hubimos controlado","hubisteis controlado","hubieron controlado","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have controlled","habría controlado","habrías controlado","habría controlado","habríamos controlado","habríais controlado","habrían controlado","controlando","controlling","controlado","controlled" +"controlemos" +"controlar","to control; to inspect, check","Subjuntivo","Subjunctive","Presente","Present","I control, am controlling","controle","controles","controle","controlemos","controléis","controlen","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I controlled, was controlling","controlara","controlaras","controlara","controláramos","controlarais","controlaran","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Subjuntivo","Subjunctive","Futuro","Future","I will control","controlare","controlares","controlare","controláremos","controlareis","controlaren","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have controlled, controlled","haya controlado","hayas controlado","haya controlado","hayamos controlado","hayáis controlado","hayan controlado","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have controlled","hubiere controlado","hubieres controlado","hubiere controlado","hubiéremos controlado","hubiereis controlado","hubieren controlado","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had controlled","hubiera controlado","hubieras controlado","hubiera controlado","hubiéramos controlado","hubierais controlado","hubieran controlado","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Control! Don't control!","","controla","controle","controlemos","controlad","controlen","controlando","controlling","controlado","controlled" +"controlar","to control; to inspect, check","Imperativo Negativo","Imperative Negative","Presente","Present","Control! Don't control!","","no controles","no controle","no controlemos","no controléis","no controlen","controlando","controlling","controlado","controlled" +"convencer","to convince","Indicativo","Indicative","Presente","Present","I convince, am convincing","convenzo","convences","convence","convencemos","convencéis","convencen","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Futuro","Future","I will convince","convenceré","convencerás","convencerá","convenceremos","convenceréis","convencerán","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Imperfecto","Imperfect","I was convincing, used to convince, convinced","convencía","convencías","convencía","convencíamos","convencíais","convencían","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Pretérito","Preterite","I convinced","convencí","convenciste","convenció","convencimos","convencisteis","convencieron","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Condicional","Conditional","I would convince","convencería","convencerías","convencería","convenceríamos","convenceríais","convencerían","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Presente perfecto","Present Perfect","I have convinced","he convencido","has convencido","ha convencido","hemos convencido","habéis convencido","han convencido","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have convinced","habré convencido","habrás convencido","habrá convencido","habremos convencido","habréis convencido","habrán convencido","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had convinced","había convencido","habías convencido","había convencido","habíamos convencido","habíais convencido","habían convencido","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had convinced","hube convencido","hubiste convencido","hubo convencido","hubimos convencido","hubisteis convencido","hubieron convencido","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have convinced","habría convencido","habrías convencido","habría convencido","habríamos convencido","habríais convencido","habrían convencido","convenciendo","convincing","convencido","convinced" +"convenzamos" +"convencer","to convince","Subjuntivo","Subjunctive","Presente","Present","I convince, am convincing","convenza","convenzas","convenza","convenzamos","convenzáis","convenzan","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I convinced, was convincing","convenciera","convencieras","convenciera","convenciéramos","convencierais","convencieran","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Subjuntivo","Subjunctive","Futuro","Future","I will convince","convenciere","convencieres","convenciere","convenciéremos","convenciereis","convencieren","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have convinced, convinced","haya convencido","hayas convencido","haya convencido","hayamos convencido","hayáis convencido","hayan convencido","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have convinced","hubiere convencido","hubieres convencido","hubiere convencido","hubiéremos convencido","hubiereis convencido","hubieren convencido","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had convinced","hubiera convencido","hubieras convencido","hubiera convencido","hubiéramos convencido","hubierais convencido","hubieran convencido","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Convince! Don't convince!","","convence","convenza","convenzamos","convenced","convenzan","convenciendo","convincing","convencido","convinced" +"convencer","to convince","Imperativo Negativo","Imperative Negative","Presente","Present","Convince! Don't convince!","","no convenzas","no convenza","no convenzamos","no convenzáis","no convenzan","convenciendo","convincing","convencido","convinced" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Presente","Present","I agree, am agreeing","convengo","convienes","conviene","convenimos","convenís","convienen","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Futuro","Future","I will agree","convendré","convendrás","convendrá","convendremos","convendréis","convendrán","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Imperfecto","Imperfect","I was agreeing, used to agree, agreed","convenía","convenías","convenía","conveníamos","conveníais","convenían","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Pretérito","Preterite","I agreed","convine","conviniste","convino","convinimos","convinisteis","convinieron","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Condicional","Conditional","I would agree","convendría","convendrías","convendría","convendríamos","convendríais","convendrían","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have agreed","he convenido","has convenido","ha convenido","hemos convenido","habéis convenido","han convenido","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have agreed","habré convenido","habrás convenido","habrá convenido","habremos convenido","habréis convenido","habrán convenido","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had agreed","había convenido","habías convenido","había convenido","habíamos convenido","habíais convenido","habían convenido","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had agreed","hube convenido","hubiste convenido","hubo convenido","hubimos convenido","hubisteis convenido","hubieron convenido","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have agreed","habría convenido","habrías convenido","habría convenido","habríamos convenido","habríais convenido","habrían convenido","conviniendo","agreeing","convenido","agreed" +"convengamos" +"convenir","to agree; to suit, be suited to; to be good for","Subjuntivo","Subjunctive","Presente","Present","I agree, am agreeing","convenga","convengas","convenga","convengamos","convengáis","convengan","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I agreed, was agreeing","conviniera","convinieras","conviniera","conviniéramos","convinierais","convinieran","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Subjuntivo","Subjunctive","Futuro","Future","I will agree","conviniere","convinieres","conviniere","conviniéremos","conviniereis","convinieren","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have agreed, agreed","haya convenido","hayas convenido","haya convenido","hayamos convenido","hayáis convenido","hayan convenido","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have agreed","hubiere convenido","hubieres convenido","hubiere convenido","hubiéremos convenido","hubiereis convenido","hubieren convenido","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had agreed","hubiera convenido","hubieras convenido","hubiera convenido","hubiéramos convenido","hubierais convenido","hubieran convenido","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Agree! Don't agree!","","convén","convenga","convengamos","convenid","convengan","conviniendo","agreeing","convenido","agreed" +"convenir","to agree; to suit, be suited to; to be good for","Imperativo Negativo","Imperative Negative","Presente","Present","Agree! Don't agree!","","no convengas","no convenga","no convengamos","no convengáis","no convengan","conviniendo","agreeing","convenido","agreed" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Presente","Present","I talk, am talking","converso","conversas","conversa","conversamos","conversáis","conversan","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Futuro","Future","I will talk","conversaré","conversarás","conversará","conversaremos","conversaréis","conversarán","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Imperfecto","Imperfect","I was talking, used to talk, talked","conversaba","conversabas","conversaba","conversábamos","conversabais","conversaban","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Pretérito","Preterite","I talked","conversé","conversaste","conversó","conversamos","conversasteis","conversaron","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Condicional","Conditional","I would talk","conversaría","conversarías","conversaría","conversaríamos","conversaríais","conversarían","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have talked","he conversado","has conversado","ha conversado","hemos conversado","habéis conversado","han conversado","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have talked","habré conversado","habrás conversado","habrá conversado","habremos conversado","habréis conversado","habrán conversado","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had talked","había conversado","habías conversado","había conversado","habíamos conversado","habíais conversado","habían conversado","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had talked","hube conversado","hubiste conversado","hubo conversado","hubimos conversado","hubisteis conversado","hubieron conversado","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have talked","habría conversado","habrías conversado","habría conversado","habríamos conversado","habríais conversado","habrían conversado","conversando","talking","conversado","talked" +"conversemos" +"conversar","to talk, converse; to tell, relate","Subjuntivo","Subjunctive","Presente","Present","I talk, am talking","converse","converses","converse","conversemos","converséis","conversen","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I talked, was talking","conversara","conversaras","conversara","conversáramos","conversarais","conversaran","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Subjuntivo","Subjunctive","Futuro","Future","I will talk","conversare","conversares","conversare","conversáremos","conversareis","conversaren","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have talked, talked","haya conversado","hayas conversado","haya conversado","hayamos conversado","hayáis conversado","hayan conversado","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have talked","hubiere conversado","hubieres conversado","hubiere conversado","hubiéremos conversado","hubiereis conversado","hubieren conversado","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had talked","hubiera conversado","hubieras conversado","hubiera conversado","hubiéramos conversado","hubierais conversado","hubieran conversado","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Talk! Don't talk!","","conversa","converse","conversemos","conversad","conversen","conversando","talking","conversado","talked" +"conversar","to talk, converse; to tell, relate","Imperativo Negativo","Imperative Negative","Presente","Present","Talk! Don't talk!","","no converses","no converse","no conversemos","no converséis","no conversen","conversando","talking","conversado","talked" +"convertir","to convert","Indicativo","Indicative","Presente","Present","I convert, am converting","convierto","conviertes","convierte","convertimos","convertís","convierten","convirtiendo","converting","convertido","converted" +"cortemos" +"cortar","to cut","Subjuntivo","Subjunctive","Presente","Present","I cut, am cutting","corte","cortes","corte","cortemos","cortéis","corten","cortando","cutting","cortado","cut" +"convertir","to convert","Indicativo","Indicative","Futuro","Future","I will convert","convertiré","convertirás","convertirá","convertiremos","convertiréis","convertirán","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Imperfecto","Imperfect","I was converting, used to convert, converted","convertía","convertías","convertía","convertíamos","convertíais","convertían","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Pretérito","Preterite","I converted","convertí","convertiste","convirtió","convertimos","convertisteis","convirtieron","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Condicional","Conditional","I would convert","convertiría","convertirías","convertiría","convertiríamos","convertiríais","convertirían","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Presente perfecto","Present Perfect","I have converted","he convertido","has convertido","ha convertido","hemos convertido","habéis convertido","han convertido","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have converted","habré convertido","habrás convertido","habrá convertido","habremos convertido","habréis convertido","habrán convertido","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had converted","había convertido","habías convertido","había convertido","habíamos convertido","habíais convertido","habían convertido","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had converted","hube convertido","hubiste convertido","hubo convertido","hubimos convertido","hubisteis convertido","hubieron convertido","convirtiendo","converting","convertido","converted" +"convertir","to convert","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have converted","habría convertido","habrías convertido","habría convertido","habríamos convertido","habríais convertido","habrían convertido","convirtiendo","converting","convertido","converted" +"convirtamos" +"convertir","to convert","Subjuntivo","Subjunctive","Presente","Present","I convert, am converting","convierta","conviertas","convierta","convirtamos","convirtáis","conviertan","convirtiendo","converting","convertido","converted" +"convertir","to convert","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I converted, was converting","convirtiera","convirtieras","convirtiera","convirtiéramos","convirtierais","convirtieran","convirtiendo","converting","convertido","converted" +"convertir","to convert","Subjuntivo","Subjunctive","Futuro","Future","I will convert","convirtiere","convirtieres","convirtiere","convirtiéremos","convirtiereis","convirtieren","convirtiendo","converting","convertido","converted" +"convertir","to convert","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have converted, converted","haya convertido","hayas convertido","haya convertido","hayamos convertido","hayáis convertido","hayan convertido","convirtiendo","converting","convertido","converted" +"convertir","to convert","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have converted","hubiere convertido","hubieres convertido","hubiere convertido","hubiéremos convertido","hubiereis convertido","hubieren convertido","convirtiendo","converting","convertido","converted" +"convertir","to convert","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had converted","hubiera convertido","hubieras convertido","hubiera convertido","hubiéramos convertido","hubierais convertido","hubieran convertido","convirtiendo","converting","convertido","converted" +"convertir","to convert","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Convert! Don't convert!","","convierte","convierta","convirtamos","convertid","conviertan","convirtiendo","converting","convertido","converted" +"convertir","to convert","Imperativo Negativo","Imperative Negative","Presente","Present","Convert! Don't convert!","","no conviertas","no convierta","no convirtamos","no convirtáis","no conviertan","convirtiendo","converting","convertido","converted" +"convidar","to invite","Indicativo","Indicative","Presente","Present","I invite, am inviting","convido","convidas","convida","convidamos","convidáis","convidan","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Futuro","Future","I will invite","convidaré","convidarás","convidará","convidaremos","convidaréis","convidarán","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Imperfecto","Imperfect","I was inviting, used to invite, invited","convidaba","convidabas","convidaba","convidábamos","convidabais","convidaban","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Pretérito","Preterite","I invited","convidé","convidaste","convidó","convidamos","convidasteis","convidaron","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Condicional","Conditional","I would invite","convidaría","convidarías","convidaría","convidaríamos","convidaríais","convidarían","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Presente perfecto","Present Perfect","I have invited","he convidado","has convidado","ha convidado","hemos convidado","habéis convidado","han convidado","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have invited","habré convidado","habrás convidado","habrá convidado","habremos convidado","habréis convidado","habrán convidado","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had invited","había convidado","habías convidado","había convidado","habíamos convidado","habíais convidado","habían convidado","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had invited","hube convidado","hubiste convidado","hubo convidado","hubimos convidado","hubisteis convidado","hubieron convidado","convidando","inviting","convidado","invited" +"convidar","to invite","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have invited","habría convidado","habrías convidado","habría convidado","habríamos convidado","habríais convidado","habrían convidado","convidando","inviting","convidado","invited" +"convidemos" +"convidar","to invite","Subjuntivo","Subjunctive","Presente","Present","I invite, am inviting","convide","convides","convide","convidemos","convidéis","conviden","convidando","inviting","convidado","invited" +"convidar","to invite","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I invited, was inviting","convidara","convidaras","convidara","convidáramos","convidarais","convidaran","convidando","inviting","convidado","invited" +"convidar","to invite","Subjuntivo","Subjunctive","Futuro","Future","I will invite","convidare","convidares","convidare","convidáremos","convidareis","convidaren","convidando","inviting","convidado","invited" +"convidar","to invite","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have invited, invited","haya convidado","hayas convidado","haya convidado","hayamos convidado","hayáis convidado","hayan convidado","convidando","inviting","convidado","invited" +"convidar","to invite","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have invited","hubiere convidado","hubieres convidado","hubiere convidado","hubiéremos convidado","hubiereis convidado","hubieren convidado","convidando","inviting","convidado","invited" +"convidar","to invite","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had invited","hubiera convidado","hubieras convidado","hubiera convidado","hubiéramos convidado","hubierais convidado","hubieran convidado","convidando","inviting","convidado","invited" +"convidar","to invite","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Invite! Don't invite!","","convida","convide","convidemos","convidad","conviden","convidando","inviting","convidado","invited" +"convidar","to invite","Imperativo Negativo","Imperative Negative","Presente","Present","Invite! Don't invite!","","no convides","no convide","no convidemos","no convidéis","no conviden","convidando","inviting","convidado","invited" +"copiar","to copy","Indicativo","Indicative","Presente","Present","I copy, am copying","copio","copias","copia","copiamos","copiáis","copian","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Futuro","Future","I will copy","copiaré","copiarás","copiará","copiaremos","copiaréis","copiarán","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Imperfecto","Imperfect","I was copying, used to copy, copied","copiaba","copiabas","copiaba","copiábamos","copiabais","copiaban","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Pretérito","Preterite","I copied","copié","copiaste","copió","copiamos","copiasteis","copiaron","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Condicional","Conditional","I would copy","copiaría","copiarías","copiaría","copiaríamos","copiaríais","copiarían","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Presente perfecto","Present Perfect","I have copied","he copiado","has copiado","ha copiado","hemos copiado","habéis copiado","han copiado","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have copied","habré copiado","habrás copiado","habrá copiado","habremos copiado","habréis copiado","habrán copiado","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had copied","había copiado","habías copiado","había copiado","habíamos copiado","habíais copiado","habían copiado","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had copied","hube copiado","hubiste copiado","hubo copiado","hubimos copiado","hubisteis copiado","hubieron copiado","copiando","copying","copiado","copied" +"copiar","to copy","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have copied","habría copiado","habrías copiado","habría copiado","habríamos copiado","habríais copiado","habrían copiado","copiando","copying","copiado","copied" +"copiemos" +"copiar","to copy","Subjuntivo","Subjunctive","Presente","Present","I copy, am copying","copie","copies","copie","copiemos","copiéis","copien","copiando","copying","copiado","copied" +"copiar","to copy","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I copied, was copying","copiara","copiaras","copiara","copiáramos","copiarais","copiaran","copiando","copying","copiado","copied" +"copiar","to copy","Subjuntivo","Subjunctive","Futuro","Future","I will copy","copiare","copiares","copiare","copiáremos","copiareis","copiaren","copiando","copying","copiado","copied" +"cortar","to cut","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cut, was cutting","cortara","cortaras","cortara","cortáramos","cortarais","cortaran","cortando","cutting","cortado","cut" +"copiar","to copy","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have copied, copied","haya copiado","hayas copiado","haya copiado","hayamos copiado","hayáis copiado","hayan copiado","copiando","copying","copiado","copied" +"copiar","to copy","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have copied","hubiere copiado","hubieres copiado","hubiere copiado","hubiéremos copiado","hubiereis copiado","hubieren copiado","copiando","copying","copiado","copied" +"copiar","to copy","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had copied","hubiera copiado","hubieras copiado","hubiera copiado","hubiéramos copiado","hubierais copiado","hubieran copiado","copiando","copying","copiado","copied" +"copiar","to copy","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Copy! Don't copy!","","copia","copie","copiemos","copiad","copien","copiando","copying","copiado","copied" +"copiar","to copy","Imperativo Negativo","Imperative Negative","Presente","Present","Copy! Don't copy!","","no copies","no copie","no copiemos","no copiéis","no copien","copiando","copying","copiado","copied" +"corregir","to correct","Indicativo","Indicative","Presente","Present","I correct, am correcting","corrijo","corriges","corrige","corregimos","corregís","corrigen","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Futuro","Future","I will correct","corregiré","corregirás","corregirá","corregiremos","corregiréis","corregirán","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Imperfecto","Imperfect","I was correcting, used to correct, corrected","corregía","corregías","corregía","corregíamos","corregíais","corregían","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Pretérito","Preterite","I corrected","corregí","corregiste","corrigió","corregimos","corregisteis","corrigieron","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Condicional","Conditional","I would correct","corregiría","corregirías","corregiría","corregiríamos","corregiríais","corregirían","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Presente perfecto","Present Perfect","I have corrected","he corregido","has corregido","ha corregido","hemos corregido","habéis corregido","han corregido","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have corrected","habré corregido","habrás corregido","habrá corregido","habremos corregido","habréis corregido","habrán corregido","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had corrected","había corregido","habías corregido","había corregido","habíamos corregido","habíais corregido","habían corregido","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had corrected","hube corregido","hubiste corregido","hubo corregido","hubimos corregido","hubisteis corregido","hubieron corregido","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have corrected","habría corregido","habrías corregido","habría corregido","habríamos corregido","habríais corregido","habrían corregido","corrigiendo","correcting","corregido","corrected" +"corrijamos" +"corregir","to correct","Subjuntivo","Subjunctive","Presente","Present","I correct, am correcting","corrija","corrijas","corrija","corrijamos","corrijáis","corrijan","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I corrected, was correcting","corrigiera","corrigieras","corrigiera","corrigiéramos","corrigierais","corrigieran","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Subjuntivo","Subjunctive","Futuro","Future","I will correct","corrigiere","corrigieres","corrigiere","corrigiéremos","corrigiereis","corrigieren","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have corrected, corrected","haya corregido","hayas corregido","haya corregido","hayamos corregido","hayáis corregido","hayan corregido","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have corrected","hubiere corregido","hubieres corregido","hubiere corregido","hubiéremos corregido","hubiereis corregido","hubieren corregido","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had corrected","hubiera corregido","hubieras corregido","hubiera corregido","hubiéramos corregido","hubierais corregido","hubieran corregido","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Correct! Don't correct!","","corrige","corrija","corrijamos","corregid","corrijan","corrigiendo","correcting","corregido","corrected" +"corregir","to correct","Imperativo Negativo","Imperative Negative","Presente","Present","Correct! Don't correct!","","no corrijas","no corrija","no corrijamos","no corrijáis","no corrijan","corrigiendo","correcting","corregido","corrected" +"correr","to run","Indicativo","Indicative","Presente","Present","I run, am running","corro","corres","corre","corremos","corréis","corren","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Futuro","Future","I will run","correré","correrás","correrá","correremos","correréis","correrán","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Imperfecto","Imperfect","I was running, used to run, ran","corría","corrías","corría","corríamos","corríais","corrían","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Pretérito","Preterite","I ran","corrí","corriste","corrió","corrimos","corristeis","corrieron","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Condicional","Conditional","I would run","correría","correrías","correría","correríamos","correríais","correrían","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Presente perfecto","Present Perfect","I have run","he corrido","has corrido","ha corrido","hemos corrido","habéis corrido","han corrido","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have run","habré corrido","habrás corrido","habrá corrido","habremos corrido","habréis corrido","habrán corrido","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had run","había corrido","habías corrido","había corrido","habíamos corrido","habíais corrido","habían corrido","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had run","hube corrido","hubiste corrido","hubo corrido","hubimos corrido","hubisteis corrido","hubieron corrido","corriendo","running","corrido","run" +"correr","to run","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have run","habría corrido","habrías corrido","habría corrido","habríamos corrido","habríais corrido","habrían corrido","corriendo","running","corrido","run" +"corramos" +"correr","to run","Subjuntivo","Subjunctive","Presente","Present","I run, am running","corra","corras","corra","corramos","corráis","corran","corriendo","running","corrido","run" +"correr","to run","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ran, was running","corriera","corrieras","corriera","corriéramos","corrierais","corrieran","corriendo","running","corrido","run" +"correr","to run","Subjuntivo","Subjunctive","Futuro","Future","I will run","corriere","corrieres","corriere","corriéremos","corriereis","corrieren","corriendo","running","corrido","run" +"correr","to run","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have run, ran","haya corrido","hayas corrido","haya corrido","hayamos corrido","hayáis corrido","hayan corrido","corriendo","running","corrido","run" +"correr","to run","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have run","hubiere corrido","hubieres corrido","hubiere corrido","hubiéremos corrido","hubiereis corrido","hubieren corrido","corriendo","running","corrido","run" +"correr","to run","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had run","hubiera corrido","hubieras corrido","hubiera corrido","hubiéramos corrido","hubierais corrido","hubieran corrido","corriendo","running","corrido","run" +"correr","to run","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Run! Don't run!","","corre","corra","corramos","corred","corran","corriendo","running","corrido","run" +"correr","to run","Imperativo Negativo","Imperative Negative","Presente","Present","Run! Don't run!","","no corras","no corra","no corramos","no corráis","no corran","corriendo","running","corrido","run" +"cortar","to cut","Indicativo","Indicative","Presente","Present","I cut, am cutting","corto","cortas","corta","cortamos","cortáis","cortan","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Futuro","Future","I will cut","cortaré","cortarás","cortará","cortaremos","cortaréis","cortarán","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Imperfecto","Imperfect","I was cutting, used to cut, cut","cortaba","cortabas","cortaba","cortábamos","cortabais","cortaban","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Pretérito","Preterite","I cut","corté","cortaste","cortó","cortamos","cortasteis","cortaron","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Condicional","Conditional","I would cut","cortaría","cortarías","cortaría","cortaríamos","cortaríais","cortarían","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cut","he cortado","has cortado","ha cortado","hemos cortado","habéis cortado","han cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cut","habré cortado","habrás cortado","habrá cortado","habremos cortado","habréis cortado","habrán cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cut","había cortado","habías cortado","había cortado","habíamos cortado","habíais cortado","habían cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cut","hube cortado","hubiste cortado","hubo cortado","hubimos cortado","hubisteis cortado","hubieron cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cut","habría cortado","habrías cortado","habría cortado","habríamos cortado","habríais cortado","habrían cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cut, cut","haya cortado","hayas cortado","haya cortado","hayamos cortado","hayáis cortado","hayan cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cut","hubiere cortado","hubieres cortado","hubiere cortado","hubiéremos cortado","hubiereis cortado","hubieren cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cut","hubiera cortado","hubieras cortado","hubiera cortado","hubiéramos cortado","hubierais cortado","hubieran cortado","cortando","cutting","cortado","cut" +"cortar","to cut","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cut! Don't cut!","","corta","corte","corramos","cortad","corten","cortando","cutting","cortado","cut" +"cortar","to cut","Imperativo Negativo","Imperative Negative","Presente","Present","Cut! Don't cut!","","no cortes","no corte","no corramos","no cortéis","no corten","cortando","cutting","cortado","cut" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Presente","Present","I sew, am sewing","coso","coses","cose","cosemos","coséis","cosen","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Futuro","Future","I will sew","coseré","coserás","coserá","coseremos","coseréis","coserán","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Imperfecto","Imperfect","I was sewing, used to sew, sewed","cosía","cosías","cosía","cosíamos","cosíais","cosían","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Pretérito","Preterite","I sewed","cosí","cosiste","cosió","cosimos","cosisteis","cosieron","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Condicional","Conditional","I would sew","cosería","coserías","cosería","coseríamos","coseríais","coserían","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sewn","he cosido","has cosido","ha cosido","hemos cosido","habéis cosido","han cosido","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sewn","habré cosido","habrás cosido","habrá cosido","habremos cosido","habréis cosido","habrán cosido","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sewn","había cosido","habías cosido","había cosido","habíamos cosido","habíais cosido","habían cosido","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sewn","hube cosido","hubiste cosido","hubo cosido","hubimos cosido","hubisteis cosido","hubieron cosido","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sewn","habría cosido","habrías cosido","habría cosido","habríamos cosido","habríais cosido","habrían cosido","cosiendo","sewing","cosido","sewed" +"cosamos" +"coser","to sew, sew up; to stitch, stitch up","Subjuntivo","Subjunctive","Presente","Present","I sew, am sewing","cosa","cosas","cosa","cosamos","cosáis","cosan","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I sewed, was sewing","cosiera","cosieras","cosiera","cosiéramos","cosierais","cosieran","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Subjuntivo","Subjunctive","Futuro","Future","I will sew","cosiere","cosieres","cosiere","cosiéremos","cosiereis","cosieren","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sewn, sewed","haya cosido","hayas cosido","haya cosido","hayamos cosido","hayáis cosido","hayan cosido","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sewn","hubiere cosido","hubieres cosido","hubiere cosido","hubiéremos cosido","hubiereis cosido","hubieren cosido","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sewn","hubiera cosido","hubieras cosido","hubiera cosido","hubiéramos cosido","hubierais cosido","hubieran cosido","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sew! Don't sew!","","cose","cosa","cosamos","cosed","cosan","cosiendo","sewing","cosido","sewed" +"coser","to sew, sew up; to stitch, stitch up","Imperativo Negativo","Imperative Negative","Presente","Present","Sew! Don't sew!","","no cosas","no cosa","no cosamos","no cosáis","no cosan","cosiendo","sewing","cosido","sewed" +"costar","to cost","Indicativo","Indicative","Presente","Present","I cost, am costing","cuesto","cuestas","cuesta","costamos","costáis","cuestan","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Futuro","Future","I will cost","costaré","costarás","costará","costaremos","costaréis","costarán","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Imperfecto","Imperfect","I was costing, used to cost, cost","costaba","costabas","costaba","costábamos","costabais","costaban","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Pretérito","Preterite","I cost","costé","costaste","costó","costamos","costasteis","costaron","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Condicional","Conditional","I would cost","costaría","costarías","costaría","costaríamos","costaríais","costarían","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cost","he costado","has costado","ha costado","hemos costado","habéis costado","han costado","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cost","habré costado","habrás costado","habrá costado","habremos costado","habréis costado","habrán costado","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cost","había costado","habías costado","había costado","habíamos costado","habíais costado","habían costado","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cost","hube costado","hubiste costado","hubo costado","hubimos costado","hubisteis costado","hubieron costado","costando","costing","costado","cost" +"costar","to cost","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cost","habría costado","habrías costado","habría costado","habríamos costado","habríais costado","habrían costado","costando","costing","costado","cost" +"costemos" +"costar","to cost","Subjuntivo","Subjunctive","Presente","Present","I cost, am costing","cueste","cuestes","cueste","costemos","costéis","cuesten","costando","costing","costado","cost" +"costar","to cost","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cost, was costing","costara","costaras","costara","costáramos","costarais","costaran","costando","costing","costado","cost" +"costar","to cost","Subjuntivo","Subjunctive","Futuro","Future","I will cost","costare","costares","costare","costáremos","costareis","costaren","costando","costing","costado","cost" +"costar","to cost","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cost, cost","haya costado","hayas costado","haya costado","hayamos costado","hayáis costado","hayan costado","costando","costing","costado","cost" +"costar","to cost","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cost","hubiere costado","hubieres costado","hubiere costado","hubiéremos costado","hubiereis costado","hubieren costado","costando","costing","costado","cost" +"costar","to cost","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cost","hubiera costado","hubieras costado","hubiera costado","hubiéramos costado","hubierais costado","hubieran costado","costando","costing","costado","cost" +"costar","to cost","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cost! Don't cost!","","cuesta","cueste","costemos","costad","cuesten","costando","costing","costado","cost" +"costar","to cost","Imperativo Negativo","Imperative Negative","Presente","Present","Cost! Don't cost!","","no cuestes","no cueste","no costemos","no costéis","no cuesten","costando","costing","costado","cost" +"crear","to create; to make","Indicativo","Indicative","Presente","Present","I create, am creating","creo","creas","crea","creamos","creáis","crean","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Futuro","Future","I will create","crearé","crearás","creará","crearemos","crearéis","crearán","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Imperfecto","Imperfect","I was creating, used to create, created","creaba","creabas","creaba","creábamos","creabais","creaban","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Pretérito","Preterite","I created","creé","creaste","creó","creamos","creasteis","crearon","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Condicional","Conditional","I would create","crearía","crearías","crearía","crearíamos","crearíais","crearían","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Presente perfecto","Present Perfect","I have created","he creado","has creado","ha creado","hemos creado","habéis creado","han creado","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have created","habré creado","habrás creado","habrá creado","habremos creado","habréis creado","habrán creado","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had created","había creado","habías creado","había creado","habíamos creado","habíais creado","habían creado","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had created","hube creado","hubiste creado","hubo creado","hubimos creado","hubisteis creado","hubieron creado","creando","creating","creado","created" +"crear","to create; to make","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have created","habría creado","habrías creado","habría creado","habríamos creado","habríais creado","habrían creado","creando","creating","creado","created" +"creemos" +"crear","to create; to make","Subjuntivo","Subjunctive","Presente","Present","I create, am creating","cree","crees","cree","creemos","creéis","creen","creando","creating","creado","created" +"crear","to create; to make","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I created, was creating","creara","crearas","creara","creáramos","crearais","crearan","creando","creating","creado","created" +"crear","to create; to make","Subjuntivo","Subjunctive","Futuro","Future","I will create","creare","creares","creare","creáremos","creareis","crearen","creando","creating","creado","created" +"crear","to create; to make","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have created, created","haya creado","hayas creado","haya creado","hayamos creado","hayáis creado","hayan creado","creando","creating","creado","created" +"crear","to create; to make","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have created","hubiere creado","hubieres creado","hubiere creado","hubiéremos creado","hubiereis creado","hubieren creado","creando","creating","creado","created" +"crear","to create; to make","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had created","hubiera creado","hubieras creado","hubiera creado","hubiéramos creado","hubierais creado","hubieran creado","creando","creating","creado","created" +"crear","to create; to make","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Create! Don't create!","","crea","cree","creemos","cread","creen","creando","creating","creado","created" +"crear","to create; to make","Imperativo Negativo","Imperative Negative","Presente","Present","Create! Don't create!","","no crees","no cree","no creemos","no creéis","no creen","creando","creating","creado","created" +"crecer","to grow [up]","Indicativo","Indicative","Presente","Present","I grow, am growing","crezco","creces","crece","crecemos","crecéis","crecen","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Futuro","Future","I will grow","creceré","crecerás","crecerá","creceremos","creceréis","crecerán","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Imperfecto","Imperfect","I was growing, used to grow, grew","crecía","crecías","crecía","crecíamos","crecíais","crecían","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Pretérito","Preterite","I grew","crecí","creciste","creció","crecimos","crecisteis","crecieron","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Condicional","Conditional","I would grow","crecería","crecerías","crecería","creceríamos","creceríais","crecerían","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have grown","he crecido","has crecido","ha crecido","hemos crecido","habéis crecido","han crecido","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have grown","habré crecido","habrás crecido","habrá crecido","habremos crecido","habréis crecido","habrán crecido","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had grown","había crecido","habías crecido","había crecido","habíamos crecido","habíais crecido","habían crecido","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had grown","hube crecido","hubiste crecido","hubo crecido","hubimos crecido","hubisteis crecido","hubieron crecido","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have grown","habría crecido","habrías crecido","habría crecido","habríamos crecido","habríais crecido","habrían crecido","creciendo","growing","crecido","grown" +"crezcamos" +"crecer","to grow [up]","Subjuntivo","Subjunctive","Presente","Present","I grow, am growing","crezca","crezcas","crezca","crezcamos","crezcáis","crezcan","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I grew, was growing","creciera","crecieras","creciera","creciéramos","crecierais","crecieran","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Subjuntivo","Subjunctive","Futuro","Future","I will grow","creciere","crecieres","creciere","creciéremos","creciereis","crecieren","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have grown, grew","haya crecido","hayas crecido","haya crecido","hayamos crecido","hayáis crecido","hayan crecido","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have grown","hubiere crecido","hubieres crecido","hubiere crecido","hubiéremos crecido","hubiereis crecido","hubieren crecido","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had grown","hubiera crecido","hubieras crecido","hubiera crecido","hubiéramos crecido","hubierais crecido","hubieran crecido","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Grow! Don't grow!","","crece","crezca","crezcamos","creced","crezcan","creciendo","growing","crecido","grown" +"crecer","to grow [up]","Imperativo Negativo","Imperative Negative","Presente","Present","Grow! Don't grow!","","no crezcas","no crezca","no crezcamos","no crezcáis","no crezcan","creciendo","growing","crecido","grown" +"creer","to believe","Indicativo","Indicative","Presente","Present","I believe, am believing","creo","crees","cree","creemos","creéis","creen","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Futuro","Future","I will believe","creeré","creerás","creerá","creeremos","creeréis","creerán","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Imperfecto","Imperfect","I was believing, used to believe, believed","creía","creías","creía","creíamos","creíais","creían","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Pretérito","Preterite","I believed","creí","creíste","creyó","creímos","creísteis","creyeron","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Condicional","Conditional","I would believe","creería","creerías","creería","creeríamos","creeríais","creerían","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Presente perfecto","Present Perfect","I have believed","he creído","has creído","ha creído","hemos creído","habéis creído","han creído","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have believed","habré creído","habrás creído","habrá creído","habremos creído","habréis creído","habrán creído","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had believed","había creído","habías creído","había creído","habíamos creído","habíais creído","habían creído","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had believed","hube creído","hubiste creído","hubo creído","hubimos creído","hubisteis creído","hubieron creído","creyendo","believing","creído","believed" +"creer","to believe","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have believed","habría creído","habrías creído","habría creído","habríamos creído","habríais creído","habrían creído","creyendo","believing","creído","believed" +"creamos" +"creer","to believe","Subjuntivo","Subjunctive","Presente","Present","I believe, am believing","crea","creas","crea","creamos","creáis","crean","creyendo","believing","creído","believed" +"creer","to believe","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I believed, was believing","creyera","creyeras","creyera","creyéramos","creyerais","creyeran","creyendo","believing","creído","believed" +"creer","to believe","Subjuntivo","Subjunctive","Futuro","Future","I will believe","creyere","creyeres","creyere","creyéremos","creyereis","creyeren","creyendo","believing","creído","believed" +"creer","to believe","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have believed, believed","haya creído","hayas creído","haya creído","hayamos creído","hayáis creído","hayan creído","creyendo","believing","creído","believed" +"creer","to believe","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have believed","hubiere creído","hubieres creído","hubiere creído","hubiéremos creído","hubiereis creído","hubieren creído","creyendo","believing","creído","believed" +"creer","to believe","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had believed","hubiera creído","hubieras creído","hubiera creído","hubiéramos creído","hubierais creído","hubieran creído","creyendo","believing","creído","believed" +"creer","to believe","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Believe! Don't believe!","","cree","crea","creamos","creed","crean","creyendo","believing","creído","believed" +"creer","to believe","Imperativo Negativo","Imperative Negative","Presente","Present","Believe! Don't believe!","","no creas","no crea","no creamos","no creáis","no crean","creyendo","believing","creído","believed" +"criar","to raise","Indicativo","Indicative","Presente","Present","I raise, am raising","crío","crías","cría","criamos","criáis","crían","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Futuro","Future","I will raise","criaré","criarás","criará","criaremos","criaréis","criarán","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Imperfecto","Imperfect","I was raising, used to raise, raised","criaba","criabas","criaba","criábamos","criabais","criaban","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Pretérito","Preterite","I raised","crié","criaste","crio","criamos","criasteis","criaron","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Condicional","Conditional","I would raise","criaría","criarías","criaría","criaríamos","criaríais","criarían","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Presente perfecto","Present Perfect","I have raised","he criado","has criado","ha criado","hemos criado","habéis criado","han criado","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have raised","habré criado","habrás criado","habrá criado","habremos criado","habréis criado","habrán criado","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had raised","había criado","habías criado","había criado","habíamos criado","habíais criado","habían criado","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had raised","hube criado","hubiste criado","hubo criado","hubimos criado","hubisteis criado","hubieron criado","criando","raising","criado","raised" +"criar","to raise","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have raised","habría criado","habrías criado","habría criado","habríamos criado","habríais criado","habrían criado","criando","raising","criado","raised" +"criemos" +"criar","to raise","Subjuntivo","Subjunctive","Presente","Present","I raise, am raising","críe","críes","críe","criemos","criéis","críen","criando","raising","criado","raised" +"criar","to raise","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I raised, was raising","criara","criaras","criara","criáramos","criarais","criaran","criando","raising","criado","raised" +"criar","to raise","Subjuntivo","Subjunctive","Futuro","Future","I will raise","criare","criares","criare","criáremos","criareis","criaren","criando","raising","criado","raised" +"criar","to raise","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have raised, raised","haya criado","hayas criado","haya criado","hayamos criado","hayáis criado","hayan criado","criando","raising","criado","raised" +"criar","to raise","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have raised","hubiere criado","hubieres criado","hubiere criado","hubiéremos criado","hubiereis criado","hubieren criado","criando","raising","criado","raised" +"criar","to raise","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had raised","hubiera criado","hubieras criado","hubiera criado","hubiéramos criado","hubierais criado","hubieran criado","criando","raising","criado","raised" +"criar","to raise","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Raise! Don't raise!","","cría","críe","criemos","criad","críen","criando","raising","criado","raised" +"criar","to raise","Imperativo Negativo","Imperative Negative","Presente","Present","Raise! Don't raise!","","no críes","no críe","no criemos","no criéis","no críen","criando","raising","criado","raised" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Presente","Present","I grow up, am growing up","me crío","te crías","se cría","nos criamos","os criáis","se crían","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Futuro","Future","I will grow up","me criaré","te criarás","se criará","nos criaremos","os criaréis","se criarán","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Imperfecto","Imperfect","I was growing up, used to grow up, grew up","me criaba","te criabas","se criaba","nos criábamos","os criabais","se criaban","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Pretérito","Preterite","I grew up","me crié","te criaste","se crio","nos criamos","os criasteis","se criaron","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Condicional","Conditional","I would grow up","me criaría","te criarías","se criaría","nos criaríamos","os criaríais","se criarían","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have grown up","me he criado","te has criado","se ha criado","nos hemos criado","os habéis criado","se han criado","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have grown up","me habré criado","te habrás criado","se habrá criado","nos habremos criado","os habréis criado","se habrán criado","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had grown up","me había criado","te habías criado","se había criado","nos habíamos criado","os habíais criado","se habían criado","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had grown up","me hube criado","te hubiste criado","se hubo criado","nos hubimos criado","os hubisteis criado","se hubieron criado","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have grown up","me habría criado","te habrías criado","se habría criado","nos habríamos criado","os habríais criado","se habrían criado","criándose","growing up","criado","grown up" +"nos criemos" +"criarse","to grow [up]; to be brought up","Subjuntivo","Subjunctive","Presente","Present","I grow up, am growing up","me críe","te críes","se críe","nos criemos","os criéis","se críen","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I grew up, was growing up","me criara","te criaras","se criara","nos criáramos","os criarais","se criaran","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Subjuntivo","Subjunctive","Futuro","Future","I will grow up","me criare","te criares","se criare","nos criáremos","os criareis","se criaren","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have grown up, grew up","me haya criado","te hayas criado","se haya criado","nos hayamos criado","os hayáis criado","se hayan criado","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have grown up","me hubiere criado","te hubieres criado","se hubiere criado","nos hubiéremos criado","os hubiereis criado","se hubieren criado","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had grown up","me hubiera criado","te hubieras criado","se hubiera criado","nos hubiéramos criado","os hubierais criado","se hubieran criado","criándose","growing up","criado","grown up" +"criarse","to grow [up]; to be brought up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Grow up! Don't grow up!","","críate","críese","nos criemos","criaos","críense","criándose","growing up","criado","grown up", +"criarse","to grow [up]; to be brought up","Imperativo Negativo","Imperative Negative","Presente","Present","Grow up! Don't grow up!","","no te críes","no se críe","no nos criemos","no os criéis","no se críen","criándose","growing up","criado","grown up", +"criticar","to criticize","Indicativo","Indicative","Presente","Present","I criticize, am criticizing","critico","criticas","critica","criticamos","criticáis","critican","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Futuro","Future","I will criticize","criticaré","criticarás","criticará","criticaremos","criticaréis","criticarán","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Imperfecto","Imperfect","I was criticizing, used to criticize, criticized","criticaba","criticabas","criticaba","criticábamos","criticabais","criticaban","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Pretérito","Preterite","I criticized","critiqué","criticaste","criticó","criticamos","criticasteis","criticaron","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Condicional","Conditional","I would criticize","criticaría","criticarías","criticaría","criticaríamos","criticaríais","criticarían","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have criticized","he criticado","has criticado","ha criticado","hemos criticado","habéis criticado","han criticado","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have criticized","habré criticado","habrás criticado","habrá criticado","habremos criticado","habréis criticado","habrán criticado","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had criticized","había criticado","habías criticado","había criticado","habíamos criticado","habíais criticado","habían criticado","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had criticized","hube criticado","hubiste criticado","hubo criticado","hubimos criticado","hubisteis criticado","hubieron criticado","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have criticized","habría criticado","habrías criticado","habría criticado","habríamos criticado","habríais criticado","habrían criticado","criticando","criticizing","criticado","criticized" +"critiquemos" +"criticar","to criticize","Subjuntivo","Subjunctive","Presente","Present","I criticize, am criticizing","critique","critiques","critique","critiquemos","critiquéis","critiquen","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I criticized, was criticizing","criticara","criticaras","criticara","criticáramos","criticarais","criticaran","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Subjuntivo","Subjunctive","Futuro","Future","I will criticize","criticare","criticares","criticare","criticáremos","criticareis","criticaren","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have criticized, criticized","haya criticado","hayas criticado","haya criticado","hayamos criticado","hayáis criticado","hayan criticado","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have criticized","hubiere criticado","hubieres criticado","hubiere criticado","hubiéremos criticado","hubiereis criticado","hubieren criticado","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had criticized","hubiera criticado","hubieras criticado","hubiera criticado","hubiéramos criticado","hubierais criticado","hubieran criticado","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Criticize! Don't criticize!","","critica","critique","critiquemos","criticad","critiquen","criticando","criticizing","criticado","criticized" +"criticar","to criticize","Imperativo Negativo","Imperative Negative","Presente","Present","Criticize! Don't criticize!","","no critiques","no critique","no critiquemos","no critiquéis","no critiquen","criticando","criticizing","criticado","criticized" +"crucificar","to crucify","Indicativo","Indicative","Presente","Present","I crucify, am crucifying","crucifico","crucificas","crucifica","crucificamos","crucificáis","crucifican","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Futuro","Future","I will crucify","crucificaré","crucificarás","crucificará","crucificaremos","crucificaréis","crucificarán","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Imperfecto","Imperfect","I was crucifying, used to crucify, crucified","crucificaba","crucificabas","crucificaba","crucificábamos","crucificabais","crucificaban","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Pretérito","Preterite","I crucified","crucifiqué","crucificaste","crucificó","crucificamos","crucificasteis","crucificaron","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Condicional","Conditional","I would crucify","crucificaría","crucificarías","crucificaría","crucificaríamos","crucificaríais","crucificarían","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Presente perfecto","Present Perfect","I have crucified","he crucificado","has crucificado","ha crucificado","hemos crucificado","habéis crucificado","han crucificado","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have crucified","habré crucificado","habrás crucificado","habrá crucificado","habremos crucificado","habréis crucificado","habrán crucificado","crucificando","crucifying","crucificado","crucified" +"cuidar","to take care of, look after","Indicativo","Indicative","Pretérito","Preterite","I took care of","cuidé","cuidaste","cuidó","cuidamos","cuidasteis","cuidaron","cuidando","taking care of","cuidado","taken care of" +"crucificar","to crucify","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had crucified","había crucificado","habías crucificado","había crucificado","habíamos crucificado","habíais crucificado","habían crucificado","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had crucified","hube crucificado","hubiste crucificado","hubo crucificado","hubimos crucificado","hubisteis crucificado","hubieron crucificado","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have crucified","habría crucificado","habrías crucificado","habría crucificado","habríamos crucificado","habríais crucificado","habrían crucificado","crucificando","crucifying","crucificado","crucified" +"crucifiquemos" +"crucificar","to crucify","Subjuntivo","Subjunctive","Presente","Present","I crucify, am crucifying","crucifique","crucifiques","crucifique","crucifiquemos","crucifiquéis","crucifiquen","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I crucified, was crucifying","crucificara","crucificaras","crucificara","crucificáramos","crucificarais","crucificaran","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Subjuntivo","Subjunctive","Futuro","Future","I will crucify","crucificare","crucificares","crucificare","crucificáremos","crucificareis","crucificaren","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have crucified, crucified","haya crucificado","hayas crucificado","haya crucificado","hayamos crucificado","hayáis crucificado","hayan crucificado","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have crucified","hubiere crucificado","hubieres crucificado","hubiere crucificado","hubiéremos crucificado","hubiereis crucificado","hubieren crucificado","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had crucified","hubiera crucificado","hubieras crucificado","hubiera crucificado","hubiéramos crucificado","hubierais crucificado","hubieran crucificado","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Crucify! Don't crucify!","","crucifica","crucifique","crucifiquemos","crucificad","crucifiquen","crucificando","crucifying","crucificado","crucified" +"crucificar","to crucify","Imperativo Negativo","Imperative Negative","Presente","Present","Crucify! Don't crucify!","","no crucifiques","no crucifique","no crucifiquemos","no crucifiquéis","no crucifiquen","crucificando","crucifying","crucificado","crucified" +"cruzar","to cross","Indicativo","Indicative","Presente","Present","I cross, am crossing","cruzo","cruzas","cruza","cruzamos","cruzáis","cruzan","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Futuro","Future","I will cross","cruzaré","cruzarás","cruzará","cruzaremos","cruzaréis","cruzarán","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Imperfecto","Imperfect","I was crossing, used to cross, crossed","cruzaba","cruzabas","cruzaba","cruzábamos","cruzabais","cruzaban","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Pretérito","Preterite","I crossed","crucé","cruzaste","cruzó","cruzamos","cruzasteis","cruzaron","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Condicional","Conditional","I would cross","cruzaría","cruzarías","cruzaría","cruzaríamos","cruzaríais","cruzarían","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Presente perfecto","Present Perfect","I have crossed","he cruzado","has cruzado","ha cruzado","hemos cruzado","habéis cruzado","han cruzado","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have crossed","habré cruzado","habrás cruzado","habrá cruzado","habremos cruzado","habréis cruzado","habrán cruzado","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had crossed","había cruzado","habías cruzado","había cruzado","habíamos cruzado","habíais cruzado","habían cruzado","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had crossed","hube cruzado","hubiste cruzado","hubo cruzado","hubimos cruzado","hubisteis cruzado","hubieron cruzado","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have crossed","habría cruzado","habrías cruzado","habría cruzado","habríamos cruzado","habríais cruzado","habrían cruzado","cruzando","crossing","cruzado","crossed" +"crucemos" +"cruzar","to cross","Subjuntivo","Subjunctive","Presente","Present","I cross, am crossing","cruce","cruces","cruce","crucemos","crucéis","crucen","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I crossed, was crossing","cruzara","cruzaras","cruzara","cruzáramos","cruzarais","cruzaran","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Subjuntivo","Subjunctive","Futuro","Future","I will cross","cruzare","cruzares","cruzare","cruzáremos","cruzareis","cruzaren","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have crossed, crossed","haya cruzado","hayas cruzado","haya cruzado","hayamos cruzado","hayáis cruzado","hayan cruzado","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have crossed","hubiere cruzado","hubieres cruzado","hubiere cruzado","hubiéremos cruzado","hubiereis cruzado","hubieren cruzado","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had crossed","hubiera cruzado","hubieras cruzado","hubiera cruzado","hubiéramos cruzado","hubierais cruzado","hubieran cruzado","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cross! Don't cross!","","cruza","cruce","crucemos","cruzad","crucen","cruzando","crossing","cruzado","crossed" +"cruzar","to cross","Imperativo Negativo","Imperative Negative","Presente","Present","Cross! Don't cross!","","no cruces","no cruce","no crucemos","no crucéis","no crucen","cruzando","crossing","cruzado","crossed" +"cubrir","to cover","Indicativo","Indicative","Presente","Present","I cover, am covering","cubro","cubres","cubre","cubrimos","cubrís","cubren","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Futuro","Future","I will cover","cubriré","cubrirás","cubrirá","cubriremos","cubriréis","cubrirán","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Imperfecto","Imperfect","I was covering, used to cover, covered","cubría","cubrías","cubría","cubríamos","cubríais","cubrían","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Pretérito","Preterite","I covered","cubrí","cubriste","cubrió","cubrimos","cubristeis","cubrieron","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Condicional","Conditional","I would cover","cubriría","cubrirías","cubriría","cubriríamos","cubriríais","cubrirían","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Presente perfecto","Present Perfect","I have covered","he cubierto","has cubierto","ha cubierto","hemos cubierto","habéis cubierto","han cubierto","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have covered","habré cubierto","habrás cubierto","habrá cubierto","habremos cubierto","habréis cubierto","habrán cubierto","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had covered","había cubierto","habías cubierto","había cubierto","habíamos cubierto","habíais cubierto","habían cubierto","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had covered","hube cubierto","hubiste cubierto","hubo cubierto","hubimos cubierto","hubisteis cubierto","hubieron cubierto","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have covered","habría cubierto","habrías cubierto","habría cubierto","habríamos cubierto","habríais cubierto","habrían cubierto","cubriendo","covering","cubierto","covered" +"cubramos" +"cubrir","to cover","Subjuntivo","Subjunctive","Presente","Present","I cover, am covering","cubra","cubras","cubra","cubramos","cubráis","cubran","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I covered, was covering","cubriera","cubrieras","cubriera","cubriéramos","cubrierais","cubrieran","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Subjuntivo","Subjunctive","Futuro","Future","I will cover","cubriere","cubrieres","cubriere","cubriéremos","cubriereis","cubrieren","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have covered, covered","haya cubierto","hayas cubierto","haya cubierto","hayamos cubierto","hayáis cubierto","hayan cubierto","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have covered","hubiere cubierto","hubieres cubierto","hubiere cubierto","hubiéremos cubierto","hubiereis cubierto","hubieren cubierto","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had covered","hubiera cubierto","hubieras cubierto","hubiera cubierto","hubiéramos cubierto","hubierais cubierto","hubieran cubierto","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cover! Don't cover!","","cubre","cubra","cubramos","cubrid","cubran","cubriendo","covering","cubierto","covered" +"cubrir","to cover","Imperativo Negativo","Imperative Negative","Presente","Present","Cover! Don't cover!","","no cubras","no cubra","no cubramos","no cubráis","no cubran","cubriendo","covering","cubierto","covered" +"cuidar","to take care of, look after","Indicativo","Indicative","Presente","Present","I take care of, am taking care of","cuido","cuidas","cuida","cuidamos","cuidáis","cuidan","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Futuro","Future","I will take care of","cuidaré","cuidarás","cuidará","cuidaremos","cuidaréis","cuidarán","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Imperfecto","Imperfect","I was taking care of, used to take care of, took care of","cuidaba","cuidabas","cuidaba","cuidábamos","cuidabais","cuidaban","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Condicional","Conditional","I would take care of","cuidaría","cuidarías","cuidaría","cuidaríamos","cuidaríais","cuidarían","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Presente perfecto","Present Perfect","I have taken care of","he cuidado","has cuidado","ha cuidado","hemos cuidado","habéis cuidado","han cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have taken care of","habré cuidado","habrás cuidado","habrá cuidado","habremos cuidado","habréis cuidado","habrán cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had taken care of","había cuidado","habías cuidado","había cuidado","habíamos cuidado","habíais cuidado","habían cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had taken care of","hube cuidado","hubiste cuidado","hubo cuidado","hubimos cuidado","hubisteis cuidado","hubieron cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have taken care of","habría cuidado","habrías cuidado","habría cuidado","habríamos cuidado","habríais cuidado","habrían cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidemos" +"cuidar","to take care of, look after","Subjuntivo","Subjunctive","Presente","Present","I take care of, am taking care of","cuide","cuides","cuide","cuidemos","cuidéis","cuiden","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I took care of, was taking care of","cuidara","cuidaras","cuidara","cuidáramos","cuidarais","cuidaran","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Subjuntivo","Subjunctive","Futuro","Future","I will take care of","cuidare","cuidares","cuidare","cuidáremos","cuidareis","cuidaren","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have taken care of, took care of","haya cuidado","hayas cuidado","haya cuidado","hayamos cuidado","hayáis cuidado","hayan cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have taken care of","hubiere cuidado","hubieres cuidado","hubiere cuidado","hubiéremos cuidado","hubiereis cuidado","hubieren cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had taken care of","hubiera cuidado","hubieras cuidado","hubiera cuidado","hubiéramos cuidado","hubierais cuidado","hubieran cuidado","cuidando","taking care of","cuidado","taken care of" +"cuidar","to take care of, look after","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Take care of! Don't take care of!","","cuida","cuide","cuidemos","cuidad","cuiden","cuidando","taking care of","cuidado","taken care of", +"cuidar","to take care of, look after","Imperativo Negativo","Imperative Negative","Presente","Present","Take care of! Don't take care of!","","no cuides","no cuide","no cuidemos","no cuidéis","no cuiden","cuidando","taking care of","cuidado","taken care of", +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Presente","Present","I blame, am blaming","culpo","culpas","culpa","culpamos","culpáis","culpan","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Futuro","Future","I will blame","culparé","culparás","culpará","culparemos","culparéis","culparán","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Imperfecto","Imperfect","I was blaming, used to blame, blamed","culpaba","culpabas","culpaba","culpábamos","culpabais","culpaban","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Pretérito","Preterite","I blamed","culpé","culpaste","culpó","culpamos","culpasteis","culparon","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Condicional","Conditional","I would blame","culparía","culparías","culparía","culparíamos","culparíais","culparían","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Presente perfecto","Present Perfect","I have blamed","he culpado","has culpado","ha culpado","hemos culpado","habéis culpado","han culpado","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have blamed","habré culpado","habrás culpado","habrá culpado","habremos culpado","habréis culpado","habrán culpado","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had blamed","había culpado","habías culpado","había culpado","habíamos culpado","habíais culpado","habían culpado","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had blamed","hube culpado","hubiste culpado","hubo culpado","hubimos culpado","hubisteis culpado","hubieron culpado","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have blamed","habría culpado","habrías culpado","habría culpado","habríamos culpado","habríais culpado","habrían culpado","culpando","blaming","culpado","blamed" +"culpemos" +"culpar","to blame, accuse; to condemn","Subjuntivo","Subjunctive","Presente","Present","I blame, am blaming","culpe","culpes","culpe","culpemos","culpéis","culpen","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I blamed, was blaming","culpara","culparas","culpara","culpáramos","culparais","culparan","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Subjuntivo","Subjunctive","Futuro","Future","I will blame","culpare","culpares","culpare","culpáremos","culpareis","culparen","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have blamed, blamed","haya culpado","hayas culpado","haya culpado","hayamos culpado","hayáis culpado","hayan culpado","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have blamed","hubiere culpado","hubieres culpado","hubiere culpado","hubiéremos culpado","hubiereis culpado","hubieren culpado","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had blamed","hubiera culpado","hubieras culpado","hubiera culpado","hubiéramos culpado","hubierais culpado","hubieran culpado","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Blame! Don't blame!","","culpa","culpe","culpemos","culpad","culpen","culpando","blaming","culpado","blamed" +"culpar","to blame, accuse; to condemn","Imperativo Negativo","Imperative Negative","Presente","Present","Blame! Don't blame!","","no culpes","no culpe","no culpemos","no culpéis","no culpen","culpando","blaming","culpado","blamed" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Presente","Present","I cultivate, am cultivating","cultivo","cultivas","cultiva","cultivamos","cultiváis","cultivan","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Futuro","Future","I will cultivate","cultivaré","cultivarás","cultivará","cultivaremos","cultivaréis","cultivarán","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Imperfecto","Imperfect","I was cultivating, used to cultivate, cultivated","cultivaba","cultivabas","cultivaba","cultivábamos","cultivabais","cultivaban","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Pretérito","Preterite","I cultivated","cultivé","cultivaste","cultivó","cultivamos","cultivasteis","cultivaron","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Condicional","Conditional","I would cultivate","cultivaría","cultivarías","cultivaría","cultivaríamos","cultivaríais","cultivarían","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cultivated","he cultivado","has cultivado","ha cultivado","hemos cultivado","habéis cultivado","han cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cultivated","habré cultivado","habrás cultivado","habrá cultivado","habremos cultivado","habréis cultivado","habrán cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cultivated","había cultivado","habías cultivado","había cultivado","habíamos cultivado","habíais cultivado","habían cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cultivated","hube cultivado","hubiste cultivado","hubo cultivado","hubimos cultivado","hubisteis cultivado","hubieron cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cultivated","habría cultivado","habrías cultivado","habría cultivado","habríamos cultivado","habríais cultivado","habrían cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivemos" +"cultivar","to cultivate; to grow","Subjuntivo","Subjunctive","Presente","Present","I cultivate, am cultivating","cultive","cultives","cultive","cultivemos","cultivéis","cultiven","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cultivated, was cultivating","cultivara","cultivaras","cultivara","cultiváramos","cultivarais","cultivaran","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Subjuntivo","Subjunctive","Futuro","Future","I will cultivate","cultivare","cultivares","cultivare","cultiváremos","cultivareis","cultivaren","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cultivated, cultivated","haya cultivado","hayas cultivado","haya cultivado","hayamos cultivado","hayáis cultivado","hayan cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cultivated","hubiere cultivado","hubieres cultivado","hubiere cultivado","hubiéremos cultivado","hubiereis cultivado","hubieren cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cultivated","hubiera cultivado","hubieras cultivado","hubiera cultivado","hubiéramos cultivado","hubierais cultivado","hubieran cultivado","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cultivate! Don't cultivate!","","cultiva","cultive","cultivemos","cultivad","cultiven","cultivando","cultivating","cultivado","cultivated" +"cultivar","to cultivate; to grow","Imperativo Negativo","Imperative Negative","Presente","Present","Cultivate! Don't cultivate!","","no cultives","no cultive","no cultivemos","no cultivéis","no cultiven","cultivando","cultivating","cultivado","cultivated" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Presente","Present","I fulfil, am fulfilling","cumplo","cumples","cumple","cumplimos","cumplís","cumplen","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Futuro","Future","I will fulfil","cumpliré","cumplirás","cumplirá","cumpliremos","cumpliréis","cumplirán","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Imperfecto","Imperfect","I was fulfilling, used to fulfil, fulfilled","cumplía","cumplías","cumplía","cumplíamos","cumplíais","cumplían","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Pretérito","Preterite","I fulfilled","cumplí","cumpliste","cumplió","cumplimos","cumplisteis","cumplieron","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Condicional","Conditional","I would fulfil","cumpliría","cumplirías","cumpliría","cumpliríamos","cumpliríais","cumplirían","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fulfilled","he cumplido","has cumplido","ha cumplido","hemos cumplido","habéis cumplido","han cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fulfilled","habré cumplido","habrás cumplido","habrá cumplido","habremos cumplido","habréis cumplido","habrán cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fulfilled","había cumplido","habías cumplido","había cumplido","habíamos cumplido","habíais cumplido","habían cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fulfilled","hube cumplido","hubiste cumplido","hubo cumplido","hubimos cumplido","hubisteis cumplido","hubieron cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fulfilled","habría cumplido","habrías cumplido","habría cumplido","habríamos cumplido","habríais cumplido","habrían cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplamos" +"cumplir","to fulfil, carry out; to reach [","Subjuntivo","Subjunctive","Presente","Present","I fulfil, am fulfilling","cumpla","cumplas","cumpla","cumplamos","cumpláis","cumplan","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fulfilled, was fulfilling","cumpliera","cumplieras","cumpliera","cumpliéramos","cumplierais","cumplieran","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Subjuntivo","Subjunctive","Futuro","Future","I will fulfil","cumpliere","cumplieres","cumpliere","cumpliéremos","cumpliereis","cumplieren","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fulfilled, fulfilled","haya cumplido","hayas cumplido","haya cumplido","hayamos cumplido","hayáis cumplido","hayan cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fulfilled","hubiere cumplido","hubieres cumplido","hubiere cumplido","hubiéremos cumplido","hubiereis cumplido","hubieren cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fulfilled","hubiera cumplido","hubieras cumplido","hubiera cumplido","hubiéramos cumplido","hubierais cumplido","hubieran cumplido","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fulfil! Don't fulfil!","","cumple","cumpla","cumplamos","cumplid","cumplan","cumpliendo","fulfilling","cumplido","fulfilled" +"cumplir","to fulfil, carry out; to reach [","Imperativo Negativo","Imperative Negative","Presente","Present","Fulfil! Don't fulfil!","","no cumplas","no cumpla","no cumplamos","no cumpláis","no cumplan","cumpliendo","fulfilling","cumplido","fulfilled" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Presente","Present","I cure, am curing","curo","curas","cura","curamos","curáis","curan","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Futuro","Future","I will cure","curaré","curarás","curará","curaremos","curaréis","curarán","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Imperfecto","Imperfect","I was curing, used to cure, cured","curaba","curabas","curaba","curábamos","curabais","curaban","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Pretérito","Preterite","I cured","curé","curaste","curó","curamos","curasteis","curaron","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Condicional","Conditional","I would cure","curaría","curarías","curaría","curaríamos","curaríais","curarían","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cured","he curado","has curado","ha curado","hemos curado","habéis curado","han curado","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cured","habré curado","habrás curado","habrá curado","habremos curado","habréis curado","habrán curado","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cured","había curado","habías curado","había curado","habíamos curado","habíais curado","habían curado","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cured","hube curado","hubiste curado","hubo curado","hubimos curado","hubisteis curado","hubieron curado","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cured","habría curado","habrías curado","habría curado","habríamos curado","habríais curado","habrían curado","curando","curing","curado","cured" +"curemos" +"curar","to cure; to treat, dress [a wound]","Subjuntivo","Subjunctive","Presente","Present","I cure, am curing","cure","cures","cure","curemos","curéis","curen","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cured, was curing","curara","curaras","curara","curáramos","curarais","curaran","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Subjuntivo","Subjunctive","Futuro","Future","I will cure","curare","curares","curare","curáremos","curareis","curaren","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cured, cured","haya curado","hayas curado","haya curado","hayamos curado","hayáis curado","hayan curado","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cured","hubiere curado","hubieres curado","hubiere curado","hubiéremos curado","hubiereis curado","hubieren curado","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cured","hubiera curado","hubieras curado","hubiera curado","hubiéramos curado","hubierais curado","hubieran curado","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cure! Don't cure!","","cura","cure","curemos","curad","curen","curando","curing","curado","cured" +"curar","to cure; to treat, dress [a wound]","Imperativo Negativo","Imperative Negative","Presente","Present","Cure! Don't cure!","","no cures","no cure","no curemos","no curéis","no curen","curando","curing","curado","cured" +"dar","to give","Indicativo","Indicative","Presente","Present","I give, am giving","doy","das","da","damos","dais","dan","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Futuro","Future","I will give","daré","darás","dará","daremos","daréis","darán","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Imperfecto","Imperfect","I was giving, used to give, gave","daba","dabas","daba","dábamos","dabais","daban","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Pretérito","Preterite","I gave","di","diste","dio","dimos","disteis","dieron","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Condicional","Conditional","I would give","daría","darías","daría","daríamos","daríais","darían","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Presente perfecto","Present Perfect","I have given","he dado","has dado","ha dado","hemos dado","habéis dado","han dado","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have given","habré dado","habrás dado","habrá dado","habremos dado","habréis dado","habrán dado","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had given","había dado","habías dado","había dado","habíamos dado","habíais dado","habían dado","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had given","hube dado","hubiste dado","hubo dado","hubimos dado","hubisteis dado","hubieron dado","dando","giving","dado","given" +"dar","to give","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have given","habría dado","habrías dado","habría dado","habríamos dado","habríais dado","habrían dado","dando","giving","dado","given" +"demos" +"dar","to give","Subjuntivo","Subjunctive","Presente","Present","I give, am giving","dé","des","dé","demos","deis","den","dando","giving","dado","given" +"dar","to give","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I gave, was giving","diera","dieras","diera","diéramos","dierais","dieran","dando","giving","dado","given" +"dar","to give","Subjuntivo","Subjunctive","Futuro","Future","I will give","diere","dieres","diere","diéremos","diereis","dieren","dando","giving","dado","given" +"dar","to give","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have given, gave","haya dado","hayas dado","haya dado","hayamos dado","hayáis dado","hayan dado","dando","giving","dado","given" +"dar","to give","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have given","hubiere dado","hubieres dado","hubiere dado","hubiéremos dado","hubiereis dado","hubieren dado","dando","giving","dado","given" +"dar","to give","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had given","hubiera dado","hubieras dado","hubiera dado","hubiéramos dado","hubierais dado","hubieran dado","dando","giving","dado","given" +"dar","to give","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Give! Don't give!","","da","dé","demos","dad","den","dando","giving","dado","given" +"dar","to give","Imperativo Negativo","Imperative Negative","Presente","Present","Give! Don't give!","","no des","no dé","no demos","no deis","no den","dando","giving","dado","given" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Presente","Present","I owe, am owing","debo","debes","debe","debemos","debéis","deben","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Futuro","Future","I will owe","deberé","deberás","deberá","deberemos","deberéis","deberán","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Imperfecto","Imperfect","I was owing, used to owe, owed","debía","debías","debía","debíamos","debíais","debían","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Pretérito","Preterite","I owed","debí","debiste","debió","debimos","debisteis","debieron","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Condicional","Conditional","I would owe","debería","deberías","debería","deberíamos","deberíais","deberían","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have owed","he debido","has debido","ha debido","hemos debido","habéis debido","han debido","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have owed","habré debido","habrás debido","habrá debido","habremos debido","habréis debido","habrán debido","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had owed","había debido","habías debido","había debido","habíamos debido","habíais debido","habían debido","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had owed","hube debido","hubiste debido","hubo debido","hubimos debido","hubisteis debido","hubieron debido","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have owed","habría debido","habrías debido","habría debido","habríamos debido","habríais debido","habrían debido","debiendo","owing","debido","owed" +"debamos" +"deber","to owe; must, should, ought to","Subjuntivo","Subjunctive","Presente","Present","I owe, am owing","deba","debas","deba","debamos","debáis","deban","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I owed, was owing","debiera","debieras","debiera","debiéramos","debierais","debieran","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Subjuntivo","Subjunctive","Futuro","Future","I will owe","debiere","debieres","debiere","debiéremos","debiereis","debieren","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have owed, owed","haya debido","hayas debido","haya debido","hayamos debido","hayáis debido","hayan debido","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have owed","hubiere debido","hubieres debido","hubiere debido","hubiéremos debido","hubiereis debido","hubieren debido","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had owed","hubiera debido","hubieras debido","hubiera debido","hubiéramos debido","hubierais debido","hubieran debido","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Owe! Don't owe!","","debe","deba","debamos","debed","deban","debiendo","owing","debido","owed" +"deber","to owe; must, should, ought to","Imperativo Negativo","Imperative Negative","Presente","Present","Owe! Don't owe!","","no debas","no deba","no debamos","no debáis","no deban","debiendo","owing","debido","owed" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Presente","Present","I decide, am deciding","decido","decides","decide","decidimos","decidís","deciden","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Futuro","Future","I will decide","decidiré","decidirás","decidirá","decidiremos","decidiréis","decidirán","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Imperfecto","Imperfect","I was deciding, used to decide, decided","decidía","decidías","decidía","decidíamos","decidíais","decidían","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Pretérito","Preterite","I decided","decidí","decidiste","decidió","decidimos","decidisteis","decidieron","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Condicional","Conditional","I would decide","decidiría","decidirías","decidiría","decidiríamos","decidiríais","decidirían","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Presente perfecto","Present Perfect","I have decided","he decidido","has decidido","ha decidido","hemos decidido","habéis decidido","han decidido","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have decided","habré decidido","habrás decidido","habrá decidido","habremos decidido","habréis decidido","habrán decidido","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had decided","había decidido","habías decidido","había decidido","habíamos decidido","habíais decidido","habían decidido","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had decided","hube decidido","hubiste decidido","hubo decidido","hubimos decidido","hubisteis decidido","hubieron decidido","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have decided","habría decidido","habrías decidido","habría decidido","habríamos decidido","habríais decidido","habrían decidido","decidiendo","deciding","decidido","decided" +"decidamos" +"decidir","to decide, settle, resolve","Subjuntivo","Subjunctive","Presente","Present","I decide, am deciding","decida","decidas","decida","decidamos","decidáis","decidan","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I decided, was deciding","decidiera","decidieras","decidiera","decidiéramos","decidierais","decidieran","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Subjuntivo","Subjunctive","Futuro","Future","I will decide","decidiere","decidieres","decidiere","decidiéremos","decidiereis","decidieren","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have decided, decided","haya decidido","hayas decidido","haya decidido","hayamos decidido","hayáis decidido","hayan decidido","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have decided","hubiere decidido","hubieres decidido","hubiere decidido","hubiéremos decidido","hubiereis decidido","hubieren decidido","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had decided","hubiera decidido","hubieras decidido","hubiera decidido","hubiéramos decidido","hubierais decidido","hubieran decidido","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Decide! Don't decide!","","decide","decida","decidamos","decidid","decidan","decidiendo","deciding","decidido","decided" +"decidir","to decide, settle, resolve","Imperativo Negativo","Imperative Negative","Presente","Present","Decide! Don't decide!","","no decidas","no decida","no decidamos","no decidáis","no decidan","decidiendo","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Presente","Present","I decide, am deciding","me decido","te decides","se decide","nos decidimos","os decidís","se deciden","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Futuro","Future","I will decide","me decidiré","te decidirás","se decidirá","nos decidiremos","os decidiréis","se decidirán","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Imperfecto","Imperfect","I was deciding, used to decide, decided","me decidía","te decidías","se decidía","nos decidíamos","os decidíais","se decidían","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Pretérito","Preterite","I decided","me decidí","te decidiste","se decidió","nos decidimos","os decidisteis","se decidieron","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Condicional","Conditional","I would decide","me decidiría","te decidirías","se decidiría","nos decidiríamos","os decidiríais","se decidirían","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Presente perfecto","Present Perfect","I have decided","me he decidido","te has decidido","se ha decidido","nos hemos decidido","os habéis decidido","se han decidido","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have decided","me habré decidido","te habrás decidido","se habrá decidido","nos habremos decidido","os habréis decidido","se habrán decidido","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had decided","me había decidido","te habías decidido","se había decidido","nos habíamos decidido","os habíais decidido","se habían decidido","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had decided","me hube decidido","te hubiste decidido","se hubo decidido","nos hubimos decidido","os hubisteis decidido","se hubieron decidido","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have decided","me habría decidido","te habrías decidido","se habría decidido","nos habríamos decidido","os habríais decidido","se habrían decidido","decidiéndose","deciding","decidido","decided" +"nos decidamos" +"decidirse","to decide, make up one's mind","Subjuntivo","Subjunctive","Presente","Present","I decide, am deciding","me decida","te decidas","se decida","nos decidamos","os decidáis","se decidan","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I decided, was deciding","me decidiera","te decidieras","se decidiera","nos decidiéramos","os decidierais","se decidieran","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Subjuntivo","Subjunctive","Futuro","Future","I will decide","me decidiere","te decidieres","se decidiere","nos decidiéremos","os decidiereis","se decidieren","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have decided, decided","me haya decidido","te hayas decidido","se haya decidido","nos hayamos decidido","os hayáis decidido","se hayan decidido","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have decided","me hubiere decidido","te hubieres decidido","se hubiere decidido","nos hubiéremos decidido","os hubiereis decidido","se hubieren decidido","decidiéndose","deciding","decidido","decided" +"depender","to depend","Indicativo","Indicative","Presente","Present","I depend, am depending","dependo","dependes","depende","dependemos","dependéis","dependen","dependiendo","depending","dependido","depended" +"decidirse","to decide, make up one's mind","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had decided","me hubiera decidido","te hubieras decidido","se hubiera decidido","nos hubiéramos decidido","os hubierais decidido","se hubieran decidido","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Decide! Don't decide!","","decídete","decídase","decidámonos","decidíos","decídanse","decidiéndose","deciding","decidido","decided" +"decidirse","to decide, make up one's mind","Imperativo Negativo","Imperative Negative","Presente","Present","Decide! Don't decide!","","no te decidas","no se decida","no nos decidamos","no os decidáis","no se decidan","decidiéndose","deciding","decidido","decided" +"decir","to say, tell","Indicativo","Indicative","Presente","Present","I say, am saying","digo","dices","dice","decimos","decís","dicen","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Futuro","Future","I will say","diré","dirás","dirá","diremos","diréis","dirán","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Imperfecto","Imperfect","I was saying, used to say, said","decía","decías","decía","decíamos","decíais","decían","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Pretérito","Preterite","I said","dije","dijiste","dijo","dijimos","dijisteis","dijeron","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Condicional","Conditional","I would say","diría","dirías","diría","diríamos","diríais","dirían","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Presente perfecto","Present Perfect","I have said","he dicho","has dicho","ha dicho","hemos dicho","habéis dicho","han dicho","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have said","habré dicho","habrás dicho","habrá dicho","habremos dicho","habréis dicho","habrán dicho","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had said","había dicho","habías dicho","había dicho","habíamos dicho","habíais dicho","habían dicho","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had said","hube dicho","hubiste dicho","hubo dicho","hubimos dicho","hubisteis dicho","hubieron dicho","diciendo","saying","dicho","said" +"decir","to say, tell","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have said","habría dicho","habrías dicho","habría dicho","habríamos dicho","habríais dicho","habrían dicho","diciendo","saying","dicho","said" +"digamos" +"decir","to say, tell","Subjuntivo","Subjunctive","Presente","Present","I say, am saying","diga","digas","diga","digamos","digáis","digan","diciendo","saying","dicho","said" +"decir","to say, tell","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I said, was saying","dijera","dijeras","dijera","dijéramos","dijerais","dijeran","diciendo","saying","dicho","said" +"decir","to say, tell","Subjuntivo","Subjunctive","Futuro","Future","I will say","dijere","dijeres","dijere","dijéremos","dijereis","dijeren","diciendo","saying","dicho","said" +"decir","to say, tell","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have said, said","haya dicho","hayas dicho","haya dicho","hayamos dicho","hayáis dicho","hayan dicho","diciendo","saying","dicho","said" +"decir","to say, tell","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have said","hubiere dicho","hubieres dicho","hubiere dicho","hubiéremos dicho","hubiereis dicho","hubieren dicho","diciendo","saying","dicho","said" +"decir","to say, tell","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had said","hubiera dicho","hubieras dicho","hubiera dicho","hubiéramos dicho","hubierais dicho","hubieran dicho","diciendo","saying","dicho","said" +"decir","to say, tell","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Say! Don't say!","","di","diga","digamos","decid","digan","diciendo","saying","dicho","said" +"decir","to say, tell","Imperativo Negativo","Imperative Negative","Presente","Present","Say! Don't say!","","no digas","no diga","no digamos","no digáis","no digan","diciendo","saying","dicho","said" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Presente","Present","I declare, am declaring","declaro","declaras","declara","declaramos","declaráis","declaran","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Futuro","Future","I will declare","declararé","declararás","declarará","declararemos","declararéis","declararán","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Imperfecto","Imperfect","I was declaring, used to declare, declared","declaraba","declarabas","declaraba","declarábamos","declarabais","declaraban","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Pretérito","Preterite","I declared","declaré","declaraste","declaró","declaramos","declarasteis","declararon","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Condicional","Conditional","I would declare","declararía","declararías","declararía","declararíamos","declararíais","declararían","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have declared","he declarado","has declarado","ha declarado","hemos declarado","habéis declarado","han declarado","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have declared","habré declarado","habrás declarado","habrá declarado","habremos declarado","habréis declarado","habrán declarado","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had declared","había declarado","habías declarado","había declarado","habíamos declarado","habíais declarado","habían declarado","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had declared","hube declarado","hubiste declarado","hubo declarado","hubimos declarado","hubisteis declarado","hubieron declarado","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have declared","habría declarado","habrías declarado","habría declarado","habríamos declarado","habríais declarado","habrían declarado","declarando","declaring","declarado","declared" +"declaremos" +"declarar","to declare, state; to bid [in cards]","Subjuntivo","Subjunctive","Presente","Present","I declare, am declaring","declare","declares","declare","declaremos","declaréis","declaren","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I declared, was declaring","declarara","declararas","declarara","declaráramos","declararais","declararan","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Subjuntivo","Subjunctive","Futuro","Future","I will declare","declarare","declarares","declarare","declaráremos","declarareis","declararen","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have declared, declared","haya declarado","hayas declarado","haya declarado","hayamos declarado","hayáis declarado","hayan declarado","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have declared","hubiere declarado","hubieres declarado","hubiere declarado","hubiéremos declarado","hubiereis declarado","hubieren declarado","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had declared","hubiera declarado","hubieras declarado","hubiera declarado","hubiéramos declarado","hubierais declarado","hubieran declarado","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Declare! Don't declare!","","declara","declare","declaremos","declarad","declaren","declarando","declaring","declarado","declared" +"declarar","to declare, state; to bid [in cards]","Imperativo Negativo","Imperative Negative","Presente","Present","Declare! Don't declare!","","no declares","no declare","no declaremos","no declaréis","no declaren","declarando","declaring","declarado","declared" +"decorar","to decorate, adorn","Indicativo","Indicative","Presente","Present","I decorate, am decorating","decoro","decoras","decora","decoramos","decoráis","decoran","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Futuro","Future","I will decorate","decoraré","decorarás","decorará","decoraremos","decoraréis","decorarán","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Imperfecto","Imperfect","I was decorating, used to decorate, decorated","decoraba","decorabas","decoraba","decorábamos","decorabais","decoraban","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Pretérito","Preterite","I decorated","decoré","decoraste","decoró","decoramos","decorasteis","decoraron","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Condicional","Conditional","I would decorate","decoraría","decorarías","decoraría","decoraríamos","decoraríais","decorarían","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Presente perfecto","Present Perfect","I have decorated","he decorado","has decorado","ha decorado","hemos decorado","habéis decorado","han decorado","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have decorated","habré decorado","habrás decorado","habrá decorado","habremos decorado","habréis decorado","habrán decorado","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had decorated","había decorado","habías decorado","había decorado","habíamos decorado","habíais decorado","habían decorado","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had decorated","hube decorado","hubiste decorado","hubo decorado","hubimos decorado","hubisteis decorado","hubieron decorado","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have decorated","habría decorado","habrías decorado","habría decorado","habríamos decorado","habríais decorado","habrían decorado","decorando","decorating","decorado","decorated" +"decoremos" +"decorar","to decorate, adorn","Subjuntivo","Subjunctive","Presente","Present","I decorate, am decorating","decore","decores","decore","decoremos","decoréis","decoren","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I decorated, was decorating","decorara","decoraras","decorara","decoráramos","decorarais","decoraran","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Subjuntivo","Subjunctive","Futuro","Future","I will decorate","decorare","decorares","decorare","decoráremos","decorareis","decoraren","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have decorated, decorated","haya decorado","hayas decorado","haya decorado","hayamos decorado","hayáis decorado","hayan decorado","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have decorated","hubiere decorado","hubieres decorado","hubiere decorado","hubiéremos decorado","hubiereis decorado","hubieren decorado","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had decorated","hubiera decorado","hubieras decorado","hubiera decorado","hubiéramos decorado","hubierais decorado","hubieran decorado","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Decorate! Don't decorate!","","decora","decore","decoremos","decorad","decoren","decorando","decorating","decorado","decorated" +"decorar","to decorate, adorn","Imperativo Negativo","Imperative Negative","Presente","Present","Decorate! Don't decorate!","","no decores","no decore","no decoremos","no decoréis","no decoren","decorando","decorating","decorado","decorated" +"dedicar","to dedicate","Indicativo","Indicative","Presente","Present","I dedicate, am dedicating","dedico","dedicas","dedica","dedicamos","dedicáis","dedican","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Futuro","Future","I will dedicate","dedicaré","dedicarás","dedicará","dedicaremos","dedicaréis","dedicarán","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Imperfecto","Imperfect","I was dedicating, used to dedicate, dedicated","dedicaba","dedicabas","dedicaba","dedicábamos","dedicabais","dedicaban","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Pretérito","Preterite","I dedicated","dediqué","dedicaste","dedicó","dedicamos","dedicasteis","dedicaron","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Condicional","Conditional","I would dedicate","dedicaría","dedicarías","dedicaría","dedicaríamos","dedicaríais","dedicarían","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dedicated","he dedicado","has dedicado","ha dedicado","hemos dedicado","habéis dedicado","han dedicado","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dedicated","habré dedicado","habrás dedicado","habrá dedicado","habremos dedicado","habréis dedicado","habrán dedicado","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dedicated","había dedicado","habías dedicado","había dedicado","habíamos dedicado","habíais dedicado","habían dedicado","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dedicated","hube dedicado","hubiste dedicado","hubo dedicado","hubimos dedicado","hubisteis dedicado","hubieron dedicado","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dedicated","habría dedicado","habrías dedicado","habría dedicado","habríamos dedicado","habríais dedicado","habrían dedicado","dedicando","dedicating","dedicado","dedicated" +"dediquemos" +"dedicar","to dedicate","Subjuntivo","Subjunctive","Presente","Present","I dedicate, am dedicating","dedique","dediques","dedique","dediquemos","dediquéis","dediquen","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dedicated, was dedicating","dedicara","dedicaras","dedicara","dedicáramos","dedicarais","dedicaran","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Subjuntivo","Subjunctive","Futuro","Future","I will dedicate","dedicare","dedicares","dedicare","dedicáremos","dedicareis","dedicaren","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dedicated, dedicated","haya dedicado","hayas dedicado","haya dedicado","hayamos dedicado","hayáis dedicado","hayan dedicado","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dedicated","hubiere dedicado","hubieres dedicado","hubiere dedicado","hubiéremos dedicado","hubiereis dedicado","hubieren dedicado","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dedicated","hubiera dedicado","hubieras dedicado","hubiera dedicado","hubiéramos dedicado","hubierais dedicado","hubieran dedicado","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dedicate! Don't dedicate!","","dedica","dedique","dediquemos","dedicad","dediquen","dedicando","dedicating","dedicado","dedicated" +"dedicar","to dedicate","Imperativo Negativo","Imperative Negative","Presente","Present","Dedicate! Don't dedicate!","","no dediques","no dedique","no dediquemos","no dediquéis","no dediquen","dedicando","dedicating","dedicado","dedicated" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Presente","Present","I devote myself, am devoting myself","me dedico","te dedicas","se dedica","nos dedicamos","os dedicáis","se dedican","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Futuro","Future","I will devote myself","me dedicaré","te dedicarás","se dedicará","nos dedicaremos","os dedicaréis","se dedicarán","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Imperfecto","Imperfect","I was devoting myself, used to devote myself, devoted myself","me dedicaba","te dedicabas","se dedicaba","nos dedicábamos","os dedicabais","se dedicaban","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Pretérito","Preterite","I devoted myself","me dediqué","te dedicaste","se dedicó","nos dedicamos","os dedicasteis","se dedicaron","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Condicional","Conditional","I would devote myself","me dedicaría","te dedicarías","se dedicaría","nos dedicaríamos","os dedicaríais","se dedicarían","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have devoted myself","me he dedicado","te has dedicado","se ha dedicado","nos hemos dedicado","os habéis dedicado","se han dedicado","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have devoted myself","me habré dedicado","te habrás dedicado","se habrá dedicado","nos habremos dedicado","os habréis dedicado","se habrán dedicado","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had devoted myself","me había dedicado","te habías dedicado","se había dedicado","nos habíamos dedicado","os habíais dedicado","se habían dedicado","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had devoted myself","me hube dedicado","te hubiste dedicado","se hubo dedicado","nos hubimos dedicado","os hubisteis dedicado","se hubieron dedicado","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have devoted myself","me habría dedicado","te habrías dedicado","se habría dedicado","nos habríamos dedicado","os habríais dedicado","se habrían dedicado","dedicándose","devoting oneself","dedicado","devoted" +"nos dediquemos" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Subjuntivo","Subjunctive","Presente","Present","I devote myself, am devoting myself","me dedique","te dediques","se dedique","nos dediquemos","os dediquéis","se dediquen","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I devoted myself, was devoting myself","me dedicara","te dedicaras","se dedicara","nos dedicáramos","os dedicarais","se dedicaran","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Subjuntivo","Subjunctive","Futuro","Future","I will devote myself","me dedicare","te dedicares","se dedicare","nos dedicáremos","os dedicareis","se dedicaren","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have devoted myself, devoted myself","me haya dedicado","te hayas dedicado","se haya dedicado","nos hayamos dedicado","os hayáis dedicado","se hayan dedicado","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have devoted myself","me hubiere dedicado","te hubieres dedicado","se hubiere dedicado","nos hubiéremos dedicado","os hubiereis dedicado","se hubieren dedicado","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had devoted myself","me hubiera dedicado","te hubieras dedicado","se hubiera dedicado","nos hubiéramos dedicado","os hubierais dedicado","se hubieran dedicado","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Devote yourself! Don't devote yourself!","","dedícate","dedíquese","nos dediquemos","dedicaos","dedíquense","dedicándose","devoting oneself","dedicado","devoted" +"dedicarse","to devote oneself, dedicate oneself, go in for, take up [carrer/interest in something]","Imperativo Negativo","Imperative Negative","Presente","Present","Devote yourself! Don't devote yourself!","","no te dediques","no se dedique","no nos dediquemos","no os dediquéis","no se dediquen","dedicándose","devoting oneself","dedicado","devoted" +"defender","to defend","Indicativo","Indicative","Presente","Present","I defend, am defending","defiendo","defiendes","defiende","defendemos","defendéis","defienden","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Futuro","Future","I will defend","defenderé","defenderás","defenderá","defenderemos","defenderéis","defenderán","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Imperfecto","Imperfect","I was defending, used to defend, defended","defendía","defendías","defendía","defendíamos","defendíais","defendían","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Pretérito","Preterite","I defended","defendí","defendiste","defendió","defendimos","defendisteis","defendieron","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Condicional","Conditional","I would defend","defendería","defenderías","defendería","defenderíamos","defenderíais","defenderían","defendiendo","defending","defendido","defended" +"depender","to depend","Indicativo","Indicative","Futuro","Future","I will depend","dependeré","dependerás","dependerá","dependeremos","dependeréis","dependerán","dependiendo","depending","dependido","depended" +"defender","to defend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have defended","he defendido","has defendido","ha defendido","hemos defendido","habéis defendido","han defendido","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have defended","habré defendido","habrás defendido","habrá defendido","habremos defendido","habréis defendido","habrán defendido","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had defended","había defendido","habías defendido","había defendido","habíamos defendido","habíais defendido","habían defendido","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had defended","hube defendido","hubiste defendido","hubo defendido","hubimos defendido","hubisteis defendido","hubieron defendido","defendiendo","defending","defendido","defended" +"defender","to defend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have defended","habría defendido","habrías defendido","habría defendido","habríamos defendido","habríais defendido","habrían defendido","defendiendo","defending","defendido","defended" +"defendamos" +"defender","to defend","Subjuntivo","Subjunctive","Presente","Present","I defend, am defending","defienda","defiendas","defienda","defendamos","defendáis","defiendan","defendiendo","defending","defendido","defended" +"defender","to defend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I defended, was defending","defendiera","defendieras","defendiera","defendiéramos","defendierais","defendieran","defendiendo","defending","defendido","defended" +"defender","to defend","Subjuntivo","Subjunctive","Futuro","Future","I will defend","defendiere","defendieres","defendiere","defendiéremos","defendiereis","defendieren","defendiendo","defending","defendido","defended" +"defender","to defend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have defended, defended","haya defendido","hayas defendido","haya defendido","hayamos defendido","hayáis defendido","hayan defendido","defendiendo","defending","defendido","defended" +"defender","to defend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have defended","hubiere defendido","hubieres defendido","hubiere defendido","hubiéremos defendido","hubiereis defendido","hubieren defendido","defendiendo","defending","defendido","defended" +"defender","to defend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had defended","hubiera defendido","hubieras defendido","hubiera defendido","hubiéramos defendido","hubierais defendido","hubieran defendido","defendiendo","defending","defendido","defended" +"defender","to defend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Defend! Don't defend!","","defiende","defienda","defendamos","defended","defiendan","defendiendo","defending","defendido","defended" +"defender","to defend","Imperativo Negativo","Imperative Negative","Presente","Present","Defend! Don't defend!","","no defiendas","no defienda","no defendamos","no defendáis","no defiendan","defendiendo","defending","defendido","defended" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Presente","Present","I leave, am leaving","dejo","dejas","deja","dejamos","dejáis","dejan","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Futuro","Future","I will leave","dejaré","dejarás","dejará","dejaremos","dejaréis","dejarán","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Imperfecto","Imperfect","I was leaving, used to leave, left","dejaba","dejabas","dejaba","dejábamos","dejabais","dejaban","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Pretérito","Preterite","I left","dejé","dejaste","dejó","dejamos","dejasteis","dejaron","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Condicional","Conditional","I would leave","dejaría","dejarías","dejaría","dejaríamos","dejaríais","dejarían","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Presente perfecto","Present Perfect","I have left","he dejado","has dejado","ha dejado","hemos dejado","habéis dejado","han dejado","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have left","habré dejado","habrás dejado","habrá dejado","habremos dejado","habréis dejado","habrán dejado","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had left","había dejado","habías dejado","había dejado","habíamos dejado","habíais dejado","habían dejado","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had left","hube dejado","hubiste dejado","hubo dejado","hubimos dejado","hubisteis dejado","hubieron dejado","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have left","habría dejado","habrías dejado","habría dejado","habríamos dejado","habríais dejado","habrían dejado","dejando","leaving","dejado","left" +"dejemos" +"dejar","to leave, abandon; to let, allow","Subjuntivo","Subjunctive","Presente","Present","I leave, am leaving","deje","dejes","deje","dejemos","dejéis","dejen","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I left, was leaving","dejara","dejaras","dejara","dejáramos","dejarais","dejaran","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Subjuntivo","Subjunctive","Futuro","Future","I will leave","dejare","dejares","dejare","dejáremos","dejareis","dejaren","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have left, left","haya dejado","hayas dejado","haya dejado","hayamos dejado","hayáis dejado","hayan dejado","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have left","hubiere dejado","hubieres dejado","hubiere dejado","hubiéremos dejado","hubiereis dejado","hubieren dejado","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had left","hubiera dejado","hubieras dejado","hubiera dejado","hubiéramos dejado","hubierais dejado","hubieran dejado","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Leave! Don't leave!","","deja","deje","dejemos","dejad","dejen","dejando","leaving","dejado","left" +"dejar","to leave, abandon; to let, allow","Imperativo Negativo","Imperative Negative","Presente","Present","Leave! Don't leave!","","no dejes","no deje","no dejemos","no dejéis","no dejen","dejando","leaving","dejado","left" +"demostrar","to demonstrate, show","Indicativo","Indicative","Presente","Present","I demonstrate, am demonstrating","demuestro","demuestras","demuestra","demostramos","demostráis","demuestran","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Futuro","Future","I will demonstrate","demostraré","demostrarás","demostrará","demostraremos","demostraréis","demostrarán","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Imperfecto","Imperfect","I was demonstrating, used to demonstrate, demonstrated","demostraba","demostrabas","demostraba","demostrábamos","demostrabais","demostraban","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Pretérito","Preterite","I demonstrated","demostré","demostraste","demostró","demostramos","demostrasteis","demostraron","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Condicional","Conditional","I would demonstrate","demostraría","demostrarías","demostraría","demostraríamos","demostraríais","demostrarían","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Presente perfecto","Present Perfect","I have demonstrated","he demostrado","has demostrado","ha demostrado","hemos demostrado","habéis demostrado","han demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have demonstrated","habré demostrado","habrás demostrado","habrá demostrado","habremos demostrado","habréis demostrado","habrán demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had demonstrated","había demostrado","habías demostrado","había demostrado","habíamos demostrado","habíais demostrado","habían demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had demonstrated","hube demostrado","hubiste demostrado","hubo demostrado","hubimos demostrado","hubisteis demostrado","hubieron demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have demonstrated","habría demostrado","habrías demostrado","habría demostrado","habríamos demostrado","habríais demostrado","habrían demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostremos" +"demostrar","to demonstrate, show","Subjuntivo","Subjunctive","Presente","Present","I demonstrate, am demonstrating","demuestre","demuestres","demuestre","demostremos","demostréis","demuestren","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I demonstrated, was demonstrating","demostrara","demostraras","demostrara","demostráramos","demostrarais","demostraran","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Subjuntivo","Subjunctive","Futuro","Future","I will demonstrate","demostrare","demostrares","demostrare","demostráremos","demostrareis","demostraren","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have demonstrated, demonstrated","haya demostrado","hayas demostrado","haya demostrado","hayamos demostrado","hayáis demostrado","hayan demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have demonstrated","hubiere demostrado","hubieres demostrado","hubiere demostrado","hubiéremos demostrado","hubiereis demostrado","hubieren demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had demonstrated","hubiera demostrado","hubieras demostrado","hubiera demostrado","hubiéramos demostrado","hubierais demostrado","hubieran demostrado","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Demonstrate! Don't demonstrate!","","demuestra","demuestre","demostremos","demostrad","demuestren","demostrando","demonstrating","demostrado","demonstrated" +"demostrar","to demonstrate, show","Imperativo Negativo","Imperative Negative","Presente","Present","Demonstrate! Don't demonstrate!","","no demuestres","no demuestre","no demostremos","no demostréis","no demuestren","demostrando","demonstrating","demostrado","demonstrated" +"depender","to depend","Indicativo","Indicative","Imperfecto","Imperfect","I was depending, used to depend, depend","dependía","dependías","dependía","dependíamos","dependíais","dependían","dependiendo","depending","dependido","depended" +"depender","to depend","Indicativo","Indicative","Pretérito","Preterite","I depend","dependí","dependiste","dependió","dependimos","dependisteis","dependieron","dependiendo","depending","dependido","depended" +"depender","to depend","Indicativo","Indicative","Condicional","Conditional","I would depend","dependería","dependerías","dependería","dependeríamos","dependeríais","dependerían","dependiendo","depending","dependido","depended" +"depender","to depend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have depended","he dependido","has dependido","ha dependido","hemos dependido","habéis dependido","han dependido","dependiendo","depending","dependido","depended" +"depender","to depend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have depended","habré dependido","habrás dependido","habrá dependido","habremos dependido","habréis dependido","habrán dependido","dependiendo","depending","dependido","depended" +"depender","to depend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had depended","había dependido","habías dependido","había dependido","habíamos dependido","habíais dependido","habían dependido","dependiendo","depending","dependido","depended" +"depender","to depend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had depended","hube dependido","hubiste dependido","hubo dependido","hubimos dependido","hubisteis dependido","hubieron dependido","dependiendo","depending","dependido","depended" +"depender","to depend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have depended","habría dependido","habrías dependido","habría dependido","habríamos dependido","habríais dependido","habrían dependido","dependiendo","depending","dependido","depended" +"dependamos" +"depender","to depend","Subjuntivo","Subjunctive","Presente","Present","I depend, am depending","dependa","dependas","dependa","dependamos","dependáis","dependan","dependiendo","depending","dependido","depended" +"depender","to depend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I depend, was depending","dependiera","dependieras","dependiera","dependiéramos","dependierais","dependieran","dependiendo","depending","dependido","depended" +"depender","to depend","Subjuntivo","Subjunctive","Futuro","Future","I will depend","dependiere","dependieres","dependiere","dependiéremos","dependiereis","dependieren","dependiendo","depending","dependido","depended" +"depender","to depend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have depended, depend","haya dependido","hayas dependido","haya dependido","hayamos dependido","hayáis dependido","hayan dependido","dependiendo","depending","dependido","depended" +"depender","to depend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have depended","hubiere dependido","hubieres dependido","hubiere dependido","hubiéremos dependido","hubiereis dependido","hubieren dependido","dependiendo","depending","dependido","depended" +"depender","to depend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had depended","hubiera dependido","hubieras dependido","hubiera dependido","hubiéramos dependido","hubierais dependido","hubieran dependido","dependiendo","depending","dependido","depended" +"depender","to depend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Depend! Don't depend!","","depende","dependa","dependamos","depended","dependan","dependiendo","depending","dependido","depended" +"depender","to depend","Imperativo Negativo","Imperative Negative","Presente","Present","Depend! Don't depend!","","no dependas","no dependa","no dependamos","no dependáis","no dependan","dependiendo","depending","dependido","depended" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Presente","Present","I deposit, am depositing","deposito","depositas","deposita","depositamos","depositáis","depositan","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Futuro","Future","I will deposit","depositaré","depositarás","depositará","depositaremos","depositaréis","depositarán","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Imperfecto","Imperfect","I was depositing, used to deposit, deposited","depositaba","depositabas","depositaba","depositábamos","depositabais","depositaban","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Pretérito","Preterite","I deposited","deposité","depositaste","depositó","depositamos","depositasteis","depositaron","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Condicional","Conditional","I would deposit","depositaría","depositarías","depositaría","depositaríamos","depositaríais","depositarían","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Presente perfecto","Present Perfect","I have deposited","he depositado","has depositado","ha depositado","hemos depositado","habéis depositado","han depositado","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have deposited","habré depositado","habrás depositado","habrá depositado","habremos depositado","habréis depositado","habrán depositado","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had deposited","había depositado","habías depositado","había depositado","habíamos depositado","habíais depositado","habían depositado","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had deposited","hube depositado","hubiste depositado","hubo depositado","hubimos depositado","hubisteis depositado","hubieron depositado","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have deposited","habría depositado","habrías depositado","habría depositado","habríamos depositado","habríais depositado","habrían depositado","depositando","depositing","depositado","deposited" +"depositemos" +"depositar","to deposit; to place; to put away, store","Subjuntivo","Subjunctive","Presente","Present","I deposit, am depositing","deposite","deposites","deposite","depositemos","depositéis","depositen","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I deposited, was depositing","depositara","depositaras","depositara","depositáramos","depositarais","depositaran","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Subjuntivo","Subjunctive","Futuro","Future","I will deposit","depositare","depositares","depositare","depositáremos","depositareis","depositaren","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have deposited, deposited","haya depositado","hayas depositado","haya depositado","hayamos depositado","hayáis depositado","hayan depositado","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have deposited","hubiere depositado","hubieres depositado","hubiere depositado","hubiéremos depositado","hubiereis depositado","hubieren depositado","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had deposited","hubiera depositado","hubieras depositado","hubiera depositado","hubiéramos depositado","hubierais depositado","hubieran depositado","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Deposit! Don't deposit!","","deposita","deposite","depositemos","depositad","depositen","depositando","depositing","depositado","deposited" +"depositar","to deposit; to place; to put away, store","Imperativo Negativo","Imperative Negative","Presente","Present","Deposit! Don't deposit!","","no deposites","no deposite","no depositemos","no depositéis","no depositen","depositando","depositing","depositado","deposited" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Presente","Present","I depress, am depressing","deprimo","deprimes","deprime","deprimimos","deprimís","deprimen","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Futuro","Future","I will depress","deprimiré","deprimirás","deprimirá","deprimiremos","deprimiréis","deprimirán","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Imperfecto","Imperfect","I was depressing, used to depress, depressed","deprimía","deprimías","deprimía","deprimíamos","deprimíais","deprimían","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Pretérito","Preterite","I depressed","deprimí","deprimiste","deprimió","deprimimos","deprimisteis","deprimieron","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Condicional","Conditional","I would depress","deprimiría","deprimirías","deprimiría","deprimiríamos","deprimiríais","deprimirían","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Presente perfecto","Present Perfect","I have depressed","he deprimido","has deprimido","ha deprimido","hemos deprimido","habéis deprimido","han deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have depressed","habré deprimido","habrás deprimido","habrá deprimido","habremos deprimido","habréis deprimido","habrán deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had depressed","había deprimido","habías deprimido","había deprimido","habíamos deprimido","habíais deprimido","habían deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had depressed","hube deprimido","hubiste deprimido","hubo deprimido","hubimos deprimido","hubisteis deprimido","hubieron deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have depressed","habría deprimido","habrías deprimido","habría deprimido","habríamos deprimido","habríais deprimido","habrían deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimamos" +"deprimir","to depress, press down, flatten","Subjuntivo","Subjunctive","Presente","Present","I depress, am depressing","deprima","deprimas","deprima","deprimamos","deprimáis","depriman","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I depressed, was depressing","deprimiera","deprimieras","deprimiera","deprimiéramos","deprimierais","deprimieran","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Subjuntivo","Subjunctive","Futuro","Future","I will depress","deprimiere","deprimieres","deprimiere","deprimiéremos","deprimiereis","deprimieren","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have depressed, depressed","haya deprimido","hayas deprimido","haya deprimido","hayamos deprimido","hayáis deprimido","hayan deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have depressed","hubiere deprimido","hubieres deprimido","hubiere deprimido","hubiéremos deprimido","hubiereis deprimido","hubieren deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had depressed","hubiera deprimido","hubieras deprimido","hubiera deprimido","hubiéramos deprimido","hubierais deprimido","hubieran deprimido","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Depress! Don't depress!","","deprime","deprima","deprimamos","deprimid","depriman","deprimiendo","depressing","deprimido","depressed" +"deprimir","to depress, press down, flatten","Imperativo Negativo","Imperative Negative","Presente","Present","Depress! Don't depress!","","no deprimas","no deprima","no deprimamos","no deprimáis","no depriman","deprimiendo","depressing","deprimido","depressed" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Presente","Present","I melt, am melting","derrito","derrites","derrite","derretimos","derretís","derriten","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Futuro","Future","I will melt","derretiré","derretirás","derretirá","derretiremos","derretiréis","derretirán","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Imperfecto","Imperfect","I was melting, used to melt, melted","derretía","derretías","derretía","derretíamos","derretíais","derretían","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Pretérito","Preterite","I melted","derretí","derretiste","derritió","derretimos","derretisteis","derritieron","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Condicional","Conditional","I would melt","derretiría","derretirías","derretiría","derretiríamos","derretiríais","derretirían","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Presente perfecto","Present Perfect","I have melted","he derretido","has derretido","ha derretido","hemos derretido","habéis derretido","han derretido","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have melted","habré derretido","habrás derretido","habrá derretido","habremos derretido","habréis derretido","habrán derretido","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had melted","había derretido","habías derretido","había derretido","habíamos derretido","habíais derretido","habían derretido","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had melted","hube derretido","hubiste derretido","hubo derretido","hubimos derretido","hubisteis derretido","hubieron derretido","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have melted","habría derretido","habrías derretido","habría derretido","habríamos derretido","habríais derretido","habrían derretido","derritiendo","melting","derretido","melted" +"derritamos" +"derretir","to melt, liquefy, thaw","Subjuntivo","Subjunctive","Presente","Present","I melt, am melting","derrita","derritas","derrita","derritamos","derritáis","derritan","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I melted, was melting","derritiera","derritieras","derritiera","derritiéramos","derritierais","derritieran","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Subjuntivo","Subjunctive","Futuro","Future","I will melt","derritiere","derritieres","derritiere","derritiéremos","derritiereis","derritieren","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have melted, melted","haya derretido","hayas derretido","haya derretido","hayamos derretido","hayáis derretido","hayan derretido","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have melted","hubiere derretido","hubieres derretido","hubiere derretido","hubiéremos derretido","hubiereis derretido","hubieren derretido","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had melted","hubiera derretido","hubieras derretido","hubiera derretido","hubiéramos derretido","hubierais derretido","hubieran derretido","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Melt! Don't melt!","","derrite","derrita","derritamos","derretid","derritan","derritiendo","melting","derretido","melted" +"derretir","to melt, liquefy, thaw","Imperativo Negativo","Imperative Negative","Presente","Present","Melt! Don't melt!","","no derritas","no derrita","no derritamos","no derritáis","no derritan","derritiendo","melting","derretido","melted" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Presente","Present","I displease, am displeasing","desagrado","desagradas","desagrada","desagradamos","desagradáis","desagradan","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Futuro","Future","I will displease","desagradaré","desagradarás","desagradará","desagradaremos","desagradaréis","desagradarán","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Imperfecto","Imperfect","I was displeasing, used to displease, displeased","desagradaba","desagradabas","desagradaba","desagradábamos","desagradabais","desagradaban","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Pretérito","Preterite","I displeased","desagradé","desagradaste","desagradó","desagradamos","desagradasteis","desagradaron","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Condicional","Conditional","I would displease","desagradaría","desagradarías","desagradaría","desagradaríamos","desagradaríais","desagradarían","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Presente perfecto","Present Perfect","I have displeased","he desagradado","has desagradado","ha desagradado","hemos desagradado","habéis desagradado","han desagradado","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have displeased","habré desagradado","habrás desagradado","habrá desagradado","habremos desagradado","habréis desagradado","habrán desagradado","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had displeased","había desagradado","habías desagradado","había desagradado","habíamos desagradado","habíais desagradado","habían desagradado","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had displeased","hube desagradado","hubiste desagradado","hubo desagradado","hubimos desagradado","hubisteis desagradado","hubieron desagradado","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have displeased","habría desagradado","habrías desagradado","habría desagradado","habríamos desagradado","habríais desagradado","habrían desagradado","desagradando","displeasing","desagradado","displeased" +"desagrademos" +"desagradar","to displease, be displeasing","Subjuntivo","Subjunctive","Presente","Present","I displease, am displeasing","desagrade","desagrades","desagrade","desagrademos","desagradéis","desagraden","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I displeased, was displeasing","desagradara","desagradaras","desagradara","desagradáramos","desagradarais","desagradaran","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Subjuntivo","Subjunctive","Futuro","Future","I will displease","desagradare","desagradares","desagradare","desagradáremos","desagradareis","desagradaren","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have displeased, displeased","haya desagradado","hayas desagradado","haya desagradado","hayamos desagradado","hayáis desagradado","hayan desagradado","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have displeased","hubiere desagradado","hubieres desagradado","hubiere desagradado","hubiéremos desagradado","hubiereis desagradado","hubieren desagradado","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had displeased","hubiera desagradado","hubieras desagradado","hubiera desagradado","hubiéramos desagradado","hubierais desagradado","hubieran desagradado","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Displease! Don't displease!","","desagrada","desagrade","desagrademos","desagradad","desagraden","desagradando","displeasing","desagradado","displeased" +"desagradar","to displease, be displeasing","Imperativo Negativo","Imperative Negative","Presente","Present","Displease! Don't displease!","","no desagrades","no desagrade","no desagrademos","no desagradéis","no desagraden","desagradando","displeasing","desagradado","displeased" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Presente","Present","I am unthankful for","desagradezco","desagradeces","desagradece","desagradecemos","desagradecéis","desagradecen","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Futuro","Future","I will be unthankful for","desagradeceré","desagradecerás","desagradecerá","desagradeceremos","desagradeceréis","desagradecerán","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Imperfecto","Imperfect","I was being unthankful for, used to be unthankful for, was unthankful for","desagradecía","desagradecías","desagradecía","desagradecíamos","desagradecíais","desagradecían","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Pretérito","Preterite","I was unthankful for","desagradecí","desagradeciste","desagradeció","desagradecimos","desagradecisteis","desagradecieron","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Condicional","Conditional","I would be unthankful for","desagradecería","desagradecerías","desagradecería","desagradeceríamos","desagradeceríais","desagradecerían","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been unthankful for","he desagradecido","has desagradecido","ha desagradecido","hemos desagradecido","habéis desagradecido","han desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been unthankful for","habré desagradecido","habrás desagradecido","habrá desagradecido","habremos desagradecido","habréis desagradecido","habrán desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been unthankful for","había desagradecido","habías desagradecido","había desagradecido","habíamos desagradecido","habíais desagradecido","habían desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been unthankful for","hube desagradecido","hubiste desagradecido","hubo desagradecido","hubimos desagradecido","hubisteis desagradecido","hubieron desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been unthankful for","habría desagradecido","habrías desagradecido","habría desagradecido","habríamos desagradecido","habríais desagradecido","habrían desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradezcamos" +"desagradecer","to be unthankful for, to be unappreciative of","Subjuntivo","Subjunctive","Presente","Present","I am unthankful for","desagradezca","desagradezcas","desagradezca","desagradezcamos","desagradezcáis","desagradezcan","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was unthankful for, was being unthankful for","desagradeciera","desagradecieras","desagradeciera","desagradeciéramos","desagradecierais","desagradecieran","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Subjuntivo","Subjunctive","Futuro","Future","I will be unthankful for","desagradeciere","desagradecieres","desagradeciere","desagradeciéremos","desagradeciereis","desagradecieren","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been unthankful for, was unthankful for","haya desagradecido","hayas desagradecido","haya desagradecido","hayamos desagradecido","hayáis desagradecido","hayan desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been unthankful for","hubiere desagradecido","hubieres desagradecido","hubiere desagradecido","hubiéremos desagradecido","hubiereis desagradecido","hubieren desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been unthankful for","hubiera desagradecido","hubieras desagradecido","hubiera desagradecido","hubiéramos desagradecido","hubierais desagradecido","hubieran desagradecido","desagradeciendo","being unthankful for","desagradecido","unthankful for" +"desagradecer","to be unthankful for, to be unappreciative of","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be unthankful for! Don't be unthankful for!","","desagradece","desagradezca","desagradezcamos","desagradeced","desagradezcan","desagradeciendo","being unthankful for","desagradecido","unthankful for", +"desagradecer","to be unthankful for, to be unappreciative of","Imperativo Negativo","Imperative Negative","Presente","Present","Be unthankful for! Don't be unthankful for!","","no desagradezcas","no desagradezca","no desagradezcamos","no desagradezcáis","no desagradezcan","desagradeciendo","being unthankful for","desagradecido","unthankful for", +"desaparecer","to disappear","Indicativo","Indicative","Presente","Present","I disappear, am disappearing","desaparezco","desapareces","desaparece","desaparecemos","desaparecéis","desaparecen","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Futuro","Future","I will disappear","desapareceré","desaparecerás","desaparecerá","desapareceremos","desapareceréis","desaparecerán","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Imperfecto","Imperfect","I was disappearing, used to disappear, disappeared","desaparecía","desaparecías","desaparecía","desaparecíamos","desaparecíais","desaparecían","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Pretérito","Preterite","I disappeared","desaparecí","desapareciste","desapareció","desaparecimos","desaparecisteis","desaparecieron","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Condicional","Conditional","I would disappear","desaparecería","desaparecerías","desaparecería","desapareceríamos","desapareceríais","desaparecerían","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have disappeared","he desaparecido","has desaparecido","ha desaparecido","hemos desaparecido","habéis desaparecido","han desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have disappeared","habré desaparecido","habrás desaparecido","habrá desaparecido","habremos desaparecido","habréis desaparecido","habrán desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had disappeared","había desaparecido","habías desaparecido","había desaparecido","habíamos desaparecido","habíais desaparecido","habían desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had disappeared","hube desaparecido","hubiste desaparecido","hubo desaparecido","hubimos desaparecido","hubisteis desaparecido","hubieron desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have disappeared","habría desaparecido","habrías desaparecido","habría desaparecido","habríamos desaparecido","habríais desaparecido","habrían desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparezcamos" +"desaparecer","to disappear","Subjuntivo","Subjunctive","Presente","Present","I disappear, am disappearing","desaparezca","desaparezcas","desaparezca","desaparezcamos","desaparezcáis","desaparezcan","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I disappeared, was disappearing","desapareciera","desaparecieras","desapareciera","desapareciéramos","desaparecierais","desaparecieran","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Subjuntivo","Subjunctive","Futuro","Future","I will disappear","desapareciere","desaparecieres","desapareciere","desapareciéremos","desapareciereis","desaparecieren","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have disappeared, disappeared","haya desaparecido","hayas desaparecido","haya desaparecido","hayamos desaparecido","hayáis desaparecido","hayan desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have disappeared","hubiere desaparecido","hubieres desaparecido","hubiere desaparecido","hubiéremos desaparecido","hubiereis desaparecido","hubieren desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had disappeared","hubiera desaparecido","hubieras desaparecido","hubiera desaparecido","hubiéramos desaparecido","hubierais desaparecido","hubieran desaparecido","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Disappear! Don't disappear!","","desaparece","desaparezca","desaparezcamos","desapareced","desaparezcan","desapareciendo","disappearing","desaparecido","disappeared" +"desaparecer","to disappear","Imperativo Negativo","Imperative Negative","Presente","Present","Disappear! Don't disappear!","","no desaparezcas","no desaparezca","no desaparezcamos","no desaparezcáis","no desaparezcan","desapareciendo","disappearing","desaparecido","disappeared" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Presente","Present","I eat breakfast, am eating breakfast","desayuno","desayunas","desayuna","desayunamos","desayunáis","desayunan","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Futuro","Future","I will eat breakfast","desayunaré","desayunarás","desayunará","desayunaremos","desayunaréis","desayunarán","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Imperfecto","Imperfect","I was eating breakfast, used to eat breakfast, ate breakfast","desayunaba","desayunabas","desayunaba","desayunábamos","desayunabais","desayunaban","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Pretérito","Preterite","I ate breakfast","desayuné","desayunaste","desayunó","desayunamos","desayunasteis","desayunaron","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Condicional","Conditional","I would eat breakfast","desayunaría","desayunarías","desayunaría","desayunaríamos","desayunaríais","desayunarían","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Presente perfecto","Present Perfect","I have eaten breakfast","he desayunado","has desayunado","ha desayunado","hemos desayunado","habéis desayunado","han desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have eaten breakfast","habré desayunado","habrás desayunado","habrá desayunado","habremos desayunado","habréis desayunado","habrán desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had eaten breakfast","había desayunado","habías desayunado","había desayunado","habíamos desayunado","habíais desayunado","habían desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had eaten breakfast","hube desayunado","hubiste desayunado","hubo desayunado","hubimos desayunado","hubisteis desayunado","hubieron desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have eaten breakfast","habría desayunado","habrías desayunado","habría desayunado","habríamos desayunado","habríais desayunado","habrían desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunemos" +"desayunar","to eat breakfast, have breakfast","Subjuntivo","Subjunctive","Presente","Present","I eat breakfast, am eating breakfast","desayune","desayunes","desayune","desayunemos","desayunéis","desayunen","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ate breakfast, was eating breakfast","desayunara","desayunaras","desayunara","desayunáramos","desayunarais","desayunaran","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Subjuntivo","Subjunctive","Futuro","Future","I will eat breakfast","desayunare","desayunares","desayunare","desayunáremos","desayunareis","desayunaren","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have eaten breakfast, ate breakfast","haya desayunado","hayas desayunado","haya desayunado","hayamos desayunado","hayáis desayunado","hayan desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have eaten breakfast","hubiere desayunado","hubieres desayunado","hubiere desayunado","hubiéremos desayunado","hubiereis desayunado","hubieren desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had eaten breakfast","hubiera desayunado","hubieras desayunado","hubiera desayunado","hubiéramos desayunado","hubierais desayunado","hubieran desayunado","desayunando","eating breakfast","desayunado","eaten breakfast" +"desayunar","to eat breakfast, have breakfast","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Eat breakfast! Don't eat breakfast!","","desayuna","desayune","desayunemos","desayunad","desayunen","desayunando","eating breakfast","desayunado","eaten breakfast", +"desayunar","to eat breakfast, have breakfast","Imperativo Negativo","Imperative Negative","Presente","Present","Eat breakfast! Don't eat breakfast!","","no desayunes","no desayune","no desayunemos","no desayunéis","no desayunen","desayunando","eating breakfast","desayunado","eaten breakfast", +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Presente","Present","I rest, am resting","descanso","descansas","descansa","descansamos","descansáis","descansan","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Futuro","Future","I will rest","descansaré","descansarás","descansará","descansaremos","descansaréis","descansarán","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Imperfecto","Imperfect","I was resting, used to rest, rested","descansaba","descansabas","descansaba","descansábamos","descansabais","descansaban","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Pretérito","Preterite","I rested","descansé","descansaste","descansó","descansamos","descansasteis","descansaron","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Condicional","Conditional","I would rest","descansaría","descansarías","descansaría","descansaríamos","descansaríais","descansarían","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Presente perfecto","Present Perfect","I have rested","he descansado","has descansado","ha descansado","hemos descansado","habéis descansado","han descansado","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have rested","habré descansado","habrás descansado","habrá descansado","habremos descansado","habréis descansado","habrán descansado","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had rested","había descansado","habías descansado","había descansado","habíamos descansado","habíais descansado","habían descansado","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had rested","hube descansado","hubiste descansado","hubo descansado","hubimos descansado","hubisteis descansado","hubieron descansado","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have rested","habría descansado","habrías descansado","habría descansado","habríamos descansado","habríais descansado","habrían descansado","descansando","resting","descansado","rested" +"descansemos" +"descansar","to rest, take a rest; to support, lean [on","Subjuntivo","Subjunctive","Presente","Present","I rest, am resting","descanse","descanses","descanse","descansemos","descanséis","descansen","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I rested, was resting","descansara","descansaras","descansara","descansáramos","descansarais","descansaran","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Subjuntivo","Subjunctive","Futuro","Future","I will rest","descansare","descansares","descansare","descansáremos","descansareis","descansaren","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have rested, rested","haya descansado","hayas descansado","haya descansado","hayamos descansado","hayáis descansado","hayan descansado","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have rested","hubiere descansado","hubieres descansado","hubiere descansado","hubiéremos descansado","hubiereis descansado","hubieren descansado","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had rested","hubiera descansado","hubieras descansado","hubiera descansado","hubiéramos descansado","hubierais descansado","hubieran descansado","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Rest! Don't rest!","","descansa","descanse","descansemos","descansad","descansen","descansando","resting","descansado","rested" +"descansar","to rest, take a rest; to support, lean [on","Imperativo Negativo","Imperative Negative","Presente","Present","Rest! Don't rest!","","no descanses","no descanse","no descansemos","no descanséis","no descansen","descansando","resting","descansado","rested" +"descender","to descend, lower","Indicativo","Indicative","Presente","Present","I descend, am descending","desciendo","desciendes","desciende","descendemos","descendéis","descienden","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Futuro","Future","I will descend","descenderé","descenderás","descenderá","descenderemos","descenderéis","descenderán","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Imperfecto","Imperfect","I was descending, used to descend, descended","descendía","descendías","descendía","descendíamos","descendíais","descendían","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Pretérito","Preterite","I descended","descendí","descendiste","descendió","descendimos","descendisteis","descendieron","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Condicional","Conditional","I would descend","descendería","descenderías","descendería","descenderíamos","descenderíais","descenderían","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Presente perfecto","Present Perfect","I have descended","he descendido","has descendido","ha descendido","hemos descendido","habéis descendido","han descendido","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have descended","habré descendido","habrás descendido","habrá descendido","habremos descendido","habréis descendido","habrán descendido","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had descended","había descendido","habías descendido","había descendido","habíamos descendido","habíais descendido","habían descendido","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had descended","hube descendido","hubiste descendido","hubo descendido","hubimos descendido","hubisteis descendido","hubieron descendido","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have descended","habría descendido","habrías descendido","habría descendido","habríamos descendido","habríais descendido","habrían descendido","descendiendo","descending","descendido","descended" +"descendamos" +"descender","to descend, lower","Subjuntivo","Subjunctive","Presente","Present","I descend, am descending","descienda","desciendas","descienda","descendamos","descendáis","desciendan","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I descended, was descending","descendiera","descendieras","descendiera","descendiéramos","descendierais","descendieran","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Subjuntivo","Subjunctive","Futuro","Future","I will descend","descendiere","descendieres","descendiere","descendiéremos","descendiereis","descendieren","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have descended, descended","haya descendido","hayas descendido","haya descendido","hayamos descendido","hayáis descendido","hayan descendido","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have descended","hubiere descendido","hubieres descendido","hubiere descendido","hubiéremos descendido","hubiereis descendido","hubieren descendido","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had descended","hubiera descendido","hubieras descendido","hubiera descendido","hubiéramos descendido","hubierais descendido","hubieran descendido","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Descend! Don't descend!","","desciende","descienda","descendamos","descended","desciendan","descendiendo","descending","descendido","descended" +"descender","to descend, lower","Imperativo Negativo","Imperative Negative","Presente","Present","Descend! Don't descend!","","no desciendas","no descienda","no descendamos","no descendáis","no desciendan","descendiendo","descending","descendido","descended" +"describir","to describe","Indicativo","Indicative","Presente","Present","I describe, am describing","describo","describes","describe","describimos","describís","describen","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Futuro","Future","I will describe","describiré","describirás","describirá","describiremos","describiréis","describirán","describiendo","describing","descrito","described" +"" +"doler","to hurt, pain, ache","Subjuntivo","Subjunctive","Presente","Present","it hurts, is hurting","","","duela","","","duelan","doliendo","hurting","dolido","hurt" +"describir","to describe","Indicativo","Indicative","Imperfecto","Imperfect","I was describing, used to describe, described","describía","describías","describía","describíamos","describíais","describían","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Pretérito","Preterite","I described","describí","describiste","describió","describimos","describisteis","describieron","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Condicional","Conditional","I would describe","describiría","describirías","describiría","describiríamos","describiríais","describirían","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Presente perfecto","Present Perfect","I have described","he descrito","has descrito","ha descrito","hemos descrito","habéis descrito","han descrito","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have described","habré descrito","habrás descrito","habrá descrito","habremos descrito","habréis descrito","habrán descrito","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had described","había descrito","habías descrito","había descrito","habíamos descrito","habíais descrito","habían descrito","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had described","hube descrito","hubiste descrito","hubo descrito","hubimos descrito","hubisteis descrito","hubieron descrito","describiendo","describing","descrito","described" +"describir","to describe","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have described","habría descrito","habrías descrito","habría descrito","habríamos descrito","habríais descrito","habrían descrito","describiendo","describing","descrito","described" +"describamos" +"describir","to describe","Subjuntivo","Subjunctive","Presente","Present","I describe, am describing","describa","describas","describa","describamos","describáis","describan","describiendo","describing","descrito","described" +"describir","to describe","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I described, was describing","describiera","describieras","describiera","describiéramos","describierais","describieran","describiendo","describing","descrito","described" +"describir","to describe","Subjuntivo","Subjunctive","Futuro","Future","I will describe","describiere","describieres","describiere","describiéremos","describiereis","describieren","describiendo","describing","descrito","described" +"describir","to describe","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have described, described","haya descrito","hayas descrito","haya descrito","hayamos descrito","hayáis descrito","hayan descrito","describiendo","describing","descrito","described" +"describir","to describe","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have described","hubiere descrito","hubieres descrito","hubiere descrito","hubiéremos descrito","hubiereis descrito","hubieren descrito","describiendo","describing","descrito","described" +"describir","to describe","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had described","hubiera descrito","hubieras descrito","hubiera descrito","hubiéramos descrito","hubierais descrito","hubieran descrito","describiendo","describing","descrito","described" +"describir","to describe","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Describe! Don't describe!","","describe","describa","describamos","describid","describan","describiendo","describing","descrito","described" +"describir","to describe","Imperativo Negativo","Imperative Negative","Presente","Present","Describe! Don't describe!","","no describas","no describa","no describamos","no describáis","no describan","describiendo","describing","descrito","described" +"descubrir","to discover","Indicativo","Indicative","Presente","Present","I discover, am discovering","descubro","descubres","descubre","descubrimos","descubrís","descubren","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Futuro","Future","I will discover","descubriré","descubrirás","descubrirá","descubriremos","descubriréis","descubrirán","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Imperfecto","Imperfect","I was discovering, used to discover, discovered","descubría","descubrías","descubría","descubríamos","descubríais","descubrían","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Pretérito","Preterite","I discovered","descubrí","descubriste","descubrió","descubrimos","descubristeis","descubrieron","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Condicional","Conditional","I would discover","descubriría","descubrirías","descubriría","descubriríamos","descubriríais","descubrirían","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Presente perfecto","Present Perfect","I have discovered","he descubierto","has descubierto","ha descubierto","hemos descubierto","habéis descubierto","han descubierto","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have discovered","habré descubierto","habrás descubierto","habrá descubierto","habremos descubierto","habréis descubierto","habrán descubierto","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had discovered","había descubierto","habías descubierto","había descubierto","habíamos descubierto","habíais descubierto","habían descubierto","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had discovered","hube descubierto","hubiste descubierto","hubo descubierto","hubimos descubierto","hubisteis descubierto","hubieron descubierto","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have discovered","habría descubierto","habrías descubierto","habría descubierto","habríamos descubierto","habríais descubierto","habrían descubierto","descubriendo","discovering","descubierto","discovered" +"descubramos" +"descubrir","to discover","Subjuntivo","Subjunctive","Presente","Present","I discover, am discovering","descubra","descubras","descubra","descubramos","descubráis","descubran","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I discovered, was discovering","descubriera","descubrieras","descubriera","descubriéramos","descubrierais","descubrieran","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Subjuntivo","Subjunctive","Futuro","Future","I will discover","descubriere","descubrieres","descubriere","descubriéremos","descubriereis","descubrieren","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have discovered, discovered","haya descubierto","hayas descubierto","haya descubierto","hayamos descubierto","hayáis descubierto","hayan descubierto","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have discovered","hubiere descubierto","hubieres descubierto","hubiere descubierto","hubiéremos descubierto","hubiereis descubierto","hubieren descubierto","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had discovered","hubiera descubierto","hubieras descubierto","hubiera descubierto","hubiéramos descubierto","hubierais descubierto","hubieran descubierto","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Discover! Don't discover!","","descubre","descubra","descubramos","descubrid","descubran","descubriendo","discovering","descubierto","discovered" +"descubrir","to discover","Imperativo Negativo","Imperative Negative","Presente","Present","Discover! Don't discover!","","no descubras","no descubra","no descubramos","no descubráis","no descubran","descubriendo","discovering","descubierto","discovered" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Presente","Present","I develop, am developing","desarrollo","desarrollas","desarrolla","desarrollamos","desarrolláis","desarrollan","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Futuro","Future","I will develop","desarrollaré","desarrollarás","desarrollará","desarrollaremos","desarrollaréis","desarrollarán","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Imperfecto","Imperfect","I was developing, used to develop, developed","desarrollaba","desarrollabas","desarrollaba","desarrollábamos","desarrollabais","desarrollaban","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Pretérito","Preterite","I developed","desarrollé","desarrollaste","desarrolló","desarrollamos","desarrollasteis","desarrollaron","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Condicional","Conditional","I would develop","desarrollaría","desarrollarías","desarrollaría","desarrollaríamos","desarrollaríais","desarrollarían","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Presente perfecto","Present Perfect","I have developed","he desarrollado","has desarrollado","ha desarrollado","hemos desarrollado","habéis desarrollado","han desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have developed","habré desarrollado","habrás desarrollado","habrá desarrollado","habremos desarrollado","habréis desarrollado","habrán desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had developed","había desarrollado","habías desarrollado","había desarrollado","habíamos desarrollado","habíais desarrollado","habían desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had developed","hube desarrollado","hubiste desarrollado","hubo desarrollado","hubimos desarrollado","hubisteis desarrollado","hubieron desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have developed","habría desarrollado","habrías desarrollado","habría desarrollado","habríamos desarrollado","habríais desarrollado","habrían desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollemos" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Subjuntivo","Subjunctive","Presente","Present","I develop, am developing","desarrolle","desarrolles","desarrolle","desarrollemos","desarrolléis","desarrollen","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I developed, was developing","desarrollara","desarrollaras","desarrollara","desarrolláramos","desarrollarais","desarrollaran","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Subjuntivo","Subjunctive","Futuro","Future","I will develop","desarrollare","desarrollares","desarrollare","desarrolláremos","desarrollareis","desarrollaren","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have developed, developed","haya desarrollado","hayas desarrollado","haya desarrollado","hayamos desarrollado","hayáis desarrollado","hayan desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have developed","hubiere desarrollado","hubieres desarrollado","hubiere desarrollado","hubiéremos desarrollado","hubiereis desarrollado","hubieren desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had developed","hubiera desarrollado","hubieras desarrollado","hubiera desarrollado","hubiéramos desarrollado","hubierais desarrollado","hubieran desarrollado","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Develop! Don't develop!","","desarrolla","desarrolle","desarrollemos","desarrollad","desarrollen","desarrollando","developing","desarrollado","developed" +"desarrollar","to develop, expand; to unroll, unwind; to unfold","Imperativo Negativo","Imperative Negative","Presente","Present","Develop! Don't develop!","","no desarrolles","no desarrolle","no desarrollemos","no desarrolléis","no desarrollen","desarrollando","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Presente","Present","I develop, am developing","me desarrollo","te desarrollas","se desarrolla","nos desarrollamos","os desarrolláis","se desarrollan","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Futuro","Future","I will develop","me desarrollaré","te desarrollarás","se desarrollará","nos desarrollaremos","os desarrollaréis","se desarrollarán","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Imperfecto","Imperfect","I was developing, used to develop, developed","me desarrollaba","te desarrollabas","se desarrollaba","nos desarrollábamos","os desarrollabais","se desarrollaban","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Pretérito","Preterite","I developed","me desarrollé","te desarrollaste","se desarrolló","nos desarrollamos","os desarrollasteis","se desarrollaron","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Condicional","Conditional","I would develop","me desarrollaría","te desarrollarías","se desarrollaría","nos desarrollaríamos","os desarrollaríais","se desarrollarían","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Presente perfecto","Present Perfect","I have developed","me he desarrollado","te has desarrollado","se ha desarrollado","nos hemos desarrollado","os habéis desarrollado","se han desarrollado","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have developed","me habré desarrollado","te habrás desarrollado","se habrá desarrollado","nos habremos desarrollado","os habréis desarrollado","se habrán desarrollado","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had developed","me había desarrollado","te habías desarrollado","se había desarrollado","nos habíamos desarrollado","os habíais desarrollado","se habían desarrollado","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had developed","me hube desarrollado","te hubiste desarrollado","se hubo desarrollado","nos hubimos desarrollado","os hubisteis desarrollado","se hubieron desarrollado","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have developed","me habría desarrollado","te habrías desarrollado","se habría desarrollado","nos habríamos desarrollado","os habríais desarrollado","se habrían desarrollado","desarrollándose","developing","desarrollado","developed" +"nos desarrollemos" +"desarrollarse","to develop, evolve; to unwind","Subjuntivo","Subjunctive","Presente","Present","I develop, am developing","me desarrolle","te desarrolles","se desarrolle","nos desarrollemos","os desarrolléis","se desarrollen","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I developed, was developing","me desarrollara","te desarrollaras","se desarrollara","nos desarrolláramos","os desarrollarais","se desarrollaran","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Subjuntivo","Subjunctive","Futuro","Future","I will develop","me desarrollare","te desarrollares","se desarrollare","nos desarrolláremos","os desarrollareis","se desarrollaren","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have developed, developed","me haya desarrollado","te hayas desarrollado","se haya desarrollado","nos hayamos desarrollado","os hayáis desarrollado","se hayan desarrollado","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have developed","me hubiere desarrollado","te hubieres desarrollado","se hubiere desarrollado","nos hubiéremos desarrollado","os hubiereis desarrollado","se hubieren desarrollado","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had developed","me hubiera desarrollado","te hubieras desarrollado","se hubiera desarrollado","nos hubiéramos desarrollado","os hubierais desarrollado","se hubieran desarrollado","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Develop! Don't develop!","","desarróllate","desarróllese","nos desarrollemos","desarrollaos","desarróllense","desarrollándose","developing","desarrollado","developed" +"desarrollarse","to develop, evolve; to unwind","Imperativo Negativo","Imperative Negative","Presente","Present","Develop! Don't develop!","","no te desarrolles","no se desarrolle","no nos desarrollemos","no os desarrolléis","no se desarrollen","desarrollándose","developing","desarrollado","developed" +"desear","to desire, want, wish","Indicativo","Indicative","Presente","Present","I desire, am desiring","deseo","deseas","desea","deseamos","deseáis","desean","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Futuro","Future","I will desire","desearé","desearás","deseará","desearemos","desearéis","desearán","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Imperfecto","Imperfect","I was desiring, used to desire, desired","deseaba","deseabas","deseaba","deseábamos","deseabais","deseaban","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Pretérito","Preterite","I desired","deseé","deseaste","deseó","deseamos","deseasteis","desearon","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Condicional","Conditional","I would desire","desearía","desearías","desearía","desearíamos","desearíais","desearían","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Presente perfecto","Present Perfect","I have desired","he deseado","has deseado","ha deseado","hemos deseado","habéis deseado","han deseado","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have desired","habré deseado","habrás deseado","habrá deseado","habremos deseado","habréis deseado","habrán deseado","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had desired","había deseado","habías deseado","había deseado","habíamos deseado","habíais deseado","habían deseado","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had desired","hube deseado","hubiste deseado","hubo deseado","hubimos deseado","hubisteis deseado","hubieron deseado","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have desired","habría deseado","habrías deseado","habría deseado","habríamos deseado","habríais deseado","habrían deseado","deseando","desiring","deseado","desired" +"deseemos" +"desear","to desire, want, wish","Subjuntivo","Subjunctive","Presente","Present","I desire, am desiring","desee","desees","desee","deseemos","deseéis","deseen","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I desired, was desiring","deseara","desearas","deseara","deseáramos","desearais","desearan","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Subjuntivo","Subjunctive","Futuro","Future","I will desire","deseare","deseares","deseare","deseáremos","deseareis","desearen","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have desired, desired","haya deseado","hayas deseado","haya deseado","hayamos deseado","hayáis deseado","hayan deseado","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have desired","hubiere deseado","hubieres deseado","hubiere deseado","hubiéremos deseado","hubiereis deseado","hubieren deseado","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had desired","hubiera deseado","hubieras deseado","hubiera deseado","hubiéramos deseado","hubierais deseado","hubieran deseado","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Desire! Don't desire!","","desea","desee","deseemos","desead","deseen","deseando","desiring","deseado","desired" +"desear","to desire, want, wish","Imperativo Negativo","Imperative Negative","Presente","Present","Desire! Don't desire!","","no desees","no desee","no deseemos","no deseéis","no deseen","deseando","desiring","deseado","desired" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Presente","Present","I undo, am undoing","deshago","deshaces","deshace","deshacemos","deshacéis","deshacen","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Futuro","Future","I will undo","desharé","desharás","deshará","desharemos","desharéis","desharán","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Imperfecto","Imperfect","I was undoing, used to undo, undid","deshacía","deshacías","deshacía","deshacíamos","deshacíais","deshacían","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Pretérito","Preterite","I undid","deshice","deshiciste","deshizo","deshicimos","deshicisteis","deshicieron","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Condicional","Conditional","I would undo","desharía","desharías","desharía","desharíamos","desharíais","desharían","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Presente perfecto","Present Perfect","I have undone","he deshecho","has deshecho","ha deshecho","hemos deshecho","habéis deshecho","han deshecho","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have undone","habré deshecho","habrás deshecho","habrá deshecho","habremos deshecho","habréis deshecho","habrán deshecho","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had undone","había deshecho","habías deshecho","había deshecho","habíamos deshecho","habíais deshecho","habían deshecho","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had undone","hube deshecho","hubiste deshecho","hubo deshecho","hubimos deshecho","hubisteis deshecho","hubieron deshecho","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have undone","habría deshecho","habrías deshecho","habría deshecho","habríamos deshecho","habríais deshecho","habrían deshecho","deshaciendo","undoing","deshecho","undone" +"deshagamos" +"deshacer","to undo, unmake, ruin, spoil, take apart","Subjuntivo","Subjunctive","Presente","Present","I undo, am undoing","deshaga","deshagas","deshaga","deshagamos","deshagáis","deshagan","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I undid, was undoing","deshiciera","deshicieras","deshiciera","deshiciéramos","deshicierais","deshicieran","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Subjuntivo","Subjunctive","Futuro","Future","I will undo","deshiciere","deshicieres","deshiciere","deshiciéremos","deshiciereis","deshicieren","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have undone, undid","haya deshecho","hayas deshecho","haya deshecho","hayamos deshecho","hayáis deshecho","hayan deshecho","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have undone","hubiere deshecho","hubieres deshecho","hubiere deshecho","hubiéremos deshecho","hubiereis deshecho","hubieren deshecho","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had undone","hubiera deshecho","hubieras deshecho","hubiera deshecho","hubiéramos deshecho","hubierais deshecho","hubieran deshecho","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Undo! Don't undo!","","deshaz","deshaga","deshagamos","deshaced","deshagan","deshaciendo","undoing","deshecho","undone" +"deshacer","to undo, unmake, ruin, spoil, take apart","Imperativo Negativo","Imperative Negative","Presente","Present","Undo! Don't undo!","","no deshagas","no deshaga","no deshagamos","no deshagáis","no deshagan","deshaciendo","undoing","deshecho","undone" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Presente","Present","I say goodbye to, am saying goodbye to","despido","despides","despide","despedimos","despedís","despiden","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Futuro","Future","I will say goodbye to","despediré","despedirás","despedirá","despediremos","despediréis","despedirán","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Imperfecto","Imperfect","I was saying goodbye to, used to say goodbye to, said goodbye to","despedía","despedías","despedía","despedíamos","despedíais","despedían","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Pretérito","Preterite","I said goodbye to","despedí","despediste","despidió","despedimos","despedisteis","despidieron","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Condicional","Conditional","I would say goodbye to","despediría","despedirías","despediría","despediríamos","despediríais","despedirían","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Presente perfecto","Present Perfect","I have said goodbye to","he despedido","has despedido","ha despedido","hemos despedido","habéis despedido","han despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have said goodbye to","habré despedido","habrás despedido","habrá despedido","habremos despedido","habréis despedido","habrán despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had said goodbye to","había despedido","habías despedido","había despedido","habíamos despedido","habíais despedido","habían despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had said goodbye to","hube despedido","hubiste despedido","hubo despedido","hubimos despedido","hubisteis despedido","hubieron despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have said goodbye to","habría despedido","habrías despedido","habría despedido","habríamos despedido","habríais despedido","habrían despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despidamos" +"despedir","to say goodbye to, show out, dismiss","Subjuntivo","Subjunctive","Presente","Present","I say goodbye to, am saying goodbye to","despida","despidas","despida","despidamos","despidáis","despidan","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I said goodbye to, was saying goodbye to","despidiera","despidieras","despidiera","despidiéramos","despidierais","despidieran","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Subjuntivo","Subjunctive","Futuro","Future","I will say goodbye to","despidiere","despidieres","despidiere","despidiéremos","despidiereis","despidieren","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have said goodbye to, said goodbye to","haya despedido","hayas despedido","haya despedido","hayamos despedido","hayáis despedido","hayan despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have said goodbye to","hubiere despedido","hubieres despedido","hubiere despedido","hubiéremos despedido","hubiereis despedido","hubieren despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had said goodbye to","hubiera despedido","hubieras despedido","hubiera despedido","hubiéramos despedido","hubierais despedido","hubieran despedido","despidiendo","saying goodbye to","despedido","said goodbye to" +"despedir","to say goodbye to, show out, dismiss","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Say goodbye to! Don't say goodbye to!","","despide","despida","despidamos","despedid","despidan","despidiendo","saying goodbye to","despedido","said goodbye to", +"despedir","to say goodbye to, show out, dismiss","Imperativo Negativo","Imperative Negative","Presente","Present","Say goodbye to! Don't say goodbye to!","","no despidas","no despida","no despidamos","no despidáis","no despidan","despidiendo","saying goodbye to","despedido","said goodbye to", +"despertar","to awaken","Indicativo","Indicative","Presente","Present","I awaken, am awakening","despierto","despiertas","despierta","despertamos","despertáis","despiertan","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Futuro","Future","I will awaken","despertaré","despertarás","despertará","despertaremos","despertaréis","despertarán","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Imperfecto","Imperfect","I was awakening, used to awaken, awakened","despertaba","despertabas","despertaba","despertábamos","despertabais","despertaban","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Pretérito","Preterite","I awakened","desperté","despertaste","despertó","despertamos","despertasteis","despertaron","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Condicional","Conditional","I would awaken","despertaría","despertarías","despertaría","despertaríamos","despertaríais","despertarían","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Presente perfecto","Present Perfect","I have awakened","he despertado","has despertado","ha despertado","hemos despertado","habéis despertado","han despertado","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have awakened","habré despertado","habrás despertado","habrá despertado","habremos despertado","habréis despertado","habrán despertado","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had awakened","había despertado","habías despertado","había despertado","habíamos despertado","habíais despertado","habían despertado","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had awakened","hube despertado","hubiste despertado","hubo despertado","hubimos despertado","hubisteis despertado","hubieron despertado","despertando","awakening","despertado","awakened" +"despertar","to awaken","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have awakened","habría despertado","habrías despertado","habría despertado","habríamos despertado","habríais despertado","habrían despertado","despertando","awakening","despertado","awakened" +"despertemos" +"despertar","to awaken","Subjuntivo","Subjunctive","Presente","Present","I awaken, am awakening","despierte","despiertes","despierte","despertemos","despertéis","despierten","despertando","awakening","despertado","awakened" +"despertar","to awaken","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I awakened, was awakening","despertara","despertaras","despertara","despertáramos","despertarais","despertaran","despertando","awakening","despertado","awakened" +"despertar","to awaken","Subjuntivo","Subjunctive","Futuro","Future","I will awaken","despertare","despertares","despertare","despertáremos","despertareis","despertaren","despertando","awakening","despertado","awakened" +"despertar","to awaken","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have awakened, awakened","haya despertado","hayas despertado","haya despertado","hayamos despertado","hayáis despertado","hayan despertado","despertando","awakening","despertado","awakened" +"despertar","to awaken","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have awakened","hubiere despertado","hubieres despertado","hubiere despertado","hubiéremos despertado","hubiereis despertado","hubieren despertado","despertando","awakening","despertado","awakened" +"despertar","to awaken","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had awakened","hubiera despertado","hubieras despertado","hubiera despertado","hubiéramos despertado","hubierais despertado","hubieran despertado","despertando","awakening","despertado","awakened" +"despertar","to awaken","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Awaken! Don't awaken!","","despierta","despierte","despertemos","despertad","despierten","despertando","awakening","despertado","awakened" +"despertar","to awaken","Imperativo Negativo","Imperative Negative","Presente","Present","Awaken! Don't awaken!","","no despiertes","no despierte","no despertemos","no despertéis","no despierten","despertando","awakening","despertado","awakened" +"despertarse","to wake up, lie down","Indicativo","Indicative","Presente","Present","I wake up, am waking up","me despierto","te despiertas","se despierta","nos despertamos","os despertáis","se despiertan","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Futuro","Future","I will wake up","me despertaré","te despertarás","se despertará","nos despertaremos","os despertaréis","se despertarán","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Imperfecto","Imperfect","I was waking up, used to wake up, woke up","me despertaba","te despertabas","se despertaba","nos despertábamos","os despertabais","se despertaban","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Pretérito","Preterite","I woke up","me desperté","te despertaste","se despertó","nos despertamos","os despertasteis","se despertaron","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Condicional","Conditional","I would wake up","me despertaría","te despertarías","se despertaría","nos despertaríamos","os despertaríais","se despertarían","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Presente perfecto","Present Perfect","I have waken up","me he despertado","te has despertado","se ha despertado","nos hemos despertado","os habéis despertado","se han despertado","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have waken up","me habré despertado","te habrás despertado","se habrá despertado","nos habremos despertado","os habréis despertado","se habrán despertado","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had waken up","me había despertado","te habías despertado","se había despertado","nos habíamos despertado","os habíais despertado","se habían despertado","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had waken up","me hube despertado","te hubiste despertado","se hubo despertado","nos hubimos despertado","os hubisteis despertado","se hubieron despertado","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have waken up","me habría despertado","te habrías despertado","se habría despertado","nos habríamos despertado","os habríais despertado","se habrían despertado","despertándose","waking up","despertado","waken up" +"nos despertemos" +"despertarse","to wake up, lie down","Subjuntivo","Subjunctive","Presente","Present","I wake up, am waking up","me despierte","te despiertes","se despierte","nos despertemos","os despertéis","se despierten","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I woke up, was waking up","me despertara","te despertaras","se despertara","nos despertáramos","os despertarais","se despertaran","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Subjuntivo","Subjunctive","Futuro","Future","I will wake up","me despertare","te despertares","se despertare","nos despertáremos","os despertareis","se despertaren","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have waken up, woke up","me haya despertado","te hayas despertado","se haya despertado","nos hayamos despertado","os hayáis despertado","se hayan despertado","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have waken up","me hubiere despertado","te hubieres despertado","se hubiere despertado","nos hubiéremos despertado","os hubiereis despertado","se hubieren despertado","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had waken up","me hubiera despertado","te hubieras despertado","se hubiera despertado","nos hubiéramos despertado","os hubierais despertado","se hubieran despertado","despertándose","waking up","despertado","waken up" +"despertarse","to wake up, lie down","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Wake up! Don't wake up!","","despiértate","despiértese","nos despertemos","despertaos","despiértense","despertándose","waking up","despertado","waken up", +"despertarse","to wake up, lie down","Imperativo Negativo","Imperative Negative","Presente","Present","Wake up! Don't wake up!","","no te despiertes","no se despierte","no nos despertemos","no os despertéis","no se despierten","despertándose","waking up","despertado","waken up", +"destruir","to destroy","Indicativo","Indicative","Presente","Present","I destroy, am destroying","destruyo","destruyes","destruye","destruimos","destruís","destruyen","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Futuro","Future","I will destroy","destruiré","destruirás","destruirá","destruiremos","destruiréis","destruirán","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Imperfecto","Imperfect","I was destroying, used to destroy, destroyed","destruía","destruías","destruía","destruíamos","destruíais","destruían","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Pretérito","Preterite","I destroyed","destruí","destruiste","destruyó","destruimos","destruisteis","destruyeron","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Condicional","Conditional","I would destroy","destruiría","destruirías","destruiría","destruiríamos","destruiríais","destruirían","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Presente perfecto","Present Perfect","I have destroyed","he destruido","has destruido","ha destruido","hemos destruido","habéis destruido","han destruido","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have destroyed","habré destruido","habrás destruido","habrá destruido","habremos destruido","habréis destruido","habrán destruido","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had destroyed","había destruido","habías destruido","había destruido","habíamos destruido","habíais destruido","habían destruido","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had destroyed","hube destruido","hubiste destruido","hubo destruido","hubimos destruido","hubisteis destruido","hubieron destruido","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have destroyed","habría destruido","habrías destruido","habría destruido","habríamos destruido","habríais destruido","habrían destruido","destruyendo","destroying","destruido","destroyed" +"destruyamos" +"destruir","to destroy","Subjuntivo","Subjunctive","Presente","Present","I destroy, am destroying","destruya","destruyas","destruya","destruyamos","destruyáis","destruyan","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I destroyed, was destroying","destruyera","destruyeras","destruyera","destruyéramos","destruyerais","destruyeran","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Subjuntivo","Subjunctive","Futuro","Future","I will destroy","destruyere","destruyeres","destruyere","destruyéremos","destruyereis","destruyeren","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have destroyed, destroyed","haya destruido","hayas destruido","haya destruido","hayamos destruido","hayáis destruido","hayan destruido","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have destroyed","hubiere destruido","hubieres destruido","hubiere destruido","hubiéremos destruido","hubiereis destruido","hubieren destruido","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had destroyed","hubiera destruido","hubieras destruido","hubiera destruido","hubiéramos destruido","hubierais destruido","hubieran destruido","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Destroy! Don't destroy!","","destruye","destruya","destruyamos","destruid","destruyan","destruyendo","destroying","destruido","destroyed" +"destruir","to destroy","Imperativo Negativo","Imperative Negative","Presente","Present","Destroy! Don't destroy!","","no destruyas","no destruya","no destruyamos","no destruyáis","no destruyan","destruyendo","destroying","destruido","destroyed" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Presente","Present","I stop, am stopping","detengo","detienes","detiene","detenemos","detenéis","detienen","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Futuro","Future","I will stop","detendré","detendrás","detendrá","detendremos","detendréis","detendrán","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Imperfecto","Imperfect","I was stopping, used to stop, stopped","detenía","detenías","detenía","deteníamos","deteníais","detenían","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Pretérito","Preterite","I stopped","detuve","detuviste","detuvo","detuvimos","detuvisteis","detuvieron","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Condicional","Conditional","I would stop","detendría","detendrías","detendría","detendríamos","detendríais","detendrían","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have stopped","he detenido","has detenido","ha detenido","hemos detenido","habéis detenido","han detenido","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have stopped","habré detenido","habrás detenido","habrá detenido","habremos detenido","habréis detenido","habrán detenido","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had stopped","había detenido","habías detenido","había detenido","habíamos detenido","habíais detenido","habían detenido","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had stopped","hube detenido","hubiste detenido","hubo detenido","hubimos detenido","hubisteis detenido","hubieron detenido","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have stopped","habría detenido","habrías detenido","habría detenido","habríamos detenido","habríais detenido","habrían detenido","deteniendo","stopping","detenido","stopped" +"detengamos" +"detener","to stop; to hold up, delay; to arrest, detain","Subjuntivo","Subjunctive","Presente","Present","I stop, am stopping","detenga","detengas","detenga","detengamos","detengáis","detengan","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I stopped, was stopping","detuviera","detuvieras","detuviera","detuviéramos","detuvierais","detuvieran","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Subjuntivo","Subjunctive","Futuro","Future","I will stop","detuviere","detuvieres","detuviere","detuviéremos","detuviereis","detuvieren","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have stopped, stopped","haya detenido","hayas detenido","haya detenido","hayamos detenido","hayáis detenido","hayan detenido","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have stopped","hubiere detenido","hubieres detenido","hubiere detenido","hubiéremos detenido","hubiereis detenido","hubieren detenido","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had stopped","hubiera detenido","hubieras detenido","hubiera detenido","hubiéramos detenido","hubierais detenido","hubieran detenido","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Stop! Don't stop!","","detén","detenga","detengamos","detened","detengan","deteniendo","stopping","detenido","stopped" +"detener","to stop; to hold up, delay; to arrest, detain","Imperativo Negativo","Imperative Negative","Presente","Present","Stop! Don't stop!","","no detengas","no detenga","no detengamos","no detengáis","no detengan","deteniendo","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Presente","Present","I stop, am stopping","me detengo","te detienes","se detiene","nos detenemos","os detenéis","se detienen","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Futuro","Future","I will stop","me detendré","te detendrás","se detendrá","nos detendremos","os detendréis","se detendrán","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Imperfecto","Imperfect","I was stopping, used to stop, stopped","me detenía","te detenías","se detenía","nos deteníamos","os deteníais","se detenían","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Pretérito","Preterite","I stopped","me detuve","te detuviste","se detuvo","nos detuvimos","os detuvisteis","se detuvieron","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Condicional","Conditional","I would stop","me detendría","te detendrías","se detendría","nos detendríamos","os detendríais","se detendrían","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Presente perfecto","Present Perfect","I have stopped","me he detenido","te has detenido","se ha detenido","nos hemos detenido","os habéis detenido","se han detenido","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have stopped","me habré detenido","te habrás detenido","se habrá detenido","nos habremos detenido","os habréis detenido","se habrán detenido","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had stopped","me había detenido","te habías detenido","se había detenido","nos habíamos detenido","os habíais detenido","se habían detenido","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had stopped","me hube detenido","te hubiste detenido","se hubo detenido","nos hubimos detenido","os hubisteis detenido","se hubieron detenido","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have stopped","me habría detenido","te habrías detenido","se habría detenido","nos habríamos detenido","os habríais detenido","se habrían detenido","deteniéndose","stopping","detenido","stopped" +"nos detengamos" +"detenerse","to stop, pause, linger","Subjuntivo","Subjunctive","Presente","Present","I stop, am stopping","me detenga","te detengas","se detenga","nos detengamos","os detengáis","se detengan","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I stopped, was stopping","me detuviera","te detuvieras","se detuviera","nos detuviéramos","os detuvierais","se detuvieran","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Subjuntivo","Subjunctive","Futuro","Future","I will stop","me detuviere","te detuvieres","se detuviere","nos detuviéremos","os detuviereis","se detuvieren","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have stopped, stopped","me haya detenido","te hayas detenido","se haya detenido","nos hayamos detenido","os hayáis detenido","se hayan detenido","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have stopped","me hubiere detenido","te hubieres detenido","se hubiere detenido","nos hubiéremos detenido","os hubiereis detenido","se hubieren detenido","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had stopped","me hubiera detenido","te hubieras detenido","se hubiera detenido","nos hubiéramos detenido","os hubierais detenido","se hubieran detenido","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Stop! Don't stop!","","detente","deténgase","nos detengamos","deteneos","deténganse","deteniéndose","stopping","detenido","stopped" +"detenerse","to stop, pause, linger","Imperativo Negativo","Imperative Negative","Presente","Present","Stop! Don't stop!","","no te detengas","no se detenga","no nos detengamos","no os detengáis","no se detengan","deteniéndose","stopping","detenido","stopped" +"detestar","to detest, hate","Indicativo","Indicative","Presente","Present","I detest, am detesting","detesto","detestas","detesta","detestamos","detestáis","detestan","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Futuro","Future","I will detest","detestaré","detestarás","detestará","detestaremos","detestaréis","detestarán","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Imperfecto","Imperfect","I was detesting, used to detest, detested","detestaba","detestabas","detestaba","detestábamos","detestabais","detestaban","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Pretérito","Preterite","I detested","detesté","detestaste","detestó","detestamos","detestasteis","detestaron","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Condicional","Conditional","I would detest","detestaría","detestarías","detestaría","detestaríamos","detestaríais","detestarían","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have detested","he detestado","has detestado","ha detestado","hemos detestado","habéis detestado","han detestado","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have detested","habré detestado","habrás detestado","habrá detestado","habremos detestado","habréis detestado","habrán detestado","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had detested","había detestado","habías detestado","había detestado","habíamos detestado","habíais detestado","habían detestado","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had detested","hube detestado","hubiste detestado","hubo detestado","hubimos detestado","hubisteis detestado","hubieron detestado","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have detested","habría detestado","habrías detestado","habría detestado","habríamos detestado","habríais detestado","habrían detestado","detestando","detesting","detestado","detested" +"detestemos" +"detestar","to detest, hate","Subjuntivo","Subjunctive","Presente","Present","I detest, am detesting","deteste","detestes","deteste","detestemos","detestéis","detesten","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I detested, was detesting","detestara","detestaras","detestara","detestáramos","detestarais","detestaran","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Subjuntivo","Subjunctive","Futuro","Future","I will detest","detestare","detestares","detestare","detestáremos","detestareis","detestaren","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have detested, detested","haya detestado","hayas detestado","haya detestado","hayamos detestado","hayáis detestado","hayan detestado","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have detested","hubiere detestado","hubieres detestado","hubiere detestado","hubiéremos detestado","hubiereis detestado","hubieren detestado","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had detested","hubiera detestado","hubieras detestado","hubiera detestado","hubiéramos detestado","hubierais detestado","hubieran detestado","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Detest! Don't detest!","","detesta","deteste","detestemos","detestad","detesten","detestando","detesting","detestado","detested" +"detestar","to detest, hate","Imperativo Negativo","Imperative Negative","Presente","Present","Detest! Don't detest!","","no detestes","no deteste","no detestemos","no detestéis","no detesten","detestando","detesting","detestado","detested" +"devolver","to return, give back","Indicativo","Indicative","Presente","Present","I return, am returning","devuelvo","devuelves","devuelve","devolvemos","devolvéis","devuelven","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Futuro","Future","I will return","devolveré","devolverás","devolverá","devolveremos","devolveréis","devolverán","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Imperfecto","Imperfect","I was returning, used to return, returned","devolvía","devolvías","devolvía","devolvíamos","devolvíais","devolvían","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Pretérito","Preterite","I returned","devolví","devolviste","devolvió","devolvimos","devolvisteis","devolvieron","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Condicional","Conditional","I would return","devolvería","devolverías","devolvería","devolveríamos","devolveríais","devolverían","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Presente perfecto","Present Perfect","I have returned","he devuelto","has devuelto","ha devuelto","hemos devuelto","habéis devuelto","han devuelto","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have returned","habré devuelto","habrás devuelto","habrá devuelto","habremos devuelto","habréis devuelto","habrán devuelto","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had returned","había devuelto","habías devuelto","había devuelto","habíamos devuelto","habíais devuelto","habían devuelto","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had returned","hube devuelto","hubiste devuelto","hubo devuelto","hubimos devuelto","hubisteis devuelto","hubieron devuelto","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have returned","habría devuelto","habrías devuelto","habría devuelto","habríamos devuelto","habríais devuelto","habrían devuelto","devolviendo","returning","devuelto","returned" +"devolvamos" +"devolver","to return, give back","Subjuntivo","Subjunctive","Presente","Present","I return, am returning","devuelva","devuelvas","devuelva","devolvamos","devolváis","devuelvan","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I returned, was returning","devolviera","devolvieras","devolviera","devolviéramos","devolvierais","devolvieran","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Subjuntivo","Subjunctive","Futuro","Future","I will return","devolviere","devolvieres","devolviere","devolviéremos","devolviereis","devolvieren","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have returned, returned","haya devuelto","hayas devuelto","haya devuelto","hayamos devuelto","hayáis devuelto","hayan devuelto","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have returned","hubiere devuelto","hubieres devuelto","hubiere devuelto","hubiéremos devuelto","hubiereis devuelto","hubieren devuelto","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had returned","hubiera devuelto","hubieras devuelto","hubiera devuelto","hubiéramos devuelto","hubierais devuelto","hubieran devuelto","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Return! Don't return!","","devuelve","devuelva","devolvamos","devolved","devuelvan","devolviendo","returning","devuelto","returned" +"devolver","to return, give back","Imperativo Negativo","Imperative Negative","Presente","Present","Return! Don't return!","","no devuelvas","no devuelva","no devolvamos","no devolváis","no devuelvan","devolviendo","returning","devuelto","returned" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Presente","Present","I devour, am devouring","devoro","devoras","devora","devoramos","devoráis","devoran","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Futuro","Future","I will devour","devoraré","devorarás","devorará","devoraremos","devoraréis","devorarán","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Imperfecto","Imperfect","I was devouring, used to devour, devoured","devoraba","devorabas","devoraba","devorábamos","devorabais","devoraban","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Pretérito","Preterite","I devoured","devoré","devoraste","devoró","devoramos","devorasteis","devoraron","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Condicional","Conditional","I would devour","devoraría","devorarías","devoraría","devoraríamos","devoraríais","devorarían","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have devoured","he devorado","has devorado","ha devorado","hemos devorado","habéis devorado","han devorado","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have devoured","habré devorado","habrás devorado","habrá devorado","habremos devorado","habréis devorado","habrán devorado","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had devoured","había devorado","habías devorado","había devorado","habíamos devorado","habíais devorado","habían devorado","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had devoured","hube devorado","hubiste devorado","hubo devorado","hubimos devorado","hubisteis devorado","hubieron devorado","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have devoured","habría devorado","habrías devorado","habría devorado","habríamos devorado","habríais devorado","habrían devorado","devorando","devouring","devorado","devoured" +"devoremos" +"devorar","to devour, eat up, gobble up","Subjuntivo","Subjunctive","Presente","Present","I devour, am devouring","devore","devores","devore","devoremos","devoréis","devoren","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I devoured, was devouring","devorara","devoraras","devorara","devoráramos","devorarais","devoraran","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Subjuntivo","Subjunctive","Futuro","Future","I will devour","devorare","devorares","devorare","devoráremos","devorareis","devoraren","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have devoured, devoured","haya devorado","hayas devorado","haya devorado","hayamos devorado","hayáis devorado","hayan devorado","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have devoured","hubiere devorado","hubieres devorado","hubiere devorado","hubiéremos devorado","hubiereis devorado","hubieren devorado","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had devoured","hubiera devorado","hubieras devorado","hubiera devorado","hubiéramos devorado","hubierais devorado","hubieran devorado","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Devour! Don't devour!","","devora","devore","devoremos","devorad","devoren","devorando","devouring","devorado","devoured" +"devorar","to devour, eat up, gobble up","Imperativo Negativo","Imperative Negative","Presente","Present","Devour! Don't devour!","","no devores","no devore","no devoremos","no devoréis","no devoren","devorando","devouring","devorado","devoured" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Presente","Present","I draw, am drawing","dibujo","dibujas","dibuja","dibujamos","dibujáis","dibujan","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Futuro","Future","I will draw","dibujaré","dibujarás","dibujará","dibujaremos","dibujaréis","dibujarán","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Imperfecto","Imperfect","I was drawing, used to draw, drew","dibujaba","dibujabas","dibujaba","dibujábamos","dibujabais","dibujaban","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Pretérito","Preterite","I drew","dibujé","dibujaste","dibujó","dibujamos","dibujasteis","dibujaron","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Condicional","Conditional","I would draw","dibujaría","dibujarías","dibujaría","dibujaríamos","dibujaríais","dibujarían","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Presente perfecto","Present Perfect","I have drawn","he dibujado","has dibujado","ha dibujado","hemos dibujado","habéis dibujado","han dibujado","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have drawn","habré dibujado","habrás dibujado","habrá dibujado","habremos dibujado","habréis dibujado","habrán dibujado","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had drawn","había dibujado","habías dibujado","había dibujado","habíamos dibujado","habíais dibujado","habían dibujado","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had drawn","hube dibujado","hubiste dibujado","hubo dibujado","hubimos dibujado","hubisteis dibujado","hubieron dibujado","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have drawn","habría dibujado","habrías dibujado","habría dibujado","habríamos dibujado","habríais dibujado","habrían dibujado","dibujando","drawing","dibujado","drawn" +"dibujemos" +"dibujar","to draw, sketch, depict","Subjuntivo","Subjunctive","Presente","Present","I draw, am drawing","dibuje","dibujes","dibuje","dibujemos","dibujéis","dibujen","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I drew, was drawing","dibujara","dibujaras","dibujara","dibujáramos","dibujarais","dibujaran","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Subjuntivo","Subjunctive","Futuro","Future","I will draw","dibujare","dibujares","dibujare","dibujáremos","dibujareis","dibujaren","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have drawn, drew","haya dibujado","hayas dibujado","haya dibujado","hayamos dibujado","hayáis dibujado","hayan dibujado","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have drawn","hubiere dibujado","hubieres dibujado","hubiere dibujado","hubiéremos dibujado","hubiereis dibujado","hubieren dibujado","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had drawn","hubiera dibujado","hubieras dibujado","hubiera dibujado","hubiéramos dibujado","hubierais dibujado","hubieran dibujado","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Draw! Don't draw!","","dibuja","dibuje","dibujemos","dibujad","dibujen","dibujando","drawing","dibujado","drawn" +"dibujar","to draw, sketch, depict","Imperativo Negativo","Imperative Negative","Presente","Present","Draw! Don't draw!","","no dibujes","no dibuje","no dibujemos","no dibujéis","no dibujen","dibujando","drawing","dibujado","drawn" +"dirigir","to direct","Indicativo","Indicative","Presente","Present","I direct, am directing","dirijo","diriges","dirige","dirigimos","dirigís","dirigen","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Futuro","Future","I will direct","dirigiré","dirigirás","dirigirá","dirigiremos","dirigiréis","dirigirán","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Imperfecto","Imperfect","I was directing, used to direct, directed","dirigía","dirigías","dirigía","dirigíamos","dirigíais","dirigían","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Pretérito","Preterite","I directed","dirigí","dirigiste","dirigió","dirigimos","dirigisteis","dirigieron","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Condicional","Conditional","I would direct","dirigiría","dirigirías","dirigiría","dirigiríamos","dirigiríais","dirigirían","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Presente perfecto","Present Perfect","I have directed","he dirigido","has dirigido","ha dirigido","hemos dirigido","habéis dirigido","han dirigido","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have directed","habré dirigido","habrás dirigido","habrá dirigido","habremos dirigido","habréis dirigido","habrán dirigido","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had directed","había dirigido","habías dirigido","había dirigido","habíamos dirigido","habíais dirigido","habían dirigido","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had directed","hube dirigido","hubiste dirigido","hubo dirigido","hubimos dirigido","hubisteis dirigido","hubieron dirigido","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have directed","habría dirigido","habrías dirigido","habría dirigido","habríamos dirigido","habríais dirigido","habrían dirigido","dirigiendo","directing","dirigido","directed" +"dirijamos" +"dirigir","to direct","Subjuntivo","Subjunctive","Presente","Present","I direct, am directing","dirija","dirijas","dirija","dirijamos","dirijáis","dirijan","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I directed, was directing","dirigiera","dirigieras","dirigiera","dirigiéramos","dirigierais","dirigieran","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Subjuntivo","Subjunctive","Futuro","Future","I will direct","dirigiere","dirigieres","dirigiere","dirigiéremos","dirigiereis","dirigieren","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have directed, directed","haya dirigido","hayas dirigido","haya dirigido","hayamos dirigido","hayáis dirigido","hayan dirigido","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have directed","hubiere dirigido","hubieres dirigido","hubiere dirigido","hubiéremos dirigido","hubiereis dirigido","hubieren dirigido","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had directed","hubiera dirigido","hubieras dirigido","hubiera dirigido","hubiéramos dirigido","hubierais dirigido","hubieran dirigido","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Direct! Don't direct!","","dirige","dirija","dirijamos","dirigid","dirijan","dirigiendo","directing","dirigido","directed" +"dirigir","to direct","Imperativo Negativo","Imperative Negative","Presente","Present","Direct! Don't direct!","","no dirijas","no dirija","no dirijamos","no dirijáis","no dirijan","dirigiendo","directing","dirigido","directed" +"diseñar","to design","Indicativo","Indicative","Presente","Present","I design, am designing","diseño","diseñas","diseña","diseñamos","diseñáis","diseñan","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Futuro","Future","I will design","diseñaré","diseñarás","diseñará","diseñaremos","diseñaréis","diseñarán","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Imperfecto","Imperfect","I was designing, used to design, designed","diseñaba","diseñabas","diseñaba","diseñábamos","diseñabais","diseñaban","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Pretérito","Preterite","I designed","diseñé","diseñaste","diseñó","diseñamos","diseñasteis","diseñaron","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Condicional","Conditional","I would design","diseñaría","diseñarías","diseñaría","diseñaríamos","diseñaríais","diseñarían","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Presente perfecto","Present Perfect","I have designed","he diseñado","has diseñado","ha diseñado","hemos diseñado","habéis diseñado","han diseñado","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have designed","habré diseñado","habrás diseñado","habrá diseñado","habremos diseñado","habréis diseñado","habrán diseñado","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had designed","había diseñado","habías diseñado","había diseñado","habíamos diseñado","habíais diseñado","habían diseñado","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had designed","hube diseñado","hubiste diseñado","hubo diseñado","hubimos diseñado","hubisteis diseñado","hubieron diseñado","diseñando","designing","diseñado","designed" +"diseñar","to design","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have designed","habría diseñado","habrías diseñado","habría diseñado","habríamos diseñado","habríais diseñado","habrían diseñado","diseñando","designing","diseñado","designed" +"diseñemos" +"diseñar","to design","Subjuntivo","Subjunctive","Presente","Present","I design, am designing","diseñe","diseñes","diseñe","diseñemos","diseñéis","diseñen","diseñando","designing","diseñado","designed" +"diseñar","to design","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I designed, was designing","diseñara","diseñaras","diseñara","diseñáramos","diseñarais","diseñaran","diseñando","designing","diseñado","designed" +"diseñar","to design","Subjuntivo","Subjunctive","Futuro","Future","I will design","diseñare","diseñares","diseñare","diseñáremos","diseñareis","diseñaren","diseñando","designing","diseñado","designed" +"diseñar","to design","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have designed, designed","haya diseñado","hayas diseñado","haya diseñado","hayamos diseñado","hayáis diseñado","hayan diseñado","diseñando","designing","diseñado","designed" +"diseñar","to design","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have designed","hubiere diseñado","hubieres diseñado","hubiere diseñado","hubiéremos diseñado","hubiereis diseñado","hubieren diseñado","diseñando","designing","diseñado","designed" +"diseñar","to design","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had designed","hubiera diseñado","hubieras diseñado","hubiera diseñado","hubiéramos diseñado","hubierais diseñado","hubieran diseñado","diseñando","designing","diseñado","designed" +"diseñar","to design","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Design! Don't design!","","diseña","diseñe","diseñemos","diseñad","diseñen","diseñando","designing","diseñado","designed" +"diseñar","to design","Imperativo Negativo","Imperative Negative","Presente","Present","Design! Don't design!","","no diseñes","no diseñe","no diseñemos","no diseñéis","no diseñen","diseñando","designing","diseñado","designed" +"disfrutar","to enjoy","Indicativo","Indicative","Presente","Present","I enjoy, am enjoying","disfruto","disfrutas","disfruta","disfrutamos","disfrutáis","disfrutan","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Futuro","Future","I will enjoy","disfrutaré","disfrutarás","disfrutará","disfrutaremos","disfrutaréis","disfrutarán","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Imperfecto","Imperfect","I was enjoying, used to enjoy, enjoyed","disfrutaba","disfrutabas","disfrutaba","disfrutábamos","disfrutabais","disfrutaban","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Pretérito","Preterite","I enjoyed","disfruté","disfrutaste","disfrutó","disfrutamos","disfrutasteis","disfrutaron","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Condicional","Conditional","I would enjoy","disfrutaría","disfrutarías","disfrutaría","disfrutaríamos","disfrutaríais","disfrutarían","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Presente perfecto","Present Perfect","I have enjoyed","he disfrutado","has disfrutado","ha disfrutado","hemos disfrutado","habéis disfrutado","han disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"doler","to hurt, pain, ache","Subjuntivo","Subjunctive","Imperfecto","Imperfect","it hurt, was hurting","","","doliera","","","dolieran","doliendo","hurting","dolido","hurt" +"disfrutar","to enjoy","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have enjoyed","habré disfrutado","habrás disfrutado","habrá disfrutado","habremos disfrutado","habréis disfrutado","habrán disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had enjoyed","había disfrutado","habías disfrutado","había disfrutado","habíamos disfrutado","habíais disfrutado","habían disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had enjoyed","hube disfrutado","hubiste disfrutado","hubo disfrutado","hubimos disfrutado","hubisteis disfrutado","hubieron disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have enjoyed","habría disfrutado","habrías disfrutado","habría disfrutado","habríamos disfrutado","habríais disfrutado","habrían disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutemos" +"disfrutar","to enjoy","Subjuntivo","Subjunctive","Presente","Present","I enjoy, am enjoying","disfrute","disfrutes","disfrute","disfrutemos","disfrutéis","disfruten","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I enjoyed, was enjoying","disfrutara","disfrutaras","disfrutara","disfrutáramos","disfrutarais","disfrutaran","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Subjuntivo","Subjunctive","Futuro","Future","I will enjoy","disfrutare","disfrutares","disfrutare","disfrutáremos","disfrutareis","disfrutaren","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have enjoyed, enjoyed","haya disfrutado","hayas disfrutado","haya disfrutado","hayamos disfrutado","hayáis disfrutado","hayan disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have enjoyed","hubiere disfrutado","hubieres disfrutado","hubiere disfrutado","hubiéremos disfrutado","hubiereis disfrutado","hubieren disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had enjoyed","hubiera disfrutado","hubieras disfrutado","hubiera disfrutado","hubiéramos disfrutado","hubierais disfrutado","hubieran disfrutado","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","enjoy! Don't enjoy!","","disfruta","disfrute","disfrutemos","disfrutad","disfruten","disfrutando","enjoying","disfrutado","enjoyed" +"disfrutar","to enjoy","Imperativo Negativo","Imperative Negative","Presente","Present","enjoy! Don't enjoy!","","no disfrutes","no disfrute","no disfrutemos","no disfrutéis","no disfruten","disfrutando","enjoying","disfrutado","enjoyed" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Presente","Present","I displease, am displeasing","disgusto","disgustas","disgusta","disgustamos","disgustáis","disgustan","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Futuro","Future","I will displease","disgustaré","disgustarás","disgustará","disgustaremos","disgustaréis","disgustarán","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Imperfecto","Imperfect","I was displeasing, used to displease, displeased","disgustaba","disgustabas","disgustaba","disgustábamos","disgustabais","disgustaban","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Pretérito","Preterite","I displeased","disgusté","disgustaste","disgustó","disgustamos","disgustasteis","disgustaron","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Condicional","Conditional","I would displease","disgustaría","disgustarías","disgustaría","disgustaríamos","disgustaríais","disgustarían","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Presente perfecto","Present Perfect","I have displeased","he disgustado","has disgustado","ha disgustado","hemos disgustado","habéis disgustado","han disgustado","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have displeased","habré disgustado","habrás disgustado","habrá disgustado","habremos disgustado","habréis disgustado","habrán disgustado","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had displeased","había disgustado","habías disgustado","había disgustado","habíamos disgustado","habíais disgustado","habían disgustado","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had displeased","hube disgustado","hubiste disgustado","hubo disgustado","hubimos disgustado","hubisteis disgustado","hubieron disgustado","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have displeased","habría disgustado","habrías disgustado","habría disgustado","habríamos disgustado","habríais disgustado","habrían disgustado","disgustando","displeasing","disgustado","displeased" +"disgustemos" +"disgustar","to displease, be displeasing; to annoy, upset","Subjuntivo","Subjunctive","Presente","Present","I displease, am displeasing","disguste","disgustes","disguste","disgustemos","disgustéis","disgusten","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I displeased, was displeasing","disgustara","disgustaras","disgustara","disgustáramos","disgustarais","disgustaran","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Subjuntivo","Subjunctive","Futuro","Future","I will displease","disgustare","disgustares","disgustare","disgustáremos","disgustareis","disgustaren","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have displeased, displeased","haya disgustado","hayas disgustado","haya disgustado","hayamos disgustado","hayáis disgustado","hayan disgustado","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have displeased","hubiere disgustado","hubieres disgustado","hubiere disgustado","hubiéremos disgustado","hubiereis disgustado","hubieren disgustado","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had displeased","hubiera disgustado","hubieras disgustado","hubiera disgustado","hubiéramos disgustado","hubierais disgustado","hubieran disgustado","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Displease! Don't displease!","","disgusta","disguste","disgustemos","disgustad","disgusten","disgustando","displeasing","disgustado","displeased" +"disgustar","to displease, be displeasing; to annoy, upset","Imperativo Negativo","Imperative Negative","Presente","Present","Displease! Don't displease!","","no disgustes","no disguste","no disgustemos","no disgustéis","no disgusten","disgustando","displeasing","disgustado","displeased" +"disminuir","to diminish, decrease","Indicativo","Indicative","Presente","Present","I diminish, am diminishing","disminuyo","disminuyes","disminuye","disminuimos","disminuís","disminuyen","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Futuro","Future","I will diminish","disminuiré","disminuirás","disminuirá","disminuiremos","disminuiréis","disminuirán","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Imperfecto","Imperfect","I was diminishing, used to diminish, diminished","disminuía","disminuías","disminuía","disminuíamos","disminuíais","disminuían","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Pretérito","Preterite","I diminished","disminuí","disminuiste","disminuyó","disminuimos","disminuisteis","disminuyeron","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Condicional","Conditional","I would diminish","disminuiría","disminuirías","disminuiría","disminuiríamos","disminuiríais","disminuirían","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Presente perfecto","Present Perfect","I have diminished","he disminuido","has disminuido","ha disminuido","hemos disminuido","habéis disminuido","han disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have diminished","habré disminuido","habrás disminuido","habrá disminuido","habremos disminuido","habréis disminuido","habrán disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had diminished","había disminuido","habías disminuido","había disminuido","habíamos disminuido","habíais disminuido","habían disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had diminished","hube disminuido","hubiste disminuido","hubo disminuido","hubimos disminuido","hubisteis disminuido","hubieron disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have diminished","habría disminuido","habrías disminuido","habría disminuido","habríamos disminuido","habríais disminuido","habrían disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuyamos" +"disminuir","to diminish, decrease","Subjuntivo","Subjunctive","Presente","Present","I diminish, am diminishing","disminuya","disminuyas","disminuya","disminuyamos","disminuyáis","disminuyan","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I diminished, was diminishing","disminuyera","disminuyeras","disminuyera","disminuyéramos","disminuyerais","disminuyeran","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Subjuntivo","Subjunctive","Futuro","Future","I will diminish","disminuyere","disminuyeres","disminuyere","disminuyéremos","disminuyereis","disminuyeren","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have diminished, diminished","haya disminuido","hayas disminuido","haya disminuido","hayamos disminuido","hayáis disminuido","hayan disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have diminished","hubiere disminuido","hubieres disminuido","hubiere disminuido","hubiéremos disminuido","hubiereis disminuido","hubieren disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had diminished","hubiera disminuido","hubieras disminuido","hubiera disminuido","hubiéramos disminuido","hubierais disminuido","hubieran disminuido","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Diminish! Don't diminish!","","disminuye","disminuya","disminuyamos","disminuid","disminuyan","disminuyendo","diminishing","disminuido","diminished" +"disminuir","to diminish, decrease","Imperativo Negativo","Imperative Negative","Presente","Present","Diminish! Don't diminish!","","no disminuyas","no disminuya","no disminuyamos","no disminuyáis","no disminuyan","disminuyendo","diminishing","disminuido","diminished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Presente","Present","I distinguish, am distinguishing","distingo","distingues","distingue","distinguimos","distinguís","distinguen","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Futuro","Future","I will distinguish","distinguiré","distinguirás","distinguirá","distinguiremos","distinguiréis","distinguirán","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Imperfecto","Imperfect","I was distinguishing, used to distinguish, distinguished","distinguía","distinguías","distinguía","distinguíamos","distinguíais","distinguían","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Pretérito","Preterite","I distinguished","distinguí","distinguiste","distinguió","distinguimos","distinguisteis","distinguieron","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Condicional","Conditional","I would distinguish","distinguiría","distinguirías","distinguiría","distinguiríamos","distinguiríais","distinguirían","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have distinguished","he distinguido","has distinguido","ha distinguido","hemos distinguido","habéis distinguido","han distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have distinguished","habré distinguido","habrás distinguido","habrá distinguido","habremos distinguido","habréis distinguido","habrán distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had distinguished","había distinguido","habías distinguido","había distinguido","habíamos distinguido","habíais distinguido","habían distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had distinguished","hube distinguido","hubiste distinguido","hubo distinguido","hubimos distinguido","hubisteis distinguido","hubieron distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have distinguished","habría distinguido","habrías distinguido","habría distinguido","habríamos distinguido","habríais distinguido","habrían distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distingamos" +"distinguir","to distinguish, discern, make out, recognize, single out","Subjuntivo","Subjunctive","Presente","Present","I distinguish, am distinguishing","distinga","distingas","distinga","distingamos","distingáis","distingan","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I distinguished, was distinguishing","distinguiera","distinguieras","distinguiera","distinguiéramos","distinguierais","distinguieran","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Subjuntivo","Subjunctive","Futuro","Future","I will distinguish","distinguiere","distinguieres","distinguiere","distinguiéremos","distinguiereis","distinguieren","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have distinguished, distinguished","haya distinguido","hayas distinguido","haya distinguido","hayamos distinguido","hayáis distinguido","hayan distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have distinguished","hubiere distinguido","hubieres distinguido","hubiere distinguido","hubiéremos distinguido","hubiereis distinguido","hubieren distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had distinguished","hubiera distinguido","hubieras distinguido","hubiera distinguido","hubiéramos distinguido","hubierais distinguido","hubieran distinguido","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Distinguish! Don't distinguish!","","distingue","distinga","distingamos","distinguid","distingan","distinguiendo","distinguishing","distinguido","distinguished" +"distinguir","to distinguish, discern, make out, recognize, single out","Imperativo Negativo","Imperative Negative","Presente","Present","Distinguish! Don't distinguish!","","no distingas","no distinga","no distingamos","no distingáis","no distingan","distinguiendo","distinguishing","distinguido","distinguished" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Presente","Present","I distribute, am distributing","distribuyo","distribuyes","distribuye","distribuimos","distribuís","distribuyen","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Futuro","Future","I will distribute","distribuiré","distribuirás","distribuirá","distribuiremos","distribuiréis","distribuirán","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Imperfecto","Imperfect","I was distributing, used to distribute, distributed","distribuía","distribuías","distribuía","distribuíamos","distribuíais","distribuían","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Pretérito","Preterite","I distributed","distribuí","distribuiste","distribuyó","distribuimos","distribuisteis","distribuyeron","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Condicional","Conditional","I would distribute","distribuiría","distribuirías","distribuiría","distribuiríamos","distribuiríais","distribuirían","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have distributed","he distribuido","has distribuido","ha distribuido","hemos distribuido","habéis distribuido","han distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have distributed","habré distribuido","habrás distribuido","habrá distribuido","habremos distribuido","habréis distribuido","habrán distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had distributed","había distribuido","habías distribuido","había distribuido","habíamos distribuido","habíais distribuido","habían distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had distributed","hube distribuido","hubiste distribuido","hubo distribuido","hubimos distribuido","hubisteis distribuido","hubieron distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have distributed","habría distribuido","habrías distribuido","habría distribuido","habríamos distribuido","habríais distribuido","habrían distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuyamos" +"distribuir","to distribute, hand out, send out, give out","Subjuntivo","Subjunctive","Presente","Present","I distribute, am distributing","distribuya","distribuyas","distribuya","distribuyamos","distribuyáis","distribuyan","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I distributed, was distributing","distribuyera","distribuyeras","distribuyera","distribuyéramos","distribuyerais","distribuyeran","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Subjuntivo","Subjunctive","Futuro","Future","I will distribute","distribuyere","distribuyeres","distribuyere","distribuyéremos","distribuyereis","distribuyeren","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have distributed, distributed","haya distribuido","hayas distribuido","haya distribuido","hayamos distribuido","hayáis distribuido","hayan distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have distributed","hubiere distribuido","hubieres distribuido","hubiere distribuido","hubiéremos distribuido","hubiereis distribuido","hubieren distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had distributed","hubiera distribuido","hubieras distribuido","hubiera distribuido","hubiéramos distribuido","hubierais distribuido","hubieran distribuido","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Distribute! Don't distribute!","","distribuye","distribuya","distribuyamos","distribuid","distribuyan","distribuyendo","distributing","distribuido","distributed" +"distribuir","to distribute, hand out, send out, give out","Imperativo Negativo","Imperative Negative","Presente","Present","Distribute! Don't distribute!","","no distribuyas","no distribuya","no distribuyamos","no distribuyáis","no distribuyan","distribuyendo","distributing","distribuido","distributed" +"divertir","to amuse, entertain","Indicativo","Indicative","Presente","Present","I amuse, am amusing","divierto","diviertes","divierte","divertimos","divertís","divierten","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Futuro","Future","I will amuse","divertiré","divertirás","divertirá","divertiremos","divertiréis","divertirán","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Imperfecto","Imperfect","I was amusing, used to amuse, amused","divertía","divertías","divertía","divertíamos","divertíais","divertían","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Pretérito","Preterite","I amused","divertí","divertiste","divirtió","divertimos","divertisteis","divirtieron","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Condicional","Conditional","I would amuse","divertiría","divertirías","divertiría","divertiríamos","divertiríais","divertirían","divirtiendo","amusing","divertido","amused" +"doler","to hurt, pain, ache","Subjuntivo","Subjunctive","Futuro","Future","it will hurt","","","doliere","","","dolieren","doliendo","hurting","dolido","hurt" +"divertir","to amuse, entertain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have amused","he divertido","has divertido","ha divertido","hemos divertido","habéis divertido","han divertido","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have amused","habré divertido","habrás divertido","habrá divertido","habremos divertido","habréis divertido","habrán divertido","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had amused","había divertido","habías divertido","había divertido","habíamos divertido","habíais divertido","habían divertido","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had amused","hube divertido","hubiste divertido","hubo divertido","hubimos divertido","hubisteis divertido","hubieron divertido","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have amused","habría divertido","habrías divertido","habría divertido","habríamos divertido","habríais divertido","habrían divertido","divirtiendo","amusing","divertido","amused" +"divirtamos" +"divertir","to amuse, entertain","Subjuntivo","Subjunctive","Presente","Present","I amuse, am amusing","divierta","diviertas","divierta","divirtamos","divirtáis","diviertan","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I amused, was amusing","divirtiera","divirtieras","divirtiera","divirtiéramos","divirtierais","divirtieran","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Subjuntivo","Subjunctive","Futuro","Future","I will amuse","divirtiere","divirtieres","divirtiere","divirtiéremos","divirtiereis","divirtieren","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have amused, amused","haya divertido","hayas divertido","haya divertido","hayamos divertido","hayáis divertido","hayan divertido","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have amused","hubiere divertido","hubieres divertido","hubiere divertido","hubiéremos divertido","hubiereis divertido","hubieren divertido","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had amused","hubiera divertido","hubieras divertido","hubiera divertido","hubiéramos divertido","hubierais divertido","hubieran divertido","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Amuse! Don't amuse!","","divierte","divierta","divirtamos","divertid","diviertan","divirtiendo","amusing","divertido","amused" +"divertir","to amuse, entertain","Imperativo Negativo","Imperative Negative","Presente","Present","Amuse! Don't amuse!","","no diviertas","no divierta","no divirtamos","no divirtáis","no diviertan","divirtiendo","amusing","divertido","amused" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Presente","Present","I have fun, am having fun","me divierto","te diviertes","se divierte","nos divertimos","os divertís","se divierten","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Futuro","Future","I will have fun","me divertiré","te divertirás","se divertirá","nos divertiremos","os divertiréis","se divertirán","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Imperfecto","Imperfect","I was having fun, used to have fun, had fun","me divertía","te divertías","se divertía","nos divertíamos","os divertíais","se divertían","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Pretérito","Preterite","I had fun","me divertí","te divertiste","se divirtió","nos divertimos","os divertisteis","se divirtieron","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Condicional","Conditional","I would have fun","me divertiría","te divertirías","se divertiría","nos divertiríamos","os divertiríais","se divertirían","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Presente perfecto","Present Perfect","I have had fun","me he divertido","te has divertido","se ha divertido","nos hemos divertido","os habéis divertido","se han divertido","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have had fun","me habré divertido","te habrás divertido","se habrá divertido","nos habremos divertido","os habréis divertido","se habrán divertido","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had had fun","me había divertido","te habías divertido","se había divertido","nos habíamos divertido","os habíais divertido","se habían divertido","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had had fun","me hube divertido","te hubiste divertido","se hubo divertido","nos hubimos divertido","os hubisteis divertido","se hubieron divertido","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have had fun","me habría divertido","te habrías divertido","se habría divertido","nos habríamos divertido","os habríais divertido","se habrían divertido","divirtiéndose","having fun","divertido","fun, had fun" +"nos divirtamos" +"divertirse","to have fun, have a good time, enjoy oneself","Subjuntivo","Subjunctive","Presente","Present","I have fun, am having fun","me divierta","te diviertas","se divierta","nos divirtamos","os divirtáis","se diviertan","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I had fun, was having fun","me divirtiera","te divirtieras","se divirtiera","nos divirtiéramos","os divirtierais","se divirtieran","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Subjuntivo","Subjunctive","Futuro","Future","I will have fun","me divirtiere","te divirtieres","se divirtiere","nos divirtiéremos","os divirtiereis","se divirtieren","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have had fun, had fun","me haya divertido","te hayas divertido","se haya divertido","nos hayamos divertido","os hayáis divertido","se hayan divertido","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have had fun","me hubiere divertido","te hubieres divertido","se hubiere divertido","nos hubiéremos divertido","os hubiereis divertido","se hubieren divertido","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had had fun","me hubiera divertido","te hubieras divertido","se hubiera divertido","nos hubiéramos divertido","os hubierais divertido","se hubieran divertido","divirtiéndose","having fun","divertido","fun, had fun" +"divertirse","to have fun, have a good time, enjoy oneself","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Have fun! Don't have fun!","","diviértete","diviértase","divirtámonos","divertíos","diviértanse","divirtiéndose","having fun","divertido","fun, had fun", +"divertirse","to have fun, have a good time, enjoy oneself","Imperativo Negativo","Imperative Negative","Presente","Present","Have fun! Don't have fun!","","no te diviertas","no se divierta","no nos divirtamos","no os divirtáis","no se diviertan","divirtiéndose","having fun","divertido","fun, had fun", +"divorciar","to divorce","Indicativo","Indicative","Presente","Present","I divorce, am divorcing","divorcio","divorcias","divorcia","divorciamos","divorciáis","divorcian","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Futuro","Future","I will divorce","divorciaré","divorciarás","divorciará","divorciaremos","divorciaréis","divorciarán","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Imperfecto","Imperfect","I was divorcing, used to divorce, divorced","divorciaba","divorciabas","divorciaba","divorciábamos","divorciabais","divorciaban","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Pretérito","Preterite","I divorced","divorcié","divorciaste","divorció","divorciamos","divorciasteis","divorciaron","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Condicional","Conditional","I would divorce","divorciaría","divorciarías","divorciaría","divorciaríamos","divorciaríais","divorciarían","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have divorced","he divorciado","has divorciado","ha divorciado","hemos divorciado","habéis divorciado","han divorciado","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have divorced","habré divorciado","habrás divorciado","habrá divorciado","habremos divorciado","habréis divorciado","habrán divorciado","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had divorced","había divorciado","habías divorciado","había divorciado","habíamos divorciado","habíais divorciado","habían divorciado","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had divorced","hube divorciado","hubiste divorciado","hubo divorciado","hubimos divorciado","hubisteis divorciado","hubieron divorciado","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have divorced","habría divorciado","habrías divorciado","habría divorciado","habríamos divorciado","habríais divorciado","habrían divorciado","divorciando","divorcing","divorciado","divorced" +"divorciemos" +"divorciar","to divorce","Subjuntivo","Subjunctive","Presente","Present","I divorce, am divorcing","divorcie","divorcies","divorcie","divorciemos","divorciéis","divorcien","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I divorced, was divorcing","divorciara","divorciaras","divorciara","divorciáramos","divorciarais","divorciaran","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Subjuntivo","Subjunctive","Futuro","Future","I will divorce","divorciare","divorciares","divorciare","divorciáremos","divorciareis","divorciaren","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have divorced, divorced","haya divorciado","hayas divorciado","haya divorciado","hayamos divorciado","hayáis divorciado","hayan divorciado","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have divorced","hubiere divorciado","hubieres divorciado","hubiere divorciado","hubiéremos divorciado","hubiereis divorciado","hubieren divorciado","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had divorced","hubiera divorciado","hubieras divorciado","hubiera divorciado","hubiéramos divorciado","hubierais divorciado","hubieran divorciado","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Divorce! Don't divorce!","","divorcia","divorcie","divorciemos","divorciad","divorcien","divorciando","divorcing","divorciado","divorced" +"divorciar","to divorce","Imperativo Negativo","Imperative Negative","Presente","Present","Divorce! Don't divorce!","","no divorcies","no divorcie","no divorciemos","no divorciéis","no divorcien","divorciando","divorcing","divorciado","divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Presente","Present","I get divorced, am getting divorced","me divorcio","te divorcias","se divorcia","nos divorciamos","os divorciáis","se divorcian","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Futuro","Future","I will get divorced","me divorciaré","te divorciarás","se divorciará","nos divorciaremos","os divorciaréis","se divorciarán","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Imperfecto","Imperfect","I was getting divorced, used to get divorced, got up","me divorciaba","te divorciabas","se divorciaba","nos divorciábamos","os divorciabais","se divorciaban","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Pretérito","Preterite","I got up","me divorcié","te divorciaste","se divorció","nos divorciamos","divorciasteis","se divorciaron","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Condicional","Conditional","I would get divorced","me divorciaría","te divorciarías","se divorciaría","nos divorciaríamos","os divorciaríais","se divorciarían","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten divorced","me he divorciado","te has divorciado","se ha divorciado","nos hemos divorciado","os habéis divorciado","se han divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten divorced","me habré divorciado","te habrás divorciado","se habrá divorciado","nos habremos divorciado","os habréis divorciado","se habrán divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten divorced","me había divorciado","te habías divorciado","se había divorciado","nos habíamos divorciado","os habíais divorciado","se habían divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten divorced","me hube divorciado","te hubiste divorciado","se hubo divorciado","nos hubimos divorciado","os hubisteis divorciado","se hubieron divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten divorced","me habría divorciado","te habrías divorciado","se habría divorciado","nos habríamos divorciado","os habríais divorciado","se habrían divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"nos divorciemos" +"divorciarse","to get divorced [from somebody]","Subjuntivo","Subjunctive","Presente","Present","I get divorced, am getting divorced","me divorcie","te divorcies","se divorcie","nos divorciemos","os divorciéis","se divorcien","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got up, was getting divorced","me divorciara","te divorciaras","se divorciara","nos divorciáramos","os divorciarais","se divorciaran","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Subjuntivo","Subjunctive","Futuro","Future","I will get divorced","me divorciare","te divorciares","se divorciare","nos divorciáremos","os divorciareis","se divorciaren","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten divorced, got up","me haya divorciado","te hayas divorciado","se haya divorciado","nos hayamos divorciado","os hayáis divorciado","se hayan divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten divorced","me hubiere divorciado","te hubieres divorciado","se hubiere divorciado","nos hubiéremos divorciado","os hubiereis divorciado","se hubieren divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten divorced","me hubiera divorciado","te hubieras divorciado","se hubiera divorciado","nos hubiéramos divorciado","os hubierais divorciado","se hubieran divorciado","divorciándose","getting divorced","divorciado","gotten divorced" +"divorciarse","to get divorced [from somebody]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get divorced! Don't get divorced!","","divórciate","divórciese","nos divorciemos","divorciaos","divórciense","divorciándose","getting divorced","divorciado","gotten divorced", +"divorciarse","to get divorced [from somebody]","Imperativo Negativo","Imperative Negative","Presente","Present","Get divorced! Don't get divorced!","","no te divorcies","no se divorcie","no nos divorciemos","no os divorciéis","no se divorcien","divorciándose","getting divorced","divorciado","gotten divorced", +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Presente","Present","I double, am doubling","doblo","doblas","dobla","doblamos","dobláis","doblan","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Futuro","Future","I will double","doblaré","doblarás","doblará","doblaremos","doblaréis","doblarán","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Imperfecto","Imperfect","I was doubling, used to double, doubled","doblaba","doblabas","doblaba","doblábamos","doblabais","doblaban","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Pretérito","Preterite","I doubled","doblé","doblaste","dobló","doblamos","doblasteis","doblaron","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Condicional","Conditional","I would double","doblaría","doblarías","doblaría","doblaríamos","doblaríais","doblarían","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Presente perfecto","Present Perfect","I have doubled","he doblado","has doblado","ha doblado","hemos doblado","habéis doblado","han doblado","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have doubled","habré doblado","habrás doblado","habrá doblado","habremos doblado","habréis doblado","habrán doblado","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had doubled","había doblado","habías doblado","había doblado","habíamos doblado","habíais doblado","habían doblado","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had doubled","hube doblado","hubiste doblado","hubo doblado","hubimos doblado","hubisteis doblado","hubieron doblado","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have doubled","habría doblado","habrías doblado","habría doblado","habríamos doblado","habríais doblado","habrían doblado","doblando","doubling","doblado","doubled" +"doblemos" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Subjuntivo","Subjunctive","Presente","Present","I double, am doubling","doble","dobles","doble","doblemos","dobléis","doblen","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I doubled, was doubling","doblara","doblaras","doblara","dobláramos","doblarais","doblaran","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Subjuntivo","Subjunctive","Futuro","Future","I will double","doblare","doblares","doblare","dobláremos","doblareis","doblaren","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have doubled, doubled","haya doblado","hayas doblado","haya doblado","hayamos doblado","hayáis doblado","hayan doblado","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have doubled","hubiere doblado","hubieres doblado","hubiere doblado","hubiéremos doblado","hubiereis doblado","hubieren doblado","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had doubled","hubiera doblado","hubieras doblado","hubiera doblado","hubiéramos doblado","hubierais doblado","hubieran doblado","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Double! Don't double!","","dobla","doble","doblemos","doblad","doblen","doblando","doubling","doblado","doubled" +"doblar","to double; to turn [a corner, to the right, etc.]; to fold, crease","Imperativo Negativo","Imperative Negative","Presente","Present","Double! Don't double!","","no dobles","no doble","no doblemos","no dobléis","no doblen","doblando","doubling","doblado","doubled" +"doler","to hurt, pain, ache","Indicativo","Indicative","Presente","Present","it hurts, is hurting","","","duele","","","duelen","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Futuro","Future","it will hurt","","","dolerá","","","dolerán","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Imperfecto","Imperfect","it was hurting, used to hurt, hurt","","","dolía","","","dolían","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Pretérito","Preterite","it hurt","","","dolió","","","dolieron","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Condicional","Conditional","it would hurt","","","dolería","","","dolerían","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Presente perfecto","Present Perfect","it has hurt","","","ha dolido","","","han dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Futuro perfecto","Future Perfect","it will have hurt","","","habrá dolido","","","habrán dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","it had hurt","","","había dolido","","","habían dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","it had hurt","","","hubo dolido","","","hubieron dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","it would have hurt","","","habría dolido","","","habrían dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","it has hurt, hurt","","","haya dolido","","","hayan dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","it will have hurt","","","hubiere dolido","","","hubieren dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","it had hurt","","","hubiera dolido","","","hubieran dolido","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hurt! Don't hurt!","","duele","duela","doblemos","doled","duelan","doliendo","hurting","dolido","hurt" +"doler","to hurt, pain, ache","Imperativo Negativo","Imperative Negative","Presente","Present","Hurt! Don't hurt!","","no duelas","no duela","no doblemos","no doláis","no duelan","doliendo","hurting","dolido","hurt" +"dormir","to sleep","Indicativo","Indicative","Presente","Present","I sleep, am sleeping","duermo","duermes","duerme","dormimos","dormís","duermen","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Futuro","Future","I will sleep","dormiré","dormirás","dormirá","dormiremos","dormiréis","dormirán","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Imperfecto","Imperfect","I was sleeping, used to sleep, slept","dormía","dormías","dormía","dormíamos","dormíais","dormían","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Pretérito","Preterite","I slept","dormí","dormiste","durmió","dormimos","dormisteis","durmieron","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Condicional","Conditional","I would sleep","dormiría","dormirías","dormiría","dormiríamos","dormiríais","dormirían","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Presente perfecto","Present Perfect","I have slept","he dormido","has dormido","ha dormido","hemos dormido","habéis dormido","han dormido","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have slept","habré dormido","habrás dormido","habrá dormido","habremos dormido","habréis dormido","habrán dormido","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had slept","había dormido","habías dormido","había dormido","habíamos dormido","habíais dormido","habían dormido","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had slept","hube dormido","hubiste dormido","hubo dormido","hubimos dormido","hubisteis dormido","hubieron dormido","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have slept","habría dormido","habrías dormido","habría dormido","habríamos dormido","habríais dormido","habrían dormido","durmiendo","sleeping","dormido","slept" +"durmamos" +"dormir","to sleep","Subjuntivo","Subjunctive","Presente","Present","I sleep, am sleeping","duerma","duermas","duerma","durmamos","durmáis","duerman","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I slept, was sleeping","durmiera","durmieras","durmiera","durmiéramos","durmierais","durmieran","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Subjuntivo","Subjunctive","Futuro","Future","I will sleep","durmiere","durmieres","durmiere","durmiéremos","durmiereis","durmieren","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have slept, slept","haya dormido","hayas dormido","haya dormido","hayamos dormido","hayáis dormido","hayan dormido","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have slept","hubiere dormido","hubieres dormido","hubiere dormido","hubiéremos dormido","hubiereis dormido","hubieren dormido","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had slept","hubiera dormido","hubieras dormido","hubiera dormido","hubiéramos dormido","hubierais dormido","hubieran dormido","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sleep! Don't sleep!","","duerme","duerma","durmamos","dormid","duerman","durmiendo","sleeping","dormido","slept" +"dormir","to sleep","Imperativo Negativo","Imperative Negative","Presente","Present","Sleep! Don't sleep!","","no duermas","no duerma","no durmamos","no durmáis","no duerman","durmiendo","sleeping","dormido","slept" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Presente","Present","I go to sleep, am going to sleep","me duermo","te duermes","se duerme","nos dormimos","os dormís","se duermen","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Futuro","Future","I will go to sleep","me dormiré","te dormirás","se dormirá","nos dormiremos","os dormiréis","se dormirán","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Imperfecto","Imperfect","I was going to sleep, used to go to sleep, went to sleep","me dormía","te dormías","se dormía","nos dormíamos","os dormíais","se dormían","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Pretérito","Preterite","I went to sleep","me dormí","te dormiste","se durmió","nos dormimos","os dormisteis","se durmieron","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Condicional","Conditional","I would go to sleep","me dormiría","te dormirías","se dormiría","nos dormiríamos","os dormiríais","se dormirían","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gone to sleep","me he dormido","te has dormido","se ha dormido","nos hemos dormido","os habéis dormido","se han dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gone to sleep","me habré dormido","te habrás dormido","se habrá dormido","nos habremos dormido","os habréis dormido","se habrán dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gone to sleep","me había dormido","te habías dormido","se había dormido","nos habíamos dormido","os habíais dormido","se habían dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gone to sleep","me hube dormido","te hubiste dormido","se hubo dormido","nos hubimos dormido","os hubisteis dormido","se hubieron dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gone to sleep","me habría dormido","te habrías dormido","se habría dormido","nos habríamos dormido","os habríais dormido","se habrían dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"nos durmamos" +"dormirse","to go to sleep, fall asleep","Subjuntivo","Subjunctive","Presente","Present","I go to sleep, am going to sleep","me duerma","te duermas","se duerma","nos durmamos","os durmáis","se duerman","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I went to sleep, was going to sleep","me durmiera","te durmieras","se durmiera","nos durmiéramos","os durmierais","se durmieran","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Subjuntivo","Subjunctive","Futuro","Future","I will go to sleep","me durmiere","te durmieres","se durmiere","nos durmiéremos","os durmiereis","se durmieren","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gone to sleep, went to sleep","me haya dormido","te hayas dormido","se haya dormido","nos hayamos dormido","os hayáis dormido","se hayan dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gone to sleep","me hubiere dormido","te hubieres dormido","se hubiere dormido","nos hubiéremos dormido","os hubiereis dormido","se hubieren dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gone to sleep","me hubiera dormido","te hubieras dormido","se hubiera dormido","nos hubiéramos dormido","os hubierais dormido","se hubieran dormido","durmiéndose","going to sleep","dormido","asleep, gone to sleep" +"dormirse","to go to sleep, fall asleep","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Go to sleep! Don't go to sleep!","","duérmete","duérmase","durmámonos","dormíos","duérmanse","durmiéndose","going to sleep","dormido","asleep, gone to sleep", +"dormirse","to go to sleep, fall asleep","Imperativo Negativo","Imperative Negative","Presente","Present","Go to sleep! Don't go to sleep!","","no te duermas","no se duerma","no nos durmamos","no os durmáis","no se duerman","durmiéndose","going to sleep","dormido","asleep, gone to sleep", +"duchar","to douche","Indicativo","Indicative","Presente","Present","I douche, am douching","ducho","duchas","ducha","duchamos","ducháis","duchan","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Futuro","Future","I will douche","ducharé","ducharás","duchará","ducharemos","ducharéis","ducharán","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Imperfecto","Imperfect","I was douching, used to douche, douched","duchaba","duchabas","duchaba","duchábamos","duchabais","duchaban","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Pretérito","Preterite","I douched","duché","duchaste","duchó","duchamos","duchasteis","ducharon","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Condicional","Conditional","I would douche","ducharía","ducharías","ducharía","ducharíamos","ducharíais","ducharían","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Presente perfecto","Present Perfect","I have douched","he duchado","has duchado","ha duchado","hemos duchado","habéis duchado","han duchado","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have douched","habré duchado","habrás duchado","habrá duchado","habremos duchado","habréis duchado","habrán duchado","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had douched","había duchado","habías duchado","había duchado","habíamos duchado","habíais duchado","habían duchado","duchando","douching","duchado","douched" +"duchar","to douche","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had douched","hube duchado","hubiste duchado","hubo duchado","hubimos duchado","hubisteis duchado","hubieron duchado","duchando","douching","duchado","douched" +"empezar","to begin, start","Indicativo","Indicative","Presente","Present","I begin, am beginning","empiezo","empiezas","empieza","empezamos","empezáis","empiezan","empezando","beginning","empezado","begun" +"duchar","to douche","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have douched","habría duchado","habrías duchado","habría duchado","habríamos duchado","habríais duchado","habrían duchado","duchando","douching","duchado","douched" +"duchemos" +"duchar","to douche","Subjuntivo","Subjunctive","Presente","Present","I douche, am douching","duche","duches","duche","duchemos","duchéis","duchen","duchando","douching","duchado","douched" +"duchar","to douche","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I douched, was douching","duchara","ducharas","duchara","ducháramos","ducharais","ducharan","duchando","douching","duchado","douched" +"duchar","to douche","Subjuntivo","Subjunctive","Futuro","Future","I will douche","duchare","duchares","duchare","ducháremos","duchareis","ducharen","duchando","douching","duchado","douched" +"duchar","to douche","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have douched, douched","haya duchado","hayas duchado","haya duchado","hayamos duchado","hayáis duchado","hayan duchado","duchando","douching","duchado","douched" +"duchar","to douche","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have douched","hubiere duchado","hubieres duchado","hubiere duchado","hubiéremos duchado","hubiereis duchado","hubieren duchado","duchando","douching","duchado","douched" +"duchar","to douche","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had douched","hubiera duchado","hubieras duchado","hubiera duchado","hubiéramos duchado","hubierais duchado","hubieran duchado","duchando","douching","duchado","douched" +"duchar","to douche","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Douche! Don't douche!","","ducha","duche","duchemos","duchad","duchen","duchando","douching","duchado","douched" +"duchar","to douche","Imperativo Negativo","Imperative Negative","Presente","Present","Douche! Don't douche!","","no duches","no duche","no duchemos","no duchéis","no duchen","duchando","douching","duchado","douched" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Presente","Present","I take a shower, am taking a shower","me ducho","te duchas","se ducha","nos duchamos","os ducháis","se duchan","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Futuro","Future","I will take a shower","me ducharé","te ducharás","se duchará","nos ducharemos","os ducharéis","se ducharán","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was taking a shower, used to take a shower, took a shower","me duchaba","te duchabas","se duchaba","nos duchábamos","os duchabais","se duchaban","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Pretérito","Preterite","I took a shower","me duché","te duchaste","se duchó","nos duchamos","os duchasteis","se ducharon","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Condicional","Conditional","I would take a shower","me ducharía","te ducharías","se ducharía","nos ducharíamos","os ducharíais","se ducharían","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have taken a shower","me he duchado","te has duchado","se ha duchado","nos hemos duchado","os habéis duchado","se han duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have taken a shower","me habré duchado","te habrás duchado","se habrá duchado","nos habremos duchado","os habréis duchado","se habrán duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had taken a shower","me había duchado","te habías duchado","se había duchado","nos habíamos duchado","os habíais duchado","se habían duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had taken a shower","me hube duchado","te hubiste duchado","se hubo duchado","nos hubimos duchado","os hubisteis duchado","se hubieron duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have taken a shower","me habría duchado","te habrías duchado","se habría duchado","nos habríamos duchado","os habríais duchado","se habrían duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"nos duchemos" +"ducharse","to take a shower, shower [oneself]","Subjuntivo","Subjunctive","Presente","Present","I take a shower, am taking a shower","me duche","te duches","se duche","nos duchemos","os duchéis","se duchen","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I took a shower, was taking a shower","me duchara","te ducharas","se duchara","nos ducháramos","os ducharais","se ducharan","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will take a shower","me duchare","te duchares","se duchare","nos ducháremos","os duchareis","se ducharen","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have taken a shower, took a shower","me haya duchado","te hayas duchado","se haya duchado","nos hayamos duchado","os hayáis duchado","se hayan duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have taken a shower","me hubiere duchado","te hubieres duchado","se hubiere duchado","nos hubiéremos duchado","os hubiereis duchado","se hubieren duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had taken a shower","me hubiera duchado","te hubieras duchado","se hubiera duchado","nos hubiéramos duchado","os hubierais duchado","se hubieran duchado","duchándose","taking a shower","duchado","showered, taken a shower" +"ducharse","to take a shower, shower [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Take a shower! Don't take a shower!","","dúchate","dúchese","nos duchemos","duchaos","dúchense","duchándose","taking a shower","duchado","showered, taken a shower", +"ducharse","to take a shower, shower [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Take a shower! Don't take a shower!","","no te duches","no se duche","no nos duchemos","no os duchéis","no se duchen","duchándose","taking a shower","duchado","showered, taken a shower", +"dudar","to doubt","Indicativo","Indicative","Presente","Present","I doubt, am doubting","dudo","dudas","duda","dudamos","dudáis","dudan","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Futuro","Future","I will doubt","dudaré","dudarás","dudará","dudaremos","dudaréis","dudarán","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Imperfecto","Imperfect","I was doubting, used to doubt, doubted","dudaba","dudabas","dudaba","dudábamos","dudabais","dudaban","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Pretérito","Preterite","I doubted","dudé","dudaste","dudó","dudamos","dudasteis","dudaron","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Condicional","Conditional","I would doubt","dudaría","dudarías","dudaría","dudaríamos","dudaríais","dudarían","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Presente perfecto","Present Perfect","I have doubted","he dudado","has dudado","ha dudado","hemos dudado","habéis dudado","han dudado","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have doubted","habré dudado","habrás dudado","habrá dudado","habremos dudado","habréis dudado","habrán dudado","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had doubted","había dudado","habías dudado","había dudado","habíamos dudado","habíais dudado","habían dudado","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had doubted","hube dudado","hubiste dudado","hubo dudado","hubimos dudado","hubisteis dudado","hubieron dudado","dudando","doubting","dudado","doubted" +"dudar","to doubt","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have doubted","habría dudado","habrías dudado","habría dudado","habríamos dudado","habríais dudado","habrían dudado","dudando","doubting","dudado","doubted" +"dudemos" +"dudar","to doubt","Subjuntivo","Subjunctive","Presente","Present","I doubt, am doubting","dude","dudes","dude","dudemos","dudéis","duden","dudando","doubting","dudado","doubted" +"dudar","to doubt","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I doubted, was doubting","dudara","dudaras","dudara","dudáramos","dudarais","dudaran","dudando","doubting","dudado","doubted" +"dudar","to doubt","Subjuntivo","Subjunctive","Futuro","Future","I will doubt","dudare","dudares","dudare","dudáremos","dudareis","dudaren","dudando","doubting","dudado","doubted" +"dudar","to doubt","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have doubted, doubted","haya dudado","hayas dudado","haya dudado","hayamos dudado","hayáis dudado","hayan dudado","dudando","doubting","dudado","doubted" +"dudar","to doubt","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have doubted","hubiere dudado","hubieres dudado","hubiere dudado","hubiéremos dudado","hubiereis dudado","hubieren dudado","dudando","doubting","dudado","doubted" +"dudar","to doubt","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had doubted","hubiera dudado","hubieras dudado","hubiera dudado","hubiéramos dudado","hubierais dudado","hubieran dudado","dudando","doubting","dudado","doubted" +"dudar","to doubt","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Doubt! Don't doubt!","","duda","dude","dudemos","dudad","duden","dudando","doubting","dudado","doubted" +"dudar","to doubt","Imperativo Negativo","Imperative Negative","Presente","Present","Doubt! Don't doubt!","","no dudes","no dude","no dudemos","no dudéis","no duden","dudando","doubting","dudado","doubted" +"durar","to last, go on, continue","Indicativo","Indicative","Presente","Present","I last, am lasting","duro","duras","dura","duramos","duráis","duran","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Futuro","Future","I will last","duraré","durarás","durará","duraremos","duraréis","durarán","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Imperfecto","Imperfect","I was lasting, used to last, lasted","duraba","durabas","duraba","durábamos","durabais","duraban","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Pretérito","Preterite","I lasted","duré","duraste","duró","duramos","durasteis","duraron","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Condicional","Conditional","I would last","duraría","durarías","duraría","duraríamos","duraríais","durarían","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lasted","he durado","has durado","ha durado","hemos durado","habéis durado","han durado","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lasted","habré durado","habrás durado","habrá durado","habremos durado","habréis durado","habrán durado","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lasted","había durado","habías durado","había durado","habíamos durado","habíais durado","habían durado","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lasted","hube durado","hubiste durado","hubo durado","hubimos durado","hubisteis durado","hubieron durado","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lasted","habría durado","habrías durado","habría durado","habríamos durado","habríais durado","habrían durado","durando","lasting","durado","lasted" +"duremos" +"durar","to last, go on, continue","Subjuntivo","Subjunctive","Presente","Present","I last, am lasting","dure","dures","dure","duremos","duréis","duren","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lasted, was lasting","durara","duraras","durara","duráramos","durarais","duraran","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Subjuntivo","Subjunctive","Futuro","Future","I will last","durare","durares","durare","duráremos","durareis","duraren","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lasted, lasted","haya durado","hayas durado","haya durado","hayamos durado","hayáis durado","hayan durado","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lasted","hubiere durado","hubieres durado","hubiere durado","hubiéremos durado","hubiereis durado","hubieren durado","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lasted","hubiera durado","hubieras durado","hubiera durado","hubiéramos durado","hubierais durado","hubieran durado","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Last! Don't last!","","dura","dure","duremos","durad","duren","durando","lasting","durado","lasted" +"durar","to last, go on, continue","Imperativo Negativo","Imperative Negative","Presente","Present","Last! Don't last!","","no dures","no dure","no duremos","no duréis","no duren","durando","lasting","durado","lasted" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Presente","Present","I throw, am throwing","echo","echas","echa","echamos","echáis","echan","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Futuro","Future","I will throw","echaré","echarás","echará","echaremos","echaréis","echarán","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Imperfecto","Imperfect","I was throwing, used to throw, threw","echaba","echabas","echaba","echábamos","echabais","echaban","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Pretérito","Preterite","I threw","eché","echaste","echó","echamos","echasteis","echaron","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Condicional","Conditional","I would throw","echaría","echarías","echaría","echaríamos","echaríais","echarían","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Presente perfecto","Present Perfect","I have thrown","he echado","has echado","ha echado","hemos echado","habéis echado","han echado","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have thrown","habré echado","habrás echado","habrá echado","habremos echado","habréis echado","habrán echado","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had thrown","había echado","habías echado","había echado","habíamos echado","habíais echado","habían echado","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had thrown","hube echado","hubiste echado","hubo echado","hubimos echado","hubisteis echado","hubieron echado","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have thrown","habría echado","habrías echado","habría echado","habríamos echado","habríais echado","habrían echado","echando","throwing","echado","thrown" +"echemos" +"echar","to throw, cast, fling, hurl, pitch, toss","Subjuntivo","Subjunctive","Presente","Present","I throw, am throwing","eche","eches","eche","echemos","echéis","echen","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I threw, was throwing","echara","echaras","echara","echáramos","echarais","echaran","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Subjuntivo","Subjunctive","Futuro","Future","I will throw","echare","echares","echare","echáremos","echareis","echaren","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have thrown, threw","haya echado","hayas echado","haya echado","hayamos echado","hayáis echado","hayan echado","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have thrown","hubiere echado","hubieres echado","hubiere echado","hubiéremos echado","hubiereis echado","hubieren echado","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had thrown","hubiera echado","hubieras echado","hubiera echado","hubiéramos echado","hubierais echado","hubieran echado","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Throw! Don't throw!","","echa","eche","echemos","echad","echen","echando","throwing","echado","thrown" +"echar","to throw, cast, fling, hurl, pitch, toss","Imperativo Negativo","Imperative Negative","Presente","Present","Throw! Don't throw!","","no eches","no eche","no echemos","no echéis","no echen","echando","throwing","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Presente","Present","I throw myself, am throwing myself","me echo","te echas","se echa","nos echamos","os echáis","se echan","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Futuro","Future","I will throw myself","me echaré","te echarás","se echará","nos echaremos","os echaréis","se echarán","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was throwing myself, used to throw myself, threw myself","me echaba","te echabas","se echaba","nos echábamos","os echabais","se echaban","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Pretérito","Preterite","I threw myself","me eché","te echaste","se echó","nos echamos","os echasteis","se echaron","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Condicional","Conditional","I would throw myself","me echaría","te echarías","se echaría","nos echaríamos","os echaríais","se echarían","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have thrown myself","me he echado","te has echado","se ha echado","nos hemos echado","os habéis echado","se han echado","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have thrown myself","me habré echado","te habrás echado","se habrá echado","nos habremos echado","os habréis echado","se habrán echado","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had thrown myself","me había echado","te habías echado","se había echado","nos habíamos echado","os habíais echado","se habían echado","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had thrown myself","me hube echado","te hubiste echado","se hubo echado","nos hubimos echado","os hubisteis echado","se hubieron echado","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have thrown myself","me habría echado","te habrías echado","se habría echado","nos habríamos echado","os habríais echado","se habrían echado","echándose","throwing oneself","echado","thrown" +"nos echemos" +"echarse","to throw, fling, hurl [oneself]","Subjuntivo","Subjunctive","Presente","Present","I throw myself, am throwing myself","me eche","te eches","se eche","nos echemos","os echéis","se echen","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I threw myself, was throwing myself","me echara","te echaras","se echara","nos echáramos","os echarais","se echaran","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will throw myself","me echare","te echares","se echare","nos echáremos","os echareis","se echaren","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have thrown myself, threw myself","me haya echado","te hayas echado","se haya echado","nos hayamos echado","os hayáis echado","se hayan echado","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have thrown myself","me hubiere echado","te hubieres echado","se hubiere echado","nos hubiéremos echado","os hubiereis echado","se hubieren echado","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had thrown myself","me hubiera echado","te hubieras echado","se hubiera echado","nos hubiéramos echado","os hubierais echado","se hubieran echado","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Throw yourself! Don't throw yourself!","","échate","échese","nos echemos","echaos","échense","echándose","throwing oneself","echado","thrown" +"echarse","to throw, fling, hurl [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Throw yourself! Don't throw yourself!","","no te eches","no se eche","no nos echemos","no os echéis","no se echen","echándose","throwing oneself","echado","thrown" +"educar","to educate; to bring up","Indicativo","Indicative","Presente","Present","I educate, am educating","educo","educas","educa","educamos","educáis","educan","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Futuro","Future","I will educate","educaré","educarás","educará","educaremos","educaréis","educarán","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Imperfecto","Imperfect","I was educating, used to educate, educated","educaba","educabas","educaba","educábamos","educabais","educaban","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Pretérito","Preterite","I educated","eduqué","educaste","educó","educamos","educasteis","educaron","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Condicional","Conditional","I would educate","educaría","educarías","educaría","educaríamos","educaríais","educarían","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have educated","he educado","has educado","ha educado","hemos educado","habéis educado","han educado","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have educated","habré educado","habrás educado","habrá educado","habremos educado","habréis educado","habrán educado","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had educated","había educado","habías educado","había educado","habíamos educado","habíais educado","habían educado","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had educated","hube educado","hubiste educado","hubo educado","hubimos educado","hubisteis educado","hubieron educado","educando","educating","educado","educated" +"educar","to educate; to bring up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have educated","habría educado","habrías educado","habría educado","habríamos educado","habríais educado","habrían educado","educando","educating","educado","educated" +"eduquemos" +"educar","to educate; to bring up","Subjuntivo","Subjunctive","Presente","Present","I educate, am educating","eduque","eduques","eduque","eduquemos","eduquéis","eduquen","educando","educating","educado","educated" +"educar","to educate; to bring up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I educated, was educating","educara","educaras","educara","educáramos","educarais","educaran","educando","educating","educado","educated" +"educar","to educate; to bring up","Subjuntivo","Subjunctive","Futuro","Future","I will educate","educare","educares","educare","educáremos","educareis","educaren","educando","educating","educado","educated" +"educar","to educate; to bring up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have educated, educated","haya educado","hayas educado","haya educado","hayamos educado","hayáis educado","hayan educado","educando","educating","educado","educated" +"educar","to educate; to bring up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have educated","hubiere educado","hubieres educado","hubiere educado","hubiéremos educado","hubiereis educado","hubieren educado","educando","educating","educado","educated" +"educar","to educate; to bring up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had educated","hubiera educado","hubieras educado","hubiera educado","hubiéramos educado","hubierais educado","hubieran educado","educando","educating","educado","educated" +"educar","to educate; to bring up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Educate! Don't educate!","","educa","eduque","eduquemos","educad","eduquen","educando","educating","educado","educated" +"educar","to educate; to bring up","Imperativo Negativo","Imperative Negative","Presente","Present","Educate! Don't educate!","","no eduques","no eduque","no eduquemos","no eduquéis","no eduquen","educando","educating","educado","educated" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Presente","Present","I effect, am effecting","efectúo","efectúas","efectúa","efectuamos","efectuáis","efectúan","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Futuro","Future","I will effect","efectuaré","efectuarás","efectuará","efectuaremos","efectuaréis","efectuarán","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Imperfecto","Imperfect","I was effecting, used to effect, effected","efectuaba","efectuabas","efectuaba","efectuábamos","efectuabais","efectuaban","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Pretérito","Preterite","I effected","efectué","efectuaste","efectuó","efectuamos","efectuasteis","efectuaron","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Condicional","Conditional","I would effect","efectuaría","efectuarías","efectuaría","efectuaríamos","efectuaríais","efectuarían","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Presente perfecto","Present Perfect","I have effected","he efectuado","has efectuado","ha efectuado","hemos efectuado","habéis efectuado","han efectuado","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have effected","habré efectuado","habrás efectuado","habrá efectuado","habremos efectuado","habréis efectuado","habrán efectuado","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had effected","había efectuado","habías efectuado","había efectuado","habíamos efectuado","habíais efectuado","habían efectuado","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had effected","hube efectuado","hubiste efectuado","hubo efectuado","hubimos efectuado","hubisteis efectuado","hubieron efectuado","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have effected","habría efectuado","habrías efectuado","habría efectuado","habríamos efectuado","habríais efectuado","habrían efectuado","efectuando","effecting","efectuado","effected" +"efectuemos" +"efectuar","to effect, carry out, bring about","Subjuntivo","Subjunctive","Presente","Present","I effect, am effecting","efectúe","efectúes","efectúe","efectuemos","efectuéis","efectúen","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I effected, was effecting","efectuara","efectuaras","efectuara","efectuáramos","efectuarais","efectuaran","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Subjuntivo","Subjunctive","Futuro","Future","I will effect","efectuare","efectuares","efectuare","efectuáremos","efectuareis","efectuaren","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have effected, effected","haya efectuado","hayas efectuado","haya efectuado","hayamos efectuado","hayáis efectuado","hayan efectuado","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have effected","hubiere efectuado","hubieres efectuado","hubiere efectuado","hubiéremos efectuado","hubiereis efectuado","hubieren efectuado","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had effected","hubiera efectuado","hubieras efectuado","hubiera efectuado","hubiéramos efectuado","hubierais efectuado","hubieran efectuado","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Effect! Don't effect!","","efectúa","efectúe","efectuemos","efectuad","efectúen","efectuando","effecting","efectuado","effected" +"efectuar","to effect, carry out, bring about","Imperativo Negativo","Imperative Negative","Presente","Present","Effect! Don't effect!","","no efectúes","no efectúe","no efectuemos","no efectuéis","no efectúen","efectuando","effecting","efectuado","effected" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Presente","Present","I exercise, am exercising","ejerzo","ejerces","ejerce","ejercemos","ejercéis","ejercen","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Futuro","Future","I will exercise","ejerceré","ejercerás","ejercerá","ejerceremos","ejerceréis","ejercerán","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Imperfecto","Imperfect","I was exercising, used to exercise, exercised","ejercía","ejercías","ejercía","ejercíamos","ejercíais","ejercían","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Pretérito","Preterite","I exercised","ejercí","ejerciste","ejerció","ejercimos","ejercisteis","ejercieron","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Condicional","Conditional","I would exercise","ejercería","ejercerías","ejercería","ejerceríamos","ejerceríais","ejercerían","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have exercised","he ejercido","has ejercido","ha ejercido","hemos ejercido","habéis ejercido","han ejercido","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have exercised","habré ejercido","habrás ejercido","habrá ejercido","habremos ejercido","habréis ejercido","habrán ejercido","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had exercised","había ejercido","habías ejercido","había ejercido","habíamos ejercido","habíais ejercido","habían ejercido","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had exercised","hube ejercido","hubiste ejercido","hubo ejercido","hubimos ejercido","hubisteis ejercido","hubieron ejercido","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have exercised","habría ejercido","habrías ejercido","habría ejercido","habríamos ejercido","habríais ejercido","habrían ejercido","ejerciendo","exercising","ejercido","exercised" +"ejerzamos" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Subjuntivo","Subjunctive","Presente","Present","I exercise, am exercising","ejerza","ejerzas","ejerza","ejerzamos","ejerzáis","ejerzan","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I exercised, was exercising","ejerciera","ejercieras","ejerciera","ejerciéramos","ejercierais","ejercieran","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Subjuntivo","Subjunctive","Futuro","Future","I will exercise","ejerciere","ejercieres","ejerciere","ejerciéremos","ejerciereis","ejercieren","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have exercised, exercised","haya ejercido","hayas ejercido","haya ejercido","hayamos ejercido","hayáis ejercido","hayan ejercido","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have exercised","hubiere ejercido","hubieres ejercido","hubiere ejercido","hubiéremos ejercido","hubiereis ejercido","hubieren ejercido","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had exercised","hubiera ejercido","hubieras ejercido","hubiera ejercido","hubiéramos ejercido","hubierais ejercido","hubieran ejercido","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Exercise! Don't exercise!","","ejerce","ejerza","ejerzamos","ejerced","ejerzan","ejerciendo","exercising","ejercido","exercised" +"ejercer","to exercise, wield [power, influence, etc.]; to practice [a profession]; to manage, conduct [a businsess]","Imperativo Negativo","Imperative Negative","Presente","Present","Exercise! Don't exercise!","","no ejerzas","no ejerza","no ejerzamos","no ejerzáis","no ejerzan","ejerciendo","exercising","ejercido","exercised" +"elegir","to elect, choose","Indicativo","Indicative","Presente","Present","I elect, am electing","elijo","eliges","elige","elegimos","elegís","eligen","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Futuro","Future","I will elect","elegiré","elegirás","elegirá","elegiremos","elegiréis","elegirán","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Imperfecto","Imperfect","I was electing, used to elect, elected","elegía","elegías","elegía","elegíamos","elegíais","elegían","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Pretérito","Preterite","I elected","elegí","elegiste","eligió","elegimos","elegisteis","eligieron","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Condicional","Conditional","I would elect","elegiría","elegirías","elegiría","elegiríamos","elegiríais","elegirían","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Presente perfecto","Present Perfect","I have elected","he elegido","has elegido","ha elegido","hemos elegido","habéis elegido","han elegido","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have elected","habré elegido","habrás elegido","habrá elegido","habremos elegido","habréis elegido","habrán elegido","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had elected","había elegido","habías elegido","había elegido","habíamos elegido","habíais elegido","habían elegido","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had elected","hube elegido","hubiste elegido","hubo elegido","hubimos elegido","hubisteis elegido","hubieron elegido","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have elected","habría elegido","habrías elegido","habría elegido","habríamos elegido","habríais elegido","habrían elegido","eligiendo","electing","elegido","elected" +"elijamos" +"elegir","to elect, choose","Subjuntivo","Subjunctive","Presente","Present","I elect, am electing","elija","elijas","elija","elijamos","elijáis","elijan","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I elected, was electing","eligiera","eligieras","eligiera","eligiéramos","eligierais","eligieran","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Subjuntivo","Subjunctive","Futuro","Future","I will elect","eligiere","eligieres","eligiere","eligiéremos","eligiereis","eligieren","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have elected, elected","haya elegido","hayas elegido","haya elegido","hayamos elegido","hayáis elegido","hayan elegido","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have elected","hubiere elegido","hubieres elegido","hubiere elegido","hubiéremos elegido","hubiereis elegido","hubieren elegido","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had elected","hubiera elegido","hubieras elegido","hubiera elegido","hubiéramos elegido","hubierais elegido","hubieran elegido","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Elect! Don't elect!","","elige","elija","elijamos","elegid","elijan","eligiendo","electing","elegido","elected" +"elegir","to elect, choose","Imperativo Negativo","Imperative Negative","Presente","Present","Elect! Don't elect!","","no elijas","no elija","no elijamos","no elijáis","no elijan","eligiendo","electing","elegido","elected" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Presente","Present","I eliminate, am eliminating","elimino","eliminas","elimina","eliminamos","elimináis","eliminan","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Futuro","Future","I will eliminate","eliminaré","eliminarás","eliminará","eliminaremos","eliminaréis","eliminarán","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Imperfecto","Imperfect","I was eliminating, used to eliminate, eliminated","eliminaba","eliminabas","eliminaba","eliminábamos","eliminabais","eliminaban","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Pretérito","Preterite","I eliminated","eliminé","eliminaste","eliminó","eliminamos","eliminasteis","eliminaron","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Condicional","Conditional","I would eliminate","eliminaría","eliminarías","eliminaría","eliminaríamos","eliminaríais","eliminarían","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Presente perfecto","Present Perfect","I have eliminated","he eliminado","has eliminado","ha eliminado","hemos eliminado","habéis eliminado","han eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have eliminated","habré eliminado","habrás eliminado","habrá eliminado","habremos eliminado","habréis eliminado","habrán eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had eliminated","había eliminado","habías eliminado","había eliminado","habíamos eliminado","habíais eliminado","habían eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had eliminated","hube eliminado","hubiste eliminado","hubo eliminado","hubimos eliminado","hubisteis eliminado","hubieron eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have eliminated","habría eliminado","habrías eliminado","habría eliminado","habríamos eliminado","habríais eliminado","habrían eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminemos" +"eliminar","to eliminate, remove, get rid of","Subjuntivo","Subjunctive","Presente","Present","I eliminate, am eliminating","elimine","elimines","elimine","eliminemos","eliminéis","eliminen","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I eliminated, was eliminating","eliminara","eliminaras","eliminara","elimináramos","eliminarais","eliminaran","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Subjuntivo","Subjunctive","Futuro","Future","I will eliminate","eliminare","eliminares","eliminare","elimináremos","eliminareis","eliminaren","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have eliminated, eliminated","haya eliminado","hayas eliminado","haya eliminado","hayamos eliminado","hayáis eliminado","hayan eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have eliminated","hubiere eliminado","hubieres eliminado","hubiere eliminado","hubiéremos eliminado","hubiereis eliminado","hubieren eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had eliminated","hubiera eliminado","hubieras eliminado","hubiera eliminado","hubiéramos eliminado","hubierais eliminado","hubieran eliminado","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Eliminate! Don't eliminate!","","elimina","elimine","eliminemos","eliminad","eliminen","eliminando","eliminating","eliminado","eliminated" +"eliminar","to eliminate, remove, get rid of","Imperativo Negativo","Imperative Negative","Presente","Present","Eliminate! Don't eliminate!","","no elimines","no elimine","no eliminemos","no eliminéis","no eliminen","eliminando","eliminating","eliminado","eliminated" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Presente","Present","I make drunk, am making drunk","emborracho","emborrachas","emborracha","emborrachamos","emborracháis","emborrachan","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Futuro","Future","I will make drunk","emborracharé","emborracharás","emborrachará","emborracharemos","emborracharéis","emborracharán","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Imperfecto","Imperfect","I was making drunk, used to make drunk, made drunk","emborrachaba","emborrachabas","emborrachaba","emborrachábamos","emborrachabais","emborrachaban","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Pretérito","Preterite","I made drunk","emborraché","emborrachaste","emborrachó","emborrachamos","emborrachasteis","emborracharon","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Condicional","Conditional","I would make drunk","emborracharía","emborracharías","emborracharía","emborracharíamos","emborracharíais","emborracharían","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Presente perfecto","Present Perfect","I have made drunk","he emborrachado","has emborrachado","ha emborrachado","hemos emborrachado","habéis emborrachado","han emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have made drunk","habré emborrachado","habrás emborrachado","habrá emborrachado","habremos emborrachado","habréis emborrachado","habrán emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had made drunk","había emborrachado","habías emborrachado","había emborrachado","habíamos emborrachado","habíais emborrachado","habían emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had made drunk","hube emborrachado","hubiste emborrachado","hubo emborrachado","hubimos emborrachado","hubisteis emborrachado","hubieron emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have made drunk","habría emborrachado","habrías emborrachado","habría emborrachado","habríamos emborrachado","habríais emborrachado","habrían emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachemos" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Subjuntivo","Subjunctive","Presente","Present","I make drunk, am making drunk","emborrache","emborraches","emborrache","emborrachemos","emborrachéis","emborrachen","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I made drunk, was making drunk","emborrachara","emborracharas","emborrachara","emborracháramos","emborracharais","emborracharan","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Subjuntivo","Subjunctive","Futuro","Future","I will make drunk","emborrachare","emborrachares","emborrachare","emborracháremos","emborrachareis","emborracharen","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have made drunk, made drunk","haya emborrachado","hayas emborrachado","haya emborrachado","hayamos emborrachado","hayáis emborrachado","hayan emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have made drunk","hubiere emborrachado","hubieres emborrachado","hubiere emborrachado","hubiéremos emborrachado","hubiereis emborrachado","hubieren emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had made drunk","hubiera emborrachado","hubieras emborrachado","hubiera emborrachado","hubiéramos emborrachado","hubierais emborrachado","hubieran emborrachado","emborrachando","making drunk","emborrachado","made drunk" +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Make drunk! Don't make drunk!","","emborracha","emborrache","emborrachemos","emborrachad","emborrachen","emborrachando","making drunk","emborrachado","made drunk", +"emborrachar","to make drunk, intoxicate; to get [someone] drunk","Imperativo Negativo","Imperative Negative","Presente","Present","Make drunk! Don't make drunk!","","no emborraches","no emborrache","no emborrachemos","no emborrachéis","no emborrachen","emborrachando","making drunk","emborrachado","made drunk", +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Presente","Present","I get drunk, am getting drunk","me emborracho","te emborrachas","se emborracha","nos emborrachamos","os emborracháis","se emborrachan","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Futuro","Future","I will get drunk","me emborracharé","te emborracharás","se emborrachará","nos emborracharemos","os emborracharéis","se emborracharán","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Imperfecto","Imperfect","I was getting drunk, used to get drunk, got drunk","me emborrachaba","te emborrachabas","se emborrachaba","nos emborrachábamos","os emborrachabais","se emborrachaban","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Pretérito","Preterite","I got drunk","me emborraché","te emborrachaste","se emborrachó","nos emborrachamos","os emborrachasteis","se emborracharon","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Condicional","Conditional","I would get drunk","me emborracharía","te emborracharías","se emborracharía","nos emborracharíamos","os emborracharíais","se emborracharían","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten drunk","me he emborrachado","te has emborrachado","se ha emborrachado","nos hemos emborrachado","os habéis emborrachado","se han emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten drunk","me habré emborrachado","te habrás emborrachado","se habrá emborrachado","nos habremos emborrachado","os habréis emborrachado","se habrán emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten drunk","me había emborrachado","te habías emborrachado","se había emborrachado","nos habíamos emborrachado","os habíais emborrachado","se habían emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten drunk","me hube emborrachado","te hubiste emborrachado","se hubo emborrachado","nos hubimos emborrachado","os hubisteis emborrachado","se hubieron emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten drunk","me habría emborrachado","te habrías emborrachado","se habría emborrachado","nos habríamos emborrachado","os habríais emborrachado","se habrían emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"nos emborrachemos" +"emborracharse","to get drunk, become drunk","Subjuntivo","Subjunctive","Presente","Present","I get drunk, am getting drunk","me emborrache","te emborraches","se emborrache","nos emborrachemos","os emborrachéis","se emborrachen","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got drunk, was getting drunk","me emborrachara","te emborracharas","se emborrachara","nos emborracháramos","os emborracharais","se emborracharan","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Subjuntivo","Subjunctive","Futuro","Future","I will get drunk","me emborrachare","te emborrachares","se emborrachare","nos emborracháremos","os emborrachareis","se emborracharen","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten drunk, got drunk","me haya emborrachado","te hayas emborrachado","se haya emborrachado","nos hayamos emborrachado","os hayáis emborrachado","se hayan emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten drunk","me hubiere emborrachado","te hubieres emborrachado","se hubiere emborrachado","nos hubiéremos emborrachado","os hubiereis emborrachado","se hubieren emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten drunk","me hubiera emborrachado","te hubieras emborrachado","se hubiera emborrachado","nos hubiéramos emborrachado","os hubierais emborrachado","se hubieran emborrachado","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get drunk! Don't get drunk!","","emborráchate","emborráchese","nos emborrachemos","emborrachaos","emborráchense","emborrachándose","getting drunk","emborrachado","drunk" +"emborracharse","to get drunk, become drunk","Imperativo Negativo","Imperative Negative","Presente","Present","Get drunk! Don't get drunk!","","no te emborraches","no se emborrache","no nos emborrachemos","no os emborrachéis","no se emborrachen","emborrachándose","getting drunk","emborrachado","drunk" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Presente","Present","I emigrate, am emigrating","emigro","emigras","emigra","emigramos","emigráis","emigran","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Futuro","Future","I will emigrate","emigraré","emigrarás","emigrará","emigraremos","emigraréis","emigrarán","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Imperfecto","Imperfect","I was emigrating, used to emigrate, emigrated","emigraba","emigrabas","emigraba","emigrábamos","emigrabais","emigraban","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Pretérito","Preterite","I emigrated","emigré","emigraste","emigró","emigramos","emigrasteis","emigraron","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Condicional","Conditional","I would emigrate","emigraría","emigrarías","emigraría","emigraríamos","emigraríais","emigrarían","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have emigrated","he emigrado","has emigrado","ha emigrado","hemos emigrado","habéis emigrado","han emigrado","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have emigrated","habré emigrado","habrás emigrado","habrá emigrado","habremos emigrado","habréis emigrado","habrán emigrado","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had emigrated","había emigrado","habías emigrado","había emigrado","habíamos emigrado","habíais emigrado","habían emigrado","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had emigrated","hube emigrado","hubiste emigrado","hubo emigrado","hubimos emigrado","hubisteis emigrado","hubieron emigrado","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have emigrated","habría emigrado","habrías emigrado","habría emigrado","habríamos emigrado","habríais emigrado","habrían emigrado","emigrando","emigrating","emigrado","emigrated" +"emigremos" +"emigrar","to emigrate; to migrate","Subjuntivo","Subjunctive","Presente","Present","I emigrate, am emigrating","emigre","emigres","emigre","emigremos","emigréis","emigren","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I emigrated, was emigrating","emigrara","emigraras","emigrara","emigráramos","emigrarais","emigraran","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Subjuntivo","Subjunctive","Futuro","Future","I will emigrate","emigrare","emigrares","emigrare","emigráremos","emigrareis","emigraren","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have emigrated, emigrated","haya emigrado","hayas emigrado","haya emigrado","hayamos emigrado","hayáis emigrado","hayan emigrado","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have emigrated","hubiere emigrado","hubieres emigrado","hubiere emigrado","hubiéremos emigrado","hubiereis emigrado","hubieren emigrado","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had emigrated","hubiera emigrado","hubieras emigrado","hubiera emigrado","hubiéramos emigrado","hubierais emigrado","hubieran emigrado","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Emigrate! Don't emigrate!","","emigra","emigre","emigremos","emigrad","emigren","emigrando","emigrating","emigrado","emigrated" +"emigrar","to emigrate; to migrate","Imperativo Negativo","Imperative Negative","Presente","Present","Emigrate! Don't emigrate!","","no emigres","no emigre","no emigremos","no emigréis","no emigren","emigrando","emigrating","emigrado","emigrated" +"empezar","to begin, start","Indicativo","Indicative","Futuro","Future","I will begin","empezaré","empezarás","empezará","empezaremos","empezaréis","empezarán","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Imperfecto","Imperfect","I was beginning, used to begin, began","empezaba","empezabas","empezaba","empezábamos","empezabais","empezaban","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Pretérito","Preterite","I began","empecé","empezaste","empezó","empezamos","empezasteis","empezaron","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Condicional","Conditional","I would begin","empezaría","empezarías","empezaría","empezaríamos","empezaríais","empezarían","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Presente perfecto","Present Perfect","I have begun","he empezado","has empezado","ha empezado","hemos empezado","habéis empezado","han empezado","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have begun","habré empezado","habrás empezado","habrá empezado","habremos empezado","habréis empezado","habrán empezado","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had begun","había empezado","habías empezado","había empezado","habíamos empezado","habíais empezado","habían empezado","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had begun","hube empezado","hubiste empezado","hubo empezado","hubimos empezado","hubisteis empezado","hubieron empezado","empezando","beginning","empezado","begun" +"empezar","to begin, start","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have begun","habría empezado","habrías empezado","habría empezado","habríamos empezado","habríais empezado","habrían empezado","empezando","beginning","empezado","begun" +"empecemos" +"empezar","to begin, start","Subjuntivo","Subjunctive","Presente","Present","I begin, am beginning","empiece","empieces","empiece","empecemos","empecéis","empiecen","empezando","beginning","empezado","begun" +"empezar","to begin, start","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I began, was beginning","empezara","empezaras","empezara","empezáramos","empezarais","empezaran","empezando","beginning","empezado","begun" +"empezar","to begin, start","Subjuntivo","Subjunctive","Futuro","Future","I will begin","empezare","empezares","empezare","empezáremos","empezareis","empezaren","empezando","beginning","empezado","begun" +"empezar","to begin, start","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have begun, began","haya empezado","hayas empezado","haya empezado","hayamos empezado","hayáis empezado","hayan empezado","empezando","beginning","empezado","begun" +"empezar","to begin, start","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have begun","hubiere empezado","hubieres empezado","hubiere empezado","hubiéremos empezado","hubiereis empezado","hubieren empezado","empezando","beginning","empezado","begun" +"empezar","to begin, start","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had begun","hubiera empezado","hubieras empezado","hubiera empezado","hubiéramos empezado","hubierais empezado","hubieran empezado","empezando","beginning","empezado","begun" +"empezar","to begin, start","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Begin! Don't begin!","","empieza","empiece","empecemos","empezad","empiecen","empezando","beginning","empezado","begun" +"empezar","to begin, start","Imperativo Negativo","Imperative Negative","Presente","Present","Begin! Don't begin!","","no empieces","no empiece","no empecemos","no empecéis","no empiecen","empezando","beginning","empezado","begun" +"emplear","to employ, hire; to use","Indicativo","Indicative","Presente","Present","I employ, am employing","empleo","empleas","emplea","empleamos","empleáis","emplean","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Futuro","Future","I will employ","emplearé","emplearás","empleará","emplearemos","emplearéis","emplearán","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Imperfecto","Imperfect","I was employing, used to employ, employed","empleaba","empleabas","empleaba","empleábamos","empleabais","empleaban","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Pretérito","Preterite","I employed","empleé","empleaste","empleó","empleamos","empleasteis","emplearon","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Condicional","Conditional","I would employ","emplearía","emplearías","emplearía","emplearíamos","emplearíais","emplearían","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Presente perfecto","Present Perfect","I have employed","he empleado","has empleado","ha empleado","hemos empleado","habéis empleado","han empleado","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have employed","habré empleado","habrás empleado","habrá empleado","habremos empleado","habréis empleado","habrán empleado","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had employed","había empleado","habías empleado","había empleado","habíamos empleado","habíais empleado","habían empleado","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had employed","hube empleado","hubiste empleado","hubo empleado","hubimos empleado","hubisteis empleado","hubieron empleado","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have employed","habría empleado","habrías empleado","habría empleado","habríamos empleado","habríais empleado","habrían empleado","empleando","employing","empleado","employed" +"empleemos" +"emplear","to employ, hire; to use","Subjuntivo","Subjunctive","Presente","Present","I employ, am employing","emplee","emplees","emplee","empleemos","empleéis","empleen","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I employed, was employing","empleara","emplearas","empleara","empleáramos","emplearais","emplearan","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Subjuntivo","Subjunctive","Futuro","Future","I will employ","empleare","empleares","empleare","empleáremos","empleareis","emplearen","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have employed, employed","haya empleado","hayas empleado","haya empleado","hayamos empleado","hayáis empleado","hayan empleado","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have employed","hubiere empleado","hubieres empleado","hubiere empleado","hubiéremos empleado","hubiereis empleado","hubieren empleado","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had employed","hubiera empleado","hubieras empleado","hubiera empleado","hubiéramos empleado","hubierais empleado","hubieran empleado","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Employ! Don't employ!","","emplea","emplee","empleemos","emplead","empleen","empleando","employing","empleado","employed" +"emplear","to employ, hire; to use","Imperativo Negativo","Imperative Negative","Presente","Present","Employ! Don't employ!","","no emplees","no emplee","no empleemos","no empleéis","no empleen","empleando","employing","empleado","employed" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Presente","Present","I inspire love in, am inspiring love in","enamoro","enamoras","enamora","enamoramos","enamoráis","enamoran","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Futuro","Future","I will inspire love in","enamoraré","enamorarás","enamorará","enamoraremos","enamoraréis","enamorarán","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Imperfecto","Imperfect","I was inspiring love in, used to inspire love in, inspired love in","enamoraba","enamorabas","enamoraba","enamorábamos","enamorabais","enamoraban","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Pretérito","Preterite","I inspired love in","enamoré","enamoraste","enamoró","enamoramos","enamorasteis","enamoraron","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Condicional","Conditional","I would inspire love in","enamoraría","enamorarías","enamoraría","enamoraríamos","enamoraríais","enamorarían","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Presente perfecto","Present Perfect","I have inspired love in","he enamorado","has enamorado","ha enamorado","hemos enamorado","habéis enamorado","han enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have inspired love in","habré enamorado","habrás enamorado","habrá enamorado","habremos enamorado","habréis enamorado","habrán enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had inspired love in","había enamorado","habías enamorado","había enamorado","habíamos enamorado","habíais enamorado","habían enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had inspired love in","hube enamorado","hubiste enamorado","hubo enamorado","hubimos enamorado","hubisteis enamorado","hubieron enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have inspired love in","habría enamorado","habrías enamorado","habría enamorado","habríamos enamorado","habríais enamorado","habrían enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamoremos" +"enamorar","to inspire love in, win the love of","Subjuntivo","Subjunctive","Presente","Present","I inspire love in, am inspiring love in","enamore","enamores","enamore","enamoremos","enamoréis","enamoren","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I inspired love in, was inspiring love in","enamorara","enamoraras","enamorara","enamoráramos","enamorarais","enamoraran","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Subjuntivo","Subjunctive","Futuro","Future","I will inspire love in","enamorare","enamorares","enamorare","enamoráremos","enamorareis","enamoraren","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have inspired love in, inspired love in","haya enamorado","hayas enamorado","haya enamorado","hayamos enamorado","hayáis enamorado","hayan enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have inspired love in","hubiere enamorado","hubieres enamorado","hubiere enamorado","hubiéremos enamorado","hubiereis enamorado","hubieren enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had inspired love in","hubiera enamorado","hubieras enamorado","hubiera enamorado","hubiéramos enamorado","hubierais enamorado","hubieran enamorado","enamorando","inspiring love in","enamorado","inspired love in" +"enamorar","to inspire love in, win the love of","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Inspire love in! Don't inspire love in!","","enamora","enamore","enamoremos","enamorad","enamoren","enamorando","inspiring love in","enamorado","inspired love in", +"enamorar","to inspire love in, win the love of","Imperativo Negativo","Imperative Negative","Presente","Present","Inspire love in! Don't inspire love in!","","no enamores","no enamore","no enamoremos","no enamoréis","no enamoren","enamorando","inspiring love in","enamorado","inspired love in", +"enamorarse","to fall in love","Indicativo","Indicative","Presente","Present","I fall in love, am falling in love","me enamoro","te enamoras","se enamora","nos enamoramos","os enamoráis","se enamoran","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Futuro","Future","I will fall in love","me enamoraré","te enamorarás","se enamorará","nos enamoraremos","os enamoraréis","se enamorarán","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Imperfecto","Imperfect","I was falling in love, used to fall in love, fell in love","me enamoraba","te enamorabas","se enamoraba","nos enamorábamos","os enamorabais","se enamoraban","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Pretérito","Preterite","I fell in love","me enamoré","te enamoraste","se enamoró","nos enamoramos","os enamorasteis","se enamoraron","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Condicional","Conditional","I would fall in love","me enamoraría","te enamorarías","se enamoraría","nos enamoraríamos","os enamoraríais","se enamorarían","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fallen in love","me he enamorado","te has enamorado","se ha enamorado","nos hemos enamorado","os habéis enamorado","se han enamorado","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fallen in love","me habré enamorado","te habrás enamorado","se habrá enamorado","nos habremos enamorado","os habréis enamorado","se habrán enamorado","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fallen in love","me había enamorado","te habías enamorado","se había enamorado","nos habíamos enamorado","os habíais enamorado","se habían enamorado","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fallen in love","me hube enamorado","te hubiste enamorado","se hubo enamorado","nos hubimos enamorado","os hubisteis enamorado","se hubieron enamorado","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fallen in love","me habría enamorado","te habrías enamorado","se habría enamorado","nos habríamos enamorado","os habríais enamorado","se habrían enamorado","enamorándose","falling in love","enamorado","fell in love" +"nos enamoremos" +"enamorarse","to fall in love","Subjuntivo","Subjunctive","Presente","Present","I fall in love, am falling in love","me enamore","te enamores","se enamore","nos enamoremos","os enamoréis","se enamoren","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fell in love, was falling in love","me enamorara","te enamoraras","se enamorara","nos enamoráramos","os enamorarais","se enamoraran","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Subjuntivo","Subjunctive","Futuro","Future","I will fall in love","me enamorare","te enamorares","se enamorare","nos enamoráremos","os enamorareis","se enamoraren","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fallen in love, fell in love","me haya enamorado","te hayas enamorado","se haya enamorado","nos hayamos enamorado","os hayáis enamorado","se hayan enamorado","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fallen in love","me hubiere enamorado","te hubieres enamorado","se hubiere enamorado","nos hubiéremos enamorado","os hubiereis enamorado","se hubieren enamorado","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fallen in love","me hubiera enamorado","te hubieras enamorado","se hubiera enamorado","nos hubiéramos enamorado","os hubierais enamorado","se hubieran enamorado","enamorándose","falling in love","enamorado","fell in love" +"enamorarse","to fall in love","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fall in love! Don't fall in love!","","enamórate","enamórese","nos enamoremos","enamoraos","enamórense","enamorándose","falling in love","enamorado","fell in love", +"enamorarse","to fall in love","Imperativo Negativo","Imperative Negative","Presente","Present","Fall in love! Don't fall in love!","","no te enamores","no se enamore","no nos enamoremos","no os enamoréis","no se enamoren","enamorándose","falling in love","enamorado","fell in love", +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Presente","Present","I delight, am delighting","encanto","encantas","encanta","encantamos","encantáis","encantan","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Futuro","Future","I will delight","encantaré","encantarás","encantará","encantaremos","encantaréis","encantarán","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Imperfecto","Imperfect","I was delighting, used to delight, delighted","encantaba","encantabas","encantaba","encantábamos","encantabais","encantaban","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Pretérito","Preterite","I delighted","encanté","encantaste","encantó","encantamos","encantasteis","encantaron","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Condicional","Conditional","I would delight","encantaría","encantarías","encantaría","encantaríamos","encantaríais","encantarían","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Presente perfecto","Present Perfect","I have delighted","he encantado","has encantado","ha encantado","hemos encantado","habéis encantado","han encantado","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have delighted","habré encantado","habrás encantado","habrá encantado","habremos encantado","habréis encantado","habrán encantado","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had delighted","había encantado","habías encantado","había encantado","habíamos encantado","habíais encantado","habían encantado","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had delighted","hube encantado","hubiste encantado","hubo encantado","hubimos encantado","hubisteis encantado","hubieron encantado","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have delighted","habría encantado","habrías encantado","habría encantado","habríamos encantado","habríais encantado","habrían encantado","encantando","delighting","encantado","delighted" +"encantemos" +"encantar","to delight, be delighting, charm, enchant","Subjuntivo","Subjunctive","Presente","Present","I delight, am delighting","encante","encantes","encante","encantemos","encantéis","encanten","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I delighted, was delighting","encantara","encantaras","encantara","encantáramos","encantarais","encantaran","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Subjuntivo","Subjunctive","Futuro","Future","I will delight","encantare","encantares","encantare","encantáremos","encantareis","encantaren","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have delighted, delighted","haya encantado","hayas encantado","haya encantado","hayamos encantado","hayáis encantado","hayan encantado","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have delighted","hubiere encantado","hubieres encantado","hubiere encantado","hubiéremos encantado","hubiereis encantado","hubieren encantado","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had delighted","hubiera encantado","hubieras encantado","hubiera encantado","hubiéramos encantado","hubierais encantado","hubieran encantado","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Delight! Don't delight!","","encanta","encante","encantemos","encantad","encanten","encantando","delighting","encantado","delighted" +"encantar","to delight, be delighting, charm, enchant","Imperativo Negativo","Imperative Negative","Presente","Present","Delight! Don't delight!","","no encantes","no encante","no encantemos","no encantéis","no encanten","encantando","delighting","encantado","delighted" +"encender","to burn, light, turn on","Indicativo","Indicative","Presente","Present","I burn, am burning","enciendo","enciendes","enciende","encendemos","encendéis","encienden","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Futuro","Future","I will burn","encenderé","encenderás","encenderá","encenderemos","encenderéis","encenderán","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Imperfecto","Imperfect","I was burning, used to burn, burnt","encendía","encendías","encendía","encendíamos","encendíais","encendían","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Pretérito","Preterite","I burnt","encendí","encendiste","encendió","encendimos","encendisteis","encendieron","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Condicional","Conditional","I would burn","encendería","encenderías","encendería","encenderíamos","encenderíais","encenderían","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Presente perfecto","Present Perfect","I have burnt","he encendido","has encendido","ha encendido","hemos encendido","habéis encendido","han encendido","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have burnt","habré encendido","habrás encendido","habrá encendido","habremos encendido","habréis encendido","habrán encendido","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had burnt","había encendido","habías encendido","había encendido","habíamos encendido","habíais encendido","habían encendido","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had burnt","hube encendido","hubiste encendido","hubo encendido","hubimos encendido","hubisteis encendido","hubieron encendido","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have burnt","habría encendido","habrías encendido","habría encendido","habríamos encendido","habríais encendido","habrían encendido","encendiendo","burning","encendido","burnt" +"encendamos" +"encender","to burn, light, turn on","Subjuntivo","Subjunctive","Presente","Present","I burn, am burning","encienda","enciendas","encienda","encendamos","encendáis","enciendan","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I burnt, was burning","encendiera","encendieras","encendiera","encendiéramos","encendierais","encendieran","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Subjuntivo","Subjunctive","Futuro","Future","I will burn","encendiere","encendieres","encendiere","encendiéremos","encendiereis","encendieren","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have burnt, burnt","haya encendido","hayas encendido","haya encendido","hayamos encendido","hayáis encendido","hayan encendido","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have burnt","hubiere encendido","hubieres encendido","hubiere encendido","hubiéremos encendido","hubiereis encendido","hubieren encendido","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had burnt","hubiera encendido","hubieras encendido","hubiera encendido","hubiéramos encendido","hubierais encendido","hubieran encendido","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Burn! Don't burn!","","enciende","encienda","encendamos","encended","enciendan","encendiendo","burning","encendido","burnt" +"encender","to burn, light, turn on","Imperativo Negativo","Imperative Negative","Presente","Present","Burn! Don't burn!","","no enciendas","no encienda","no encendamos","no encendáis","no enciendan","encendiendo","burning","encendido","burnt" +"encontrar","to find, encounter","Indicativo","Indicative","Presente","Present","I find, am finding","encuentro","encuentras","encuentra","encontramos","encontráis","encuentran","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Futuro","Future","I will find","encontraré","encontrarás","encontrará","encontraremos","encontraréis","encontrarán","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Imperfecto","Imperfect","I was finding, used to find, found","encontraba","encontrabas","encontraba","encontrábamos","encontrabais","encontraban","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Pretérito","Preterite","I found","encontré","encontraste","encontró","encontramos","encontrasteis","encontraron","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Condicional","Conditional","I would find","encontraría","encontrarías","encontraría","encontraríamos","encontraríais","encontrarían","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Presente perfecto","Present Perfect","I have found","he encontrado","has encontrado","ha encontrado","hemos encontrado","habéis encontrado","han encontrado","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have found","habré encontrado","habrás encontrado","habrá encontrado","habremos encontrado","habréis encontrado","habrán encontrado","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had found","había encontrado","habías encontrado","había encontrado","habíamos encontrado","habíais encontrado","habían encontrado","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had found","hube encontrado","hubiste encontrado","hubo encontrado","hubimos encontrado","hubisteis encontrado","hubieron encontrado","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have found","habría encontrado","habrías encontrado","habría encontrado","habríamos encontrado","habríais encontrado","habrían encontrado","encontrando","finding","encontrado","found" +"encontremos" +"encontrar","to find, encounter","Subjuntivo","Subjunctive","Presente","Present","I find, am finding","encuentre","encuentres","encuentre","encontremos","encontréis","encuentren","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I found, was finding","encontrara","encontraras","encontrara","encontráramos","encontrarais","encontraran","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Subjuntivo","Subjunctive","Futuro","Future","I will find","encontrare","encontrares","encontrare","encontráremos","encontrareis","encontraren","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have found, found","haya encontrado","hayas encontrado","haya encontrado","hayamos encontrado","hayáis encontrado","hayan encontrado","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have found","hubiere encontrado","hubieres encontrado","hubiere encontrado","hubiéremos encontrado","hubiereis encontrado","hubieren encontrado","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had found","hubiera encontrado","hubieras encontrado","hubiera encontrado","hubiéramos encontrado","hubierais encontrado","hubieran encontrado","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Find! Don't find!","","encuentra","encuentre","encontremos","encontrad","encuentren","encontrando","finding","encontrado","found" +"encontrar","to find, encounter","Imperativo Negativo","Imperative Negative","Presente","Present","Find! Don't find!","","no encuentres","no encuentre","no encontremos","no encontréis","no encuentren","encontrando","finding","encontrado","found" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Presente","Present","I anger, am angering","enfado","enfadas","enfada","enfadamos","enfadáis","enfadan","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Futuro","Future","I will anger","enfadaré","enfadarás","enfadará","enfadaremos","enfadaréis","enfadarán","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Imperfecto","Imperfect","I was angering, used to anger, angered","enfadaba","enfadabas","enfadaba","enfadábamos","enfadabais","enfadaban","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Pretérito","Preterite","I angered","enfadé","enfadaste","enfadó","enfadamos","enfadasteis","enfadaron","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Condicional","Conditional","I would anger","enfadaría","enfadarías","enfadaría","enfadaríamos","enfadaríais","enfadarían","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Presente perfecto","Present Perfect","I have angered","he enfadado","has enfadado","ha enfadado","hemos enfadado","habéis enfadado","han enfadado","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have angered","habré enfadado","habrás enfadado","habrá enfadado","habremos enfadado","habréis enfadado","habrán enfadado","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had angered","había enfadado","habías enfadado","había enfadado","habíamos enfadado","habíais enfadado","habían enfadado","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had angered","hube enfadado","hubiste enfadado","hubo enfadado","hubimos enfadado","hubisteis enfadado","hubieron enfadado","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have angered","habría enfadado","habrías enfadado","habría enfadado","habríamos enfadado","habríais enfadado","habrían enfadado","enfadando","angering","enfadado","angered" +"enfademos" +"enfadar","to anger, irritate, annoy","Subjuntivo","Subjunctive","Presente","Present","I anger, am angering","enfade","enfades","enfade","enfademos","enfadéis","enfaden","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I angered, was angering","enfadara","enfadaras","enfadara","enfadáramos","enfadarais","enfadaran","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Subjuntivo","Subjunctive","Futuro","Future","I will anger","enfadare","enfadares","enfadare","enfadáremos","enfadareis","enfadaren","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have angered, angered","haya enfadado","hayas enfadado","haya enfadado","hayamos enfadado","hayáis enfadado","hayan enfadado","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have angered","hubiere enfadado","hubieres enfadado","hubiere enfadado","hubiéremos enfadado","hubiereis enfadado","hubieren enfadado","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had angered","hubiera enfadado","hubieras enfadado","hubiera enfadado","hubiéramos enfadado","hubierais enfadado","hubieran enfadado","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Anger! Don't anger!","","enfada","enfade","enfademos","enfadad","enfaden","enfadando","angering","enfadado","angered" +"enfadar","to anger, irritate, annoy","Imperativo Negativo","Imperative Negative","Presente","Present","Anger! Don't anger!","","no enfades","no enfade","no enfademos","no enfadéis","no enfaden","enfadando","angering","enfadado","angered" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Presente","Present","I get angry, am getting angry","me enfado","te enfadas","se enfada","nos enfadamos","os enfadáis","se enfadan","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Futuro","Future","I will get angry","me enfadaré","te enfadarás","se enfadará","nos enfadaremos","os enfadaréis","se enfadarán","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Imperfecto","Imperfect","I was getting angry, used to get angry, got angry","me enfadaba","te enfadabas","se enfadaba","nos enfadábamos","os enfadabais","se enfadaban","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Pretérito","Preterite","I got angry","me enfadé","te enfadaste","se enfadó","nos enfadamos","os enfadasteis","se enfadaron","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Condicional","Conditional","I would get angry","me enfadaría","te enfadarías","se enfadaría","nos enfadaríamos","os enfadaríais","se enfadarían","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten angry","me he enfadado","te has enfadado","se ha enfadado","nos hemos enfadado","os habéis enfadado","se han enfadado","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten angry","me habré enfadado","te habrás enfadado","se habrá enfadado","nos habremos enfadado","os habréis enfadado","se habrán enfadado","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten angry","me había enfadado","te habías enfadado","se había enfadado","nos habíamos enfadado","os habíais enfadado","se habían enfadado","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten angry","me hube enfadado","te hubiste enfadado","se hubo enfadado","nos hubimos enfadado","os hubisteis enfadado","se hubieron enfadado","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten angry","me habría enfadado","te habrías enfadado","se habría enfadado","nos habríamos enfadado","os habríais enfadado","se habrían enfadado","enfadándose","getting angry","enfadado","angry" +"nos enfademos" +"enfadarse","to get angry, get irratated, get annoyed","Subjuntivo","Subjunctive","Presente","Present","I get angry, am getting angry","me enfade","te enfades","se enfade","nos enfademos","os enfadéis","se enfaden","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got angry, was getting angry","me enfadara","te enfadaras","se enfadara","nos enfadáramos","os enfadarais","se enfadaran","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Subjuntivo","Subjunctive","Futuro","Future","I will get angry","me enfadare","te enfadares","se enfadare","nos enfadáremos","os enfadareis","se enfadaren","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten angry, got angry","me haya enfadado","te hayas enfadado","se haya enfadado","nos hayamos enfadado","os hayáis enfadado","se hayan enfadado","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten angry","me hubiere enfadado","te hubieres enfadado","se hubiere enfadado","nos hubiéremos enfadado","os hubiereis enfadado","se hubieren enfadado","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten angry","me hubiera enfadado","te hubieras enfadado","se hubiera enfadado","nos hubiéramos enfadado","os hubierais enfadado","se hubieran enfadado","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get angry! Don't get angry!","","enfádate","enfádese","nos enfademos","enfadaos","enfádense","enfadándose","getting angry","enfadado","angry" +"enfadarse","to get angry, get irratated, get annoyed","Imperativo Negativo","Imperative Negative","Presente","Present","Get angry! Don't get angry!","","no te enfades","no se enfade","no nos enfademos","no os enfadéis","no se enfaden","enfadándose","getting angry","enfadado","angry" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Presente","Present","I make ill, am making ill","enfermo","enfermas","enferma","enfermamos","enfermáis","enferman","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Futuro","Future","I will make ill","enfermaré","enfermarás","enfermará","enfermaremos","enfermaréis","enfermarán","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Imperfecto","Imperfect","I was making ill, used to make ill, made ill","enfermaba","enfermabas","enfermaba","enfermábamos","enfermabais","enfermaban","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Pretérito","Preterite","I made ill","enfermé","enfermaste","enfermó","enfermamos","enfermasteis","enfermaron","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Condicional","Conditional","I would make ill","enfermaría","enfermarías","enfermaría","enfermaríamos","enfermaríais","enfermarían","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Presente perfecto","Present Perfect","I have made ill","he enfermado","has enfermado","ha enfermado","hemos enfermado","habéis enfermado","han enfermado","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have made ill","habré enfermado","habrás enfermado","habrá enfermado","habremos enfermado","habréis enfermado","habrán enfermado","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had made ill","había enfermado","habías enfermado","había enfermado","habíamos enfermado","habíais enfermado","habían enfermado","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had made ill","hube enfermado","hubiste enfermado","hubo enfermado","hubimos enfermado","hubisteis enfermado","hubieron enfermado","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have made ill","habría enfermado","habrías enfermado","habría enfermado","habríamos enfermado","habríais enfermado","habrían enfermado","enfermando","making ill","enfermado","made ill" +"enfermemos" +"enfermar","to make ill, make sick, cause illness in","Subjuntivo","Subjunctive","Presente","Present","I make ill, am making ill","enferme","enfermes","enferme","enfermemos","enferméis","enfermen","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I made ill, was making ill","enfermara","enfermaras","enfermara","enfermáramos","enfermarais","enfermaran","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Subjuntivo","Subjunctive","Futuro","Future","I will make ill","enfermare","enfermares","enfermare","enfermáremos","enfermareis","enfermaren","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have made ill, made ill","haya enfermado","hayas enfermado","haya enfermado","hayamos enfermado","hayáis enfermado","hayan enfermado","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have made ill","hubiere enfermado","hubieres enfermado","hubiere enfermado","hubiéremos enfermado","hubiereis enfermado","hubieren enfermado","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had made ill","hubiera enfermado","hubieras enfermado","hubiera enfermado","hubiéramos enfermado","hubierais enfermado","hubieran enfermado","enfermando","making ill","enfermado","made ill" +"enfermar","to make ill, make sick, cause illness in","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Make ill! Don't make ill!","","enferma","enferme","enfermemos","enfermad","enfermen","enfermando","making ill","enfermado","made ill", +"enfermar","to make ill, make sick, cause illness in","Imperativo Negativo","Imperative Negative","Presente","Present","Make ill! Don't make ill!","","no enfermes","no enferme","no enfermemos","no enferméis","no enfermen","enfermando","making ill","enfermado","made ill", +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Presente","Present","I get sick, am getting sick","me enfermo","te enfermas","se enferma","nos enfermamos","os enfermáis","se enferman","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Futuro","Future","I will get sick","me enfermaré","te enfermarás","se enfermará","nos enfermaremos","os enfermaréis","se enfermarán","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Imperfecto","Imperfect","I was getting sick, used to get sick, got sick","me enfermaba","te enfermabas","se enfermaba","nos enfermábamos","os enfermabais","se enfermaban","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Pretérito","Preterite","I got sick","me enfermé","te enfermaste","se enfermó","nos enfermamos","os enfermasteis","se enfermaron","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Condicional","Conditional","I would get sick","me enfermaría","te enfermarías","se enfermaría","nos enfermaríamos","os enfermaríais","se enfermarían","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten sick","me he enfermado","te has enfermado","se ha enfermado","nos hemos enfermado","os habéis enfermado","se han enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten sick","me habré enfermado","te habrás enfermado","se habrá enfermado","nos habremos enfermado","os habréis enfermado","se habrán enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten sick","me había enfermado","te habías enfermado","se había enfermado","nos habíamos enfermado","os habíais enfermado","se habían enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"entregar","to deliver, hand over","Indicativo","Indicative","Futuro","Future","I will deliver","entregaré","entregarás","entregará","entregaremos","entregaréis","entregarán","entregando","delivering","entregado","delivered" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten sick","me hube enfermado","te hubiste enfermado","se hubo enfermado","nos hubimos enfermado","os hubisteis enfermado","se hubieron enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten sick","me habría enfermado","te habrías enfermado","se habría enfermado","nos habríamos enfermado","os habríais enfermado","se habrían enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"nos enfermemos" +"enfermarse","to get sick, become ill, fall ill. become sick","Subjuntivo","Subjunctive","Presente","Present","I get sick, am getting sick","me enferme","te enfermes","se enferme","nos enfermemos","os enferméis","se enfermen","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got sick, was getting sick","me enfermara","te enfermaras","se enfermara","nos enfermáramos","os enfermarais","se enfermaran","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Subjuntivo","Subjunctive","Futuro","Future","I will get sick","me enfermare","te enfermares","se enfermare","nos enfermáremos","os enfermareis","se enfermaren","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten sick, got sick","me haya enfermado","te hayas enfermado","se haya enfermado","nos hayamos enfermado","os hayáis enfermado","se hayan enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten sick","me hubiere enfermado","te hubieres enfermado","se hubiere enfermado","nos hubiéremos enfermado","os hubiereis enfermado","se hubieren enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten sick","me hubiera enfermado","te hubieras enfermado","se hubiera enfermado","nos hubiéramos enfermado","os hubierais enfermado","se hubieran enfermado","enfermándose","getting sick","enfermado","sickened, sick" +"enfermarse","to get sick, become ill, fall ill. become sick","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get sick! Don't get sick!","","enférmate","enférmese","nos enfermemos","enfermaos","enférmense","enfermándose","getting sick","enfermado","sickened, sick", +"enfermarse","to get sick, become ill, fall ill. become sick","Imperativo Negativo","Imperative Negative","Presente","Present","Get sick! Don't get sick!","","no te enfermes","no se enferme","no nos enfermemos","no os enferméis","no se enfermen","enfermándose","getting sick","enfermado","sickened, sick", +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Presente","Present","I make thin, am making thin","enflaquezco","enflaqueces","enflaquece","enflaquecemos","enflaquecéis","enflaquecen","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Futuro","Future","I will make thin","enflaqueceré","enflaquecerás","enflaquecerá","enflaqueceremos","enflaqueceréis","enflaquecerán","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Imperfecto","Imperfect","I was making thin, used to make thin, made thin","enflaquecía","enflaquecías","enflaquecía","enflaquecíamos","enflaquecíais","enflaquecían","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Pretérito","Preterite","I made thin","enflaquecí","enflaqueciste","enflaqueció","enflaquecimos","enflaquecisteis","enflaquecieron","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Condicional","Conditional","I would make thin","enflaquecería","enflaquecerías","enflaquecería","enflaqueceríamos","enflaqueceríais","enflaquecerían","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Presente perfecto","Present Perfect","I have made thin","he enflaquecido","has enflaquecido","ha enflaquecido","hemos enflaquecido","habéis enflaquecido","han enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have made thin","habré enflaquecido","habrás enflaquecido","habrá enflaquecido","habremos enflaquecido","habréis enflaquecido","habrán enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had made thin","había enflaquecido","habías enflaquecido","había enflaquecido","habíamos enflaquecido","habíais enflaquecido","habían enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had made thin","hube enflaquecido","hubiste enflaquecido","hubo enflaquecido","hubimos enflaquecido","hubisteis enflaquecido","hubieron enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have made thin","habría enflaquecido","habrías enflaquecido","habría enflaquecido","habríamos enflaquecido","habríais enflaquecido","habrían enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquezcamos" +"enflaquecer","to make thin, make weak, weaken","Subjuntivo","Subjunctive","Presente","Present","I make thin, am making thin","enflaquezca","enflaquezcas","enflaquezca","enflaquezcamos","enflaquezcáis","enflaquezcan","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I made thin, was making thin","enflaqueciera","enflaquecieras","enflaqueciera","enflaqueciéramos","enflaquecierais","enflaquecieran","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Subjuntivo","Subjunctive","Futuro","Future","I will make thin","enflaqueciere","enflaquecieres","enflaqueciere","enflaqueciéremos","enflaqueciereis","enflaquecieren","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have made thin, made thin","haya enflaquecido","hayas enflaquecido","haya enflaquecido","hayamos enflaquecido","hayáis enflaquecido","hayan enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have made thin","hubiere enflaquecido","hubieres enflaquecido","hubiere enflaquecido","hubiéremos enflaquecido","hubiereis enflaquecido","hubieren enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had made thin","hubiera enflaquecido","hubieras enflaquecido","hubiera enflaquecido","hubiéramos enflaquecido","hubierais enflaquecido","hubieran enflaquecido","enflaqueciendo","making thin","enflaquecido","made thin" +"enflaquecer","to make thin, make weak, weaken","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Make thin! Don't make thin!","","enflaquece","enflaquezca","enflaquezcamos","enflaqueced","enflaquezcan","enflaqueciendo","making thin","enflaquecido","made thin", +"enflaquecer","to make thin, make weak, weaken","Imperativo Negativo","Imperative Negative","Presente","Present","Make thin! Don't make thin!","","no enflaquezcas","no enflaquezca","no enflaquezcamos","no enflaquezcáis","no enflaquezcan","enflaqueciendo","making thin","enflaquecido","made thin", +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Presente","Present","I get thin, am getting thin","me enflaquezco","te enflaqueces","se enflaquece","nos enflaquecemos","os enflaquecéis","se enflaquecen","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Futuro","Future","I will get thin","me enflaqueceré","te enflaquecerás","se enflaquecerá","nos enflaqueceremos","os enflaqueceréis","se enflaquecerán","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Imperfecto","Imperfect","I was getting thin, used to get thin, got thin","me enflaquecía","te enflaquecías","se enflaquecía","nos enflaquecíamos","os enflaquecíais","se enflaquecían","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Pretérito","Preterite","I got thin","me enflaquecí","te enflaqueciste","se enflaqueció","nos enflaquecimos","os enflaquecisteis","se enflaquecieron","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Condicional","Conditional","I would get thin","me enflaquecería","te enflaquecerías","se enflaquecería","nos enflaqueceríamos","os enflaqueceríais","se enflaquecerían","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten thin","me he enflaquecido","te has enflaquecido","se ha enflaquecido","nos hemos enflaquecido","os habéis enflaquecido","se han enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten thin","me habré enflaquecido","te habrás enflaquecido","se habrá enflaquecido","nos habremos enflaquecido","os habréis enflaquecido","se habrán enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten thin","me había enflaquecido","te habías enflaquecido","se había enflaquecido","nos habíamos enflaquecido","os habíais enflaquecido","se habían enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten thin","me hube enflaquecido","te hubiste enflaquecido","se hubo enflaquecido","nos hubimos enflaquecido","os hubisteis enflaquecido","se hubieron enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten thin","me habría enflaquecido","te habrías enflaquecido","se habría enflaquecido","nos habríamos enflaquecido","os habríais enflaquecido","se habrían enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"nos enflaquezcamos" +"enflaquecerse","to get thin; lose weight; to grow weak","Subjuntivo","Subjunctive","Presente","Present","I get thin, am getting thin","me enflaquezca","te enflaquezcas","se enflaquezca","nos enflaquezcamos","os enflaquezcáis","se enflaquezcan","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got thin, was getting thin","me enflaqueciera","te enflaquecieras","se enflaqueciera","nos enflaqueciéramos","os enflaquecierais","se enflaquecieran","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Subjuntivo","Subjunctive","Futuro","Future","I will get thin","me enflaqueciere","te enflaquecieres","se enflaqueciere","nos enflaqueciéremos","os enflaqueciereis","se enflaquecieren","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten thin, gotten thin","me haya enflaquecido","te hayas enflaquecido","se haya enflaquecido","nos hayamos enflaquecido","os hayáis enflaquecido","se hayan enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten thin","me hubiere enflaquecido","te hubieres enflaquecido","se hubiere enflaquecido","nos hubiéremos enflaquecido","os hubiereis enflaquecido","se hubieren enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten thin","me hubiera enflaquecido","te hubieras enflaquecido","se hubiera enflaquecido","nos hubiéramos enflaquecido","os hubierais enflaquecido","se hubieran enflaquecido","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin" +"enflaquecerse","to get thin; lose weight; to grow weak","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get thin! Don't get thin!","","enflaquécete","enflaquézcase","nos enflaquezcamos","enflaqueceos","enflaquézcanse","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin", +"enflaquecerse","to get thin; lose weight; to grow weak","Imperativo Negativo","Imperative Negative","Presente","Present","Get thin! Don't get thin!","","no te enflaquezcas","no se enflaquezca","no nos enflaquezcamos","no os enflaquezcáis","no se enflaquezcan","enflaqueciéndose","getting thin","enflaquecido","thin, gotten thin", +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Presente","Present","I deceive, am deceiving","engaño","engañas","engaña","engañamos","engañáis","engañan","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Futuro","Future","I will deceive","engañaré","engañarás","engañará","engañaremos","engañaréis","engañarán","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Imperfecto","Imperfect","I was deceiving, used to deceive, deceived","engañaba","engañabas","engañaba","engañábamos","engañabais","engañaban","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Pretérito","Preterite","I deceived","engañé","engañaste","engañó","engañamos","engañasteis","engañaron","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Condicional","Conditional","I would deceive","engañaría","engañarías","engañaría","engañaríamos","engañaríais","engañarían","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Presente perfecto","Present Perfect","I have deceived","he engañado","has engañado","ha engañado","hemos engañado","habéis engañado","han engañado","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have deceived","habré engañado","habrás engañado","habrá engañado","habremos engañado","habréis engañado","habrán engañado","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had deceived","había engañado","habías engañado","había engañado","habíamos engañado","habíais engañado","habían engañado","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had deceived","hube engañado","hubiste engañado","hubo engañado","hubimos engañado","hubisteis engañado","hubieron engañado","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have deceived","habría engañado","habrías engañado","habría engañado","habríamos engañado","habríais engañado","habrían engañado","engañando","deceiving","engañado","deceived" +"engañemos" +"engañar","to deceive, cheat, trick, swindle","Subjuntivo","Subjunctive","Presente","Present","I deceive, am deceiving","engañe","engañes","engañe","engañemos","engañéis","engañen","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I deceived, was deceiving","engañara","engañaras","engañara","engañáramos","engañarais","engañaran","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Subjuntivo","Subjunctive","Futuro","Future","I will deceive","engañare","engañares","engañare","engañáremos","engañareis","engañaren","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have deceived, deceived","haya engañado","hayas engañado","haya engañado","hayamos engañado","hayáis engañado","hayan engañado","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have deceived","hubiere engañado","hubieres engañado","hubiere engañado","hubiéremos engañado","hubiereis engañado","hubieren engañado","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had deceived","hubiera engañado","hubieras engañado","hubiera engañado","hubiéramos engañado","hubierais engañado","hubieran engañado","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Deceive! Don't deceive!","","engaña","engañe","engañemos","engañad","engañen","engañando","deceiving","engañado","deceived" +"engañar","to deceive, cheat, trick, swindle","Imperativo Negativo","Imperative Negative","Presente","Present","Deceive! Don't deceive!","","no engañes","no engañe","no engañemos","no engañéis","no engañen","engañando","deceiving","engañado","deceived" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Presente","Present","I anger, am angering","enojo","enojas","enoja","enojamos","enojáis","enojan","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Futuro","Future","I will anger","enojaré","enojarás","enojará","enojaremos","enojaréis","enojarán","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Imperfecto","Imperfect","I was angering, used to anger, angered","enojaba","enojabas","enojaba","enojábamos","enojabais","enojaban","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Pretérito","Preterite","I angered","enojé","enojaste","enojó","enojamos","enojasteis","enojaron","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Condicional","Conditional","I would anger","enojaría","enojarías","enojaría","enojaríamos","enojaríais","enojarían","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Presente perfecto","Present Perfect","I have angered","he enojado","has enojado","ha enojado","hemos enojado","habéis enojado","han enojado","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have angered","habré enojado","habrás enojado","habrá enojado","habremos enojado","habréis enojado","habrán enojado","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had angered","había enojado","habías enojado","había enojado","habíamos enojado","habíais enojado","habían enojado","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had angered","hube enojado","hubiste enojado","hubo enojado","hubimos enojado","hubisteis enojado","hubieron enojado","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have angered","habría enojado","habrías enojado","habría enojado","habríamos enojado","habríais enojado","habrían enojado","enojando","angering","enojado","angered" +"enojemos" +"enojar","to anger, upset, annoy; to make angry","Subjuntivo","Subjunctive","Presente","Present","I anger, am angering","enoje","enojes","enoje","enojemos","enojéis","enojen","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I angered, was angering","enojara","enojaras","enojara","enojáramos","enojarais","enojaran","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Subjuntivo","Subjunctive","Futuro","Future","I will anger","enojare","enojares","enojare","enojáremos","enojareis","enojaren","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have angered, angered","haya enojado","hayas enojado","haya enojado","hayamos enojado","hayáis enojado","hayan enojado","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have angered","hubiere enojado","hubieres enojado","hubiere enojado","hubiéremos enojado","hubiereis enojado","hubieren enojado","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had angered","hubiera enojado","hubieras enojado","hubiera enojado","hubiéramos enojado","hubierais enojado","hubieran enojado","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Anger! Don't anger!","","enoja","enoje","enojemos","enojad","enojen","enojando","angering","enojado","angered" +"enojar","to anger, upset, annoy; to make angry","Imperativo Negativo","Imperative Negative","Presente","Present","Anger! Don't anger!","","no enojes","no enoje","no enojemos","no enojéis","no enojen","enojando","angering","enojado","angered" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Presente","Present","I get angry, am getting angry","me enojo","te enojas","se enoja","nos enojamos","os enojáis","se enojan","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Futuro","Future","I will get angry","me enojaré","te enojarás","se enojará","nos enojaremos","os enojaréis","se enojarán","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Imperfecto","Imperfect","I was getting angry, used to get angry, got angry","me enojaba","te enojabas","se enojaba","nos enojábamos","os enojabais","se enojaban","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Pretérito","Preterite","I got angry","me enojé","te enojaste","se enojó","nos enojamos","os enojasteis","se enojaron","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Condicional","Conditional","I would get angry","me enojaría","te enojarías","se enojaría","nos enojaríamos","os enojaríais","se enojarían","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten angry","me he enojado","te has enojado","se ha enojado","nos hemos enojado","os habéis enojado","se han enojado","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten angry","me habré enojado","te habrás enojado","se habrá enojado","nos habremos enojado","os habréis enojado","se habrán enojado","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten angry","me había enojado","te habías enojado","se había enojado","nos habíamos enojado","os habíais enojado","se habían enojado","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten angry","me hube enojado","te hubiste enojado","se hubo enojado","nos hubimos enojado","os hubisteis enojado","se hubieron enojado","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten angry","me habría enojado","te habrías enojado","se habría enojado","nos habríamos enojado","os habríais enojado","se habrían enojado","enojándose","getting angry","enojado","angry" +"nos enojemos" +"enojarse","to get angry, get upset, lose one's temper","Subjuntivo","Subjunctive","Presente","Present","I get angry, am getting angry","me enoje","te enojes","se enoje","nos enojemos","os enojéis","se enojen","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got angry, was getting angry","me enojara","te enojaras","se enojara","nos enojáramos","os enojarais","se enojaran","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Subjuntivo","Subjunctive","Futuro","Future","I will get angry","me enojare","te enojares","se enojare","nos enojáremos","os enojareis","se enojaren","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten angry, got angry","me haya enojado","te hayas enojado","se haya enojado","nos hayamos enojado","os hayáis enojado","se hayan enojado","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten angry","me hubiere enojado","te hubieres enojado","se hubiere enojado","nos hubiéremos enojado","os hubiereis enojado","se hubieren enojado","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten angry","me hubiera enojado","te hubieras enojado","se hubiera enojado","nos hubiéramos enojado","os hubierais enojado","se hubieran enojado","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get angry! Don't get angry!","","enójate","enójese","nos enojemos","enojaos","enójense","enojándose","getting angry","enojado","angry" +"enojarse","to get angry, get upset, lose one's temper","Imperativo Negativo","Imperative Negative","Presente","Present","Get angry! Don't get angry!","","no te enojes","no se enoje","no nos enojemos","no os enojéis","no se enojen","enojándose","getting angry","enojado","angry" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Presente","Present","I enrich, am enriching","enriquezco","enriqueces","enriquece","enriquecemos","enriquecéis","enriquecen","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Futuro","Future","I will enrich","enriqueceré","enriquecerás","enriquecerá","enriqueceremos","enriqueceréis","enriquecerán","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Imperfecto","Imperfect","I was enriching, used to enrich, enriched","enriquecía","enriquecías","enriquecía","enriquecíamos","enriquecíais","enriquecían","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Pretérito","Preterite","I enriched","enriquecí","enriqueciste","enriqueció","enriquecimos","enriquecisteis","enriquecieron","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Condicional","Conditional","I would enrich","enriquecería","enriquecerías","enriquecería","enriqueceríamos","enriqueceríais","enriquecerían","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Presente perfecto","Present Perfect","I have enriched","he enriquecido","has enriquecido","ha enriquecido","hemos enriquecido","habéis enriquecido","han enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have enriched","habré enriquecido","habrás enriquecido","habrá enriquecido","habremos enriquecido","habréis enriquecido","habrán enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had enriched","había enriquecido","habías enriquecido","había enriquecido","habíamos enriquecido","habíais enriquecido","habían enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had enriched","hube enriquecido","hubiste enriquecido","hubo enriquecido","hubimos enriquecido","hubisteis enriquecido","hubieron enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have enriched","habría enriquecido","habrías enriquecido","habría enriquecido","habríamos enriquecido","habríais enriquecido","habrían enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquezcamos" +"enriquecer","to enrich, make rich","Subjuntivo","Subjunctive","Presente","Present","I enrich, am enriching","enriquezca","enriquezcas","enriquezca","enriquezcamos","enriquezcáis","enriquezcan","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I enriched, was enriching","enriqueciera","enriquecieras","enriqueciera","enriqueciéramos","enriquecierais","enriquecieran","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Subjuntivo","Subjunctive","Futuro","Future","I will enrich","enriqueciere","enriquecieres","enriqueciere","enriqueciéremos","enriqueciereis","enriquecieren","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have enriched, enriched","haya enriquecido","hayas enriquecido","haya enriquecido","hayamos enriquecido","hayáis enriquecido","hayan enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have enriched","hubiere enriquecido","hubieres enriquecido","hubiere enriquecido","hubiéremos enriquecido","hubiereis enriquecido","hubieren enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had enriched","hubiera enriquecido","hubieras enriquecido","hubiera enriquecido","hubiéramos enriquecido","hubierais enriquecido","hubieran enriquecido","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Enrich! Don't enrich!","","enriquece","enriquezca","enriquezcamos","enriqueced","enriquezcan","enriqueciendo","enriching","enriquecido","enriched" +"enriquecer","to enrich, make rich","Imperativo Negativo","Imperative Negative","Presente","Present","Enrich! Don't enrich!","","no enriquezcas","no enriquezca","no enriquezcamos","no enriquezcáis","no enriquezcan","enriqueciendo","enriching","enriquecido","enriched" +"enriquecerse","to get rich","Indicativo","Indicative","Presente","Present","I get rich, am getting rich","me enriquezco","te enriqueces","se enriquece","nos enriquecemos","os enriquecéis","se enriquecen","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Futuro","Future","I will get rich","me enriqueceré","te enriquecerás","se enriquecerá","nos enriqueceremos","os enriqueceréis","se enriquecerán","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Imperfecto","Imperfect","I was getting rich, used to get rich, got rich","me enriquecía","te enriquecías","se enriquecía","nos enriquecíamos","os enriquecíais","se enriquecían","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Pretérito","Preterite","I got rich","me enriquecí","te enriqueciste","se enriqueció","nos enriquecimos","os enriquecisteis","se enriquecieron","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Condicional","Conditional","I would get rich","me enriquecería","te enriquecerías","se enriquecería","nos enriqueceríamos","os enriqueceríais","se enriquecerían","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten rich","me he enriquecido","te has enriquecido","se ha enriquecido","nos hemos enriquecido","os habéis enriquecido","se han enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten rich","me habré enriquecido","te habrás enriquecido","se habrá enriquecido","nos habremos enriquecido","os habréis enriquecido","se habrán enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten rich","me había enriquecido","te habías enriquecido","se había enriquecido","nos habíamos enriquecido","os habíais enriquecido","se habían enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten rich","me hube enriquecido","te hubiste enriquecido","se hubo enriquecido","nos hubimos enriquecido","os hubisteis enriquecido","se hubieron enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten rich","me habría enriquecido","te habrías enriquecido","se habría enriquecido","nos habríamos enriquecido","os habríais enriquecido","se habrían enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"nos enriquezcamos" +"enriquecerse","to get rich","Subjuntivo","Subjunctive","Presente","Present","I get rich, am getting rich","me enriquezca","te enriquezcas","se enriquezca","nos enriquezcamos","os enriquezcáis","se enriquezcan","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got rich, was getting rich","me enriqueciera","te enriquecieras","se enriqueciera","nos enriqueciéramos","os enriquecierais","se enriquecieran","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Subjuntivo","Subjunctive","Futuro","Future","I will get rich","me enriqueciere","te enriquecieres","se enriqueciere","nos enriqueciéremos","os enriqueciereis","se enriquecieren","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"entrevistemos" +"entrevistar","to interview","Subjuntivo","Subjunctive","Presente","Present","I interview, am interviewing","entreviste","entrevistes","entreviste","entrevistemos","entrevistéis","entrevisten","entrevistando","interviewing","entrevistado","interviewed" +"enriquecerse","to get rich","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten rich, gotten rich","me haya enriquecido","te hayas enriquecido","se haya enriquecido","nos hayamos enriquecido","os hayáis enriquecido","se hayan enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten rich","me hubiere enriquecido","te hubieres enriquecido","se hubiere enriquecido","nos hubiéremos enriquecido","os hubiereis enriquecido","se hubieren enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten rich","me hubiera enriquecido","te hubieras enriquecido","se hubiera enriquecido","nos hubiéramos enriquecido","os hubierais enriquecido","se hubieran enriquecido","enriqueciéndose","getting rich","enriquecido","rich, gotten rich" +"enriquecerse","to get rich","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get rich! Don't get rich!","","enriquécete","enriquézcase","entrevistemos","enriqueceos","enriquézcanse","enriqueciéndose","getting rich","enriquecido","rich, gotten rich", +"enriquecerse","to get rich","Imperativo Negativo","Imperative Negative","Presente","Present","Get rich! Don't get rich!","","no te enriquezcas","no se enriquezca","no entrevistemos","no os enriquezcáis","no se enriquezcan","enriqueciéndose","getting rich","enriquecido","rich, gotten rich", +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Presente","Present","I teach, am teaching","enseño","enseñas","enseña","enseñamos","enseñáis","enseñan","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Futuro","Future","I will teach","enseñaré","enseñarás","enseñará","enseñaremos","enseñaréis","enseñarán","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Imperfecto","Imperfect","I was teaching, used to teach, taught","enseñaba","enseñabas","enseñaba","enseñábamos","enseñabais","enseñaban","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Pretérito","Preterite","I taught","enseñé","enseñaste","enseñó","enseñamos","enseñasteis","enseñaron","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Condicional","Conditional","I would teach","enseñaría","enseñarías","enseñaría","enseñaríamos","enseñaríais","enseñarían","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have taught","he enseñado","has enseñado","ha enseñado","hemos enseñado","habéis enseñado","han enseñado","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have taught","habré enseñado","habrás enseñado","habrá enseñado","habremos enseñado","habréis enseñado","habrán enseñado","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had taught","había enseñado","habías enseñado","había enseñado","habíamos enseñado","habíais enseñado","habían enseñado","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had taught","hube enseñado","hubiste enseñado","hubo enseñado","hubimos enseñado","hubisteis enseñado","hubieron enseñado","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have taught","habría enseñado","habrías enseñado","habría enseñado","habríamos enseñado","habríais enseñado","habrían enseñado","enseñando","teaching","enseñado","taught" +"enseñemos" +"enseñar","to teach, instruct, train, educate","Subjuntivo","Subjunctive","Presente","Present","I teach, am teaching","enseñe","enseñes","enseñe","enseñemos","enseñéis","enseñen","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I taught, was teaching","enseñara","enseñaras","enseñara","enseñáramos","enseñarais","enseñaran","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Subjuntivo","Subjunctive","Futuro","Future","I will teach","enseñare","enseñares","enseñare","enseñáremos","enseñareis","enseñaren","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have taught, taught","haya enseñado","hayas enseñado","haya enseñado","hayamos enseñado","hayáis enseñado","hayan enseñado","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have taught","hubiere enseñado","hubieres enseñado","hubiere enseñado","hubiéremos enseñado","hubiereis enseñado","hubieren enseñado","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had taught","hubiera enseñado","hubieras enseñado","hubiera enseñado","hubiéramos enseñado","hubierais enseñado","hubieran enseñado","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Teach! Don't teach!","","enseña","enseñe","enseñemos","enseñad","enseñen","enseñando","teaching","enseñado","taught" +"enseñar","to teach, instruct, train, educate","Imperativo Negativo","Imperative Negative","Presente","Present","Teach! Don't teach!","","no enseñes","no enseñe","no enseñemos","no enseñéis","no enseñen","enseñando","teaching","enseñado","taught" +"ensuciar","to dirty","Indicativo","Indicative","Presente","Present","I dirty, am dirtying","ensucio","ensucias","ensucia","ensuciamos","ensuciáis","ensucian","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Futuro","Future","I will dirty","ensuciaré","ensuciarás","ensuciará","ensuciaremos","ensuciaréis","ensuciarán","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Imperfecto","Imperfect","I was dirtying, used to dirty, dirtied","ensuciaba","ensuciabas","ensuciaba","ensuciábamos","ensuciabais","ensuciaban","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Pretérito","Preterite","I dirtied","ensucié","ensuciaste","ensució","ensuciamos","ensuciasteis","ensuciaron","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Condicional","Conditional","I would dirty","ensuciaría","ensuciarías","ensuciaría","ensuciaríamos","ensuciaríais","ensuciarían","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dirtied","he ensuciado","has ensuciado","ha ensuciado","hemos ensuciado","habéis ensuciado","han ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dirtied","habré ensuciado","habrás ensuciado","habrá ensuciado","habremos ensuciado","habréis ensuciado","habrán ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dirtied","había ensuciado","habías ensuciado","había ensuciado","habíamos ensuciado","habíais ensuciado","habían ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dirtied","hube ensuciado","hubiste ensuciado","hubo ensuciado","hubimos ensuciado","hubisteis ensuciado","hubieron ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dirtied","habría ensuciado","habrías ensuciado","habría ensuciado","habríamos ensuciado","habríais ensuciado","habrían ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciemos" +"ensuciar","to dirty","Subjuntivo","Subjunctive","Presente","Present","I dirty, am dirtying","ensucie","ensucies","ensucie","ensuciemos","ensuciéis","ensucien","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dirtied, was dirtying","ensuciara","ensuciaras","ensuciara","ensuciáramos","ensuciarais","ensuciaran","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Subjuntivo","Subjunctive","Futuro","Future","I will dirty","ensuciare","ensuciares","ensuciare","ensuciáremos","ensuciareis","ensuciaren","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dirtied, dirtied","haya ensuciado","hayas ensuciado","haya ensuciado","hayamos ensuciado","hayáis ensuciado","hayan ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dirtied","hubiere ensuciado","hubieres ensuciado","hubiere ensuciado","hubiéremos ensuciado","hubiereis ensuciado","hubieren ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dirtied","hubiera ensuciado","hubieras ensuciado","hubiera ensuciado","hubiéramos ensuciado","hubierais ensuciado","hubieran ensuciado","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dirty! Don't dirty!","","ensucia","ensucie","ensuciemos","ensuciad","ensucien","ensuciando","dirtying","ensuciado","dirtied" +"ensuciar","to dirty","Imperativo Negativo","Imperative Negative","Presente","Present","Dirty! Don't dirty!","","no ensucies","no ensucie","no ensuciemos","no ensuciéis","no ensucien","ensuciando","dirtying","ensuciado","dirtied" +"entender","to understand","Indicativo","Indicative","Presente","Present","I understand, am understanding","entiendo","entiendes","entiende","entendemos","entendéis","entienden","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Futuro","Future","I will understand","entenderé","entenderás","entenderá","entenderemos","entenderéis","entenderán","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Imperfecto","Imperfect","I was understanding, used to understand, understood","entendía","entendías","entendía","entendíamos","entendíais","entendían","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Pretérito","Preterite","I understood","entendí","entendiste","entendió","entendimos","entendisteis","entendieron","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Condicional","Conditional","I would understand","entendería","entenderías","entendería","entenderíamos","entenderíais","entenderían","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Presente perfecto","Present Perfect","I have understood","he entendido","has entendido","ha entendido","hemos entendido","habéis entendido","han entendido","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have understood","habré entendido","habrás entendido","habrá entendido","habremos entendido","habréis entendido","habrán entendido","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had understood","había entendido","habías entendido","había entendido","habíamos entendido","habíais entendido","habían entendido","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had understood","hube entendido","hubiste entendido","hubo entendido","hubimos entendido","hubisteis entendido","hubieron entendido","entendiendo","understanding","entendido","understood" +"entender","to understand","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have understood","habría entendido","habrías entendido","habría entendido","habríamos entendido","habríais entendido","habrían entendido","entendiendo","understanding","entendido","understood" +"entendamos" +"entender","to understand","Subjuntivo","Subjunctive","Presente","Present","I understand, am understanding","entienda","entiendas","entienda","entendamos","entendáis","entiendan","entendiendo","understanding","entendido","understood" +"entender","to understand","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I understood, was understanding","entendiera","entendieras","entendiera","entendiéramos","entendierais","entendieran","entendiendo","understanding","entendido","understood" +"entender","to understand","Subjuntivo","Subjunctive","Futuro","Future","I will understand","entendiere","entendieres","entendiere","entendiéremos","entendiereis","entendieren","entendiendo","understanding","entendido","understood" +"entender","to understand","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have understood, understood","haya entendido","hayas entendido","haya entendido","hayamos entendido","hayáis entendido","hayan entendido","entendiendo","understanding","entendido","understood" +"entender","to understand","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have understood","hubiere entendido","hubieres entendido","hubiere entendido","hubiéremos entendido","hubiereis entendido","hubieren entendido","entendiendo","understanding","entendido","understood" +"entender","to understand","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had understood","hubiera entendido","hubieras entendido","hubiera entendido","hubiéramos entendido","hubierais entendido","hubieran entendido","entendiendo","understanding","entendido","understood" +"entender","to understand","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Understand! Don't understand!","","entiende","entienda","entendamos","entended","entiendan","entendiendo","understanding","entendido","understood" +"entender","to understand","Imperativo Negativo","Imperative Negative","Presente","Present","Understand! Don't understand!","","no entiendas","no entienda","no entendamos","no entendáis","no entiendan","entendiendo","understanding","entendido","understood" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Presente","Present","I find out, am finding out","me entero","te enteras","se entera","nos enteramos","os enteráis","se enteran","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Futuro","Future","I will find out","me enteraré","te enterarás","se enterará","nos enteraremos","os enteraréis","se enterarán","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Imperfecto","Imperfect","I was finding out, used to find out, found out","me enteraba","te enterabas","se enteraba","nos enterábamos","os enterabais","se enteraban","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Pretérito","Preterite","I found out","me enteré","te enteraste","se enteró","nos enteramos","os enterasteis","se enteraron","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Condicional","Conditional","I would find out","me enteraría","te enterarías","se enteraría","nos enteraríamos","os enteraríais","se enterarían","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Presente perfecto","Present Perfect","I have found out","me he enterado","te has enterado","se ha enterado","nos hemos enterado","os habéis enterado","se han enterado","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have found out","me habré enterado","te habrás enterado","se habrá enterado","nos habremos enterado","os habréis enterado","se habrán enterado","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had found out","me había enterado","te habías enterado","se había enterado","nos habíamos enterado","os habíais enterado","se habían enterado","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had found out","me hube enterado","te hubiste enterado","se hubo enterado","nos hubimos enterado","os hubisteis enterado","se hubieron enterado","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have found out","me habría enterado","te habrías enterado","se habría enterado","nos habríamos enterado","os habríais enterado","se habrían enterado","enterándose","finding out","enterado","found out" +"nos enteremos" +"enterarse","to find out [about something], to learn [of something])","Subjuntivo","Subjunctive","Presente","Present","I find out, am finding out","me entere","te enteres","se entere","nos enteremos","os enteréis","se enteren","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I found out, was finding out","me enterara","te enteraras","se enterara","nos enteráramos","os enterarais","se enteraran","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Subjuntivo","Subjunctive","Futuro","Future","I will find out","me enterare","te enterares","se enterare","nos enteráremos","os enterareis","se enteraren","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have found out, found out","me haya enterado","te hayas enterado","se haya enterado","nos hayamos enterado","os hayáis enterado","se hayan enterado","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have found out","me hubiere enterado","te hubieres enterado","se hubiere enterado","nos hubiéremos enterado","os hubiereis enterado","se hubieren enterado","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had found out","me hubiera enterado","te hubieras enterado","se hubiera enterado","nos hubiéramos enterado","os hubierais enterado","se hubieran enterado","enterándose","finding out","enterado","found out" +"enterarse","to find out [about something], to learn [of something])","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","find out! Don't find out!","","entérate","entérese","nos enteremos","enteraos","entérense","enterándose","finding out","enterado","found out", +"enterarse","to find out [about something], to learn [of something])","Imperativo Negativo","Imperative Negative","Presente","Present","find out! Don't find out!","","no te enteres","no se entere","no nos enteremos","no os enteréis","no se enteren","enterándose","finding out","enterado","found out", +"entrar","to enter, go in, come in","Indicativo","Indicative","Presente","Present","I enter, am entering","entro","entras","entra","entramos","entráis","entran","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Futuro","Future","I will enter","entraré","entrarás","entrará","entraremos","entraréis","entrarán","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Imperfecto","Imperfect","I was entering, used to enter, entered","entraba","entrabas","entraba","entrábamos","entrabais","entraban","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Pretérito","Preterite","I entered","entré","entraste","entró","entramos","entrasteis","entraron","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Condicional","Conditional","I would enter","entraría","entrarías","entraría","entraríamos","entraríais","entrarían","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Presente perfecto","Present Perfect","I have entered","he entrado","has entrado","ha entrado","hemos entrado","habéis entrado","han entrado","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have entered","habré entrado","habrás entrado","habrá entrado","habremos entrado","habréis entrado","habrán entrado","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had entered","había entrado","habías entrado","había entrado","habíamos entrado","habíais entrado","habían entrado","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had entered","hube entrado","hubiste entrado","hubo entrado","hubimos entrado","hubisteis entrado","hubieron entrado","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have entered","habría entrado","habrías entrado","habría entrado","habríamos entrado","habríais entrado","habrían entrado","entrando","entering","entrado","entered" +"entremos" +"entrar","to enter, go in, come in","Subjuntivo","Subjunctive","Presente","Present","I enter, am entering","entre","entres","entre","entremos","entréis","entren","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I entered, was entering","entrara","entraras","entrara","entráramos","entrarais","entraran","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Subjuntivo","Subjunctive","Futuro","Future","I will enter","entrare","entrares","entrare","entráremos","entrareis","entraren","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have entered, entered","haya entrado","hayas entrado","haya entrado","hayamos entrado","hayáis entrado","hayan entrado","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have entered","hubiere entrado","hubieres entrado","hubiere entrado","hubiéremos entrado","hubiereis entrado","hubieren entrado","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had entered","hubiera entrado","hubieras entrado","hubiera entrado","hubiéramos entrado","hubierais entrado","hubieran entrado","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Enter! Don't enter!","","entra","entre","entremos","entrad","entren","entrando","entering","entrado","entered" +"entrar","to enter, go in, come in","Imperativo Negativo","Imperative Negative","Presente","Present","Enter! Don't enter!","","no entres","no entre","no entremos","no entréis","no entren","entrando","entering","entrado","entered" +"entregar","to deliver, hand over","Indicativo","Indicative","Presente","Present","I deliver, am delivering","entrego","entregas","entrega","entregamos","entregáis","entregan","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Imperfecto","Imperfect","I was delivering, used to deliver, delivered","entregaba","entregabas","entregaba","entregábamos","entregabais","entregaban","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Pretérito","Preterite","I delivered","entregué","entregaste","entregó","entregamos","entregasteis","entregaron","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Condicional","Conditional","I would deliver","entregaría","entregarías","entregaría","entregaríamos","entregaríais","entregarían","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Presente perfecto","Present Perfect","I have delivered","he entregado","has entregado","ha entregado","hemos entregado","habéis entregado","han entregado","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have delivered","habré entregado","habrás entregado","habrá entregado","habremos entregado","habréis entregado","habrán entregado","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had delivered","había entregado","habías entregado","había entregado","habíamos entregado","habíais entregado","habían entregado","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had delivered","hube entregado","hubiste entregado","hubo entregado","hubimos entregado","hubisteis entregado","hubieron entregado","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have delivered","habría entregado","habrías entregado","habría entregado","habríamos entregado","habríais entregado","habrían entregado","entregando","delivering","entregado","delivered" +"entreguemos" +"entregar","to deliver, hand over","Subjuntivo","Subjunctive","Presente","Present","I deliver, am delivering","entregue","entregues","entregue","entreguemos","entreguéis","entreguen","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I delivered, was delivering","entregara","entregaras","entregara","entregáramos","entregarais","entregaran","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Subjuntivo","Subjunctive","Futuro","Future","I will deliver","entregare","entregares","entregare","entregáremos","entregareis","entregaren","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have delivered, delivered","haya entregado","hayas entregado","haya entregado","hayamos entregado","hayáis entregado","hayan entregado","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have delivered","hubiere entregado","hubieres entregado","hubiere entregado","hubiéremos entregado","hubiereis entregado","hubieren entregado","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had delivered","hubiera entregado","hubieras entregado","hubiera entregado","hubiéramos entregado","hubierais entregado","hubieran entregado","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Deliver! Don't deliver!","","entrega","entregue","entreguemos","entregad","entreguen","entregando","delivering","entregado","delivered" +"entregar","to deliver, hand over","Imperativo Negativo","Imperative Negative","Presente","Present","Deliver! Don't deliver!","","no entregues","no entregue","no entreguemos","no entreguéis","no entreguen","entregando","delivering","entregado","delivered" +"entretener","to entertain, amuse","Indicativo","Indicative","Presente","Present","I entertain, am entertaining","entretengo","entretienes","entretiene","entretenemos","entretenéis","entretienen","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Futuro","Future","I will entertain","entretendré","entretendrás","entretendrá","entretendremos","entretendréis","entretendrán","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Imperfecto","Imperfect","I was entertaining, used to entertain, entertained","entretenía","entretenías","entretenía","entreteníamos","entreteníais","entretenían","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Pretérito","Preterite","I entertained","entretuve","entretuviste","entretuvo","entretuvimos","entretuvisteis","entretuvieron","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Condicional","Conditional","I would entertain","entretendría","entretendrías","entretendría","entretendríamos","entretendríais","entretendrían","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Presente perfecto","Present Perfect","I have entertained","he entretenido","has entretenido","ha entretenido","hemos entretenido","habéis entretenido","han entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have entertained","habré entretenido","habrás entretenido","habrá entretenido","habremos entretenido","habréis entretenido","habrán entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had entertained","había entretenido","habías entretenido","había entretenido","habíamos entretenido","habíais entretenido","habían entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had entertained","hube entretenido","hubiste entretenido","hubo entretenido","hubimos entretenido","hubisteis entretenido","hubieron entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have entertained","habría entretenido","habrías entretenido","habría entretenido","habríamos entretenido","habríais entretenido","habrían entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretengamos" +"entretener","to entertain, amuse","Subjuntivo","Subjunctive","Presente","Present","I entertain, am entertaining","entretenga","entretengas","entretenga","entretengamos","entretengáis","entretengan","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I entertained, was entertaining","entretuviera","entretuvieras","entretuviera","entretuviéramos","entretuvierais","entretuvieran","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Subjuntivo","Subjunctive","Futuro","Future","I will entertain","entretuviere","entretuvieres","entretuviere","entretuviéremos","entretuviereis","entretuvieren","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have entertained, entertained","haya entretenido","hayas entretenido","haya entretenido","hayamos entretenido","hayáis entretenido","hayan entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have entertained","hubiere entretenido","hubieres entretenido","hubiere entretenido","hubiéremos entretenido","hubiereis entretenido","hubieren entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had entertained","hubiera entretenido","hubieras entretenido","hubiera entretenido","hubiéramos entretenido","hubierais entretenido","hubieran entretenido","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Entertain! Don't entertain!","","entretén","entretenga","entretengamos","entretened","entretengan","entreteniendo","entertaining","entretenido","entertained" +"entretener","to entertain, amuse","Imperativo Negativo","Imperative Negative","Presente","Present","Entertain! Don't entertain!","","no entretengas","no entretenga","no entretengamos","no entretengáis","no entretengan","entreteniendo","entertaining","entretenido","entertained" +"entrevistar","to interview","Indicativo","Indicative","Presente","Present","I interview, am interviewing","entrevisto","entrevistas","entrevista","entrevistamos","entrevistáis","entrevistan","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Futuro","Future","I will interview","entrevistaré","entrevistarás","entrevistará","entrevistaremos","entrevistaréis","entrevistarán","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Imperfecto","Imperfect","I was interviewing, used to interview, interviewed","entrevistaba","entrevistabas","entrevistaba","entrevistábamos","entrevistabais","entrevistaban","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Pretérito","Preterite","I interviewed","entrevisté","entrevistaste","entrevistó","entrevistamos","entrevistasteis","entrevistaron","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Condicional","Conditional","I would interview","entrevistaría","entrevistarías","entrevistaría","entrevistaríamos","entrevistaríais","entrevistarían","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Presente perfecto","Present Perfect","I have interviewed","he entrevistado","has entrevistado","ha entrevistado","hemos entrevistado","habéis entrevistado","han entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have interviewed","habré entrevistado","habrás entrevistado","habrá entrevistado","habremos entrevistado","habréis entrevistado","habrán entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had interviewed","había entrevistado","habías entrevistado","había entrevistado","habíamos entrevistado","habíais entrevistado","habían entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had interviewed","hube entrevistado","hubiste entrevistado","hubo entrevistado","hubimos entrevistado","hubisteis entrevistado","hubieron entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have interviewed","habría entrevistado","habrías entrevistado","habría entrevistado","habríamos entrevistado","habríais entrevistado","habrían entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I interviewed, was interviewing","entrevistara","entrevistaras","entrevistara","entrevistáramos","entrevistarais","entrevistaran","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Subjuntivo","Subjunctive","Futuro","Future","I will interview","entrevistare","entrevistares","entrevistare","entrevistáremos","entrevistareis","entrevistaren","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have interviewed, interviewed","haya entrevistado","hayas entrevistado","haya entrevistado","hayamos entrevistado","hayáis entrevistado","hayan entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have interviewed","hubiere entrevistado","hubieres entrevistado","hubiere entrevistado","hubiéremos entrevistado","hubiereis entrevistado","hubieren entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had interviewed","hubiera entrevistado","hubieras entrevistado","hubiera entrevistado","hubiéramos entrevistado","hubierais entrevistado","hubieran entrevistado","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Interview! Don't interview!","","entrevista","entreviste","entretengamos","entrevistad","entrevisten","entrevistando","interviewing","entrevistado","interviewed" +"entrevistar","to interview","Imperativo Negativo","Imperative Negative","Presente","Present","Interview! Don't interview!","","no entrevistes","no entreviste","no entretengamos","no entrevistéis","no entrevisten","entrevistando","interviewing","entrevistado","interviewed" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Presente","Present","I excite, am exciting","entusiasmo","entusiasmas","entusiasma","entusiasmamos","entusiasmáis","entusiasman","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Futuro","Future","I will excite","entusiasmaré","entusiasmarás","entusiasmará","entusiasmaremos","entusiasmaréis","entusiasmarán","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Imperfecto","Imperfect","I was exciting, used to excite, excited","entusiasmaba","entusiasmabas","entusiasmaba","entusiasmábamos","entusiasmabais","entusiasmaban","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Pretérito","Preterite","I excited","entusiasmé","entusiasmaste","entusiasmó","entusiasmamos","entusiasmasteis","entusiasmaron","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Condicional","Conditional","I would excite","entusiasmaría","entusiasmarías","entusiasmaría","entusiasmaríamos","entusiasmaríais","entusiasmarían","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have excited","he entusiasmado","has entusiasmado","ha entusiasmado","hemos entusiasmado","habéis entusiasmado","han entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have excited","habré entusiasmado","habrás entusiasmado","habrá entusiasmado","habremos entusiasmado","habréis entusiasmado","habrán entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had excited","había entusiasmado","habías entusiasmado","había entusiasmado","habíamos entusiasmado","habíais entusiasmado","habían entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had excited","hube entusiasmado","hubiste entusiasmado","hubo entusiasmado","hubimos entusiasmado","hubisteis entusiasmado","hubieron entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have excited","habría entusiasmado","habrías entusiasmado","habría entusiasmado","habríamos entusiasmado","habríais entusiasmado","habrían entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmemos" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Subjuntivo","Subjunctive","Presente","Present","I excite, am exciting","entusiasme","entusiasmes","entusiasme","entusiasmemos","entusiasméis","entusiasmen","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I excited, was exciting","entusiasmara","entusiasmaras","entusiasmara","entusiasmáramos","entusiasmarais","entusiasmaran","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Subjuntivo","Subjunctive","Futuro","Future","I will excite","entusiasmare","entusiasmares","entusiasmare","entusiasmáremos","entusiasmareis","entusiasmaren","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have excited, excited","haya entusiasmado","hayas entusiasmado","haya entusiasmado","hayamos entusiasmado","hayáis entusiasmado","hayan entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have excited","hubiere entusiasmado","hubieres entusiasmado","hubiere entusiasmado","hubiéremos entusiasmado","hubiereis entusiasmado","hubieren entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had excited","hubiera entusiasmado","hubieras entusiasmado","hubiera entusiasmado","hubiéramos entusiasmado","hubierais entusiasmado","hubieran entusiasmado","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Excite! Don't excite!","","entusiasma","entusiasme","entusiasmemos","entusiasmad","entusiasmen","entusiasmando","exciting","entusiasmado","excited" +"entusiasmar","to excite; to fill with excitement [or enthusiasm]","Imperativo Negativo","Imperative Negative","Presente","Present","Excite! Don't excite!","","no entusiasmes","no entusiasme","no entusiasmemos","no entusiasméis","no entusiasmen","entusiasmando","exciting","entusiasmado","excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Presente","Present","I get excited, am getting excited","me entusiasmo","te entusiasmas","se entusiasma","nos entusiasmamos","os entusiasmáis","se entusiasman","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Futuro","Future","I will get excited","me entusiasmaré","te entusiasmarás","se entusiasmará","nos entusiasmaremos","os entusiasmaréis","se entusiasmarán","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Imperfecto","Imperfect","I was getting excited, used to get excited, got excited","me entusiasmaba","te entusiasmabas","se entusiasmaba","nos entusiasmábamos","os entusiasmabais","se entusiasmaban","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Pretérito","Preterite","I got excited","me entusiasmé","te entusiasmaste","se entusiasmó","nos entusiasmamos","os entusiasmasteis","se entusiasmaron","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Condicional","Conditional","I would get excited","me entusiasmaría","te entusiasmarías","se entusiasmaría","nos entusiasmaríamos","os entusiasmaríais","se entusiasmarían","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten excited","me he entusiasmado","te has entusiasmado","se ha entusiasmado","nos hemos entusiasmado","os habéis entusiasmado","se han entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten excited","me habré entusiasmado","te habrás entusiasmado","se habrá entusiasmado","nos habremos entusiasmado","os habréis entusiasmado","se habrán entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten excited","me había entusiasmado","te habías entusiasmado","se había entusiasmado","nos habíamos entusiasmado","os habíais entusiasmado","se habían entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten excited","me hube entusiasmado","te hubiste entusiasmado","se hubo entusiasmado","nos hubimos entusiasmado","os hubisteis entusiasmado","se hubieron entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten excited","me habría entusiasmado","te habrías entusiasmado","se habría entusiasmado","nos habríamos entusiasmado","os habríais entusiasmado","se habrían entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"nos entusiasmemos" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Subjuntivo","Subjunctive","Presente","Present","I get excited, am getting excited","me entusiasme","te entusiasmes","se entusiasme","nos entusiasmemos","os entusiasméis","se entusiasmen","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got excited, was getting excited","me entusiasmara","te entusiasmaras","se entusiasmara","nos entusiasmáramos","os entusiasmarais","se entusiasmaran","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Subjuntivo","Subjunctive","Futuro","Future","I will get excited","me entusiasmare","te entusiasmares","se entusiasmare","nos entusiasmáremos","os entusiasmareis","se entusiasmaren","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten excited, got excited","me haya entusiasmado","te hayas entusiasmado","se haya entusiasmado","nos hayamos entusiasmado","os hayáis entusiasmado","se hayan entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten excited","me hubiere entusiasmado","te hubieres entusiasmado","se hubiere entusiasmado","nos hubiéremos entusiasmado","os hubiereis entusiasmado","se hubieren entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"esconder","to hide, conceal","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hid, was hiding","escondiera","escondieras","escondiera","escondiéramos","escondierais","escondieran","escondiendo","hiding","escondido","hiddenk" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten excited","me hubiera entusiasmado","te hubieras entusiasmado","se hubiera entusiasmado","nos hubiéramos entusiasmado","os hubierais entusiasmado","se hubieran entusiasmado","entusiasmándose","getting excited","entusiasmado","got excited" +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get excited! Don't get excited!","","entusiásmate","entusiásmese","nos entusiasmemos","entusiasmaos","entusiásmense","entusiasmándose","getting excited","entusiasmado","got excited", +"entusiasmarse","to get excited, become excited [filled with excitement or enthusiasm]","Imperativo Negativo","Imperative Negative","Presente","Present","Get excited! Don't get excited!","","no te entusiasmes","no se entusiasme","no nos entusiasmemos","no os entusiasméis","no se entusiasmen","entusiasmándose","getting excited","entusiasmado","got excited", +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Presente","Present","I age, am aging","envejezco","envejeces","envejece","envejecemos","envejecéis","envejecen","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Futuro","Future","I will age","envejeceré","envejecerás","envejecerá","envejeceremos","envejeceréis","envejecerán","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Imperfecto","Imperfect","I was aging, used to age, aged","envejecía","envejecías","envejecía","envejecíamos","envejecíais","envejecían","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Pretérito","Preterite","I aged","envejecí","envejeciste","envejeció","envejecimos","envejecisteis","envejecieron","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Condicional","Conditional","I would age","envejecería","envejecerías","envejecería","envejeceríamos","envejeceríais","envejecerían","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Presente perfecto","Present Perfect","I have aged","he envejecido","has envejecido","ha envejecido","hemos envejecido","habéis envejecido","han envejecido","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have aged","habré envejecido","habrás envejecido","habrá envejecido","habremos envejecido","habréis envejecido","habrán envejecido","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had aged","había envejecido","habías envejecido","había envejecido","habíamos envejecido","habíais envejecido","habían envejecido","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had aged","hube envejecido","hubiste envejecido","hubo envejecido","hubimos envejecido","hubisteis envejecido","hubieron envejecido","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have aged","habría envejecido","habrías envejecido","habría envejecido","habríamos envejecido","habríais envejecido","habrían envejecido","envejeciendo","aging","envejecido","aged" +"envejezcamos" +"envejecer","to age, make old, grow old, get old","Subjuntivo","Subjunctive","Presente","Present","I age, am aging","envejezca","envejezcas","envejezca","envejezcamos","envejezcáis","envejezcan","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I aged, was aging","envejeciera","envejecieras","envejeciera","envejeciéramos","envejecierais","envejecieran","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Subjuntivo","Subjunctive","Futuro","Future","I will age","envejeciere","envejecieres","envejeciere","envejeciéremos","envejeciereis","envejecieren","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have aged, aged","haya envejecido","hayas envejecido","haya envejecido","hayamos envejecido","hayáis envejecido","hayan envejecido","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have aged","hubiere envejecido","hubieres envejecido","hubiere envejecido","hubiéremos envejecido","hubiereis envejecido","hubieren envejecido","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had aged","hubiera envejecido","hubieras envejecido","hubiera envejecido","hubiéramos envejecido","hubierais envejecido","hubieran envejecido","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Age! Don't age!","","envejece","envejezca","envejezcamos","envejeced","envejezcan","envejeciendo","aging","envejecido","aged" +"envejecer","to age, make old, grow old, get old","Imperativo Negativo","Imperative Negative","Presente","Present","Age! Don't age!","","no envejezcas","no envejezca","no envejezcamos","no envejezcáis","no envejezcan","envejeciendo","aging","envejecido","aged" +"envejecerse","to get old, age","Indicativo","Indicative","Presente","Present","I get old, am getting old","me envejezco","te envejeces","se envejece","nos envejecemos","os envejecéis","se envejecen","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Futuro","Future","I will get old","me envejeceré","te envejecerás","se envejecerá","nos envejeceremos","os envejeceréis","se envejecerán","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Imperfecto","Imperfect","I was getting old, used to get old, got old","me envejecía","te envejecías","se envejecía","nos envejecíamos","os envejecíais","se envejecían","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Pretérito","Preterite","I got old","me envejecí","te envejeciste","se envejeció","nos envejecimos","os envejecisteis","se envejecieron","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Condicional","Conditional","I would get old","me envejecería","te envejecerías","se envejecería","nos envejeceríamos","os envejeceríais","se envejecerían","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten old","me he envejecido","te has envejecido","se ha envejecido","nos hemos envejecido","os habéis envejecido","se han envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten old","me habré envejecido","te habrás envejecido","se habrá envejecido","nos habremos envejecido","os habréis envejecido","se habrán envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten old","me había envejecido","te habías envejecido","se había envejecido","nos habíamos envejecido","os habíais envejecido","se habían envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten old","me hube envejecido","te hubiste envejecido","se hubo envejecido","nos hubimos envejecido","os hubisteis envejecido","se hubieron envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten old","me habría envejecido","te habrías envejecido","se habría envejecido","nos habríamos envejecido","os habríais envejecido","se habrían envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"nos envejezcamos" +"envejecerse","to get old, age","Subjuntivo","Subjunctive","Presente","Present","I get old, am getting old","me envejezca","te envejezcas","se envejezca","nos envejezcamos","os envejezcáis","se envejezcan","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got old, was getting old","me envejeciera","te envejecieras","se envejeciera","nos envejeciéramos","os envejecierais","se envejecieran","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Subjuntivo","Subjunctive","Futuro","Future","I will get old","me envejeciere","te envejecieres","se envejeciere","nos envejeciéremos","os envejeciereis","se envejecieren","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten old, gotten old","me haya envejecido","te hayas envejecido","se haya envejecido","nos hayamos envejecido","os hayáis envejecido","se hayan envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten old","me hubiere envejecido","te hubieres envejecido","se hubiere envejecido","nos hubiéremos envejecido","os hubiereis envejecido","se hubieren envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten old","me hubiera envejecido","te hubieras envejecido","se hubiera envejecido","nos hubiéramos envejecido","os hubierais envejecido","se hubieran envejecido","envejeciéndose","getting old","envejecido","old, gotten old" +"envejecerse","to get old, age","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get old! Don't get old!","","envejécete","envejézcase","nos envejezcamos","envejeceos","envejézcanse","envejeciéndose","getting old","envejecido","old, gotten old", +"envejecerse","to get old, age","Imperativo Negativo","Imperative Negative","Presente","Present","Get old! Don't get old!","","no te envejezcas","no se envejezca","no nos envejezcamos","no os envejezcáis","no se envejezcan","envejeciéndose","getting old","envejecido","old, gotten old", +"enviar","to send","Indicativo","Indicative","Presente","Present","I send, am sending","envío","envías","envía","enviamos","enviáis","envían","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Futuro","Future","I will send","enviaré","enviarás","enviará","enviaremos","enviaréis","enviarán","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Imperfecto","Imperfect","I was sending, used to send, sent","enviaba","enviabas","enviaba","enviábamos","enviabais","enviaban","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Pretérito","Preterite","I sent","envié","enviaste","envió","enviamos","enviasteis","enviaron","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Condicional","Conditional","I would send","enviaría","enviarías","enviaría","enviaríamos","enviaríais","enviarían","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sent","he enviado","has enviado","ha enviado","hemos enviado","habéis enviado","han enviado","enviando","sending","enviado","sent" +"gritar","to shout, yell, scream, cry out","Subjuntivo","Subjunctive","Futuro","Future","I will shout","gritare","gritares","gritare","gritáremos","gritareis","gritaren","gritando","shouting","gritado","shouted" +"enviar","to send","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sent","habré enviado","habrás enviado","habrá enviado","habremos enviado","habréis enviado","habrán enviado","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sent","había enviado","habías enviado","había enviado","habíamos enviado","habíais enviado","habían enviado","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sent","hube enviado","hubiste enviado","hubo enviado","hubimos enviado","hubisteis enviado","hubieron enviado","enviando","sending","enviado","sent" +"enviar","to send","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sent","habría enviado","habrías enviado","habría enviado","habríamos enviado","habríais enviado","habrían enviado","enviando","sending","enviado","sent" +"enviemos" +"enviar","to send","Subjuntivo","Subjunctive","Presente","Present","I send, am sending","envíe","envíes","envíe","enviemos","enviéis","envíen","enviando","sending","enviado","sent" +"enviar","to send","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I sent, was sending","enviara","enviaras","enviara","enviáramos","enviarais","enviaran","enviando","sending","enviado","sent" +"enviar","to send","Subjuntivo","Subjunctive","Futuro","Future","I will send","enviare","enviares","enviare","enviáremos","enviareis","enviaren","enviando","sending","enviado","sent" +"enviar","to send","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sent, sent","haya enviado","hayas enviado","haya enviado","hayamos enviado","hayáis enviado","hayan enviado","enviando","sending","enviado","sent" +"enviar","to send","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sent","hubiere enviado","hubieres enviado","hubiere enviado","hubiéremos enviado","hubiereis enviado","hubieren enviado","enviando","sending","enviado","sent" +"enviar","to send","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sent","hubiera enviado","hubieras enviado","hubiera enviado","hubiéramos enviado","hubierais enviado","hubieran enviado","enviando","sending","enviado","sent" +"enviar","to send","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Send! Don't send!","","envía","envíe","enviemos","enviad","envíen","enviando","sending","enviado","sent" +"enviar","to send","Imperativo Negativo","Imperative Negative","Presente","Present","Send! Don't send!","","no envíes","no envíe","no enviemos","no enviéis","no envíen","enviando","sending","enviado","sent" +"equivocar","to mistake","Indicativo","Indicative","Presente","Present","I mistake, am mistaking","equivoco","equivocas","equivoca","equivocamos","equivocáis","equivocan","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Futuro","Future","I will mistake","equivocaré","equivocarás","equivocará","equivocaremos","equivocaréis","equivocarán","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Imperfecto","Imperfect","I was mistaking, used to mistake, mistook","equivocaba","equivocabas","equivocaba","equivocábamos","equivocabais","equivocaban","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Pretérito","Preterite","I mistook","equivoqué","equivocaste","equivocó","equivocamos","equivocasteis","equivocaron","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Condicional","Conditional","I would mistake","equivocaría","equivocarías","equivocaría","equivocaríamos","equivocaríais","equivocarían","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Presente perfecto","Present Perfect","I have mistaken","he equivocado","has equivocado","ha equivocado","hemos equivocado","habéis equivocado","han equivocado","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have mistaken","habré equivocado","habrás equivocado","habrá equivocado","habremos equivocado","habréis equivocado","habrán equivocado","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had mistaken","había equivocado","habías equivocado","había equivocado","habíamos equivocado","habíais equivocado","habían equivocado","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had mistaken","hube equivocado","hubiste equivocado","hubo equivocado","hubimos equivocado","hubisteis equivocado","hubieron equivocado","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have mistaken","habría equivocado","habrías equivocado","habría equivocado","habríamos equivocado","habríais equivocado","habrían equivocado","equivocando","mistaking","equivocado","mistaken" +"equivoquemos" +"equivocar","to mistake","Subjuntivo","Subjunctive","Presente","Present","I mistake, am mistaking","equivoque","equivoques","equivoque","equivoquemos","equivoquéis","equivoquen","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I mistook, was mistaking","equivocara","equivocaras","equivocara","equivocáramos","equivocarais","equivocaran","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Subjuntivo","Subjunctive","Futuro","Future","I will mistake","equivocare","equivocares","equivocare","equivocáremos","equivocareis","equivocaren","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have mistaken, mistook","haya equivocado","hayas equivocado","haya equivocado","hayamos equivocado","hayáis equivocado","hayan equivocado","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have mistaken","hubiere equivocado","hubieres equivocado","hubiere equivocado","hubiéremos equivocado","hubiereis equivocado","hubieren equivocado","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had mistaken","hubiera equivocado","hubieras equivocado","hubiera equivocado","hubiéramos equivocado","hubierais equivocado","hubieran equivocado","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Mistake! Don't mistake!","","equivoca","equivoque","equivoquemos","equivocad","equivoquen","equivocando","mistaking","equivocado","mistaken" +"equivocar","to mistake","Imperativo Negativo","Imperative Negative","Presente","Present","Mistake! Don't mistake!","","no equivoques","no equivoque","no equivoquemos","no equivoquéis","no equivoquen","equivocando","mistaking","equivocado","mistaken" +"equivocarse","to make a mistake","Indicativo","Indicative","Presente","Present","I make a mistake, am making a mistake","me equivoco","te equivocas","se equivoca","nos equivocamos","os equivocáis","se equivocan","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Futuro","Future","I will make a mistake","me equivocaré","te equivocarás","se equivocará","nos equivocaremos","os equivocaréis","se equivocarán","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Imperfecto","Imperfect","I was making a mistake, used to make a mistake, made a mistake","me equivocaba","te equivocabas","se equivocaba","nos equivocábamos","os equivocabais","se equivocaban","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Pretérito","Preterite","I made a mistake","me equivoqué","te equivocaste","se equivocó","nos equivocamos","equivocasteis","se equivocaron","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Condicional","Conditional","I would make a mistake","me equivocaría","te equivocarías","se equivocaría","nos equivocaríamos","os equivocaríais","se equivocarían","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Presente perfecto","Present Perfect","I have made a mistake","me he equivocado","te has equivocado","se ha equivocado","nos hemos equivocado","os habéis equivocado","se han equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have made a mistake","me habré equivocado","te habrás equivocado","se habrá equivocado","nos habremos equivocado","os habréis equivocado","se habrán equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had made a mistake","me había equivocado","te habías equivocado","se había equivocado","nos habíamos equivocado","os habíais equivocado","se habían equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had made a mistake","me hube equivocado","te hubiste equivocado","se hubo equivocado","nos hubimos equivocado","os hubisteis equivocado","se hubieron equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have made a mistake","me habría equivocado","te habrías equivocado","se habría equivocado","nos habríamos equivocado","os habríais equivocado","se habrían equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"nos equivoquemos" +"equivocarse","to make a mistake","Subjuntivo","Subjunctive","Presente","Present","I make a mistake, am making a mistake","me equivoque","te equivoques","se equivoque","nos equivoquemos","os equivoquéis","se equivoquen","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I made a mistake, was making a mistake","me equivocara","te equivocaras","se equivocara","nos equivocáramos","os equivocarais","se equivocaran","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Subjuntivo","Subjunctive","Futuro","Future","I will make a mistake","me equivocare","te equivocares","se equivocare","nos equivocáremos","os equivocareis","se equivocaren","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have made a mistake, made a mistake","me haya equivocado","te hayas equivocado","se haya equivocado","nos hayamos equivocado","os hayáis equivocado","se hayan equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"esconder","to hide, conceal","Subjuntivo","Subjunctive","Futuro","Future","I will hide","escondiere","escondieres","escondiere","escondiéremos","escondiereis","escondieren","escondiendo","hiding","escondido","hiddenk" +"equivocarse","to make a mistake","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have made a mistake","me hubiere equivocado","te hubieres equivocado","se hubiere equivocado","nos hubiéremos equivocado","os hubiereis equivocado","se hubieren equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had made a mistake","me hubiera equivocado","te hubieras equivocado","se hubiera equivocado","nos hubiéramos equivocado","os hubierais equivocado","se hubieran equivocado","equivocándose","making a mistake","equivocado","made a mistake" +"equivocarse","to make a mistake","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Make a mistake! Don't make a mistake!","","equivócate","equivóquese","nos equivoquemos","equivocaos","equivóquense","equivocándose","making a mistake","equivocado","made a mistake", +"equivocarse","to make a mistake","Imperativo Negativo","Imperative Negative","Presente","Present","Make a mistake! Don't make a mistake!","","no te equivoques","no se equivoque","no nos equivoquemos","no os equivoquéis","no se equivoquen","equivocándose","making a mistake","equivocado","made a mistake", +"errar","to err, make an error","Indicativo","Indicative","Presente","Present","I err, am erring","yerro","yerras","yerra","erramos","erráis","yerran","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Futuro","Future","I will err","erraré","errarás","errará","erraremos","erraréis","errarán","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Imperfecto","Imperfect","I was erring, used to err, erred","erraba","errabas","erraba","errábamos","errabais","erraban","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Pretérito","Preterite","I erred","erré","erraste","erró","erramos","errasteis","erraron","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Condicional","Conditional","I would err","erraría","errarías","erraría","erraríamos","erraríais","errarían","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Presente perfecto","Present Perfect","I have erred","he errado","has errado","ha errado","hemos errado","habéis errado","han errado","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have erred","habré errado","habrás errado","habrá errado","habremos errado","habréis errado","habrán errado","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had erred","había errado","habías errado","había errado","habíamos errado","habíais errado","habían errado","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had erred","hube errado","hubiste errado","hubo errado","hubimos errado","hubisteis errado","hubieron errado","errando","erring","errado","erred" +"errar","to err, make an error","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have erred","habría errado","habrías errado","habría errado","habríamos errado","habríais errado","habrían errado","errando","erring","errado","erred" +"erremos" +"errar","to err, make an error","Subjuntivo","Subjunctive","Presente","Present","I err, am erring","yerre","yerres","yerre","erremos","erréis","yerren","errando","erring","errado","erred" +"errar","to err, make an error","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I erred, was erring","errara","erraras","errara","erráramos","errarais","erraran","errando","erring","errado","erred" +"errar","to err, make an error","Subjuntivo","Subjunctive","Futuro","Future","I will err","errare","errares","errare","erráremos","errareis","erraren","errando","erring","errado","erred" +"errar","to err, make an error","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have erred, erred","haya errado","hayas errado","haya errado","hayamos errado","hayáis errado","hayan errado","errando","erring","errado","erred" +"errar","to err, make an error","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have erred","hubiere errado","hubieres errado","hubiere errado","hubiéremos errado","hubiereis errado","hubieren errado","errando","erring","errado","erred" +"errar","to err, make an error","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had erred","hubiera errado","hubieras errado","hubiera errado","hubiéramos errado","hubierais errado","hubieran errado","errando","erring","errado","erred" +"errar","to err, make an error","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Err! Don't err!","","yerra","yerre","erremos","errad","yerren","errando","erring","errado","erred" +"errar","to err, make an error","Imperativo Negativo","Imperative Negative","Presente","Present","Err! Don't err!","","no yerres","no yerre","no erremos","no erréis","no yerren","errando","erring","errado","erred" +"escoger","to choose, select, pick","Indicativo","Indicative","Presente","Present","I choose, am choosing","escojo","escoges","escoge","escogemos","escogéis","escogen","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Futuro","Future","I will choose","escogeré","escogerás","escogerá","escogeremos","escogeréis","escogerán","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Imperfecto","Imperfect","I was choosing, used to choose, chose","escogía","escogías","escogía","escogíamos","escogíais","escogían","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Pretérito","Preterite","I chose","escogí","escogiste","escogió","escogimos","escogisteis","escogieron","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Condicional","Conditional","I would choose","escogería","escogerías","escogería","escogeríamos","escogeríais","escogerían","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Presente perfecto","Present Perfect","I have chosen","he escogido","has escogido","ha escogido","hemos escogido","habéis escogido","han escogido","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have chosen","habré escogido","habrás escogido","habrá escogido","habremos escogido","habréis escogido","habrán escogido","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had chosen","había escogido","habías escogido","había escogido","habíamos escogido","habíais escogido","habían escogido","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had chosen","hube escogido","hubiste escogido","hubo escogido","hubimos escogido","hubisteis escogido","hubieron escogido","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have chosen","habría escogido","habrías escogido","habría escogido","habríamos escogido","habríais escogido","habrían escogido","escogiendo","choosing","escogido","chosen" +"escojamos" +"escoger","to choose, select, pick","Subjuntivo","Subjunctive","Presente","Present","I choose, am choosing","escoja","escojas","escoja","escojamos","escojáis","escojan","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I chose, was choosing","escogiera","escogieras","escogiera","escogiéramos","escogierais","escogieran","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Subjuntivo","Subjunctive","Futuro","Future","I will choose","escogiere","escogieres","escogiere","escogiéremos","escogiereis","escogieren","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have chosen, chose","haya escogido","hayas escogido","haya escogido","hayamos escogido","hayáis escogido","hayan escogido","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have chosen","hubiere escogido","hubieres escogido","hubiere escogido","hubiéremos escogido","hubiereis escogido","hubieren escogido","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had chosen","hubiera escogido","hubieras escogido","hubiera escogido","hubiéramos escogido","hubierais escogido","hubieran escogido","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Choose! Don't choose!","","escoge","escoja","escojamos","escoged","escojan","escogiendo","choosing","escogido","chosen" +"escoger","to choose, select, pick","Imperativo Negativo","Imperative Negative","Presente","Present","Choose! Don't choose!","","no escojas","no escoja","no escojamos","no escojáis","no escojan","escogiendo","choosing","escogido","chosen" +"esconder","to hide, conceal","Indicativo","Indicative","Presente","Present","I hide, am hiding","escondo","escondes","esconde","escondemos","escondéis","esconden","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Futuro","Future","I will hide","esconderé","esconderás","esconderá","esconderemos","esconderéis","esconderán","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Imperfecto","Imperfect","I was hiding, used to hide, hid","escondía","escondías","escondía","escondíamos","escondíais","escondían","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Pretérito","Preterite","I hid","escondí","escondiste","escondió","escondimos","escondisteis","escondieron","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Condicional","Conditional","I would hide","escondería","esconderías","escondería","esconderíamos","esconderíais","esconderían","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hidden","he escondido","has escondido","ha escondido","hemos escondido","habéis escondido","han escondido","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hidden","habré escondido","habrás escondido","habrá escondido","habremos escondido","habréis escondido","habrán escondido","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hidden","había escondido","habías escondido","había escondido","habíamos escondido","habíais escondido","habían escondido","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hidden","hube escondido","hubiste escondido","hubo escondido","hubimos escondido","hubisteis escondido","hubieron escondido","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hidden","habría escondido","habrías escondido","habría escondido","habríamos escondido","habríais escondido","habrían escondido","escondiendo","hiding","escondido","hiddenk" +"escondamos" +"esconder","to hide, conceal","Subjuntivo","Subjunctive","Presente","Present","I hide, am hiding","esconda","escondas","esconda","escondamos","escondáis","escondan","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hidden, hid","haya escondido","hayas escondido","haya escondido","hayamos escondido","hayáis escondido","hayan escondido","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hidden","hubiere escondido","hubieres escondido","hubiere escondido","hubiéremos escondido","hubiereis escondido","hubieren escondido","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hidden","hubiera escondido","hubieras escondido","hubiera escondido","hubiéramos escondido","hubierais escondido","hubieran escondido","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hide! Don't hide!","","esconde","esconda","escondamos","esconded","escondan","escondiendo","hiding","escondido","hiddenk" +"esconder","to hide, conceal","Imperativo Negativo","Imperative Negative","Presente","Present","Hide! Don't hide!","","no escondas","no esconda","no escondamos","no escondáis","no escondan","escondiendo","hiding","escondido","hiddenk" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Presente","Present","I hide, am hiding","me escondo","te escondes","se esconde","nos escondemos","os escondéis","se esconden","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Futuro","Future","I will hide","me esconderé","te esconderás","se esconderá","nos esconderemos","os esconderéis","se esconderán","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Imperfecto","Imperfect","I was hiding, used to hide, hid","me escondía","te escondías","se escondía","nos escondíamos","os escondíais","se escondían","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Pretérito","Preterite","I hid","me escondí","te escondiste","se escondió","nos escondimos","os escondisteis","se escondieron","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Condicional","Conditional","I would hide","me escondería","te esconderías","se escondería","nos esconderíamos","os esconderíais","se esconderían","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hidden","me he escondido","te has escondido","se ha escondido","nos hemos escondido","os habéis escondido","se han escondido","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hidden","me habré escondido","te habrás escondido","se habrá escondido","nos habremos escondido","os habréis escondido","se habrán escondido","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hidden","me había escondido","te habías escondido","se había escondido","nos habíamos escondido","os habíais escondido","se habían escondido","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hidden","me hube escondido","te hubiste escondido","se hubo escondido","nos hubimos escondido","os hubisteis escondido","se hubieron escondido","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hidden","me habría escondido","te habrías escondido","se habría escondido","nos habríamos escondido","os habríais escondido","se habrían escondido","escondiéndose","hiding","escondido","fun, hid" +"nos escondamos" +"esconderse","to hide [oneself], be hidden","Subjuntivo","Subjunctive","Presente","Present","I hide, am hiding","me esconda","te escondas","se esconda","nos escondamos","os escondáis","se escondan","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hid, was hiding","me escondiera","te escondieras","se escondiera","nos escondiéramos","os escondierais","se escondieran","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Subjuntivo","Subjunctive","Futuro","Future","I will hide","me escondiere","te escondieres","se escondiere","nos escondiéremos","os escondiereis","se escondieren","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hidden, hid","me haya escondido","te hayas escondido","se haya escondido","nos hayamos escondido","os hayáis escondido","se hayan escondido","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hidden","me hubiere escondido","te hubieres escondido","se hubiere escondido","nos hubiéremos escondido","os hubiereis escondido","se hubieren escondido","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hidden","me hubiera escondido","te hubieras escondido","se hubiera escondido","nos hubiéramos escondido","os hubierais escondido","se hubieran escondido","escondiéndose","hiding","escondido","fun, hid" +"esconderse","to hide [oneself], be hidden","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hide! Don't hide!","","escóndete","escóndase","nos escondamos","escondeos","escóndanse","escondiéndose","hiding","escondido","fun, hid", +"esconderse","to hide [oneself], be hidden","Imperativo Negativo","Imperative Negative","Presente","Present","Hide! Don't hide!","","no te escondas","no se esconda","no nos escondamos","no os escondáis","no se escondan","escondiéndose","hiding","escondido","fun, hid", +"escribir","to write","Indicativo","Indicative","Presente","Present","I write, am writing","escribo","escribes","escribe","escribimos","escribís","escriben","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Futuro","Future","I will write","escribiré","escribirás","escribirá","escribiremos","escribiréis","escribirán","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Imperfecto","Imperfect","I was writing, used to write, wrote","escribía","escribías","escribía","escribíamos","escribíais","escribían","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Pretérito","Preterite","I wrote","escribí","escribiste","escribió","escribimos","escribisteis","escribieron","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Condicional","Conditional","I would write","escribiría","escribirías","escribiría","escribiríamos","escribiríais","escribirían","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Presente perfecto","Present Perfect","I have written","he escrito","has escrito","ha escrito","hemos escrito","habéis escrito","han escrito","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have written","habré escrito","habrás escrito","habrá escrito","habremos escrito","habréis escrito","habrán escrito","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had written","había escrito","habías escrito","había escrito","habíamos escrito","habíais escrito","habían escrito","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had written","hube escrito","hubiste escrito","hubo escrito","hubimos escrito","hubisteis escrito","hubieron escrito","escribiendo","writing","escrito","written" +"escribir","to write","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have written","habría escrito","habrías escrito","habría escrito","habríamos escrito","habríais escrito","habrían escrito","escribiendo","writing","escrito","written" +"escribamos" +"escribir","to write","Subjuntivo","Subjunctive","Presente","Present","I write, am writing","escriba","escribas","escriba","escribamos","escribáis","escriban","escribiendo","writing","escrito","written" +"escribir","to write","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I wrote, was writing","escribiera","escribieras","escribiera","escribiéramos","escribierais","escribieran","escribiendo","writing","escrito","written" +"escribir","to write","Subjuntivo","Subjunctive","Futuro","Future","I will write","escribiere","escribieres","escribiere","escribiéremos","escribiereis","escribieren","escribiendo","writing","escrito","written" +"escribir","to write","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have written, wrote","haya escrito","hayas escrito","haya escrito","hayamos escrito","hayáis escrito","hayan escrito","escribiendo","writing","escrito","written" +"escribir","to write","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have written","hubiere escrito","hubieres escrito","hubiere escrito","hubiéremos escrito","hubiereis escrito","hubieren escrito","escribiendo","writing","escrito","written" +"escribir","to write","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had written","hubiera escrito","hubieras escrito","hubiera escrito","hubiéramos escrito","hubierais escrito","hubieran escrito","escribiendo","writing","escrito","written" +"escribir","to write","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Write! Don't write!","","escribe","escriba","escribamos","escribid","escriban","escribiendo","writing","escrito","written" +"escribir","to write","Imperativo Negativo","Imperative Negative","Presente","Present","Write! Don't write!","","no escribas","no escriba","no escribamos","no escribáis","no escriban","escribiendo","writing","escrito","written" +"escuchar","to listen to, hear","Indicativo","Indicative","Presente","Present","I listen to, am listening to","escucho","escuchas","escucha","escuchamos","escucháis","escuchan","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Futuro","Future","I will listen to","escucharé","escucharás","escuchará","escucharemos","escucharéis","escucharán","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Imperfecto","Imperfect","I was listening to, used to listen to, listened to","escuchaba","escuchabas","escuchaba","escuchábamos","escuchabais","escuchaban","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Pretérito","Preterite","I listened to","escuché","escuchaste","escuchó","escuchamos","escuchasteis","escucharon","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Condicional","Conditional","I would listen to","escucharía","escucharías","escucharía","escucharíamos","escucharíais","escucharían","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have listened to","he escuchado","has escuchado","ha escuchado","hemos escuchado","habéis escuchado","han escuchado","escuchando","listening to","escuchado","listened to" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Presente","Present","I fix, am fixing","fijo","fijas","fija","fijamos","fijáis","fijan","fijando","fixing","fijado","fixed" +"escuchar","to listen to, hear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have listened to","habré escuchado","habrás escuchado","habrá escuchado","habremos escuchado","habréis escuchado","habrán escuchado","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had listened to","había escuchado","habías escuchado","había escuchado","habíamos escuchado","habíais escuchado","habían escuchado","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had listened to","hube escuchado","hubiste escuchado","hubo escuchado","hubimos escuchado","hubisteis escuchado","hubieron escuchado","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have listened to","habría escuchado","habrías escuchado","habría escuchado","habríamos escuchado","habríais escuchado","habrían escuchado","escuchando","listening to","escuchado","listened to" +"escuchemos" +"escuchar","to listen to, hear","Subjuntivo","Subjunctive","Presente","Present","I listen to, am listening to","escuche","escuches","escuche","escuchemos","escuchéis","escuchen","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I listened to, was listening to","escuchara","escucharas","escuchara","escucháramos","escucharais","escucharan","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Subjuntivo","Subjunctive","Futuro","Future","I will listen to","escuchare","escuchares","escuchare","escucháremos","escuchareis","escucharen","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have listened to, listened to","haya escuchado","hayas escuchado","haya escuchado","hayamos escuchado","hayáis escuchado","hayan escuchado","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have listened to","hubiere escuchado","hubieres escuchado","hubiere escuchado","hubiéremos escuchado","hubiereis escuchado","hubieren escuchado","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had listened to","hubiera escuchado","hubieras escuchado","hubiera escuchado","hubiéramos escuchado","hubierais escuchado","hubieran escuchado","escuchando","listening to","escuchado","listened to" +"escuchar","to listen to, hear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Listen to! Don't listen to!","","escucha","escuche","escuchemos","escuchad","escuchen","escuchando","listening to","escuchado","listened to", +"escuchar","to listen to, hear","Imperativo Negativo","Imperative Negative","Presente","Present","Listen to! Don't listen to!","","no escuches","no escuche","no escuchemos","no escuchéis","no escuchen","escuchando","listening to","escuchado","listened to", +"esquiar","to ski","Indicativo","Indicative","Presente","Present","I ski, am skiing","esquío","esquías","esquía","esquiamos","esquiáis","esquían","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Futuro","Future","I will ski","esquiaré","esquiarás","esquiará","esquiaremos","esquiaréis","esquiarán","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Imperfecto","Imperfect","I was skiing, used to ski, skied","esquiaba","esquiabas","esquiaba","esquiábamos","esquiabais","esquiaban","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Pretérito","Preterite","I skied","esquié","esquiaste","esquió","esquiamos","esquiasteis","esquiaron","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Condicional","Conditional","I would ski","esquiaría","esquiarías","esquiaría","esquiaríamos","esquiaríais","esquiarían","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Presente perfecto","Present Perfect","I have skied","he esquiado","has esquiado","ha esquiado","hemos esquiado","habéis esquiado","han esquiado","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have skied","habré esquiado","habrás esquiado","habrá esquiado","habremos esquiado","habréis esquiado","habrán esquiado","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had skied","había esquiado","habías esquiado","había esquiado","habíamos esquiado","habíais esquiado","habían esquiado","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had skied","hube esquiado","hubiste esquiado","hubo esquiado","hubimos esquiado","hubisteis esquiado","hubieron esquiado","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have skied","habría esquiado","habrías esquiado","habría esquiado","habríamos esquiado","habríais esquiado","habrían esquiado","esquiando","skiing","esquiado","skied" +"esquiemos" +"esquiar","to ski","Subjuntivo","Subjunctive","Presente","Present","I ski, am skiing","esquíe","esquíes","esquíe","esquiemos","esquiéis","esquíen","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I skied, was skiing","esquiara","esquiaras","esquiara","esquiáramos","esquiarais","esquiaran","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Subjuntivo","Subjunctive","Futuro","Future","I will ski","esquiare","esquiares","esquiare","esquiáremos","esquiareis","esquiaren","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have skied, skied","haya esquiado","hayas esquiado","haya esquiado","hayamos esquiado","hayáis esquiado","hayan esquiado","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have skied","hubiere esquiado","hubieres esquiado","hubiere esquiado","hubiéremos esquiado","hubiereis esquiado","hubieren esquiado","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had skied","hubiera esquiado","hubieras esquiado","hubiera esquiado","hubiéramos esquiado","hubierais esquiado","hubieran esquiado","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Ski! Don't ski!","","esquía","esquíe","esquiemos","esquiad","esquíen","esquiando","skiing","esquiado","skied" +"esquiar","to ski","Imperativo Negativo","Imperative Negative","Presente","Present","Ski! Don't ski!","","no esquíes","no esquíe","no esquiemos","no esquiéis","no esquíen","esquiando","skiing","esquiado","skied" +"establecer","to establish","Indicativo","Indicative","Presente","Present","I establish, am establishing","establezco","estableces","establece","establecemos","establecéis","establecen","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Futuro","Future","I will establish","estableceré","establecerás","establecerá","estableceremos","estableceréis","establecerán","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Imperfecto","Imperfect","I was establishing, used to establish, established","establecía","establecías","establecía","establecíamos","establecíais","establecían","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Pretérito","Preterite","I established","establecí","estableciste","estableció","establecimos","establecisteis","establecieron","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Condicional","Conditional","I would establish","establecería","establecerías","establecería","estableceríamos","estableceríais","establecerían","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Presente perfecto","Present Perfect","I have established","he establecido","has establecido","ha establecido","hemos establecido","habéis establecido","han establecido","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have established","habré establecido","habrás establecido","habrá establecido","habremos establecido","habréis establecido","habrán establecido","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had established","había establecido","habías establecido","había establecido","habíamos establecido","habíais establecido","habían establecido","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had established","hube establecido","hubiste establecido","hubo establecido","hubimos establecido","hubisteis establecido","hubieron establecido","estableciendo","establishing","establecido","established" +"establecer","to establish","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have established","habría establecido","habrías establecido","habría establecido","habríamos establecido","habríais establecido","habrían establecido","estableciendo","establishing","establecido","established" +"establezcamos" +"establecer","to establish","Subjuntivo","Subjunctive","Presente","Present","I establish, am establishing","establezca","establezcas","establezca","establezcamos","establezcáis","establezcan","estableciendo","establishing","establecido","established" +"establecer","to establish","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I established, was establishing","estableciera","establecieras","estableciera","estableciéramos","establecierais","establecieran","estableciendo","establishing","establecido","established" +"establecer","to establish","Subjuntivo","Subjunctive","Futuro","Future","I will establish","estableciere","establecieres","estableciere","estableciéremos","estableciereis","establecieren","estableciendo","establishing","establecido","established" +"establecer","to establish","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have established, established","haya establecido","hayas establecido","haya establecido","hayamos establecido","hayáis establecido","hayan establecido","estableciendo","establishing","establecido","established" +"establecer","to establish","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have established","hubiere establecido","hubieres establecido","hubiere establecido","hubiéremos establecido","hubiereis establecido","hubieren establecido","estableciendo","establishing","establecido","established" +"establecer","to establish","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had established","hubiera establecido","hubieras establecido","hubiera establecido","hubiéramos establecido","hubierais establecido","hubieran establecido","estableciendo","establishing","establecido","established" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Futuro","Future","I will fix","fijaré","fijarás","fijará","fijaremos","fijaréis","fijarán","fijando","fixing","fijado","fixed" +"establecer","to establish","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Establish! Don't establish!","","establece","establezca","establezcamos","estableced","establezcan","estableciendo","establishing","establecido","established" +"establecer","to establish","Imperativo Negativo","Imperative Negative","Presente","Present","Establish! Don't establish!","","no establezcas","no establezca","no establezcamos","no establezcáis","no establezcan","estableciendo","establishing","establecido","established" +"estar","to be","Indicativo","Indicative","Presente","Present","I am","estoy","estás","está","estamos","estáis","están","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Futuro","Future","I will be","estaré","estarás","estará","estaremos","estaréis","estarán","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Imperfecto","Imperfect","I was, used to be","estaba","estabas","estaba","estábamos","estabais","estaban","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Pretérito","Preterite","I was","estuve","estuviste","estuvo","estuvimos","estuvisteis","estuvieron","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Condicional","Conditional","I would be","estaría","estarías","estaría","estaríamos","estaríais","estarían","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been","he estado","has estado","ha estado","hemos estado","habéis estado","han estado","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been","habré estado","habrás estado","habrá estado","habremos estado","habréis estado","habrán estado","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been","había estado","habías estado","había estado","habíamos estado","habíais estado","habían estado","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been","hube estado","hubiste estado","hubo estado","hubimos estado","hubisteis estado","hubieron estado","estando","being","estado","been" +"estar","to be","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been","habría estado","habrías estado","habría estado","habríamos estado","habríais estado","habrían estado","estando","being","estado","been" +"estemos" +"estar","to be","Subjuntivo","Subjunctive","Presente","Present","I am","esté","estés","esté","estemos","estéis","estén","estando","being","estado","been" +"estar","to be","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was, were","estuviera","estuvieras","estuviera","estuviéramos","estuvierais","estuvieran","estando","being","estado","been" +"estar","to be","Subjuntivo","Subjunctive","Futuro","Future","I will be","estuviere","estuvieres","estuviere","estuviéremos","estuviereis","estuvieren","estando","being","estado","been" +"estar","to be","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been, was","haya estado","hayas estado","haya estado","hayamos estado","hayáis estado","hayan estado","estando","being","estado","been" +"estar","to be","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been","hubiere estado","hubieres estado","hubiere estado","hubiéremos estado","hubiereis estado","hubieren estado","estando","being","estado","been" +"estar","to be","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been","hubiera estado","hubieras estado","hubiera estado","hubiéramos estado","hubierais estado","hubieran estado","estando","being","estado","been" +"estar","to be","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be! Don't be!","","está","esté","estemos","estad","estén","estando","being","estado","been" +"estar","to be","Imperativo Negativo","Imperative Negative","Presente","Present","Be! Don't be!","","no estés","no esté","no estemos","no estéis","no estén","estando","being","estado","been" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Presente","Present","I estimate, am estimating","estimo","estimas","estima","estimamos","estimáis","estiman","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Futuro","Future","I will estimate","estimaré","estimarás","estimará","estimaremos","estimaréis","estimarán","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Imperfecto","Imperfect","I was estimating, used to estimate, estimated","estimaba","estimabas","estimaba","estimábamos","estimabais","estimaban","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Pretérito","Preterite","I estimated","estimé","estimaste","estimó","estimamos","estimasteis","estimaron","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Condicional","Conditional","I would estimate","estimaría","estimarías","estimaría","estimaríamos","estimaríais","estimarían","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Presente perfecto","Present Perfect","I have estimated","he estimado","has estimado","ha estimado","hemos estimado","habéis estimado","han estimado","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have estimated","habré estimado","habrás estimado","habrá estimado","habremos estimado","habréis estimado","habrán estimado","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had estimated","había estimado","habías estimado","había estimado","habíamos estimado","habíais estimado","habían estimado","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had estimated","hube estimado","hubiste estimado","hubo estimado","hubimos estimado","hubisteis estimado","hubieron estimado","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have estimated","habría estimado","habrías estimado","habría estimado","habríamos estimado","habríais estimado","habrían estimado","estimando","estimating","estimado","estimated" +"estimemos" +"estimar","to estimate; to appraise; to esteem, respect","Subjuntivo","Subjunctive","Presente","Present","I estimate, am estimating","estime","estimes","estime","estimemos","estiméis","estimen","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I estimated, was estimating","estimara","estimaras","estimara","estimáramos","estimarais","estimaran","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Subjuntivo","Subjunctive","Futuro","Future","I will estimate","estimare","estimares","estimare","estimáremos","estimareis","estimaren","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have estimated, estimated","haya estimado","hayas estimado","haya estimado","hayamos estimado","hayáis estimado","hayan estimado","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have estimated","hubiere estimado","hubieres estimado","hubiere estimado","hubiéremos estimado","hubiereis estimado","hubieren estimado","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had estimated","hubiera estimado","hubieras estimado","hubiera estimado","hubiéramos estimado","hubierais estimado","hubieran estimado","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Estimate! Don't estimate!","","estima","estime","estimemos","estimad","estimen","estimando","estimating","estimado","estimated" +"estimar","to estimate; to appraise; to esteem, respect","Imperativo Negativo","Imperative Negative","Presente","Present","Estimate! Don't estimate!","","no estimes","no estime","no estimemos","no estiméis","no estimen","estimando","estimating","estimado","estimated" +"estudiar","to study","Indicativo","Indicative","Presente","Present","I study, am studying","estudio","estudias","estudia","estudiamos","estudiáis","estudian","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Futuro","Future","I will study","estudiaré","estudiarás","estudiará","estudiaremos","estudiaréis","estudiarán","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Imperfecto","Imperfect","I was studying, used to study, studied","estudiaba","estudiabas","estudiaba","estudiábamos","estudiabais","estudiaban","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Pretérito","Preterite","I studied","estudié","estudiaste","estudió","estudiamos","estudiasteis","estudiaron","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Condicional","Conditional","I would study","estudiaría","estudiarías","estudiaría","estudiaríamos","estudiaríais","estudiarían","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Presente perfecto","Present Perfect","I have studied","he estudiado","has estudiado","ha estudiado","hemos estudiado","habéis estudiado","han estudiado","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have studied","habré estudiado","habrás estudiado","habrá estudiado","habremos estudiado","habréis estudiado","habrán estudiado","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had studied","había estudiado","habías estudiado","había estudiado","habíamos estudiado","habíais estudiado","habían estudiado","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had studied","hube estudiado","hubiste estudiado","hubo estudiado","hubimos estudiado","hubisteis estudiado","hubieron estudiado","estudiando","studying","estudiado","studied" +"estudiar","to study","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have studied","habría estudiado","habrías estudiado","habría estudiado","habríamos estudiado","habríais estudiado","habrían estudiado","estudiando","studying","estudiado","studied" +"estudiemos" +"estudiar","to study","Subjuntivo","Subjunctive","Presente","Present","I study, am studying","estudie","estudies","estudie","estudiemos","estudiéis","estudien","estudiando","studying","estudiado","studied" +"estudiar","to study","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I studied, was studying","estudiara","estudiaras","estudiara","estudiáramos","estudiarais","estudiaran","estudiando","studying","estudiado","studied" +"estudiar","to study","Subjuntivo","Subjunctive","Futuro","Future","I will study","estudiare","estudiares","estudiare","estudiáremos","estudiareis","estudiaren","estudiando","studying","estudiado","studied" +"estudiar","to study","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have studied, studied","haya estudiado","hayas estudiado","haya estudiado","hayamos estudiado","hayáis estudiado","hayan estudiado","estudiando","studying","estudiado","studied" +"estudiar","to study","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have studied","hubiere estudiado","hubieres estudiado","hubiere estudiado","hubiéremos estudiado","hubiereis estudiado","hubieren estudiado","estudiando","studying","estudiado","studied" +"estudiar","to study","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had studied","hubiera estudiado","hubieras estudiado","hubiera estudiado","hubiéramos estudiado","hubierais estudiado","hubieran estudiado","estudiando","studying","estudiado","studied" +"estudiar","to study","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Study! Don't study!","","estudia","estudie","estudiemos","estudiad","estudien","estudiando","studying","estudiado","studied" +"estudiar","to study","Imperativo Negativo","Imperative Negative","Presente","Present","Study! Don't study!","","no estudies","no estudie","no estudiemos","no estudiéis","no estudien","estudiando","studying","estudiado","studied" +"evacuar","to evacuate, empty","Indicativo","Indicative","Presente","Present","I evacuate, am evacuating","evacuo","evacuas","evacua","evacuamos","evacuáis","evacuan","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Futuro","Future","I will evacuate","evacuaré","evacuarás","evacuará","evacuaremos","evacuaréis","evacuarán","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Imperfecto","Imperfect","I was evacuating, used to evacuate, evacuated","evacuaba","evacuabas","evacuaba","evacuábamos","evacuabais","evacuaban","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Pretérito","Preterite","I evacuated","evacué","evacuaste","evacuó","evacuamos","evacuasteis","evacuaron","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Condicional","Conditional","I would evacuate","evacuaría","evacuarías","evacuaría","evacuaríamos","evacuaríais","evacuarían","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Presente perfecto","Present Perfect","I have evacuated","he evacuado","has evacuado","ha evacuado","hemos evacuado","habéis evacuado","han evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have evacuated","habré evacuado","habrás evacuado","habrá evacuado","habremos evacuado","habréis evacuado","habrán evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had evacuated","había evacuado","habías evacuado","había evacuado","habíamos evacuado","habíais evacuado","habían evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had evacuated","hube evacuado","hubiste evacuado","hubo evacuado","hubimos evacuado","hubisteis evacuado","hubieron evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have evacuated","habría evacuado","habrías evacuado","habría evacuado","habríamos evacuado","habríais evacuado","habrían evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuemos" +"evacuar","to evacuate, empty","Subjuntivo","Subjunctive","Presente","Present","I evacuate, am evacuating","evacue","evacues","evacue","evacuemos","evacuéis","evacuen","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I evacuated, was evacuating","evacuara","evacuaras","evacuara","evacuáramos","evacuarais","evacuaran","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Subjuntivo","Subjunctive","Futuro","Future","I will evacuate","evacuare","evacuares","evacuare","evacuáremos","evacuareis","evacuaren","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have evacuated, evacuated","haya evacuado","hayas evacuado","haya evacuado","hayamos evacuado","hayáis evacuado","hayan evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have evacuated","hubiere evacuado","hubieres evacuado","hubiere evacuado","hubiéremos evacuado","hubiereis evacuado","hubieren evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had evacuated","hubiera evacuado","hubieras evacuado","hubiera evacuado","hubiéramos evacuado","hubierais evacuado","hubieran evacuado","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Evacuate! Don't evacuate!","","evacua","evacue","evacuemos","evacuad","evacuen","evacuando","evacuating","evacuado","evacuated" +"evacuar","to evacuate, empty","Imperativo Negativo","Imperative Negative","Presente","Present","Evacuate! Don't evacuate!","","no evacues","no evacue","no evacuemos","no evacuéis","no evacuen","evacuando","evacuating","evacuado","evacuated" +"evitar","to avoid; to prevent","Indicativo","Indicative","Presente","Present","I avoid, am avoiding","evito","evitas","evita","evitamos","evitáis","evitan","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Futuro","Future","I will avoid","evitaré","evitarás","evitará","evitaremos","evitaréis","evitarán","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Imperfecto","Imperfect","I was avoiding, used to avoid, avoided","evitaba","evitabas","evitaba","evitábamos","evitabais","evitaban","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Pretérito","Preterite","I avoided","evité","evitaste","evitó","evitamos","evitasteis","evitaron","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Condicional","Conditional","I would avoid","evitaría","evitarías","evitaría","evitaríamos","evitaríais","evitarían","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Presente perfecto","Present Perfect","I have avoided","he evitado","has evitado","ha evitado","hemos evitado","habéis evitado","han evitado","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have avoided","habré evitado","habrás evitado","habrá evitado","habremos evitado","habréis evitado","habrán evitado","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had avoided","había evitado","habías evitado","había evitado","habíamos evitado","habíais evitado","habían evitado","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had avoided","hube evitado","hubiste evitado","hubo evitado","hubimos evitado","hubisteis evitado","hubieron evitado","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have avoided","habría evitado","habrías evitado","habría evitado","habríamos evitado","habríais evitado","habrían evitado","evitando","avoiding","evitado","avoided" +"evitemos" +"evitar","to avoid; to prevent","Subjuntivo","Subjunctive","Presente","Present","I avoid, am avoiding","evite","evites","evite","evitemos","evitéis","eviten","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I avoided, was avoiding","evitara","evitaras","evitara","evitáramos","evitarais","evitaran","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Subjuntivo","Subjunctive","Futuro","Future","I will avoid","evitare","evitares","evitare","evitáremos","evitareis","evitaren","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have avoided, avoided","haya evitado","hayas evitado","haya evitado","hayamos evitado","hayáis evitado","hayan evitado","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have avoided","hubiere evitado","hubieres evitado","hubiere evitado","hubiéremos evitado","hubiereis evitado","hubieren evitado","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had avoided","hubiera evitado","hubieras evitado","hubiera evitado","hubiéramos evitado","hubierais evitado","hubieran evitado","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Avoid! Don't avoid!","","evita","evite","evitemos","evitad","eviten","evitando","avoiding","evitado","avoided" +"evitar","to avoid; to prevent","Imperativo Negativo","Imperative Negative","Presente","Present","Avoid! Don't avoid!","","no evites","no evite","no evitemos","no evitéis","no eviten","evitando","avoiding","evitado","avoided" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Presente","Present","I exhibit, am exhibiting","exhibo","exhibes","exhibe","exhibimos","exhibís","exhiben","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Futuro","Future","I will exhibit","exhibiré","exhibirás","exhibirá","exhibiremos","exhibiréis","exhibirán","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Imperfecto","Imperfect","I was exhibiting, used to exhibit, exhibited","exhibía","exhibías","exhibía","exhibíamos","exhibíais","exhibían","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Pretérito","Preterite","I exhibited","exhibí","exhibiste","exhibió","exhibimos","exhibisteis","exhibieron","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Condicional","Conditional","I would exhibit","exhibiría","exhibirías","exhibiría","exhibiríamos","exhibiríais","exhibirían","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Presente perfecto","Present Perfect","I have exhibited","he exhibido","has exhibido","ha exhibido","hemos exhibido","habéis exhibido","han exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have exhibited","habré exhibido","habrás exhibido","habrá exhibido","habremos exhibido","habréis exhibido","habrán exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had exhibited","había exhibido","habías exhibido","había exhibido","habíamos exhibido","habíais exhibido","habían exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had exhibited","hube exhibido","hubiste exhibido","hubo exhibido","hubimos exhibido","hubisteis exhibido","hubieron exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have exhibited","habría exhibido","habrías exhibido","habría exhibido","habríamos exhibido","habríais exhibido","habrían exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibamos" +"exhibir","to exhibit, show, display","Subjuntivo","Subjunctive","Presente","Present","I exhibit, am exhibiting","exhiba","exhibas","exhiba","exhibamos","exhibáis","exhiban","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I exhibited, was exhibiting","exhibiera","exhibieras","exhibiera","exhibiéramos","exhibierais","exhibieran","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Subjuntivo","Subjunctive","Futuro","Future","I will exhibit","exhibiere","exhibieres","exhibiere","exhibiéremos","exhibiereis","exhibieren","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have exhibited, exhibited","haya exhibido","hayas exhibido","haya exhibido","hayamos exhibido","hayáis exhibido","hayan exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have exhibited","hubiere exhibido","hubieres exhibido","hubiere exhibido","hubiéremos exhibido","hubiereis exhibido","hubieren exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had exhibited","hubiera exhibido","hubieras exhibido","hubiera exhibido","hubiéramos exhibido","hubierais exhibido","hubieran exhibido","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Exhibit! Don't exhibit!","","exhibe","exhiba","exhibamos","exhibid","exhiban","exhibiendo","exhibiting","exhibido","exhibited" +"exhibir","to exhibit, show, display","Imperativo Negativo","Imperative Negative","Presente","Present","Exhibit! Don't exhibit!","","no exhibas","no exhiba","no exhibamos","no exhibáis","no exhiban","exhibiendo","exhibiting","exhibido","exhibited" +"exigir","to demand, require","Indicativo","Indicative","Presente","Present","I demand, am demanding","exijo","exiges","exige","exigimos","exigís","exigen","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Futuro","Future","I will demand","exigiré","exigirás","exigirá","exigiremos","exigiréis","exigirán","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Imperfecto","Imperfect","I was demanding, used to demand, demanded","exigía","exigías","exigía","exigíamos","exigíais","exigían","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Pretérito","Preterite","I demanded","exigí","exigiste","exigió","exigimos","exigisteis","exigieron","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Condicional","Conditional","I would demand","exigiría","exigirías","exigiría","exigiríamos","exigiríais","exigirían","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Presente perfecto","Present Perfect","I have demanded","he exigido","has exigido","ha exigido","hemos exigido","habéis exigido","han exigido","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have demanded","habré exigido","habrás exigido","habrá exigido","habremos exigido","habréis exigido","habrán exigido","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had demanded","había exigido","habías exigido","había exigido","habíamos exigido","habíais exigido","habían exigido","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had demanded","hube exigido","hubiste exigido","hubo exigido","hubimos exigido","hubisteis exigido","hubieron exigido","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have demanded","habría exigido","habrías exigido","habría exigido","habríamos exigido","habríais exigido","habrían exigido","exigiendo","demanding","exigido","demanded" +"exijamos" +"exigir","to demand, require","Subjuntivo","Subjunctive","Presente","Present","I demand, am demanding","exija","exijas","exija","exijamos","exijáis","exijan","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I demanded, was demanding","exigiera","exigieras","exigiera","exigiéramos","exigierais","exigieran","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Subjuntivo","Subjunctive","Futuro","Future","I will demand","exigiere","exigieres","exigiere","exigiéremos","exigiereis","exigieren","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have demanded, demanded","haya exigido","hayas exigido","haya exigido","hayamos exigido","hayáis exigido","hayan exigido","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have demanded","hubiere exigido","hubieres exigido","hubiere exigido","hubiéremos exigido","hubiereis exigido","hubieren exigido","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had demanded","hubiera exigido","hubieras exigido","hubiera exigido","hubiéramos exigido","hubierais exigido","hubieran exigido","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Demand! Don't demand!","","exige","exija","exijamos","exigid","exijan","exigiendo","demanding","exigido","demanded" +"exigir","to demand, require","Imperativo Negativo","Imperative Negative","Presente","Present","Demand! Don't demand!","","no exijas","no exija","no exijamos","no exijáis","no exijan","exigiendo","demanding","exigido","demanded" +"explicar","to explain","Indicativo","Indicative","Presente","Present","I explain, am explaining","explico","explicas","explica","explicamos","explicáis","explican","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Futuro","Future","I will explain","explicaré","explicarás","explicará","explicaremos","explicaréis","explicarán","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Imperfecto","Imperfect","I was explaining, used to explain, explained","explicaba","explicabas","explicaba","explicábamos","explicabais","explicaban","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Pretérito","Preterite","I explained","expliqué","explicaste","explicó","explicamos","explicasteis","explicaron","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Condicional","Conditional","I would explain","explicaría","explicarías","explicaría","explicaríamos","explicaríais","explicarían","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have explained","he explicado","has explicado","ha explicado","hemos explicado","habéis explicado","han explicado","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have explained","habré explicado","habrás explicado","habrá explicado","habremos explicado","habréis explicado","habrán explicado","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had explained","había explicado","habías explicado","había explicado","habíamos explicado","habíais explicado","habían explicado","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had explained","hube explicado","hubiste explicado","hubo explicado","hubimos explicado","hubisteis explicado","hubieron explicado","explicando","explaining","explicado","explained" +"explicar","to explain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have explained","habría explicado","habrías explicado","habría explicado","habríamos explicado","habríais explicado","habrían explicado","explicando","explaining","explicado","explained" +"expliquemos" +"explicar","to explain","Subjuntivo","Subjunctive","Presente","Present","I explain, am explaining","explique","expliques","explique","expliquemos","expliquéis","expliquen","explicando","explaining","explicado","explained" +"explicar","to explain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I explained, was explaining","explicara","explicaras","explicara","explicáramos","explicarais","explicaran","explicando","explaining","explicado","explained" +"explicar","to explain","Subjuntivo","Subjunctive","Futuro","Future","I will explain","explicare","explicares","explicare","explicáremos","explicareis","explicaren","explicando","explaining","explicado","explained" +"explicar","to explain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have explained, explained","haya explicado","hayas explicado","haya explicado","hayamos explicado","hayáis explicado","hayan explicado","explicando","explaining","explicado","explained" +"explicar","to explain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have explained","hubiere explicado","hubieres explicado","hubiere explicado","hubiéremos explicado","hubiereis explicado","hubieren explicado","explicando","explaining","explicado","explained" +"explicar","to explain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had explained","hubiera explicado","hubieras explicado","hubiera explicado","hubiéramos explicado","hubierais explicado","hubieran explicado","explicando","explaining","explicado","explained" +"explicar","to explain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","explain! Don't explain!","","explica","explique","expliquemos","explicad","expliquen","explicando","explaining","explicado","explained" +"explicar","to explain","Imperativo Negativo","Imperative Negative","Presente","Present","explain! Don't explain!","","no expliques","no explique","no expliquemos","no expliquéis","no expliquen","explicando","explaining","explicado","explained" +"explorar","to explore; to pioneer","Indicativo","Indicative","Presente","Present","I explore, am exploring","exploro","exploras","explora","exploramos","exploráis","exploran","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Futuro","Future","I will explore","exploraré","explorarás","explorará","exploraremos","exploraréis","explorarán","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Imperfecto","Imperfect","I was exploring, used to explore, explored","exploraba","explorabas","exploraba","explorábamos","explorabais","exploraban","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Pretérito","Preterite","I explored","exploré","exploraste","exploró","exploramos","explorasteis","exploraron","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Condicional","Conditional","I would explore","exploraría","explorarías","exploraría","exploraríamos","exploraríais","explorarían","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Presente perfecto","Present Perfect","I have explored","he explorado","has explorado","ha explorado","hemos explorado","habéis explorado","han explorado","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have explored","habré explorado","habrás explorado","habrá explorado","habremos explorado","habréis explorado","habrán explorado","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had explored","había explorado","habías explorado","había explorado","habíamos explorado","habíais explorado","habían explorado","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had explored","hube explorado","hubiste explorado","hubo explorado","hubimos explorado","hubisteis explorado","hubieron explorado","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have explored","habría explorado","habrías explorado","habría explorado","habríamos explorado","habríais explorado","habrían explorado","explorando","exploring","explorado","explored" +"exploremos" +"explorar","to explore; to pioneer","Subjuntivo","Subjunctive","Presente","Present","I explore, am exploring","explore","explores","explore","exploremos","exploréis","exploren","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I explored, was exploring","explorara","exploraras","explorara","exploráramos","explorarais","exploraran","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Subjuntivo","Subjunctive","Futuro","Future","I will explore","explorare","explorares","explorare","exploráremos","explorareis","exploraren","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have explored, explored","haya explorado","hayas explorado","haya explorado","hayamos explorado","hayáis explorado","hayan explorado","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have explored","hubiere explorado","hubieres explorado","hubiere explorado","hubiéremos explorado","hubiereis explorado","hubieren explorado","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had explored","hubiera explorado","hubieras explorado","hubiera explorado","hubiéramos explorado","hubierais explorado","hubieran explorado","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Explore! Don't explore!","","explora","explore","exploremos","explorad","exploren","explorando","exploring","explorado","explored" +"explorar","to explore; to pioneer","Imperativo Negativo","Imperative Negative","Presente","Present","Explore! Don't explore!","","no explores","no explore","no exploremos","no exploréis","no exploren","explorando","exploring","explorado","explored" +"explotar","to exploit; to explode","Indicativo","Indicative","Presente","Present","I exploit, am exploiting","exploto","explotas","explota","explotamos","explotáis","explotan","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Futuro","Future","I will exploit","explotaré","explotarás","explotará","explotaremos","explotaréis","explotarán","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Imperfecto","Imperfect","I was exploiting, used to exploit, exploited","explotaba","explotabas","explotaba","explotábamos","explotabais","explotaban","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Pretérito","Preterite","I exploited","exploté","explotaste","explotó","explotamos","explotasteis","explotaron","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Condicional","Conditional","I would exploit","explotaría","explotarías","explotaría","explotaríamos","explotaríais","explotarían","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Presente perfecto","Present Perfect","I have exploited","he explotado","has explotado","ha explotado","hemos explotado","habéis explotado","han explotado","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have exploited","habré explotado","habrás explotado","habrá explotado","habremos explotado","habréis explotado","habrán explotado","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had exploited","había explotado","habías explotado","había explotado","habíamos explotado","habíais explotado","habían explotado","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had exploited","hube explotado","hubiste explotado","hubo explotado","hubimos explotado","hubisteis explotado","hubieron explotado","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have exploited","habría explotado","habrías explotado","habría explotado","habríamos explotado","habríais explotado","habrían explotado","explotando","exploiting","explotado","exploited" +"explotemos" +"explotar","to exploit; to explode","Subjuntivo","Subjunctive","Presente","Present","I exploit, am exploiting","explote","explotes","explote","explotemos","explotéis","exploten","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I exploited, was exploiting","explotara","explotaras","explotara","explotáramos","explotarais","explotaran","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Subjuntivo","Subjunctive","Futuro","Future","I will exploit","explotare","explotares","explotare","explotáremos","explotareis","explotaren","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have exploited, exploited","haya explotado","hayas explotado","haya explotado","hayamos explotado","hayáis explotado","hayan explotado","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have exploited","hubiere explotado","hubieres explotado","hubiere explotado","hubiéremos explotado","hubiereis explotado","hubieren explotado","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had exploited","hubiera explotado","hubieras explotado","hubiera explotado","hubiéramos explotado","hubierais explotado","hubieran explotado","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","exploit! Don't exploit!","","explota","explote","explotemos","explotad","exploten","explotando","exploiting","explotado","exploited" +"explotar","to exploit; to explode","Imperativo Negativo","Imperative Negative","Presente","Present","exploit! Don't exploit!","","no explotes","no explote","no explotemos","no explotéis","no exploten","explotando","exploiting","explotado","exploited" +"exponer","to expose","Indicativo","Indicative","Presente","Present","I expose, am exposing","expongo","expones","expone","exponemos","exponéis","exponen","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Futuro","Future","I will expose","expondré","expondrás","expondrá","expondremos","expondréis","expondrán","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Imperfecto","Imperfect","I was exposing, used to expose, exposed","exponía","exponías","exponía","exponíamos","exponíais","exponían","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Pretérito","Preterite","I exposed","expuse","expusiste","expuso","expusimos","expusisteis","expusieron","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Condicional","Conditional","I would expose","expondría","expondrías","expondría","expondríamos","expondríais","expondrían","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Presente perfecto","Present Perfect","I have exposed","he expuesto","has expuesto","ha expuesto","hemos expuesto","habéis expuesto","han expuesto","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have exposed","habré expuesto","habrás expuesto","habrá expuesto","habremos expuesto","habréis expuesto","habrán expuesto","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had exposed","había expuesto","habías expuesto","había expuesto","habíamos expuesto","habíais expuesto","habían expuesto","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had exposed","hube expuesto","hubiste expuesto","hubo expuesto","hubimos expuesto","hubisteis expuesto","hubieron expuesto","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have exposed","habría expuesto","habrías expuesto","habría expuesto","habríamos expuesto","habríais expuesto","habrían expuesto","exponiendo","exposing","expuesto","exposed" +"expongamos" +"exponer","to expose","Subjuntivo","Subjunctive","Presente","Present","I expose, am exposing","exponga","expongas","exponga","expongamos","expongáis","expongan","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I exposed, was exposing","expusiera","expusieras","expusiera","expusiéramos","expusierais","expusieran","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Subjuntivo","Subjunctive","Futuro","Future","I will expose","expusiere","expusieres","expusiere","expusiéremos","expusiereis","expusieren","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have exposed, exposed","haya expuesto","hayas expuesto","haya expuesto","hayamos expuesto","hayáis expuesto","hayan expuesto","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have exposed","hubiere expuesto","hubieres expuesto","hubiere expuesto","hubiéremos expuesto","hubiereis expuesto","hubieren expuesto","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had exposed","hubiera expuesto","hubieras expuesto","hubiera expuesto","hubiéramos expuesto","hubierais expuesto","hubieran expuesto","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Expose! Don't expose!","","expón","exponga","expongamos","exponed","expongan","exponiendo","exposing","expuesto","exposed" +"exponer","to expose","Imperativo Negativo","Imperative Negative","Presente","Present","Expose! Don't expose!","","no expongas","no exponga","no expongamos","no expongáis","no expongan","exponiendo","exposing","expuesto","exposed" +"exportar","to export","Indicativo","Indicative","Presente","Present","I export, am exporting","exporto","exportas","exporta","exportamos","exportáis","exportan","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Futuro","Future","I will export","exportaré","exportarás","exportará","exportaremos","exportaréis","exportarán","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Imperfecto","Imperfect","I was exporting, used to export, exported","exportaba","exportabas","exportaba","exportábamos","exportabais","exportaban","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Pretérito","Preterite","I exported","exporté","exportaste","exportó","exportamos","exportasteis","exportaron","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Condicional","Conditional","I would export","exportaría","exportarías","exportaría","exportaríamos","exportaríais","exportarían","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Presente perfecto","Present Perfect","I have exported","he exportado","has exportado","ha exportado","hemos exportado","habéis exportado","han exportado","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have exported","habré exportado","habrás exportado","habrá exportado","habremos exportado","habréis exportado","habrán exportado","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had exported","había exportado","habías exportado","había exportado","habíamos exportado","habíais exportado","habían exportado","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had exported","hube exportado","hubiste exportado","hubo exportado","hubimos exportado","hubisteis exportado","hubieron exportado","exportando","exporting","exportado","exported" +"exportar","to export","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have exported","habría exportado","habrías exportado","habría exportado","habríamos exportado","habríais exportado","habrían exportado","exportando","exporting","exportado","exported" +"exportemos" +"exportar","to export","Subjuntivo","Subjunctive","Presente","Present","I export, am exporting","exporte","exportes","exporte","exportemos","exportéis","exporten","exportando","exporting","exportado","exported" +"exportar","to export","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I exported, was exporting","exportara","exportaras","exportara","exportáramos","exportarais","exportaran","exportando","exporting","exportado","exported" +"exportar","to export","Subjuntivo","Subjunctive","Futuro","Future","I will export","exportare","exportares","exportare","exportáremos","exportareis","exportaren","exportando","exporting","exportado","exported" +"exportar","to export","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have exported, exported","haya exportado","hayas exportado","haya exportado","hayamos exportado","hayáis exportado","hayan exportado","exportando","exporting","exportado","exported" +"exportar","to export","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have exported","hubiere exportado","hubieres exportado","hubiere exportado","hubiéremos exportado","hubiereis exportado","hubieren exportado","exportando","exporting","exportado","exported" +"exportar","to export","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had exported","hubiera exportado","hubieras exportado","hubiera exportado","hubiéramos exportado","hubierais exportado","hubieran exportado","exportando","exporting","exportado","exported" +"exportar","to export","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Export! Don't export!","","exporta","exporte","exportemos","exportad","exporten","exportando","exporting","exportado","exported" +"exportar","to export","Imperativo Negativo","Imperative Negative","Presente","Present","Export! Don't export!","","no exportes","no exporte","no exportemos","no exportéis","no exporten","exportando","exporting","exportado","exported" +"expresar","to express, voice, state","Indicativo","Indicative","Presente","Present","I express, am expressing","expreso","expresas","expresa","expresamos","expresáis","expresan","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Futuro","Future","I will express","expresaré","expresarás","expresará","expresaremos","expresaréis","expresarán","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Imperfecto","Imperfect","I was expressing, used to express, expressed","expresaba","expresabas","expresaba","expresábamos","expresabais","expresaban","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Pretérito","Preterite","I expressed","expresé","expresaste","expresó","expresamos","expresasteis","expresaron","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Condicional","Conditional","I would express","expresaría","expresarías","expresaría","expresaríamos","expresaríais","expresarían","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Presente perfecto","Present Perfect","I have expressed","he expresado","has expresado","ha expresado","hemos expresado","habéis expresado","han expresado","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have expressed","habré expresado","habrás expresado","habrá expresado","habremos expresado","habréis expresado","habrán expresado","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had expressed","había expresado","habías expresado","había expresado","habíamos expresado","habíais expresado","habían expresado","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had expressed","hube expresado","hubiste expresado","hubo expresado","hubimos expresado","hubisteis expresado","hubieron expresado","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have expressed","habría expresado","habrías expresado","habría expresado","habríamos expresado","habríais expresado","habrían expresado","expresando","expressing","expresado","expressed" +"expresemos" +"expresar","to express, voice, state","Subjuntivo","Subjunctive","Presente","Present","I express, am expressing","exprese","expreses","exprese","expresemos","expreséis","expresen","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I expressed, was expressing","expresara","expresaras","expresara","expresáramos","expresarais","expresaran","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Subjuntivo","Subjunctive","Futuro","Future","I will express","expresare","expresares","expresare","expresáremos","expresareis","expresaren","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have expressed, expressed","haya expresado","hayas expresado","haya expresado","hayamos expresado","hayáis expresado","hayan expresado","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have expressed","hubiere expresado","hubieres expresado","hubiere expresado","hubiéremos expresado","hubiereis expresado","hubieren expresado","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had expressed","hubiera expresado","hubieras expresado","hubiera expresado","hubiéramos expresado","hubierais expresado","hubieran expresado","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Express! Don't express!","","expresa","exprese","expresemos","expresad","expresen","expresando","expressing","expresado","expressed" +"expresar","to express, voice, state","Imperativo Negativo","Imperative Negative","Presente","Present","Express! Don't express!","","no expreses","no exprese","no expresemos","no expreséis","no expresen","expresando","expressing","expresado","expressed" +"extender","to extend","Indicativo","Indicative","Presente","Present","I extend, am extending","extiendo","extiendes","extiende","extendemos","extendéis","extienden","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Futuro","Future","I will extend","extenderé","extenderás","extenderá","extenderemos","extenderéis","extenderán","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Imperfecto","Imperfect","I was extending, used to extend, extended","extendía","extendías","extendía","extendíamos","extendíais","extendían","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Pretérito","Preterite","I extended","extendí","extendiste","extendió","extendimos","extendisteis","extendieron","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Condicional","Conditional","I would extend","extendería","extenderías","extendería","extenderíamos","extenderíais","extenderían","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have extended","he extendido","has extendido","ha extendido","hemos extendido","habéis extendido","han extendido","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have extended","habré extendido","habrás extendido","habrá extendido","habremos extendido","habréis extendido","habrán extendido","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had extended","había extendido","habías extendido","había extendido","habíamos extendido","habíais extendido","habían extendido","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had extended","hube extendido","hubiste extendido","hubo extendido","hubimos extendido","hubisteis extendido","hubieron extendido","extendiendo","extending","extendido","extended" +"extender","to extend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have extended","habría extendido","habrías extendido","habría extendido","habríamos extendido","habríais extendido","habrían extendido","extendiendo","extending","extendido","extended" +"extendamos" +"extender","to extend","Subjuntivo","Subjunctive","Presente","Present","I extend, am extending","extienda","extiendas","extienda","extendamos","extendáis","extiendan","extendiendo","extending","extendido","extended" +"extender","to extend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I extended, was extending","extendiera","extendieras","extendiera","extendiéramos","extendierais","extendieran","extendiendo","extending","extendido","extended" +"extender","to extend","Subjuntivo","Subjunctive","Futuro","Future","I will extend","extendiere","extendieres","extendiere","extendiéremos","extendiereis","extendieren","extendiendo","extending","extendido","extended" +"extender","to extend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have extended, extended","haya extendido","hayas extendido","haya extendido","hayamos extendido","hayáis extendido","hayan extendido","extendiendo","extending","extendido","extended" +"extender","to extend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have extended","hubiere extendido","hubieres extendido","hubiere extendido","hubiéremos extendido","hubiereis extendido","hubieren extendido","extendiendo","extending","extendido","extended" +"extender","to extend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had extended","hubiera extendido","hubieras extendido","hubiera extendido","hubiéramos extendido","hubierais extendido","hubieran extendido","extendiendo","extending","extendido","extended" +"extender","to extend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Extend! Don't extend!","","extiende","extienda","extendamos","extended","extiendan","extendiendo","extending","extendido","extended" +"extender","to extend","Imperativo Negativo","Imperative Negative","Presente","Present","Extend! Don't extend!","","no extiendas","no extienda","no extendamos","no extendáis","no extiendan","extendiendo","extending","extendido","extended" +"extinguir","to extinguish, put out","Indicativo","Indicative","Presente","Present","I extinguish, am extinguishing","extingo","extingues","extingue","extinguimos","extinguís","extinguen","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Futuro","Future","I will extinguish","extinguiré","extinguirás","extinguirá","extinguiremos","extinguiréis","extinguirán","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Imperfecto","Imperfect","I was extinguishing, used to extinguish, extinguished","extinguía","extinguías","extinguía","extinguíamos","extinguíais","extinguían","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Pretérito","Preterite","I extinguished","extinguí","extinguiste","extinguió","extinguimos","extinguisteis","extinguieron","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Condicional","Conditional","I would extinguish","extinguiría","extinguirías","extinguiría","extinguiríamos","extinguiríais","extinguirían","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have extinguished","he extinguido","has extinguido","ha extinguido","hemos extinguido","habéis extinguido","han extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have extinguished","habré extinguido","habrás extinguido","habrá extinguido","habremos extinguido","habréis extinguido","habrán extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had extinguished","había extinguido","habías extinguido","había extinguido","habíamos extinguido","habíais extinguido","habían extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had extinguished","hube extinguido","hubiste extinguido","hubo extinguido","hubimos extinguido","hubisteis extinguido","hubieron extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have extinguished","habría extinguido","habrías extinguido","habría extinguido","habríamos extinguido","habríais extinguido","habrían extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extingamos" +"extinguir","to extinguish, put out","Subjuntivo","Subjunctive","Presente","Present","I extinguish, am extinguishing","extinga","extingas","extinga","extingamos","extingáis","extingan","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I extinguished, was extinguishing","extinguiera","extinguieras","extinguiera","extinguiéramos","extinguierais","extinguieran","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Subjuntivo","Subjunctive","Futuro","Future","I will extinguish","extinguiere","extinguieres","extinguiere","extinguiéremos","extinguiereis","extinguieren","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have extinguished, extinguished","haya extinguido","hayas extinguido","haya extinguido","hayamos extinguido","hayáis extinguido","hayan extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have extinguished","hubiere extinguido","hubieres extinguido","hubiere extinguido","hubiéremos extinguido","hubiereis extinguido","hubieren extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had extinguished","hubiera extinguido","hubieras extinguido","hubiera extinguido","hubiéramos extinguido","hubierais extinguido","hubieran extinguido","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","extinguish! Don't extinguish!","","extingue","extinga","extingamos","extinguid","extingan","extinguiendo","extinguishing","extinguido","extinguished" +"extinguir","to extinguish, put out","Imperativo Negativo","Imperative Negative","Presente","Present","extinguish! Don't extinguish!","","no extingas","no extinga","no extingamos","no extingáis","no extingan","extinguiendo","extinguishing","extinguido","extinguished" +"fabricar","to manufacture","Indicativo","Indicative","Presente","Present","I manufacture, am manufacturing","fabrico","fabricas","fabrica","fabricamos","fabricáis","fabrican","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Futuro","Future","I will manufacture","fabricaré","fabricarás","fabricará","fabricaremos","fabricaréis","fabricarán","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Imperfecto","Imperfect","I was manufacturing, used to manufacture, manufactured","fabricaba","fabricabas","fabricaba","fabricábamos","fabricabais","fabricaban","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Pretérito","Preterite","I manufactured","fabriqué","fabricaste","fabricó","fabricamos","fabricasteis","fabricaron","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Condicional","Conditional","I would manufacture","fabricaría","fabricarías","fabricaría","fabricaríamos","fabricaríais","fabricarían","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Presente perfecto","Present Perfect","I have manufactured","he fabricado","has fabricado","ha fabricado","hemos fabricado","habéis fabricado","han fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have manufactured","habré fabricado","habrás fabricado","habrá fabricado","habremos fabricado","habréis fabricado","habrán fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had manufactured","había fabricado","habías fabricado","había fabricado","habíamos fabricado","habíais fabricado","habían fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had manufactured","hube fabricado","hubiste fabricado","hubo fabricado","hubimos fabricado","hubisteis fabricado","hubieron fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have manufactured","habría fabricado","habrías fabricado","habría fabricado","habríamos fabricado","habríais fabricado","habrían fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabriquemos" +"fabricar","to manufacture","Subjuntivo","Subjunctive","Presente","Present","I manufacture, am manufacturing","fabrique","fabriques","fabrique","fabriquemos","fabriquéis","fabriquen","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I manufactured, was manufacturing","fabricara","fabricaras","fabricara","fabricáramos","fabricarais","fabricaran","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Subjuntivo","Subjunctive","Futuro","Future","I will manufacture","fabricare","fabricares","fabricare","fabricáremos","fabricareis","fabricaren","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have manufactured, manufactured","haya fabricado","hayas fabricado","haya fabricado","hayamos fabricado","hayáis fabricado","hayan fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have manufactured","hubiere fabricado","hubieres fabricado","hubiere fabricado","hubiéremos fabricado","hubiereis fabricado","hubieren fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had manufactured","hubiera fabricado","hubieras fabricado","hubiera fabricado","hubiéramos fabricado","hubierais fabricado","hubieran fabricado","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Manufacture! Don't manufacture!","","fabrica","fabrique","fabriquemos","fabricad","fabriquen","fabricando","manufacturing","fabricado","manufactured" +"fabricar","to manufacture","Imperativo Negativo","Imperative Negative","Presente","Present","Manufacture! Don't manufacture!","","no fabriques","no fabrique","no fabriquemos","no fabriquéis","no fabriquen","fabricando","manufacturing","fabricado","manufactured" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Presente","Present","I lack, am lacking","falto","faltas","falta","faltamos","faltáis","faltan","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Futuro","Future","I will lack","faltaré","faltarás","faltará","faltaremos","faltaréis","faltarán","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Imperfecto","Imperfect","I was lacking, used to lack, lacked","faltaba","faltabas","faltaba","faltábamos","faltabais","faltaban","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Pretérito","Preterite","I lacked","falté","faltaste","faltó","faltamos","faltasteis","faltaron","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Condicional","Conditional","I would lack","faltaría","faltarías","faltaría","faltaríamos","faltaríais","faltarían","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lacked","he faltado","has faltado","ha faltado","hemos faltado","habéis faltado","han faltado","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lacked","habré faltado","habrás faltado","habrá faltado","habremos faltado","habréis faltado","habrán faltado","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lacked","había faltado","habías faltado","había faltado","habíamos faltado","habíais faltado","habían faltado","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lacked","hube faltado","hubiste faltado","hubo faltado","hubimos faltado","hubisteis faltado","hubieron faltado","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lacked","habría faltado","habrías faltado","habría faltado","habríamos faltado","habríais faltado","habrían faltado","faltando","lacking","faltado","lacked" +"faltemos" +"faltar","to lack, be lacking, be missing, be absent","Subjuntivo","Subjunctive","Presente","Present","I lack, am lacking","falte","faltes","falte","faltemos","faltéis","falten","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lacked, was lacking","faltara","faltaras","faltara","faltáramos","faltarais","faltaran","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Subjuntivo","Subjunctive","Futuro","Future","I will lack","faltare","faltares","faltare","faltáremos","faltareis","faltaren","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lacked, lacked","haya faltado","hayas faltado","haya faltado","hayamos faltado","hayáis faltado","hayan faltado","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lacked","hubiere faltado","hubieres faltado","hubiere faltado","hubiéremos faltado","hubiereis faltado","hubieren faltado","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lacked","hubiera faltado","hubieras faltado","hubiera faltado","hubiéramos faltado","hubierais faltado","hubieran faltado","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Lack! Don't lack!","","falta","falte","faltemos","faltad","falten","faltando","lacking","faltado","lacked" +"faltar","to lack, be lacking, be missing, be absent","Imperativo Negativo","Imperative Negative","Presente","Present","Lack! Don't lack!","","no faltes","no falte","no faltemos","no faltéis","no falten","faltando","lacking","faltado","lacked" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Presente","Present","I fascinate, am fascinating","fascino","fascinas","fascina","fascinamos","fascináis","fascinan","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Futuro","Future","I will fascinate","fascinaré","fascinarás","fascinará","fascinaremos","fascinaréis","fascinarán","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Imperfecto","Imperfect","I was fascinating, used to fascinate, fascinated","fascinaba","fascinabas","fascinaba","fascinábamos","fascinabais","fascinaban","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Pretérito","Preterite","I fascinated","fasciné","fascinaste","fascinó","fascinamos","fascinasteis","fascinaron","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Condicional","Conditional","I would fascinate","fascinaría","fascinarías","fascinaría","fascinaríamos","fascinaríais","fascinarían","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fascinated","he fascinado","has fascinado","ha fascinado","hemos fascinado","habéis fascinado","han fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fascinated","habré fascinado","habrás fascinado","habrá fascinado","habremos fascinado","habréis fascinado","habrán fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fascinated","había fascinado","habías fascinado","había fascinado","habíamos fascinado","habíais fascinado","habían fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fascinated","hube fascinado","hubiste fascinado","hubo fascinado","hubimos fascinado","hubisteis fascinado","hubieron fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fascinated","habría fascinado","habrías fascinado","habría fascinado","habríamos fascinado","habríais fascinado","habrían fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinemos" +"fascinar","to fascinate, captivate","Subjuntivo","Subjunctive","Presente","Present","I fascinate, am fascinating","fascine","fascines","fascine","fascinemos","fascinéis","fascinen","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fascinated, was fascinating","fascinara","fascinaras","fascinara","fascináramos","fascinarais","fascinaran","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Subjuntivo","Subjunctive","Futuro","Future","I will fascinate","fascinare","fascinares","fascinare","fascináremos","fascinareis","fascinaren","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fascinated, fascinated","haya fascinado","hayas fascinado","haya fascinado","hayamos fascinado","hayáis fascinado","hayan fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fascinated","hubiere fascinado","hubieres fascinado","hubiere fascinado","hubiéremos fascinado","hubiereis fascinado","hubieren fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fascinated","hubiera fascinado","hubieras fascinado","hubiera fascinado","hubiéramos fascinado","hubierais fascinado","hubieran fascinado","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fascinate! Don't fascinate!","","fascina","fascine","fascinemos","fascinad","fascinen","fascinando","fascinating","fascinado","fascinated" +"fascinar","to fascinate, captivate","Imperativo Negativo","Imperative Negative","Presente","Present","Fascinate! Don't fascinate!","","no fascines","no fascine","no fascinemos","no fascinéis","no fascinen","fascinando","fascinating","fascinado","fascinated" +"felicitar","to congratulate","Indicativo","Indicative","Presente","Present","I congratulate, am congratulating","felicito","felicitas","felicita","felicitamos","felicitáis","felicitan","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Futuro","Future","I will congratulate","felicitaré","felicitarás","felicitará","felicitaremos","felicitaréis","felicitarán","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Imperfecto","Imperfect","I was congratulating, used to congratulate, congratulated","felicitaba","felicitabas","felicitaba","felicitábamos","felicitabais","felicitaban","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Pretérito","Preterite","I congratulated","felicité","felicitaste","felicitó","felicitamos","felicitasteis","felicitaron","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Condicional","Conditional","I would congratulate","felicitaría","felicitarías","felicitaría","felicitaríamos","felicitaríais","felicitarían","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have congratulated","he felicitado","has felicitado","ha felicitado","hemos felicitado","habéis felicitado","han felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have congratulated","habré felicitado","habrás felicitado","habrá felicitado","habremos felicitado","habréis felicitado","habrán felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had congratulated","había felicitado","habías felicitado","había felicitado","habíamos felicitado","habíais felicitado","habían felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had congratulated","hube felicitado","hubiste felicitado","hubo felicitado","hubimos felicitado","hubisteis felicitado","hubieron felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have congratulated","habría felicitado","habrías felicitado","habría felicitado","habríamos felicitado","habríais felicitado","habrían felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitemos" +"felicitar","to congratulate","Subjuntivo","Subjunctive","Presente","Present","I congratulate, am congratulating","felicite","felicites","felicite","felicitemos","felicitéis","feliciten","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I congratulated, was congratulating","felicitara","felicitaras","felicitara","felicitáramos","felicitarais","felicitaran","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Subjuntivo","Subjunctive","Futuro","Future","I will congratulate","felicitare","felicitares","felicitare","felicitáremos","felicitareis","felicitaren","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have congratulated, congratulated","haya felicitado","hayas felicitado","haya felicitado","hayamos felicitado","hayáis felicitado","hayan felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have congratulated","hubiere felicitado","hubieres felicitado","hubiere felicitado","hubiéremos felicitado","hubiereis felicitado","hubieren felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had congratulated","hubiera felicitado","hubieras felicitado","hubiera felicitado","hubiéramos felicitado","hubierais felicitado","hubieran felicitado","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Congratulate! Don't congratulate!","","felicita","felicite","felicitemos","felicitad","feliciten","felicitando","congratulating","felicitado","congratulated" +"felicitar","to congratulate","Imperativo Negativo","Imperative Negative","Presente","Present","Congratulate! Don't congratulate!","","no felicites","no felicite","no felicitemos","no felicitéis","no feliciten","felicitando","congratulating","felicitado","congratulated" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Imperfecto","Imperfect","I was fixing, used to fix, fixed","fijaba","fijabas","fijaba","fijábamos","fijabais","fijaban","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Pretérito","Preterite","I fixed","fijé","fijaste","fijó","fijamos","fijasteis","fijaron","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Condicional","Conditional","I would fix","fijaría","fijarías","fijaría","fijaríamos","fijaríais","fijarían","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fixed","he fijado","has fijado","ha fijado","hemos fijado","habéis fijado","han fijado","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fixed","habré fijado","habrás fijado","habrá fijado","habremos fijado","habréis fijado","habrán fijado","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fixed","había fijado","habías fijado","había fijado","habíamos fijado","habíais fijado","habían fijado","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fixed","hube fijado","hubiste fijado","hubo fijado","hubimos fijado","hubisteis fijado","hubieron fijado","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fixed","habría fijado","habrías fijado","habría fijado","habríamos fijado","habríais fijado","habrían fijado","fijando","fixing","fijado","fixed" +"fijemos" +"fijar","to fix, fasten, secure","Subjuntivo","Subjunctive","Presente","Present","I fix, am fixing","fije","fijes","fije","fijemos","fijéis","fijen","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fixed, was fixing","fijara","fijaras","fijara","fijáramos","fijarais","fijaran","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Subjuntivo","Subjunctive","Futuro","Future","I will fix","fijare","fijares","fijare","fijáremos","fijareis","fijaren","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fixed, fixed","haya fijado","hayas fijado","haya fijado","hayamos fijado","hayáis fijado","hayan fijado","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fixed","hubiere fijado","hubieres fijado","hubiere fijado","hubiéremos fijado","hubiereis fijado","hubieren fijado","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fixed","hubiera fijado","hubieras fijado","hubiera fijado","hubiéramos fijado","hubierais fijado","hubieran fijado","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fix! Don't fix!","","fija","fije","fijemos","fijad","fijen","fijando","fixing","fijado","fixed" +"fijar","to fix, fasten, secure","Imperativo Negativo","Imperative Negative","Presente","Present","Fix! Don't fix!","","no fijes","no fije","no fijemos","no fijéis","no fijen","fijando","fixing","fijado","fixed" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Presente","Present","I fake, am faking","finjo","finges","finge","fingimos","fingís","fingen","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Futuro","Future","I will fake","fingiré","fingirás","fingirá","fingiremos","fingiréis","fingirán","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Imperfecto","Imperfect","I was faking, used to fake, faked","fingía","fingías","fingía","fingíamos","fingíais","fingían","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Pretérito","Preterite","I faked","fingí","fingiste","fingió","fingimos","fingisteis","fingieron","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Condicional","Conditional","I would fake","fingiría","fingirías","fingiría","fingiríamos","fingiríais","fingirían","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have faked","he fingido","has fingido","ha fingido","hemos fingido","habéis fingido","han fingido","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have faked","habré fingido","habrás fingido","habrá fingido","habremos fingido","habréis fingido","habrán fingido","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had faked","había fingido","habías fingido","había fingido","habíamos fingido","habíais fingido","habían fingido","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had faked","hube fingido","hubiste fingido","hubo fingido","hubimos fingido","hubisteis fingido","hubieron fingido","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have faked","habría fingido","habrías fingido","habría fingido","habríamos fingido","habríais fingido","habrían fingido","fingiendo","faking","fingido","faked" +"finjamos" +"fingir","to fake, feign, pretend","Subjuntivo","Subjunctive","Presente","Present","I fake, am faking","finja","finjas","finja","finjamos","finjáis","finjan","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I faked, was faking","fingiera","fingieras","fingiera","fingiéramos","fingierais","fingieran","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Subjuntivo","Subjunctive","Futuro","Future","I will fake","fingiere","fingieres","fingiere","fingiéremos","fingiereis","fingieren","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have faked, faked","haya fingido","hayas fingido","haya fingido","hayamos fingido","hayáis fingido","hayan fingido","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have faked","hubiere fingido","hubieres fingido","hubiere fingido","hubiéremos fingido","hubiereis fingido","hubieren fingido","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had faked","hubiera fingido","hubieras fingido","hubiera fingido","hubiéramos fingido","hubierais fingido","hubieran fingido","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fake! Don't fake!","","finge","finja","finjamos","fingid","finjan","fingiendo","faking","fingido","faked" +"fingir","to fake, feign, pretend","Imperativo Negativo","Imperative Negative","Presente","Present","Fake! Don't fake!","","no finjas","no finja","no finjamos","no finjáis","no finjan","fingiendo","faking","fingido","faked" +"firmar","to sign","Indicativo","Indicative","Presente","Present","I sign, am signing","firmo","firmas","firma","firmamos","firmáis","firman","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Futuro","Future","I will sign","firmaré","firmarás","firmará","firmaremos","firmaréis","firmarán","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Imperfecto","Imperfect","I was signing, used to sign, signed","firmaba","firmabas","firmaba","firmábamos","firmabais","firmaban","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Pretérito","Preterite","I signed","firmé","firmaste","firmó","firmamos","firmasteis","firmaron","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Condicional","Conditional","I would sign","firmaría","firmarías","firmaría","firmaríamos","firmaríais","firmarían","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Presente perfecto","Present Perfect","I have signed","he firmado","has firmado","ha firmado","hemos firmado","habéis firmado","han firmado","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have signed","habré firmado","habrás firmado","habrá firmado","habremos firmado","habréis firmado","habrán firmado","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had signed","había firmado","habías firmado","había firmado","habíamos firmado","habíais firmado","habían firmado","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had signed","hube firmado","hubiste firmado","hubo firmado","hubimos firmado","hubisteis firmado","hubieron firmado","firmando","signing","firmado","signed" +"firmar","to sign","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have signed","habría firmado","habrías firmado","habría firmado","habríamos firmado","habríais firmado","habrían firmado","firmando","signing","firmado","signed" +"firmemos" +"firmar","to sign","Subjuntivo","Subjunctive","Presente","Present","I sign, am signing","firme","firmes","firme","firmemos","firméis","firmen","firmando","signing","firmado","signed" +"firmar","to sign","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I signed, was signing","firmara","firmaras","firmara","firmáramos","firmarais","firmaran","firmando","signing","firmado","signed" +"firmar","to sign","Subjuntivo","Subjunctive","Futuro","Future","I will sign","firmare","firmares","firmare","firmáremos","firmareis","firmaren","firmando","signing","firmado","signed" +"firmar","to sign","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have signed, signed","haya firmado","hayas firmado","haya firmado","hayamos firmado","hayáis firmado","hayan firmado","firmando","signing","firmado","signed" +"firmar","to sign","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have signed","hubiere firmado","hubieres firmado","hubiere firmado","hubiéremos firmado","hubiereis firmado","hubieren firmado","firmando","signing","firmado","signed" +"firmar","to sign","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had signed","hubiera firmado","hubieras firmado","hubiera firmado","hubiéramos firmado","hubierais firmado","hubieran firmado","firmando","signing","firmado","signed" +"firmar","to sign","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sign! Don't sign!","","firma","firme","firmemos","firmad","firmen","firmando","signing","firmado","signed" +"firmar","to sign","Imperativo Negativo","Imperative Negative","Presente","Present","Sign! Don't sign!","","no firmes","no firme","no firmemos","no firméis","no firmen","firmando","signing","firmado","signed" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Presente","Present","I flourish, am flourishing","florezco","floreces","florece","florecemos","florecéis","florecen","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Futuro","Future","I will flourish","floreceré","florecerás","florecerá","floreceremos","floreceréis","florecerán","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Imperfecto","Imperfect","I was flourishing, used to flourish, flourished","florecía","florecías","florecía","florecíamos","florecíais","florecían","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Pretérito","Preterite","I flourished","florecí","floreciste","floreció","florecimos","florecisteis","florecieron","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Condicional","Conditional","I would flourish","florecería","florecerías","florecería","floreceríamos","floreceríais","florecerían","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Presente perfecto","Present Perfect","I have flourished","he florecido","has florecido","ha florecido","hemos florecido","habéis florecido","han florecido","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have flourished","habré florecido","habrás florecido","habrá florecido","habremos florecido","habréis florecido","habrán florecido","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had flourished","había florecido","habías florecido","había florecido","habíamos florecido","habíais florecido","habían florecido","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had flourished","hube florecido","hubiste florecido","hubo florecido","hubimos florecido","hubisteis florecido","hubieron florecido","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have flourished","habría florecido","habrías florecido","habría florecido","habríamos florecido","habríais florecido","habrían florecido","floreciendo","flourishing","florecido","flourished" +"florezcamos" +"florecer","to flourish, flower, bloom","Subjuntivo","Subjunctive","Presente","Present","I flourish, am flourishing","florezca","florezcas","florezca","florezcamos","florezcáis","florezcan","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I flourished, was flourishing","floreciera","florecieras","floreciera","floreciéramos","florecierais","florecieran","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Subjuntivo","Subjunctive","Futuro","Future","I will flourish","floreciere","florecieres","floreciere","floreciéremos","floreciereis","florecieren","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have flourished, flourished","haya florecido","hayas florecido","haya florecido","hayamos florecido","hayáis florecido","hayan florecido","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have flourished","hubiere florecido","hubieres florecido","hubiere florecido","hubiéremos florecido","hubiereis florecido","hubieren florecido","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had flourished","hubiera florecido","hubieras florecido","hubiera florecido","hubiéramos florecido","hubierais florecido","hubieran florecido","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Flourish! Don't flourish!","","florece","florezca","florezcamos","floreced","florezcan","floreciendo","flourishing","florecido","flourished" +"florecer","to flourish, flower, bloom","Imperativo Negativo","Imperative Negative","Presente","Present","Flourish! Don't flourish!","","no florezcas","no florezca","no florezcamos","no florezcáis","no florezcan","floreciendo","flourishing","florecido","flourished" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Presente","Present","I form, am forming","formo","formas","forma","formamos","formáis","forman","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Futuro","Future","I will form","formaré","formarás","formará","formaremos","formaréis","formarán","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Imperfecto","Imperfect","I was forming, used to form, formed","formaba","formabas","formaba","formábamos","formabais","formaban","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Pretérito","Preterite","I formed","formé","formaste","formó","formamos","formasteis","formaron","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Condicional","Conditional","I would form","formaría","formarías","formaría","formaríamos","formaríais","formarían","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Presente perfecto","Present Perfect","I have formed","he formado","has formado","ha formado","hemos formado","habéis formado","han formado","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have formed","habré formado","habrás formado","habrá formado","habremos formado","habréis formado","habrán formado","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had formed","había formado","habías formado","había formado","habíamos formado","habíais formado","habían formado","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had formed","hube formado","hubiste formado","hubo formado","hubimos formado","hubisteis formado","hubieron formado","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have formed","habría formado","habrías formado","habría formado","habríamos formado","habríais formado","habrían formado","formando","forming","formado","formed" +"formemos" +"formar","to form, shape, fashion, make","Subjuntivo","Subjunctive","Presente","Present","I form, am forming","forme","formes","forme","formemos","forméis","formen","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I formed, was forming","formara","formaras","formara","formáramos","formarais","formaran","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Subjuntivo","Subjunctive","Futuro","Future","I will form","formare","formares","formare","formáremos","formareis","formaren","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have formed, formed","haya formado","hayas formado","haya formado","hayamos formado","hayáis formado","hayan formado","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have formed","hubiere formado","hubieres formado","hubiere formado","hubiéremos formado","hubiereis formado","hubieren formado","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had formed","hubiera formado","hubieras formado","hubiera formado","hubiéramos formado","hubierais formado","hubieran formado","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Form! Don't form!","","forma","forme","formemos","formad","formen","formando","forming","formado","formed" +"formar","to form, shape, fashion, make","Imperativo Negativo","Imperative Negative","Presente","Present","Form! Don't form!","","no formes","no forme","no formemos","no forméis","no formen","formando","forming","formado","formed" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Presente","Present","I fortify","fortalezco","fortaleces","fortalece","fortalecemos","fortalecéis","fortalecen","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Futuro","Future","I will fortify","fortaleceré","fortalecerás","fortalecerá","fortaleceremos","fortaleceréis","fortalecerán","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Imperfecto","Imperfect","I used to fortify, fortified","fortalecía","fortalecías","fortalecía","fortalecíamos","fortalecíais","fortalecían","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Pretérito","Preterite","I fortified","fortalecí","fortaleciste","fortaleció","fortalecimos","fortalecisteis","fortalecieron","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Condicional","Conditional","I would fortify","fortalecería","fortalecerías","fortalecería","fortaleceríamos","fortaleceríais","fortalecerían","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fortified","he fortalecido","has fortalecido","ha fortalecido","hemos fortalecido","habéis fortalecido","han fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fortified","habré fortalecido","habrás fortalecido","habrá fortalecido","habremos fortalecido","habréis fortalecido","habrán fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fortified","había fortalecido","habías fortalecido","había fortalecido","habíamos fortalecido","habíais fortalecido","habían fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fortified","hube fortalecido","hubiste fortalecido","hubo fortalecido","hubimos fortalecido","hubisteis fortalecido","hubieron fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fortified","habría fortalecido","habrías fortalecido","habría fortalecido","habríamos fortalecido","habríais fortalecido","habrían fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalezcamos" +"fortalecer","to fortify, strenthen","Subjuntivo","Subjunctive","Presente","Present","I fortify","fortalezca","fortalezcas","fortalezca","fortalezcamos","fortalezcáis","fortalezcan","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fortified, was fortifying","fortaleciera","fortalecieras","fortaleciera","fortaleciéramos","fortalecierais","fortalecieran","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Subjuntivo","Subjunctive","Futuro","Future","I will fortify","fortaleciere","fortalecieres","fortaleciere","fortaleciéremos","fortaleciereis","fortalecieren","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fortified, fortified","haya fortalecido","hayas fortalecido","haya fortalecido","hayamos fortalecido","hayáis fortalecido","hayan fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fortified","hubiere fortalecido","hubieres fortalecido","hubiere fortalecido","hubiéremos fortalecido","hubiereis fortalecido","hubieren fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fortified","hubiera fortalecido","hubieras fortalecido","hubiera fortalecido","hubiéramos fortalecido","hubierais fortalecido","hubieran fortalecido","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fortify! Don't fortify!","","fortalece","fortalezca","fortalezcamos","fortaleced","fortalezcan","fortaleciendo","fortifying","fortalecido","fortified" +"fortalecer","to fortify, strenthen","Imperativo Negativo","Imperative Negative","Presente","Present","Fortify! Don't fortify!","","no fortalezcas","no fortalezca","no fortalezcamos","no fortalezcáis","no fortalezcan","fortaleciendo","fortifying","fortalecido","fortified" +"freír","to fry","Indicativo","Indicative","Presente","Present","I fry, am frying","frío","fríes","fríe","freímos","freís","fríen","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Futuro","Future","I will fry","freiré","freirás","freirá","freiremos","freiréis","freirán","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Imperfecto","Imperfect","I was frying, used to fry, fried","freía","freías","freía","freíamos","freíais","freían","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Pretérito","Preterite","I fried","freí","freíste","frió","freímos","freísteis","frieron","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Condicional","Conditional","I would fry","freiría","freirías","freiría","freiríamos","freiríais","freirían","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fried","he frito","has frito","ha frito","hemos frito","habéis frito","han frito","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fried","habré frito","habrás frito","habrá frito","habremos frito","habréis frito","habrán frito","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fried","había frito","habías frito","había frito","habíamos frito","habíais frito","habían frito","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fried","hube frito","hubiste frito","hubo frito","hubimos frito","hubisteis frito","hubieron frito","friendo","frying","frito","fried" +"freír","to fry","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fried","habría frito","habrías frito","habría frito","habríamos frito","habríais frito","habrían frito","friendo","frying","frito","fried" +"friamos" +"freír","to fry","Subjuntivo","Subjunctive","Presente","Present","I fry, am frying","fría","frías","fría","friamos","friáis","frían","friendo","frying","frito","fried" +"freír","to fry","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fried, was frying","friera","frieras","friera","friéramos","frierais","frieran","friendo","frying","frito","fried" +"freír","to fry","Subjuntivo","Subjunctive","Futuro","Future","I will fry","friere","frieres","friere","friéremos","friereis","frieren","friendo","frying","frito","fried" +"freír","to fry","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fried, fried","haya frito","hayas frito","haya frito","hayamos frito","hayáis frito","hayan frito","friendo","frying","frito","fried" +"freír","to fry","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fried","hubiere frito","hubieres frito","hubiere frito","hubiéremos frito","hubiereis frito","hubieren frito","friendo","frying","frito","fried" +"freír","to fry","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fried","hubiera frito","hubieras frito","hubiera frito","hubiéramos frito","hubierais frito","hubieran frito","friendo","frying","frito","fried" +"freír","to fry","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fry! Don't fry!","","fríe","fría","friamos","freíd","frían","friendo","frying","frito","fried" +"freír","to fry","Imperativo Negativo","Imperative Negative","Presente","Present","Fry! Don't fry!","","no frías","no fría","no friamos","no friáis","no frían","friendo","frying","frito","fried" +"fumar","to smoke","Indicativo","Indicative","Presente","Present","I smoke, am smoking","fumo","fumas","fuma","fumamos","fumáis","fuman","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Futuro","Future","I will smoke","fumaré","fumarás","fumará","fumaremos","fumaréis","fumarán","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Imperfecto","Imperfect","I was smoking, used to smoke, smoked","fumaba","fumabas","fumaba","fumábamos","fumabais","fumaban","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Pretérito","Preterite","I smoked","fumé","fumaste","fumó","fumamos","fumasteis","fumaron","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Condicional","Conditional","I would smoke","fumaría","fumarías","fumaría","fumaríamos","fumaríais","fumarían","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Presente perfecto","Present Perfect","I have smoked","he fumado","has fumado","ha fumado","hemos fumado","habéis fumado","han fumado","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have smoked","habré fumado","habrás fumado","habrá fumado","habremos fumado","habréis fumado","habrán fumado","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had smoked","había fumado","habías fumado","había fumado","habíamos fumado","habíais fumado","habían fumado","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had smoked","hube fumado","hubiste fumado","hubo fumado","hubimos fumado","hubisteis fumado","hubieron fumado","fumando","smoking","fumado","smoked" +"fumar","to smoke","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have smoked","habría fumado","habrías fumado","habría fumado","habríamos fumado","habríais fumado","habrían fumado","fumando","smoking","fumado","smoked" +"fumemos" +"fumar","to smoke","Subjuntivo","Subjunctive","Presente","Present","I smoke, am smoking","fume","fumes","fume","fumemos","fuméis","fumen","fumando","smoking","fumado","smoked" +"fumar","to smoke","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I smoked, was smoking","fumara","fumaras","fumara","fumáramos","fumarais","fumaran","fumando","smoking","fumado","smoked" +"fumar","to smoke","Subjuntivo","Subjunctive","Futuro","Future","I will smoke","fumare","fumares","fumare","fumáremos","fumareis","fumaren","fumando","smoking","fumado","smoked" +"fumar","to smoke","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have smoked, smoked","haya fumado","hayas fumado","haya fumado","hayamos fumado","hayáis fumado","hayan fumado","fumando","smoking","fumado","smoked" +"fumar","to smoke","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have smoked","hubiere fumado","hubieres fumado","hubiere fumado","hubiéremos fumado","hubiereis fumado","hubieren fumado","fumando","smoking","fumado","smoked" +"fumar","to smoke","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had smoked","hubiera fumado","hubieras fumado","hubiera fumado","hubiéramos fumado","hubierais fumado","hubieran fumado","fumando","smoking","fumado","smoked" +"fumar","to smoke","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Smoke! Don't smoke!","","fuma","fume","fumemos","fumad","fumen","fumando","smoking","fumado","smoked" +"fumar","to smoke","Imperativo Negativo","Imperative Negative","Presente","Present","Smoke! Don't smoke!","","no fumes","no fume","no fumemos","no fuméis","no fumen","fumando","smoking","fumado","smoked" +"funcionar","to function; to run, work","Indicativo","Indicative","Presente","Present","I function, am functioning","funciono","funcionas","funciona","funcionamos","funcionáis","funcionan","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Futuro","Future","I will function","funcionaré","funcionarás","funcionará","funcionaremos","funcionaréis","funcionarán","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Imperfecto","Imperfect","I was functioning, used to function, functioned","funcionaba","funcionabas","funcionaba","funcionábamos","funcionabais","funcionaban","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Pretérito","Preterite","I functioned","funcioné","funcionaste","funcionó","funcionamos","funcionasteis","funcionaron","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Condicional","Conditional","I would function","funcionaría","funcionarías","funcionaría","funcionaríamos","funcionaríais","funcionarían","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Presente perfecto","Present Perfect","I have functioned","he funcionado","has funcionado","ha funcionado","hemos funcionado","habéis funcionado","han funcionado","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have functioned","habré funcionado","habrás funcionado","habrá funcionado","habremos funcionado","habréis funcionado","habrán funcionado","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had functioned","había funcionado","habías funcionado","había funcionado","habíamos funcionado","habíais funcionado","habían funcionado","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had functioned","hube funcionado","hubiste funcionado","hubo funcionado","hubimos funcionado","hubisteis funcionado","hubieron funcionado","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have functioned","habría funcionado","habrías funcionado","habría funcionado","habríamos funcionado","habríais funcionado","habrían funcionado","funcionando","functioning","funcionado","functioned" +"funcionemos" +"funcionar","to function; to run, work","Subjuntivo","Subjunctive","Presente","Present","I function, am functioning","funcione","funciones","funcione","funcionemos","funcionéis","funcionen","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I functioned, was functioning","funcionara","funcionaras","funcionara","funcionáramos","funcionarais","funcionaran","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Subjuntivo","Subjunctive","Futuro","Future","I will function","funcionare","funcionares","funcionare","funcionáremos","funcionareis","funcionaren","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have functioned, functioned","haya funcionado","hayas funcionado","haya funcionado","hayamos funcionado","hayáis funcionado","hayan funcionado","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have functioned","hubiere funcionado","hubieres funcionado","hubiere funcionado","hubiéremos funcionado","hubiereis funcionado","hubieren funcionado","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had functioned","hubiera funcionado","hubieras funcionado","hubiera funcionado","hubiéramos funcionado","hubierais funcionado","hubieran funcionado","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Function! Don't function!","","funciona","funcione","funcionemos","funcionad","funcionen","funcionando","functioning","funcionado","functioned" +"funcionar","to function; to run, work","Imperativo Negativo","Imperative Negative","Presente","Present","Function! Don't function!","","no funciones","no funcione","no funcionemos","no funcionéis","no funcionen","funcionando","functioning","funcionado","functioned" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Presente","Present","I win, am winning","gano","ganas","gana","ganamos","ganáis","ganan","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Futuro","Future","I will win","ganaré","ganarás","ganará","ganaremos","ganaréis","ganarán","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Imperfecto","Imperfect","I was winning, used to win, won","ganaba","ganabas","ganaba","ganábamos","ganabais","ganaban","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Pretérito","Preterite","I won","gané","ganaste","ganó","ganamos","ganasteis","ganaron","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Condicional","Conditional","I would win","ganaría","ganarías","ganaría","ganaríamos","ganaríais","ganarían","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Presente perfecto","Present Perfect","I have won","he ganado","has ganado","ha ganado","hemos ganado","habéis ganado","han ganado","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have won","habré ganado","habrás ganado","habrá ganado","habremos ganado","habréis ganado","habrán ganado","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had won","había ganado","habías ganado","había ganado","habíamos ganado","habíais ganado","habían ganado","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had won","hube ganado","hubiste ganado","hubo ganado","hubimos ganado","hubisteis ganado","hubieron ganado","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have won","habría ganado","habrías ganado","habría ganado","habríamos ganado","habríais ganado","habrían ganado","ganando","winning","ganado","won" +"ganemos" +"ganar","to win, gain, earn, get, acquire","Subjuntivo","Subjunctive","Presente","Present","I win, am winning","gane","ganes","gane","ganemos","ganéis","ganen","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I won, was winning","ganara","ganaras","ganara","ganáramos","ganarais","ganaran","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Subjuntivo","Subjunctive","Futuro","Future","I will win","ganare","ganares","ganare","ganáremos","ganareis","ganaren","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have won, won","haya ganado","hayas ganado","haya ganado","hayamos ganado","hayáis ganado","hayan ganado","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have won","hubiere ganado","hubieres ganado","hubiere ganado","hubiéremos ganado","hubiereis ganado","hubieren ganado","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had won","hubiera ganado","hubieras ganado","hubiera ganado","hubiéramos ganado","hubierais ganado","hubieran ganado","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Win! Don't win!","","gana","gane","ganemos","ganad","ganen","ganando","winning","ganado","won" +"ganar","to win, gain, earn, get, acquire","Imperativo Negativo","Imperative Negative","Presente","Present","Win! Don't win!","","no ganes","no gane","no ganemos","no ganéis","no ganen","ganando","winning","ganado","won" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Presente","Present","I spend, am spending","gasto","gastas","gasta","gastamos","gastáis","gastan","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Futuro","Future","I will spend","gastaré","gastarás","gastará","gastaremos","gastaréis","gastarán","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Imperfecto","Imperfect","I was spending, used to spend, spent","gastaba","gastabas","gastaba","gastábamos","gastabais","gastaban","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Pretérito","Preterite","I spent","gasté","gastaste","gastó","gastamos","gastasteis","gastaron","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Condicional","Conditional","I would spend","gastaría","gastarías","gastaría","gastaríamos","gastaríais","gastarían","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Presente perfecto","Present Perfect","I have spent","he gastado","has gastado","ha gastado","hemos gastado","habéis gastado","han gastado","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have spent","habré gastado","habrás gastado","habrá gastado","habremos gastado","habréis gastado","habrán gastado","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had spent","había gastado","habías gastado","había gastado","habíamos gastado","habíais gastado","habían gastado","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had spent","hube gastado","hubiste gastado","hubo gastado","hubimos gastado","hubisteis gastado","hubieron gastado","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have spent","habría gastado","habrías gastado","habría gastado","habríamos gastado","habríais gastado","habrían gastado","gastando","spending","gastado","spent" +"gastemos" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Subjuntivo","Subjunctive","Presente","Present","I spend, am spending","gaste","gastes","gaste","gastemos","gastéis","gasten","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I spent, was spending","gastara","gastaras","gastara","gastáramos","gastarais","gastaran","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Subjuntivo","Subjunctive","Futuro","Future","I will spend","gastare","gastares","gastare","gastáremos","gastareis","gastaren","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have spent, spent","haya gastado","hayas gastado","haya gastado","hayamos gastado","hayáis gastado","hayan gastado","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have spent","hubiere gastado","hubieres gastado","hubiere gastado","hubiéremos gastado","hubiereis gastado","hubieren gastado","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had spent","hubiera gastado","hubieras gastado","hubiera gastado","hubiéramos gastado","hubierais gastado","hubieran gastado","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Spend! Don't spend!","","gasta","gaste","gastemos","gastad","gasten","gastando","spending","gastado","spent" +"gastar","to spend, expend; to use up, consume; to wear away, wear down","Imperativo Negativo","Imperative Negative","Presente","Present","Spend! Don't spend!","","no gastes","no gaste","no gastemos","no gastéis","no gasten","gastando","spending","gastado","spent" +"generalizar","to generalize","Indicativo","Indicative","Presente","Present","I generalize, am generalizing","generalizo","generalizas","generaliza","generalizamos","generalizáis","generalizan","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Futuro","Future","I will generalize","generalizaré","generalizarás","generalizará","generalizaremos","generalizaréis","generalizarán","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Imperfecto","Imperfect","I was generalizing, used to generalize, generalized","generalizaba","generalizabas","generalizaba","generalizábamos","generalizabais","generalizaban","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Pretérito","Preterite","I generalized","generalicé","generalizaste","generalizó","generalizamos","generalizasteis","generalizaron","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Condicional","Conditional","I would generalize","generalizaría","generalizarías","generalizaría","generalizaríamos","generalizaríais","generalizarían","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have generalized","he generalizado","has generalizado","ha generalizado","hemos generalizado","habéis generalizado","han generalizado","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have generalized","habré generalizado","habrás generalizado","habrá generalizado","habremos generalizado","habréis generalizado","habrán generalizado","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had generalized","había generalizado","habías generalizado","había generalizado","habíamos generalizado","habíais generalizado","habían generalizado","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had generalized","hube generalizado","hubiste generalizado","hubo generalizado","hubimos generalizado","hubisteis generalizado","hubieron generalizado","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have generalized","habría generalizado","habrías generalizado","habría generalizado","habríamos generalizado","habríais generalizado","habrían generalizado","generalizando","generalizing","generalizado","generalized" +"generalicemos" +"generalizar","to generalize","Subjuntivo","Subjunctive","Presente","Present","I generalize, am generalizing","generalice","generalices","generalice","generalicemos","generalicéis","generalicen","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I generalized, was generalizing","generalizara","generalizaras","generalizara","generalizáramos","generalizarais","generalizaran","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Subjuntivo","Subjunctive","Futuro","Future","I will generalize","generalizare","generalizares","generalizare","generalizáremos","generalizareis","generalizaren","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have generalized, generalized","haya generalizado","hayas generalizado","haya generalizado","hayamos generalizado","hayáis generalizado","hayan generalizado","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have generalized","hubiere generalizado","hubieres generalizado","hubiere generalizado","hubiéremos generalizado","hubiereis generalizado","hubieren generalizado","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had generalized","hubiera generalizado","hubieras generalizado","hubiera generalizado","hubiéramos generalizado","hubierais generalizado","hubieran generalizado","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Generalize! Don't generalize!","","generaliza","generalice","generalicemos","generalizad","generalicen","generalizando","generalizing","generalizado","generalized" +"generalizar","to generalize","Imperativo Negativo","Imperative Negative","Presente","Present","Generalize! Don't generalize!","","no generalices","no generalice","no generalicemos","no generalicéis","no generalicen","generalizando","generalizing","generalizado","generalized" +"glorificar","to glorify, praise","Indicativo","Indicative","Presente","Present","I glorify, am glorifying","glorifico","glorificas","glorifica","glorificamos","glorificáis","glorifican","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Futuro","Future","I will glorify","glorificaré","glorificarás","glorificará","glorificaremos","glorificaréis","glorificarán","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Imperfecto","Imperfect","I was glorifying, used to glorify, glorified","glorificaba","glorificabas","glorificaba","glorificábamos","glorificabais","glorificaban","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Pretérito","Preterite","I glorified","glorifiqué","glorificaste","glorificó","glorificamos","glorificasteis","glorificaron","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Condicional","Conditional","I would glorify","glorificaría","glorificarías","glorificaría","glorificaríamos","glorificaríais","glorificarían","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Presente perfecto","Present Perfect","I have glorified","he glorificado","has glorificado","ha glorificado","hemos glorificado","habéis glorificado","han glorificado","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have glorified","habré glorificado","habrás glorificado","habrá glorificado","habremos glorificado","habréis glorificado","habrán glorificado","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had glorified","había glorificado","habías glorificado","había glorificado","habíamos glorificado","habíais glorificado","habían glorificado","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had glorified","hube glorificado","hubiste glorificado","hubo glorificado","hubimos glorificado","hubisteis glorificado","hubieron glorificado","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have glorified","habría glorificado","habrías glorificado","habría glorificado","habríamos glorificado","habríais glorificado","habrían glorificado","glorificando","glorifying","glorificado","glorified" +"glorifiquemos" +"glorificar","to glorify, praise","Subjuntivo","Subjunctive","Presente","Present","I glorify, am glorifying","glorifique","glorifiques","glorifique","glorifiquemos","glorifiquéis","glorifiquen","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I glorified, was glorifying","glorificara","glorificaras","glorificara","glorificáramos","glorificarais","glorificaran","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Subjuntivo","Subjunctive","Futuro","Future","I will glorify","glorificare","glorificares","glorificare","glorificáremos","glorificareis","glorificaren","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have glorified, glorified","haya glorificado","hayas glorificado","haya glorificado","hayamos glorificado","hayáis glorificado","hayan glorificado","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have glorified","hubiere glorificado","hubieres glorificado","hubiere glorificado","hubiéremos glorificado","hubiereis glorificado","hubieren glorificado","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had glorified","hubiera glorificado","hubieras glorificado","hubiera glorificado","hubiéramos glorificado","hubierais glorificado","hubieran glorificado","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Glorify! Don't glorify!","","glorifica","glorifique","glorifiquemos","glorificad","glorifiquen","glorificando","glorifying","glorificado","glorified" +"glorificar","to glorify, praise","Imperativo Negativo","Imperative Negative","Presente","Present","Glorify! Don't glorify!","","no glorifiques","no glorifique","no glorifiquemos","no glorifiquéis","no glorifiquen","glorificando","glorifying","glorificado","glorified" +"gobernar","to govern","Indicativo","Indicative","Presente","Present","I govern, am governing","gobierno","gobiernas","gobierna","gobernamos","gobernáis","gobiernan","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Futuro","Future","I will govern","gobernaré","gobernarás","gobernará","gobernaremos","gobernaréis","gobernarán","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Imperfecto","Imperfect","I was governing, used to govern, governed","gobernaba","gobernabas","gobernaba","gobernábamos","gobernabais","gobernaban","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Pretérito","Preterite","I governed","goberné","gobernaste","gobernó","gobernamos","gobernasteis","gobernaron","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Condicional","Conditional","I would govern","gobernaría","gobernarías","gobernaría","gobernaríamos","gobernaríais","gobernarían","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Presente perfecto","Present Perfect","I have governed","he gobernado","has gobernado","ha gobernado","hemos gobernado","habéis gobernado","han gobernado","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have governed","habré gobernado","habrás gobernado","habrá gobernado","habremos gobernado","habréis gobernado","habrán gobernado","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had governed","había gobernado","habías gobernado","había gobernado","habíamos gobernado","habíais gobernado","habían gobernado","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had governed","hube gobernado","hubiste gobernado","hubo gobernado","hubimos gobernado","hubisteis gobernado","hubieron gobernado","gobernando","governing","gobernado","governed" +"gobernar","to govern","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have governed","habría gobernado","habrías gobernado","habría gobernado","habríamos gobernado","habríais gobernado","habrían gobernado","gobernando","governing","gobernado","governed" +"gobernemos" +"gobernar","to govern","Subjuntivo","Subjunctive","Presente","Present","I govern, am governing","gobierne","gobiernes","gobierne","gobernemos","gobernéis","gobiernen","gobernando","governing","gobernado","governed" +"gobernar","to govern","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I governed, was governing","gobernara","gobernaras","gobernara","gobernáramos","gobernarais","gobernaran","gobernando","governing","gobernado","governed" +"gobernar","to govern","Subjuntivo","Subjunctive","Futuro","Future","I will govern","gobernare","gobernares","gobernare","gobernáremos","gobernareis","gobernaren","gobernando","governing","gobernado","governed" +"gobernar","to govern","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have governed, governed","haya gobernado","hayas gobernado","haya gobernado","hayamos gobernado","hayáis gobernado","hayan gobernado","gobernando","governing","gobernado","governed" +"gobernar","to govern","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have governed","hubiere gobernado","hubieres gobernado","hubiere gobernado","hubiéremos gobernado","hubiereis gobernado","hubieren gobernado","gobernando","governing","gobernado","governed" +"gobernar","to govern","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had governed","hubiera gobernado","hubieras gobernado","hubiera gobernado","hubiéramos gobernado","hubierais gobernado","hubieran gobernado","gobernando","governing","gobernado","governed" +"gobernar","to govern","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Govern! Don't govern!","","gobierna","gobierne","gobernemos","gobernad","gobiernen","gobernando","governing","gobernado","governed" +"gobernar","to govern","Imperativo Negativo","Imperative Negative","Presente","Present","Govern! Don't govern!","","no gobiernes","no gobierne","no gobernemos","no gobernéis","no gobiernen","gobernando","governing","gobernado","governed" +"graduar","to graduate","Indicativo","Indicative","Presente","Present","I graduate, am graduating","gradúo","gradúas","gradúa","graduamos","graduáis","gradúan","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Futuro","Future","I will graduate","graduaré","graduarás","graduará","graduaremos","graduaréis","graduarán","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Imperfecto","Imperfect","I was graduating, used to graduate, graduated","graduaba","graduabas","graduaba","graduábamos","graduabais","graduaban","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Pretérito","Preterite","I graduated","gradué","graduaste","graduó","graduamos","graduasteis","graduaron","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Condicional","Conditional","I would graduate","graduaría","graduarías","graduaría","graduaríamos","graduaríais","graduarían","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have graduated","he graduado","has graduado","ha graduado","hemos graduado","habéis graduado","han graduado","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have graduated","habré graduado","habrás graduado","habrá graduado","habremos graduado","habréis graduado","habrán graduado","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had graduated","había graduado","habías graduado","había graduado","habíamos graduado","habíais graduado","habían graduado","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had graduated","hube graduado","hubiste graduado","hubo graduado","hubimos graduado","hubisteis graduado","hubieron graduado","graduando","graduating","graduado","graduated" +"graduar","to graduate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have graduated","habría graduado","habrías graduado","habría graduado","habríamos graduado","habríais graduado","habrían graduado","graduando","graduating","graduado","graduated" +"graduemos" +"graduar","to graduate","Subjuntivo","Subjunctive","Presente","Present","I graduate, am graduating","gradúe","gradúes","gradúe","graduemos","graduéis","gradúen","graduando","graduating","graduado","graduated" +"graduar","to graduate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I graduated, was graduating","graduara","graduaras","graduara","graduáramos","graduarais","graduaran","graduando","graduating","graduado","graduated" +"graduar","to graduate","Subjuntivo","Subjunctive","Futuro","Future","I will graduate","graduare","graduares","graduare","graduáremos","graduareis","graduaren","graduando","graduating","graduado","graduated" +"graduar","to graduate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have graduated, graduated","haya graduado","hayas graduado","haya graduado","hayamos graduado","hayáis graduado","hayan graduado","graduando","graduating","graduado","graduated" +"graduar","to graduate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have graduated","hubiere graduado","hubieres graduado","hubiere graduado","hubiéremos graduado","hubiereis graduado","hubieren graduado","graduando","graduating","graduado","graduated" +"graduar","to graduate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had graduated","hubiera graduado","hubieras graduado","hubiera graduado","hubiéramos graduado","hubierais graduado","hubieran graduado","graduando","graduating","graduado","graduated" +"graduar","to graduate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Graduate! Don't graduate!","","gradúa","gradúe","graduemos","graduad","gradúen","graduando","graduating","graduado","graduated" +"graduar","to graduate","Imperativo Negativo","Imperative Negative","Presente","Present","Graduate! Don't graduate!","","no gradúes","no gradúe","no graduemos","no gradúéis","no gradúen","graduando","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Presente","Present","I graduate, am graduating","me gradúo","te gradúas","se gradúa","nos graduamos","os graduáis","se gradúan","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Futuro","Future","I will graduate","me graduaré","te graduarás","se graduará","nos graduaremos","os graduaréis","se graduarán","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Imperfecto","Imperfect","I was graduating, used to graduate, graduated","me graduaba","te graduabas","se graduaba","nos graduábamos","os graduabais","se graduaban","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Pretérito","Preterite","I graduated","me gradué","te graduaste","se graduó","nos graduamos","os graduasteis","se graduaron","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Condicional","Conditional","I would graduate","me graduaría","te graduarías","se graduaría","nos graduaríamos","os graduaríais","se graduarían","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have graduated","me he graduado","te has graduado","se ha graduado","nos hemos graduado","os habéis graduado","se han graduado","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have graduated","me habré graduado","te habrás graduado","se habrá graduado","nos habremos graduado","os habréis graduado","se habrán graduado","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had graduated","me había graduado","te habías graduado","se había graduado","nos habíamos graduado","os habíais graduado","se habían graduado","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had graduated","me hube graduado","te hubiste graduado","se hubo graduado","nos hubimos graduado","os hubisteis graduado","se hubieron graduado","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have graduated","me habría graduado","te habrías graduado","se habría graduado","nos habríamos graduado","os habríais graduado","se habrían graduado","graduándose","graduating","graduado","graduated" +"nos graduemos" +"graduarse","to graduate","Subjuntivo","Subjunctive","Presente","Present","I graduate, am graduating","me gradúe","te gradúes","se gradúe","nos graduemos","os graduéis","se gradúen","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I graduated, was graduating","me graduara","te graduaras","se graduara","nos graduáramos","os graduarais","se graduaran","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Subjuntivo","Subjunctive","Futuro","Future","I will graduate","me graduare","te graduares","se graduare","nos graduáremos","os graduareis","se graduaren","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have graduated, graduated","me haya graduado","te hayas graduado","se haya graduado","nos hayamos graduado","os hayáis graduado","se hayan graduado","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have graduated","me hubiere graduado","te hubieres graduado","se hubiere graduado","nos hubiéremos graduado","os hubiereis graduado","se hubieren graduado","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had graduated","me hubiera graduado","te hubieras graduado","se hubiera graduado","nos hubiéramos graduado","os hubierais graduado","se hubieran graduado","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Graduate! Don't graduate!","","gradúate","gradúese","nos graduemos","graduaos","gradúense","graduándose","graduating","graduado","graduated" +"graduarse","to graduate","Imperativo Negativo","Imperative Negative","Presente","Present","Graduate! Don't graduate!","","no te gradúes","no se gradúe","no nos graduemos","no os graduéis","no se gradúen","graduándose","graduating","graduado","graduated" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Presente","Present","I shout, am shouting","grito","gritas","grita","gritamos","gritáis","gritan","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Futuro","Future","I will shout","gritaré","gritarás","gritará","gritaremos","gritaréis","gritarán","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Imperfecto","Imperfect","I was shouting, used to shout, shouted","gritaba","gritabas","gritaba","gritábamos","gritabais","gritaban","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Pretérito","Preterite","I shouted","grité","gritaste","gritó","gritamos","gritasteis","gritaron","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Condicional","Conditional","I would shout","gritaría","gritarías","gritaría","gritaríamos","gritaríais","gritarían","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shouted","he gritado","has gritado","ha gritado","hemos gritado","habéis gritado","han gritado","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shouted","habré gritado","habrás gritado","habrá gritado","habremos gritado","habréis gritado","habrán gritado","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shouted","había gritado","habías gritado","había gritado","habíamos gritado","habíais gritado","habían gritado","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shouted","hube gritado","hubiste gritado","hubo gritado","hubimos gritado","hubisteis gritado","hubieron gritado","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shouted","habría gritado","habrías gritado","habría gritado","habríamos gritado","habríais gritado","habrían gritado","gritando","shouting","gritado","shouted" +"gritemos" +"gritar","to shout, yell, scream, cry out","Subjuntivo","Subjunctive","Presente","Present","I shout, am shouting","grite","grites","grite","gritemos","gritéis","griten","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shouted, was shouting","gritara","gritaras","gritara","gritáramos","gritarais","gritaran","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shouted, shouted","haya gritado","hayas gritado","haya gritado","hayamos gritado","hayáis gritado","hayan gritado","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shouted","hubiere gritado","hubieres gritado","hubiere gritado","hubiéremos gritado","hubiereis gritado","hubieren gritado","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shouted","hubiera gritado","hubieras gritado","hubiera gritado","hubiéramos gritado","hubierais gritado","hubieran gritado","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Shout! Don't shout!","","grita","grite","gritemos","gritad","griten","gritando","shouting","gritado","shouted" +"gritar","to shout, yell, scream, cry out","Imperativo Negativo","Imperative Negative","Presente","Present","Shout! Don't shout!","","no grites","no grite","no gritemos","no gritéis","no griten","gritando","shouting","gritado","shouted" +"gruñir","to grunt, growl","Indicativo","Indicative","Presente","Present","I grunt, am grunting","gruño","gruñes","gruñe","gruñimos","gruñís","gruñen","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Futuro","Future","I will grunt","gruñiré","gruñirás","gruñirá","gruñiremos","gruñiréis","gruñirán","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Imperfecto","Imperfect","I was grunting, used to grunt, grunted","gruñía","gruñías","gruñía","gruñíamos","gruñíais","gruñían","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Pretérito","Preterite","I grunted","gruñí","gruñiste","gruñó","gruñimos","gruñisteis","gruñeron","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Condicional","Conditional","I would grunt","gruñiría","gruñirías","gruñiría","gruñiríamos","gruñiríais","gruñirían","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Presente perfecto","Present Perfect","I have grunted","he gruñido","has gruñido","ha gruñido","hemos gruñido","habéis gruñido","han gruñido","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have grunted","habré gruñido","habrás gruñido","habrá gruñido","habremos gruñido","habréis gruñido","habrán gruñido","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had grunted","había gruñido","habías gruñido","había gruñido","habíamos gruñido","habíais gruñido","habían gruñido","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had grunted","hube gruñido","hubiste gruñido","hubo gruñido","hubimos gruñido","hubisteis gruñido","hubieron gruñido","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have grunted","habría gruñido","habrías gruñido","habría gruñido","habríamos gruñido","habríais gruñido","habrían gruñido","gruñendo","grunting","gruñido","grunted" +"gruñamos" +"gruñir","to grunt, growl","Subjuntivo","Subjunctive","Presente","Present","I grunt, am grunting","gruña","gruñas","gruña","gruñamos","gruñáis","gruñan","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I grunted, was grunting","gruñera","gruñeras","gruñera","gruñéramos","gruñerais","gruñeran","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Subjuntivo","Subjunctive","Futuro","Future","I will grunt","gruñere","gruñeres","gruñere","gruñéremos","gruñereis","gruñeren","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have grunted, grunted","haya gruñido","hayas gruñido","haya gruñido","hayamos gruñido","hayáis gruñido","hayan gruñido","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have grunted","hubiere gruñido","hubieres gruñido","hubiere gruñido","hubiéremos gruñido","hubiereis gruñido","hubieren gruñido","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had grunted","hubiera gruñido","hubieras gruñido","hubiera gruñido","hubiéramos gruñido","hubierais gruñido","hubieran gruñido","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Grunt! Don't grunt!","","gruñe","gruña","gruñamos","gruñed","gruñan","gruñendo","grunting","gruñido","grunted" +"gruñir","to grunt, growl","Imperativo Negativo","Imperative Negative","Presente","Present","Grunt! Don't grunt!","","no gruñas","no gruña","no gruñamos","no gruñáis","no gruñan","gruñendo","grunting","gruñido","grunted" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Presente","Present","I guard, am guarding","guardo","guardas","guarda","guardamos","guardáis","guardan","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Futuro","Future","I will guard","guardaré","guardarás","guardará","guardaremos","guardaréis","guardarán","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Imperfecto","Imperfect","I was guarding, used to guard, guarded","guardaba","guardabas","guardaba","guardábamos","guardabais","guardaban","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Pretérito","Preterite","I guarded","guardé","guardaste","guardó","guardamos","guardasteis","guardaron","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Condicional","Conditional","I would guard","guardaría","guardarías","guardaría","guardaríamos","guardaríais","guardarían","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Presente perfecto","Present Perfect","I have guarded","he guardado","has guardado","ha guardado","hemos guardado","habéis guardado","han guardado","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have guarded","habré guardado","habrás guardado","habrá guardado","habremos guardado","habréis guardado","habrán guardado","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had guarded","había guardado","habías guardado","había guardado","habíamos guardado","habíais guardado","habían guardado","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had guarded","hube guardado","hubiste guardado","hubo guardado","hubimos guardado","hubisteis guardado","hubieron guardado","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have guarded","habría guardado","habrías guardado","habría guardado","habríamos guardado","habríais guardado","habrían guardado","guardando","guarding","guardado","guarded" +"guardemos" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Subjuntivo","Subjunctive","Presente","Present","I guard, am guarding","guarde","guardes","guarde","guardemos","guardéis","guarden","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I guarded, was guarding","guardara","guardaras","guardara","guardáramos","guardarais","guardaran","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Subjuntivo","Subjunctive","Futuro","Future","I will guard","guardare","guardares","guardare","guardáremos","guardareis","guardaren","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have guarded, guarded","haya guardado","hayas guardado","haya guardado","hayamos guardado","hayáis guardado","hayan guardado","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have guarded","hubiere guardado","hubieres guardado","hubiere guardado","hubiéremos guardado","hubiereis guardado","hubieren guardado","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had guarded","hubiera guardado","hubieras guardado","hubiera guardado","hubiéramos guardado","hubierais guardado","hubieran guardado","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Guard! Don't guard!","","guarda","guarde","guardemos","guardad","guarden","guardando","guarding","guardado","guarded" +"guardar","to guard, watch over, protect, take care of; to keep, hold on to; to put away, store away","Imperativo Negativo","Imperative Negative","Presente","Present","Guard! Don't guard!","","no guardes","no guarde","no guardemos","no guardéis","no guarden","guardando","guarding","guardado","guarded" +"guiar","to guide","Indicativo","Indicative","Presente","Present","I guide, am guiding","guío","guías","guía","guiamos","guiáis","guían","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Futuro","Future","I will guide","guiaré","guiarás","guiará","guiaremos","guiaréis","guiarán","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Imperfecto","Imperfect","I was guiding, used to guide, guided","guiaba","guiabas","guiaba","guiábamos","guiabais","guiaban","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Pretérito","Preterite","I guided","guie","guiaste","guio","guiamos","guiasteis","guiaron","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Condicional","Conditional","I would guide","guiaría","guiarías","guiaría","guiaríamos","guiaríais","guiarían","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Presente perfecto","Present Perfect","I have guided","he guiado","has guiado","ha guiado","hemos guiado","habéis guiado","han guiado","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have guided","habré guiado","habrás guiado","habrá guiado","habremos guiado","habréis guiado","habrán guiado","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had guided","había guiado","habías guiado","había guiado","habíamos guiado","habíais guiado","habían guiado","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had guided","hube guiado","hubiste guiado","hubo guiado","hubimos guiado","hubisteis guiado","hubieron guiado","guiando","guiding","guiado","guided" +"guiar","to guide","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have guided","habría guiado","habrías guiado","habría guiado","habríamos guiado","habríais guiado","habrían guiado","guiando","guiding","guiado","guided" +"guiemos" +"guiar","to guide","Subjuntivo","Subjunctive","Presente","Present","I guide, am guiding","guíe","guíes","guíe","guiemos","guiéis","guíen","guiando","guiding","guiado","guided" +"guiar","to guide","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I guided, was guiding","guiara","guiaras","guiara","guiáramos","guiarais","guiaran","guiando","guiding","guiado","guided" +"guiar","to guide","Subjuntivo","Subjunctive","Futuro","Future","I will guide","guiare","guiares","guiare","guiáremos","guiareis","guiaren","guiando","guiding","guiado","guided" +"guiar","to guide","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have guided, guided","haya guiado","hayas guiado","haya guiado","hayamos guiado","hayáis guiado","hayan guiado","guiando","guiding","guiado","guided" +"guiar","to guide","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have guided","hubiere guiado","hubieres guiado","hubiere guiado","hubiéremos guiado","hubiereis guiado","hubieren guiado","guiando","guiding","guiado","guided" +"guiar","to guide","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had guided","hubiera guiado","hubieras guiado","hubiera guiado","hubiéramos guiado","hubierais guiado","hubieran guiado","guiando","guiding","guiado","guided" +"guiar","to guide","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Guide! Don't guide!","","guía","guíe","guiemos","guiad","guíen","guiando","guiding","guiado","guided" +"guiar","to guide","Imperativo Negativo","Imperative Negative","Presente","Present","Guide! Don't guide!","","no guíes","no guíe","no guiemos","no guiéis","no guíen","guiando","guiding","guiado","guided" +"gustar","to please, be pleasing","Indicativo","Indicative","Presente","Present","I please, am pleasing","gusto","gustas","gusta","gustamos","gustáis","gustan","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Futuro","Future","I will please","gustaré","gustarás","gustará","gustaremos","gustaréis","gustarán","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Imperfecto","Imperfect","I was pleasing, used to please, pleased","gustaba","gustabas","gustaba","gustábamos","gustabais","gustaban","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Pretérito","Preterite","I pleased","gusté","gustaste","gustó","gustamos","gustasteis","gustaron","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Condicional","Conditional","I would please","gustaría","gustarías","gustaría","gustaríamos","gustaríais","gustarían","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Presente perfecto","Present Perfect","I have pleased","he gustado","has gustado","ha gustado","hemos gustado","habéis gustado","han gustado","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have pleased","habré gustado","habrás gustado","habrá gustado","habremos gustado","habréis gustado","habrán gustado","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had pleased","había gustado","habías gustado","había gustado","habíamos gustado","habíais gustado","habían gustado","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had pleased","hube gustado","hubiste gustado","hubo gustado","hubimos gustado","hubisteis gustado","hubieron gustado","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have pleased","habría gustado","habrías gustado","habría gustado","habríamos gustado","habríais gustado","habrían gustado","gustando","pleasing","gustado","pleased" +"gustemos" +"gustar","to please, be pleasing","Subjuntivo","Subjunctive","Presente","Present","I please, am pleasing","guste","gustes","guste","gustemos","gustéis","gusten","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I pleased, was pleasing","gustara","gustaras","gustara","gustáramos","gustarais","gustaran","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Subjuntivo","Subjunctive","Futuro","Future","I will please","gustare","gustares","gustare","gustáremos","gustareis","gustaren","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have pleased, pleased","haya gustado","hayas gustado","haya gustado","hayamos gustado","hayáis gustado","hayan gustado","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have pleased","hubiere gustado","hubieres gustado","hubiere gustado","hubiéremos gustado","hubiereis gustado","hubieren gustado","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had pleased","hubiera gustado","hubieras gustado","hubiera gustado","hubiéramos gustado","hubierais gustado","hubieran gustado","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Please! Don't please!","","gusta","guste","gustemos","gustad","gusten","gustando","pleasing","gustado","pleased" +"gustar","to please, be pleasing","Imperativo Negativo","Imperative Negative","Presente","Present","Please! Don't please!","","no gustes","no guste","no gustemos","no gustéis","no gusten","gustando","pleasing","gustado","pleased" +"hablar","to speak","Indicativo","Indicative","Presente","Present","I speak, am speaking","hablo","hablas","habla","hablamos","habláis","hablan","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Futuro","Future","I will speak","hablaré","hablarás","hablará","hablaremos","hablaréis","hablarán","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Imperfecto","Imperfect","I was speaking, used to speak, spoke","hablaba","hablabas","hablaba","hablábamos","hablabais","hablaban","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Pretérito","Preterite","I spoke","hablé","hablaste","habló","hablamos","hablasteis","hablaron","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Condicional","Conditional","I would speak","hablaría","hablarías","hablaría","hablaríamos","hablaríais","hablarían","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Presente perfecto","Present Perfect","I have spoken","he hablado","has hablado","ha hablado","hemos hablado","habéis hablado","han hablado","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have spoken","habré hablado","habrás hablado","habrá hablado","habremos hablado","habréis hablado","habrán hablado","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had spoken","había hablado","habías hablado","había hablado","habíamos hablado","habíais hablado","habían hablado","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had spoken","hube hablado","hubiste hablado","hubo hablado","hubimos hablado","hubisteis hablado","hubieron hablado","hablando","speaking","hablado","spoken" +"hablar","to speak","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have spoken","habría hablado","habrías hablado","habría hablado","habríamos hablado","habríais hablado","habrían hablado","hablando","speaking","hablado","spoken" +"hablemos" +"hablar","to speak","Subjuntivo","Subjunctive","Presente","Present","I speak, am speaking","hable","hables","hable","hablemos","habléis","hablen","hablando","speaking","hablado","spoken" +"hablar","to speak","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I spoke, was speaking","hablara","hablaras","hablara","habláramos","hablarais","hablaran","hablando","speaking","hablado","spoken" +"hablar","to speak","Subjuntivo","Subjunctive","Futuro","Future","I will speak","hablare","hablares","hablare","habláremos","hablareis","hablaren","hablando","speaking","hablado","spoken" +"hablar","to speak","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have spoken, spoke","haya hablado","hayas hablado","haya hablado","hayamos hablado","hayáis hablado","hayan hablado","hablando","speaking","hablado","spoken" +"hablar","to speak","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have spoken","hubiere hablado","hubieres hablado","hubiere hablado","hubiéremos hablado","hubiereis hablado","hubieren hablado","hablando","speaking","hablado","spoken" +"hablar","to speak","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had spoken","hubiera hablado","hubieras hablado","hubiera hablado","hubiéramos hablado","hubierais hablado","hubieran hablado","hablando","speaking","hablado","spoken" +"hablar","to speak","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Speak! Don't speak!","","habla","hable","hablemos","hablad","hablen","hablando","speaking","hablado","spoken" +"hablar","to speak","Imperativo Negativo","Imperative Negative","Presente","Present","Speak! Don't speak!","","no hables","no hable","no hablemos","no habléis","no hablen","hablando","speaking","hablado","spoken" +"hacer","to do, make","Indicativo","Indicative","Presente","Present","I do, am doing","hago","haces","hace","hacemos","hacéis","hacen","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Futuro","Future","I will do","haré","harás","hará","haremos","haréis","harán","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Imperfecto","Imperfect","I was doing, used to do, did","hacía","hacías","hacía","hacíamos","hacíais","hacían","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Pretérito","Preterite","I did","hice","hiciste","hizo","hicimos","hicisteis","hicieron","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Condicional","Conditional","I would do","haría","harías","haría","haríamos","haríais","harían","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Presente perfecto","Present Perfect","I have done","he hecho","has hecho","ha hecho","hemos hecho","habéis hecho","han hecho","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have done","habré hecho","habrás hecho","habrá hecho","habremos hecho","habréis hecho","habrán hecho","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had done","había hecho","habías hecho","había hecho","habíamos hecho","habíais hecho","habían hecho","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had done","hube hecho","hubiste hecho","hubo hecho","hubimos hecho","hubisteis hecho","hubieron hecho","haciendo","doing","hecho","done" +"hacer","to do, make","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have done","habría hecho","habrías hecho","habría hecho","habríamos hecho","habríais hecho","habrían hecho","haciendo","doing","hecho","done" +"hagamos" +"hacer","to do, make","Subjuntivo","Subjunctive","Presente","Present","I do, am doing","haga","hagas","haga","hagamos","hagáis","hagan","haciendo","doing","hecho","done" +"hacer","to do, make","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I did, was doing","hiciera","hicieras","hiciera","hiciéramos","hicierais","hicieran","haciendo","doing","hecho","done" +"hacer","to do, make","Subjuntivo","Subjunctive","Futuro","Future","I will do","hiciere","hicieres","hiciere","hiciéremos","hiciereis","hicieren","haciendo","doing","hecho","done" +"hacer","to do, make","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have done, did","haya hecho","hayas hecho","haya hecho","hayamos hecho","hayáis hecho","hayan hecho","haciendo","doing","hecho","done" +"hacer","to do, make","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have done","hubiere hecho","hubieres hecho","hubiere hecho","hubiéremos hecho","hubiereis hecho","hubieren hecho","haciendo","doing","hecho","done" +"hacer","to do, make","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had done","hubiera hecho","hubieras hecho","hubiera hecho","hubiéramos hecho","hubierais hecho","hubieran hecho","haciendo","doing","hecho","done" +"hacer","to do, make","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Do! Don't do!","","haz","haga","hagamos","haced","hagan","haciendo","doing","hecho","done" +"hacer","to do, make","Imperativo Negativo","Imperative Negative","Presente","Present","Do! Don't do!","","no hagas","no haga","no hagamos","no hagáis","no hagan","haciendo","doing","hecho","done" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Presente","Present","I find, am finding","hallo","hallas","halla","hallamos","halláis","hallan","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Futuro","Future","I will find","hallaré","hallarás","hallará","hallaremos","hallaréis","hallarán","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Imperfecto","Imperfect","I was finding, used to find, found","hallaba","hallabas","hallaba","hallábamos","hallabais","hallaban","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Pretérito","Preterite","I found","hallé","hallaste","halló","hallamos","hallasteis","hallaron","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Condicional","Conditional","I would find","hallaría","hallarías","hallaría","hallaríamos","hallaríais","hallarían","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have found","he hallado","has hallado","ha hallado","hemos hallado","habéis hallado","han hallado","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have found","habré hallado","habrás hallado","habrá hallado","habremos hallado","habréis hallado","habrán hallado","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had found","había hallado","habías hallado","había hallado","habíamos hallado","habíais hallado","habían hallado","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had found","hube hallado","hubiste hallado","hubo hallado","hubimos hallado","hubisteis hallado","hubieron hallado","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have found","habría hallado","habrías hallado","habría hallado","habríamos hallado","habríais hallado","habrían hallado","hallando","finding","hallado","found" +"hallemos" +"hallar","to find; to discover; to locate; to find out","Subjuntivo","Subjunctive","Presente","Present","I find, am finding","halle","halles","halle","hallemos","halléis","hallen","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I found, was finding","hallara","hallaras","hallara","halláramos","hallarais","hallaran","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Subjuntivo","Subjunctive","Futuro","Future","I will find","hallare","hallares","hallare","halláremos","hallareis","hallaren","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have found, found","haya hallado","hayas hallado","haya hallado","hayamos hallado","hayáis hallado","hayan hallado","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have found","hubiere hallado","hubieres hallado","hubiere hallado","hubiéremos hallado","hubiereis hallado","hubieren hallado","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had found","hubiera hallado","hubieras hallado","hubiera hallado","hubiéramos hallado","hubierais hallado","hubieran hallado","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Find! Don't find!","","halla","halle","hallemos","hallad","hallen","hallando","finding","hallado","found" +"hallar","to find; to discover; to locate; to find out","Imperativo Negativo","Imperative Negative","Presente","Present","Find! Don't find!","","no halles","no halle","no hallemos","no halléis","no hallen","hallando","finding","hallado","found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Presente","Present","I am, am being","me hallo","te hallas","se halla","nos hallamos","os halláis","se hallan","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Futuro","Future","I will be","me hallaré","te hallarás","se hallará","nos hallaremos","os hallaréis","se hallarán","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Imperfecto","Imperfect","I was being, used to be, was","me hallaba","te hallabas","se hallaba","nos hallábamos","os hallabais","se hallaban","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Pretérito","Preterite","I was","me hallé","te hallaste","se halló","nos hallamos","os hallasteis","se hallaron","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Condicional","Conditional","I would be","me hallaría","te hallarías","se hallaría","nos hallaríamos","os hallaríais","se hallarían","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been","me he hallado","te has hallado","se ha hallado","nos hemos hallado","os habéis hallado","se han hallado","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been","me habré hallado","te habrás hallado","se habrá hallado","nos habremos hallado","os habréis hallado","se habrán hallado","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been","me había hallado","te habías hallado","se había hallado","nos habíamos hallado","os habíais hallado","se habían hallado","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been","me hube hallado","te hubiste hallado","se hubo hallado","nos hubimos hallado","os hubisteis hallado","se hubieron hallado","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been","me habría hallado","te habrías hallado","se habría hallado","nos habríamos hallado","os habríais hallado","se habrían hallado","hallándose","being","hallado","been, found" +"nos hallemos" +"hallarse","to be, to find oneself; to be located, found","Subjuntivo","Subjunctive","Presente","Present","I am, am being","me halle","te halles","se halle","nos hallemos","os halléis","se hallen","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was, was being","me hallara","te hallaras","se hallara","nos halláramos","os hallarais","se hallaran","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Subjuntivo","Subjunctive","Futuro","Future","I will be","me hallare","te hallares","se hallare","nos halláremos","os hallareis","se hallaren","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been, was","me haya hallado","te hayas hallado","se haya hallado","nos hayamos hallado","os hayáis hallado","se hayan hallado","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been","me hubiere hallado","te hubieres hallado","se hubiere hallado","nos hubiéremos hallado","os hubiereis hallado","se hubieren hallado","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been","me hubiera hallado","te hubieras hallado","se hubiera hallado","nos hubiéramos hallado","os hubierais hallado","se hubieran hallado","hallándose","being","hallado","been, found" +"hallarse","to be, to find oneself; to be located, found","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be! Don't be!","","hállate","hállese","nos hallemos","hallaos","hállense","hallándose","being","hallado","been, found", +"hallarse","to be, to find oneself; to be located, found","Imperativo Negativo","Imperative Negative","Presente","Present","Be! Don't be!","","no te halles","no se halle","no nos hallemos","no os halléis","no se hallen","hallándose","being","hallado","been, found", +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Presente","Present","I freeze, am freezing","hielo","hielas","hiela","helamos","heláis","hielan","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Futuro","Future","I will freeze","helaré","helarás","helará","helaremos","helaréis","helarán","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Imperfecto","Imperfect","I was freezing, used to freeze, froze","helaba","helabas","helaba","helábamos","helabais","helaban","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Pretérito","Preterite","I froze","helé","helaste","heló","helamos","helasteis","helaron","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Condicional","Conditional","I would freeze","helaría","helarías","helaría","helaríamos","helaríais","helarían","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Presente perfecto","Present Perfect","I have frozen","he helado","has helado","ha helado","hemos helado","habéis helado","han helado","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have frozen","habré helado","habrás helado","habrá helado","habremos helado","habréis helado","habrán helado","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had frozen","había helado","habías helado","había helado","habíamos helado","habíais helado","habían helado","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had frozen","hube helado","hubiste helado","hubo helado","hubimos helado","hubisteis helado","hubieron helado","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have frozen","habría helado","habrías helado","habría helado","habríamos helado","habríais helado","habrían helado","helando","freezing","helado","frozen" +"helemos" +"helar","to freeze, to congeal, to chill","Subjuntivo","Subjunctive","Presente","Present","I freeze, am freezing","hiele","hieles","hiele","helemos","heléis","hielen","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I froze, was freezing","helara","helaras","helara","heláramos","helarais","helaran","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Subjuntivo","Subjunctive","Futuro","Future","I will freeze","helare","helares","helare","heláremos","helareis","helaren","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have frozen, froze","haya helado","hayas helado","haya helado","hayamos helado","hayáis helado","hayan helado","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have frozen","hubiere helado","hubieres helado","hubiere helado","hubiéremos helado","hubiereis helado","hubieren helado","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had frozen","hubiera helado","hubieras helado","hubiera helado","hubiéramos helado","hubierais helado","hubieran helado","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Freeze! Don't freeze!","","hiela","hiele","helemos","helad","hielen","helando","freezing","helado","frozen" +"helar","to freeze, to congeal, to chill","Imperativo Negativo","Imperative Negative","Presente","Present","Freeze! Don't freeze!","","no hieles","no hiele","no helemos","no heléis","no hielen","helando","freezing","helado","frozen" +"heredar","to inherit","Indicativo","Indicative","Presente","Present","I inherit, am inheriting","heredo","heredas","hereda","heredamos","heredáis","heredan","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Futuro","Future","I will inherit","heredaré","heredarás","heredará","heredaremos","heredaréis","heredarán","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Imperfecto","Imperfect","I was inheriting, used to inherit, inherited","heredaba","heredabas","heredaba","heredábamos","heredabais","heredaban","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Pretérito","Preterite","I inherited","heredé","heredaste","heredó","heredamos","heredasteis","heredaron","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Condicional","Conditional","I would inherit","heredaría","heredarías","heredaría","heredaríamos","heredaríais","heredarían","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Presente perfecto","Present Perfect","I have inherited","he heredado","has heredado","ha heredado","hemos heredado","habéis heredado","han heredado","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have inherited","habré heredado","habrás heredado","habrá heredado","habremos heredado","habréis heredado","habrán heredado","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had inherited","había heredado","habías heredado","había heredado","habíamos heredado","habíais heredado","habían heredado","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had inherited","hube heredado","hubiste heredado","hubo heredado","hubimos heredado","hubisteis heredado","hubieron heredado","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have inherited","habría heredado","habrías heredado","habría heredado","habríamos heredado","habríais heredado","habrían heredado","heredando","inheriting","heredado","inherited" +"heredemos" +"heredar","to inherit","Subjuntivo","Subjunctive","Presente","Present","I inherit, am inheriting","herede","heredes","herede","heredemos","heredéis","hereden","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I inherited, was inheriting","heredara","heredaras","heredara","heredáramos","heredarais","heredaran","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Subjuntivo","Subjunctive","Futuro","Future","I will inherit","heredare","heredares","heredare","heredáremos","heredareis","heredaren","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have inherited, inherited","haya heredado","hayas heredado","haya heredado","hayamos heredado","hayáis heredado","hayan heredado","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have inherited","hubiere heredado","hubieres heredado","hubiere heredado","hubiéremos heredado","hubiereis heredado","hubieren heredado","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had inherited","hubiera heredado","hubieras heredado","hubiera heredado","hubiéramos heredado","hubierais heredado","hubieran heredado","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","inherit! Don't inherit!","","hereda","herede","heredemos","heredad","hereden","heredando","inheriting","heredado","inherited" +"heredar","to inherit","Imperativo Negativo","Imperative Negative","Presente","Present","inherit! Don't inherit!","","no heredes","no herede","no heredemos","no heredéis","no hereden","heredando","inheriting","heredado","inherited" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Presente","Present","I injure, am injuring","hiero","hieres","hiere","herimos","herís","hieren","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Futuro","Future","I will injure","heriré","herirás","herirá","heriremos","heriréis","herirán","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Imperfecto","Imperfect","I was injuring, used to injure, injured","hería","herías","hería","heríamos","heríais","herían","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Pretérito","Preterite","I injured","herí","heriste","hirió","herimos","heristeis","hirieron","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Condicional","Conditional","I would injure","heriría","herirías","heriría","heriríamos","heriríais","herirían","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Presente perfecto","Present Perfect","I have injured","he herido","has herido","ha herido","hemos herido","habéis herido","han herido","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have injured","habré herido","habrás herido","habrá herido","habremos herido","habréis herido","habrán herido","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had injured","había herido","habías herido","había herido","habíamos herido","habíais herido","habían herido","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had injured","hube herido","hubiste herido","hubo herido","hubimos herido","hubisteis herido","hubieron herido","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have injured","habría herido","habrías herido","habría herido","habríamos herido","habríais herido","habrían herido","hiriendo","injuring","herido","injured" +"hiramos" +"herir","to injure, hurt, wound; to beat, strike","Subjuntivo","Subjunctive","Presente","Present","I injure, am injuring","hiera","hieras","hiera","hiramos","hiráis","hieran","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I injured, was injuring","hiriera","hirieras","hiriera","hiriéramos","hirierais","hirieran","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Subjuntivo","Subjunctive","Futuro","Future","I will injure","hiriere","hirieres","hiriere","hiriéremos","hiriereis","hirieren","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have injured, injured","haya herido","hayas herido","haya herido","hayamos herido","hayáis herido","hayan herido","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have injured","hubiere herido","hubieres herido","hubiere herido","hubiéremos herido","hubiereis herido","hubieren herido","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had injured","hubiera herido","hubieras herido","hubiera herido","hubiéramos herido","hubierais herido","hubieran herido","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Injure! Don't injure!","","hiere","hiera","hiramos","herid","hieran","hiriendo","injuring","herido","injured" +"herir","to injure, hurt, wound; to beat, strike","Imperativo Negativo","Imperative Negative","Presente","Present","Injure! Don't injure!","","no hieras","no hiera","no hiramos","no hiráis","no hieran","hiriendo","injuring","herido","injured" +"hervir","to boil, entertain","Indicativo","Indicative","Presente","Present","I boil, am boiling","hiervo","hierves","hierve","hervimos","hervís","hierven","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Futuro","Future","I will boil","herviré","hervirás","hervirá","herviremos","herviréis","hervirán","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Imperfecto","Imperfect","I was boiling, used to boil, boiled","hervía","hervías","hervía","hervíamos","hervíais","hervían","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Pretérito","Preterite","I boiled","herví","herviste","hirvió","hervimos","hervisteis","hirvieron","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Condicional","Conditional","I would boil","herviría","hervirías","herviría","herviríamos","herviríais","hervirían","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have boiled","he hervido","has hervido","ha hervido","hemos hervido","habéis hervido","han hervido","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have boiled","habré hervido","habrás hervido","habrá hervido","habremos hervido","habréis hervido","habrán hervido","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had boiled","había hervido","habías hervido","había hervido","habíamos hervido","habíais hervido","habían hervido","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had boiled","hube hervido","hubiste hervido","hubo hervido","hubimos hervido","hubisteis hervido","hubieron hervido","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have boiled","habría hervido","habrías hervido","habría hervido","habríamos hervido","habríais hervido","habrían hervido","hirviendo","boiling","hervido","boiled" +"hirvamos" +"hervir","to boil, entertain","Subjuntivo","Subjunctive","Presente","Present","I boil, am boiling","hierva","hiervas","hierva","hirvamos","hirváis","hiervan","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I boiled, was boiling","hirviera","hirvieras","hirviera","hirviéramos","hirvierais","hirvieran","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Subjuntivo","Subjunctive","Futuro","Future","I will boil","hirviere","hirvieres","hirviere","hirviéremos","hirviereis","hirvieren","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have boiled, boiled","haya hervido","hayas hervido","haya hervido","hayamos hervido","hayáis hervido","hayan hervido","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have boiled","hubiere hervido","hubieres hervido","hubiere hervido","hubiéremos hervido","hubiereis hervido","hubieren hervido","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had boiled","hubiera hervido","hubieras hervido","hubiera hervido","hubiéramos hervido","hubierais hervido","hubieran hervido","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Boil! Don't boil!","","hierve","hierva","hirvamos","hervid","hiervan","hirviendo","boiling","hervido","boiled" +"hervir","to boil, entertain","Imperativo Negativo","Imperative Negative","Presente","Present","Boil! Don't boil!","","no hiervas","no hierva","no hirvamos","no hirváis","no hiervan","hirviendo","boiling","hervido","boiled" +"huir","to flee, run away","Indicativo","Indicative","Presente","Present","I flee, am fleeing","huyo","huyes","huye","huimos","huís","huyen","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Futuro","Future","I will flee","huiré","huirás","huirá","huiremos","huiréis","huirán","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Imperfecto","Imperfect","I was fleeing, used to flee, fled","huía","huías","huía","huíamos","huíais","huían","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Pretérito","Preterite","I fled","huí","huiste","huyó","huimos","huisteis","huyeron","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Condicional","Conditional","I would flee","huiría","huirías","huiría","huiríamos","huiríais","huirían","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fled","he huido","has huido","ha huido","hemos huido","habéis huido","han huido","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fled","habré huido","habrás huido","habrá huido","habremos huido","habréis huido","habrán huido","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fled","había huido","habías huido","había huido","habíamos huido","habíais huido","habían huido","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fled","hube huido","hubiste huido","hubo huido","hubimos huido","hubisteis huido","hubieron huido","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fled","habría huido","habrías huido","habría huido","habríamos huido","habríais huido","habrían huido","huyendo","fleeing","huido","fled" +"huyamos" +"huir","to flee, run away","Subjuntivo","Subjunctive","Presente","Present","I flee, am fleeing","huya","huyas","huya","huyamos","huyáis","huyan","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fled, was fleeing","huyera","huyeras","huyera","huyéramos","huyerais","huyeran","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Subjuntivo","Subjunctive","Futuro","Future","I will flee","huyere","huyeres","huyere","huyéremos","huyereis","huyeren","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fled, fled","haya huido","hayas huido","haya huido","hayamos huido","hayáis huido","hayan huido","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fled","hubiere huido","hubieres huido","hubiere huido","hubiéremos huido","hubiereis huido","hubieren huido","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fled","hubiera huido","hubieras huido","hubiera huido","hubiéramos huido","hubierais huido","hubieran huido","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Flee! Don't flee!","","huye","huya","huyamos","huid","huyan","huyendo","fleeing","huido","fled" +"huir","to flee, run away","Imperativo Negativo","Imperative Negative","Presente","Present","Flee! Don't flee!","","no huyas","no huya","no huyamos","no huyáis","no huyan","huyendo","fleeing","huido","fled" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Presente","Present","I illustrate, am illustrating","ilustro","ilustras","ilustra","ilustramos","ilustráis","ilustran","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Futuro","Future","I will illustrate","ilustraré","ilustrarás","ilustrará","ilustraremos","ilustraréis","ilustrarán","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Imperfecto","Imperfect","I was illustrating, used to illustrate, illustrated","ilustraba","ilustrabas","ilustraba","ilustrábamos","ilustrabais","ilustraban","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Pretérito","Preterite","I illustrated","ilustré","ilustraste","ilustró","ilustramos","ilustrasteis","ilustraron","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Condicional","Conditional","I would illustrate","ilustraría","ilustrarías","ilustraría","ilustraríamos","ilustraríais","ilustrarían","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have illustrated","he ilustrado","has ilustrado","ha ilustrado","hemos ilustrado","habéis ilustrado","han ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have illustrated","habré ilustrado","habrás ilustrado","habrá ilustrado","habremos ilustrado","habréis ilustrado","habrán ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had illustrated","había ilustrado","habías ilustrado","había ilustrado","habíamos ilustrado","habíais ilustrado","habían ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had illustrated","hube ilustrado","hubiste ilustrado","hubo ilustrado","hubimos ilustrado","hubisteis ilustrado","hubieron ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have illustrated","habría ilustrado","habrías ilustrado","habría ilustrado","habríamos ilustrado","habríais ilustrado","habrían ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustremos" +"ilustrar","to illustrate, explain, make clear","Subjuntivo","Subjunctive","Presente","Present","I illustrate, am illustrating","ilustre","ilustres","ilustre","ilustremos","ilustréis","ilustren","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I illustrated, was illustrating","ilustrara","ilustraras","ilustrara","ilustráramos","ilustrarais","ilustraran","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Subjuntivo","Subjunctive","Futuro","Future","I will illustrate","ilustrare","ilustrares","ilustrare","ilustráremos","ilustrareis","ilustraren","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have illustrated, illustrated","haya ilustrado","hayas ilustrado","haya ilustrado","hayamos ilustrado","hayáis ilustrado","hayan ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have illustrated","hubiere ilustrado","hubieres ilustrado","hubiere ilustrado","hubiéremos ilustrado","hubiereis ilustrado","hubieren ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had illustrated","hubiera ilustrado","hubieras ilustrado","hubiera ilustrado","hubiéramos ilustrado","hubierais ilustrado","hubieran ilustrado","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Illustrate! Don't illustrate!","","ilustra","ilustre","ilustremos","ilustrad","ilustren","ilustrando","illustrating","ilustrado","illustrated" +"ilustrar","to illustrate, explain, make clear","Imperativo Negativo","Imperative Negative","Presente","Present","Illustrate! Don't illustrate!","","no ilustres","no ilustre","no ilustremos","no ilustréis","no ilustren","ilustrando","illustrating","ilustrado","illustrated" +"importar","to import","Indicativo","Indicative","Presente","Present","I import, am importing","importo","importas","importa","importamos","importáis","importan","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Futuro","Future","I will import","importaré","importarás","importará","importaremos","importaréis","importarán","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Imperfecto","Imperfect","I was importing, used to import, imported","importaba","importabas","importaba","importábamos","importabais","importaban","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Pretérito","Preterite","I imported","importé","importaste","importó","importamos","importasteis","importaron","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Condicional","Conditional","I would import","importaría","importarías","importaría","importaríamos","importaríais","importarían","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Presente perfecto","Present Perfect","I have imported","he importado","has importado","ha importado","hemos importado","habéis importado","han importado","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have imported","habré importado","habrás importado","habrá importado","habremos importado","habréis importado","habrán importado","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had imported","había importado","habías importado","había importado","habíamos importado","habíais importado","habían importado","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had imported","hube importado","hubiste importado","hubo importado","hubimos importado","hubisteis importado","hubieron importado","importando","importing","importado","imported" +"importar","to import","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have imported","habría importado","habrías importado","habría importado","habríamos importado","habríais importado","habrían importado","importando","importing","importado","imported" +"importemos" +"importar","to import","Subjuntivo","Subjunctive","Presente","Present","I import, am importing","importe","importes","importe","importemos","importéis","importen","importando","importing","importado","imported" +"importar","to import","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I imported, was importing","importara","importaras","importara","importáramos","importarais","importaran","importando","importing","importado","imported" +"importar","to import","Subjuntivo","Subjunctive","Futuro","Future","I will import","importare","importares","importare","importáremos","importareis","importaren","importando","importing","importado","imported" +"importar","to import","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have imported, imported","haya importado","hayas importado","haya importado","hayamos importado","hayáis importado","hayan importado","importando","importing","importado","imported" +"importar","to import","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have imported","hubiere importado","hubieres importado","hubiere importado","hubiéremos importado","hubiereis importado","hubieren importado","importando","importing","importado","imported" +"importar","to import","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had imported","hubiera importado","hubieras importado","hubiera importado","hubiéramos importado","hubierais importado","hubieran importado","importando","importing","importado","imported" +"importar","to import","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Import! Don't import!","","importa","importe","importemos","importad","importen","importando","importing","importado","imported" +"importar","to import","Imperativo Negativo","Imperative Negative","Presente","Present","Import! Don't import!","","no importes","no importe","no importemos","no importéis","no importen","importando","importing","importado","imported" +"imprimir","to print","Indicativo","Indicative","Presente","Present","I print, am printing","imprimo","imprimes","imprime","imprimimos","imprimís","imprimen","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Futuro","Future","I will print","imprimiré","imprimirás","imprimirá","imprimiremos","imprimiréis","imprimirán","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Imperfecto","Imperfect","I was printing, used to print, printed","imprimía","imprimías","imprimía","imprimíamos","imprimíais","imprimían","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Pretérito","Preterite","I printed","imprimí","imprimiste","imprimió","imprimimos","imprimisteis","imprimieron","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Condicional","Conditional","I would print","imprimiría","imprimirías","imprimiría","imprimiríamos","imprimiríais","imprimirían","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Presente perfecto","Present Perfect","I have printed","he imprimido","has imprimido","ha imprimido","hemos imprimido","habéis imprimido","han imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have printed","habré imprimido","habrás imprimido","habrá imprimido","habremos imprimido","habréis imprimido","habrán imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had printed","había imprimido","habías imprimido","había imprimido","habíamos imprimido","habíais imprimido","habían imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had printed","hube imprimido","hubiste imprimido","hubo imprimido","hubimos imprimido","hubisteis imprimido","hubieron imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have printed","habría imprimido","habrías imprimido","habría imprimido","habríamos imprimido","habríais imprimido","habrían imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimamos" +"imprimir","to print","Subjuntivo","Subjunctive","Presente","Present","I print, am printing","imprima","imprimas","imprima","imprimamos","imprimáis","impriman","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I printed, was printing","imprimiera","imprimieras","imprimiera","imprimiéramos","imprimierais","imprimieran","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Subjuntivo","Subjunctive","Futuro","Future","I will print","imprimiere","imprimieres","imprimiere","imprimiéremos","imprimiereis","imprimieren","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have printed, printed","haya imprimido","hayas imprimido","haya imprimido","hayamos imprimido","hayáis imprimido","hayan imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have printed","hubiere imprimido","hubieres imprimido","hubiere imprimido","hubiéremos imprimido","hubiereis imprimido","hubieren imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had printed","hubiera imprimido","hubieras imprimido","hubiera imprimido","hubiéramos imprimido","hubierais imprimido","hubieran imprimido","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Print! Don't print!","","imprime","imprima","imprimamos","imprimid","impriman","imprimiendo","printing","imprimido, impreso","printed" +"imprimir","to print","Imperativo Negativo","Imperative Negative","Presente","Present","Print! Don't print!","","no imprimas","no imprima","no imprimamos","no imprimáis","no impriman","imprimiendo","printing","imprimido, impreso","printed" +"incluir","to include","Indicativo","Indicative","Presente","Present","I include, am including","incluyo","incluyes","incluye","incluimos","incluís","incluyen","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Futuro","Future","I will include","incluiré","incluirás","incluirá","incluiremos","incluiréis","incluirán","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Imperfecto","Imperfect","I was including, used to include, included","incluía","incluías","incluía","incluíamos","incluíais","incluían","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Pretérito","Preterite","I included","incluí","incluiste","incluyó","incluimos","incluisteis","incluyeron","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Condicional","Conditional","I would include","incluiría","incluirías","incluiría","incluiríamos","incluiríais","incluirían","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Presente perfecto","Present Perfect","I have included","he incluido","has incluido","ha incluido","hemos incluido","habéis incluido","han incluido","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have included","habré incluido","habrás incluido","habrá incluido","habremos incluido","habréis incluido","habrán incluido","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had included","había incluido","habías incluido","había incluido","habíamos incluido","habíais incluido","habían incluido","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had included","hube incluido","hubiste incluido","hubo incluido","hubimos incluido","hubisteis incluido","hubieron incluido","incluyendo","including","incluido","included" +"incluir","to include","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have included","habría incluido","habrías incluido","habría incluido","habríamos incluido","habríais incluido","habrían incluido","incluyendo","including","incluido","included" +"incluyamos" +"incluir","to include","Subjuntivo","Subjunctive","Presente","Present","I include, am including","incluya","incluyas","incluya","incluyamos","incluyáis","incluyan","incluyendo","including","incluido","included" +"incluir","to include","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I included, was including","incluyera","incluyeras","incluyera","incluyéramos","incluyerais","incluyeran","incluyendo","including","incluido","included" +"incluir","to include","Subjuntivo","Subjunctive","Futuro","Future","I will include","incluyere","incluyeres","incluyere","incluyéremos","incluyereis","incluyeren","incluyendo","including","incluido","included" +"incluir","to include","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have included, included","haya incluido","hayas incluido","haya incluido","hayamos incluido","hayáis incluido","hayan incluido","incluyendo","including","incluido","included" +"incluir","to include","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have included","hubiere incluido","hubieres incluido","hubiere incluido","hubiéremos incluido","hubiereis incluido","hubieren incluido","incluyendo","including","incluido","included" +"incluir","to include","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had included","hubiera incluido","hubieras incluido","hubiera incluido","hubiéramos incluido","hubierais incluido","hubieran incluido","incluyendo","including","incluido","included" +"incluir","to include","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Include! Don't include!","","incluye","incluya","incluyamos","incluid","incluyan","incluyendo","including","incluido","included" +"incluir","to include","Imperativo Negativo","Imperative Negative","Presente","Present","Include! Don't include!","","no incluyas","no incluya","no incluyamos","no incluyáis","no incluyan","incluyendo","including","incluido","included" +"indicar","to indicate","Indicativo","Indicative","Presente","Present","I indicate, am indicating","indico","indicas","indica","indicamos","indicáis","indican","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Futuro","Future","I will indicate","indicaré","indicarás","indicará","indicaremos","indicaréis","indicarán","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Imperfecto","Imperfect","I was indicating, used to indicate, indicated","indicaba","indicabas","indicaba","indicábamos","indicabais","indicaban","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Pretérito","Preterite","I indicated","indiqué","indicaste","indicó","indicamos","indicasteis","indicaron","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Condicional","Conditional","I would indicate","indicaría","indicarías","indicaría","indicaríamos","indicaríais","indicarían","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have indicated","he indicado","has indicado","ha indicado","hemos indicado","habéis indicado","han indicado","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have indicated","habré indicado","habrás indicado","habrá indicado","habremos indicado","habréis indicado","habrán indicado","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had indicated","había indicado","habías indicado","había indicado","habíamos indicado","habíais indicado","habían indicado","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had indicated","hube indicado","hubiste indicado","hubo indicado","hubimos indicado","hubisteis indicado","hubieron indicado","indicando","indicating","indicado","indicated" +"indicar","to indicate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have indicated","habría indicado","habrías indicado","habría indicado","habríamos indicado","habríais indicado","habrían indicado","indicando","indicating","indicado","indicated" +"indiquemos" +"indicar","to indicate","Subjuntivo","Subjunctive","Presente","Present","I indicate, am indicating","indique","indiques","indique","indiquemos","indiquéis","indiquen","indicando","indicating","indicado","indicated" +"indicar","to indicate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I indicated, was indicating","indicara","indicaras","indicara","indicáramos","indicarais","indicaran","indicando","indicating","indicado","indicated" +"indicar","to indicate","Subjuntivo","Subjunctive","Futuro","Future","I will indicate","indicare","indicares","indicare","indicáremos","indicareis","indicaren","indicando","indicating","indicado","indicated" +"indicar","to indicate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have indicated, indicated","haya indicado","hayas indicado","haya indicado","hayamos indicado","hayáis indicado","hayan indicado","indicando","indicating","indicado","indicated" +"indicar","to indicate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have indicated","hubiere indicado","hubieres indicado","hubiere indicado","hubiéremos indicado","hubiereis indicado","hubieren indicado","indicando","indicating","indicado","indicated" +"indicar","to indicate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had indicated","hubiera indicado","hubieras indicado","hubiera indicado","hubiéramos indicado","hubierais indicado","hubieran indicado","indicando","indicating","indicado","indicated" +"indicar","to indicate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Indicate! Don't indicate!","","indica","indique","indiquemos","indicad","indiquen","indicando","indicating","indicado","indicated" +"indicar","to indicate","Imperativo Negativo","Imperative Negative","Presente","Present","Indicate! Don't indicate!","","no indiques","no indique","no indiquemos","no indiquéis","no indiquen","indicando","indicating","indicado","indicated" +"inducir","to induce","Indicativo","Indicative","Presente","Present","I induce, am inducing","induzco","induces","induce","inducimos","inducís","inducen","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Futuro","Future","I will induce","induciré","inducirás","inducirá","induciremos","induciréis","inducirán","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Imperfecto","Imperfect","I was inducing, used to induce, induced","inducía","inducías","inducía","inducíamos","inducíais","inducían","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Pretérito","Preterite","I induced","induje","indujiste","indujo","indujimos","indujisteis","indujeron","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Condicional","Conditional","I would induce","induciría","inducirías","induciría","induciríamos","induciríais","inducirían","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have induced","he inducido","has inducido","ha inducido","hemos inducido","habéis inducido","han inducido","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have induced","habré inducido","habrás inducido","habrá inducido","habremos inducido","habréis inducido","habrán inducido","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had induced","había inducido","habías inducido","había inducido","habíamos inducido","habíais inducido","habían inducido","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had induced","hube inducido","hubiste inducido","hubo inducido","hubimos inducido","hubisteis inducido","hubieron inducido","induciendo","inducing","inducido","induced" +"inducir","to induce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have induced","habría inducido","habrías inducido","habría inducido","habríamos inducido","habríais inducido","habrían inducido","induciendo","inducing","inducido","induced" +"induzcamos" +"inducir","to induce","Subjuntivo","Subjunctive","Presente","Present","I induce, am inducing","induzca","induzcas","induzca","induzcamos","induzcáis","induzcan","induciendo","inducing","inducido","induced" +"inducir","to induce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I induced, was inducing","indujera","indujeras","indujera","indujéramos","indujerais","indujeran","induciendo","inducing","inducido","induced" +"inducir","to induce","Subjuntivo","Subjunctive","Futuro","Future","I will induce","indujere","indujeres","indujere","indujéremos","indujereis","indujeren","induciendo","inducing","inducido","induced" +"inducir","to induce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have induced, induced","haya inducido","hayas inducido","haya inducido","hayamos inducido","hayáis inducido","hayan inducido","induciendo","inducing","inducido","induced" +"inducir","to induce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have induced","hubiere inducido","hubieres inducido","hubiere inducido","hubiéremos inducido","hubiereis inducido","hubieren inducido","induciendo","inducing","inducido","induced" +"inducir","to induce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had induced","hubiera inducido","hubieras inducido","hubiera inducido","hubiéramos inducido","hubierais inducido","hubieran inducido","induciendo","inducing","inducido","induced" +"inducir","to induce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Induce! Don't induce!","","induce","induzca","induzcamos","inducid","induzcan","induciendo","inducing","inducido","induced" +"inducir","to induce","Imperativo Negativo","Imperative Negative","Presente","Present","Induce! Don't induce!","","no induzcas","no induzca","no induzcamos","no induzcáis","no induzcan","induciendo","inducing","inducido","induced" +"influir","to influence","Indicativo","Indicative","Presente","Present","I influence, am influencing","influyo","influyes","influye","influimos","influís","influyen","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Futuro","Future","I will influence","influiré","influirás","influirá","influiremos","influiréis","influirán","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Imperfecto","Imperfect","I was influencing, used to influence, influenced","influía","influías","influía","influíamos","influíais","influían","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Pretérito","Preterite","I influenced","influí","influiste","influyó","influimos","influisteis","influyeron","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Condicional","Conditional","I would influence","influiría","influirías","influiría","influiríamos","influiríais","influirían","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Presente perfecto","Present Perfect","I have influenced","he influido","has influido","ha influido","hemos influido","habéis influido","han influido","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have influenced","habré influido","habrás influido","habrá influido","habremos influido","habréis influido","habrán influido","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had influenced","había influido","habías influido","había influido","habíamos influido","habíais influido","habían influido","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had influenced","hube influido","hubiste influido","hubo influido","hubimos influido","hubisteis influido","hubieron influido","influyendo","influencing","influido","influenced" +"influir","to influence","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have influenced","habría influido","habrías influido","habría influido","habríamos influido","habríais influido","habrían influido","influyendo","influencing","influido","influenced" +"influyamos" +"influir","to influence","Subjuntivo","Subjunctive","Presente","Present","I influence, am influencing","influya","influyas","influya","influyamos","influyáis","influyan","influyendo","influencing","influido","influenced" +"influir","to influence","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I influenced, was influencing","influyera","influyeras","influyera","influyéramos","influyerais","influyeran","influyendo","influencing","influido","influenced" +"influir","to influence","Subjuntivo","Subjunctive","Futuro","Future","I will influence","influyere","influyeres","influyere","influyéremos","influyereis","influyeren","influyendo","influencing","influido","influenced" +"influir","to influence","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have influenced, influenced","haya influido","hayas influido","haya influido","hayamos influido","hayáis influido","hayan influido","influyendo","influencing","influido","influenced" +"influir","to influence","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have influenced","hubiere influido","hubieres influido","hubiere influido","hubiéremos influido","hubiereis influido","hubieren influido","influyendo","influencing","influido","influenced" +"influir","to influence","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had influenced","hubiera influido","hubieras influido","hubiera influido","hubiéramos influido","hubierais influido","hubieran influido","influyendo","influencing","influido","influenced" +"influir","to influence","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Influence! Don't influence!","","influye","influya","influyamos","influid","influyan","influyendo","influencing","influido","influenced" +"influir","to influence","Imperativo Negativo","Imperative Negative","Presente","Present","Influence! Don't influence!","","no influyas","no influya","no influyamos","no influyáis","no influyan","influyendo","influencing","influido","influenced" +"informar","to inform, tell, announce","Indicativo","Indicative","Presente","Present","I inform, am informing","informo","informas","informa","informamos","informáis","informan","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Futuro","Future","I will inform","informaré","informarás","informará","informaremos","informaréis","informarán","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Imperfecto","Imperfect","I was informing, used to inform, informed","informaba","informabas","informaba","informábamos","informabais","informaban","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Pretérito","Preterite","I informed","informé","informaste","informó","informamos","informasteis","informaron","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Condicional","Conditional","I would inform","informaría","informarías","informaría","informaríamos","informaríais","informarían","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have informed","he informado","has informado","ha informado","hemos informado","habéis informado","han informado","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have informed","habré informado","habrás informado","habrá informado","habremos informado","habréis informado","habrán informado","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had informed","había informado","habías informado","había informado","habíamos informado","habíais informado","habían informado","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had informed","hube informado","hubiste informado","hubo informado","hubimos informado","hubisteis informado","hubieron informado","informando","informing","informado","informed" +"informar","to inform, tell, announce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have informed","habría informado","habrías informado","habría informado","habríamos informado","habríais informado","habrían informado","informando","informing","informado","informed" +"informemos" +"informar","to inform, tell, announce","Subjuntivo","Subjunctive","Presente","Present","I inform, am informing","informe","informes","informe","informemos","informéis","informen","informando","informing","informado","informed" +"informar","to inform, tell, announce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I informed, was informing","informara","informaras","informara","informáramos","informarais","informaran","informando","informing","informado","informed" +"informar","to inform, tell, announce","Subjuntivo","Subjunctive","Futuro","Future","I will inform","informare","informares","informare","informáremos","informareis","informaren","informando","informing","informado","informed" +"informar","to inform, tell, announce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have informed, informed","haya informado","hayas informado","haya informado","hayamos informado","hayáis informado","hayan informado","informando","informing","informado","informed" +"informar","to inform, tell, announce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have informed","hubiere informado","hubieres informado","hubiere informado","hubiéremos informado","hubiereis informado","hubieren informado","informando","informing","informado","informed" +"informar","to inform, tell, announce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had informed","hubiera informado","hubieras informado","hubiera informado","hubiéramos informado","hubierais informado","hubieran informado","informando","informing","informado","informed" +"informar","to inform, tell, announce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Inform! Don't inform!","","informa","informe","informemos","informad","informen","informando","informing","informado","informed" +"informar","to inform, tell, announce","Imperativo Negativo","Imperative Negative","Presente","Present","Inform! Don't inform!","","no informes","no informe","no informemos","no informéis","no informen","informando","informing","informado","informed" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Presente","Present","I initiate, am initiating","inicio","inicias","inicia","iniciamos","iniciáis","inician","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Futuro","Future","I will initiate","iniciaré","iniciarás","iniciará","iniciaremos","iniciaréis","iniciarán","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Imperfecto","Imperfect","I was initiating, used to initiate, initiated","iniciaba","iniciabas","iniciaba","iniciábamos","iniciabais","iniciaban","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Pretérito","Preterite","I initiated","inicié","iniciaste","inició","iniciamos","iniciasteis","iniciaron","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Condicional","Conditional","I would initiate","iniciaría","iniciarías","iniciaría","iniciaríamos","iniciaríais","iniciarían","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Presente perfecto","Present Perfect","I have initiated","he iniciado","has iniciado","ha iniciado","hemos iniciado","habéis iniciado","han iniciado","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have initiated","habré iniciado","habrás iniciado","habrá iniciado","habremos iniciado","habréis iniciado","habrán iniciado","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had initiated","había iniciado","habías iniciado","había iniciado","habíamos iniciado","habíais iniciado","habían iniciado","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had initiated","hube iniciado","hubiste iniciado","hubo iniciado","hubimos iniciado","hubisteis iniciado","hubieron iniciado","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have initiated","habría iniciado","habrías iniciado","habría iniciado","habríamos iniciado","habríais iniciado","habrían iniciado","iniciando","initiating","iniciado","initiated" +"iniciemos" +"iniciar","to initiate, begin, start","Subjuntivo","Subjunctive","Presente","Present","I initiate, am initiating","inicie","inicies","inicie","iniciemos","iniciéis","inicien","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I initiated, was initiating","iniciara","iniciaras","iniciara","iniciáramos","iniciarais","iniciaran","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Subjuntivo","Subjunctive","Futuro","Future","I will initiate","iniciare","iniciares","iniciare","iniciáremos","iniciareis","iniciaren","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have initiated, initiated","haya iniciado","hayas iniciado","haya iniciado","hayamos iniciado","hayáis iniciado","hayan iniciado","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have initiated","hubiere iniciado","hubieres iniciado","hubiere iniciado","hubiéremos iniciado","hubiereis iniciado","hubieren iniciado","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had initiated","hubiera iniciado","hubieras iniciado","hubiera iniciado","hubiéramos iniciado","hubierais iniciado","hubieran iniciado","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Initiate! Don't initiate!","","inicia","inicie","iniciemos","iniciad","inicien","iniciando","initiating","iniciado","initiated" +"iniciar","to initiate, begin, start","Imperativo Negativo","Imperative Negative","Presente","Present","Initiate! Don't initiate!","","no inicies","no inicie","no iniciemos","no iniciéis","no inicien","iniciando","initiating","iniciado","initiated" +"inmigrar","to immigrate","Indicativo","Indicative","Presente","Present","I immigrate, am immigrating","inmigro","inmigras","inmigra","inmigramos","inmigráis","inmigran","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Futuro","Future","I will immigrate","inmigraré","inmigrarás","inmigrará","inmigraremos","inmigraréis","inmigrarán","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Imperfecto","Imperfect","I was immigrating, used to immigrate, immigratingd","inmigraba","inmigrabas","inmigraba","inmigrábamos","inmigrabais","inmigraban","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Pretérito","Preterite","I immigratingd","inmigré","inmigraste","inmigró","inmigramos","inmigrasteis","inmigraron","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Condicional","Conditional","I would immigrate","inmigraría","inmigrarías","inmigraría","inmigraríamos","inmigraríais","inmigrarían","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have immigratingd","he inmigrado","has inmigrado","ha inmigrado","hemos inmigrado","habéis inmigrado","han inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have immigratingd","habré inmigrado","habrás inmigrado","habrá inmigrado","habremos inmigrado","habréis inmigrado","habrán inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had immigratingd","había inmigrado","habías inmigrado","había inmigrado","habíamos inmigrado","habíais inmigrado","habían inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had immigratingd","hube inmigrado","hubiste inmigrado","hubo inmigrado","hubimos inmigrado","hubisteis inmigrado","hubieron inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"insultar","to insult","Indicativo","Indicative","Pretérito","Preterite","I insulted","insulté","insultaste","insultó","insultamos","insultasteis","insultaron","insultando","insulting","insultado","insulted" +"inmigrar","to immigrate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have immigratingd","habría inmigrado","habrías inmigrado","habría inmigrado","habríamos inmigrado","habríais inmigrado","habrían inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"inmigremos" +"inmigrar","to immigrate","Subjuntivo","Subjunctive","Presente","Present","I immigrate, am immigrating","inmigre","inmigres","inmigre","inmigremos","inmigréis","inmigren","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I immigratingd, was immigrating","inmigrara","inmigraras","inmigrara","inmigráramos","inmigrarais","inmigraran","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Subjuntivo","Subjunctive","Futuro","Future","I will immigrate","inmigrare","inmigrares","inmigrare","inmigráremos","inmigrareis","inmigraren","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have immigratingd, immigratingd","haya inmigrado","hayas inmigrado","haya inmigrado","hayamos inmigrado","hayáis inmigrado","hayan inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have immigratingd","hubiere inmigrado","hubieres inmigrado","hubiere inmigrado","hubiéremos inmigrado","hubiereis inmigrado","hubieren inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had immigratingd","hubiera inmigrado","hubieras inmigrado","hubiera inmigrado","hubiéramos inmigrado","hubierais inmigrado","hubieran inmigrado","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Immigrate! Don't immigrate!","","inmigra","inmigre","inmigremos","inmigrad","inmigren","inmigrando","immigrating","inmigrado","immigratingd" +"inmigrar","to immigrate","Imperativo Negativo","Imperative Negative","Presente","Present","Immigrate! Don't immigrate!","","no inmigres","no inmigre","no inmigremos","no inmigréis","no inmigren","inmigrando","immigrating","inmigrado","immigratingd" +"insistir","to insist","Indicativo","Indicative","Presente","Present","I insist, am insisting","insisto","insistes","insiste","insistimos","insistís","insisten","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Futuro","Future","I will insist","insistiré","insistirás","insistirá","insistiremos","insistiréis","insistirán","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Imperfecto","Imperfect","I was insisting, used to insist, insisted","insistía","insistías","insistía","insistíamos","insistíais","insistían","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Pretérito","Preterite","I insisted","insistí","insististe","insistió","insistimos","insististeis","insistieron","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Condicional","Conditional","I would insist","insistiría","insistirías","insistiría","insistiríamos","insistiríais","insistirían","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Presente perfecto","Present Perfect","I have insisted","he insistido","has insistido","ha insistido","hemos insistido","habéis insistido","han insistido","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have insisted","habré insistido","habrás insistido","habrá insistido","habremos insistido","habréis insistido","habrán insistido","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had insisted","había insistido","habías insistido","había insistido","habíamos insistido","habíais insistido","habían insistido","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had insisted","hube insistido","hubiste insistido","hubo insistido","hubimos insistido","hubisteis insistido","hubieron insistido","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have insisted","habría insistido","habrías insistido","habría insistido","habríamos insistido","habríais insistido","habrían insistido","insistiendo","insisting","insistido","insisted" +"insistamos" +"insistir","to insist","Subjuntivo","Subjunctive","Presente","Present","I insist, am insisting","insista","insistas","insista","insistamos","insistáis","insistan","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I insisted, was insisting","insistiera","insistieras","insistiera","insistiéramos","insistierais","insistieran","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Subjuntivo","Subjunctive","Futuro","Future","I will insist","insistiere","insistieres","insistiere","insistiéremos","insistiereis","insistieren","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have insisted, insisted","haya insistido","hayas insistido","haya insistido","hayamos insistido","hayáis insistido","hayan insistido","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have insisted","hubiere insistido","hubieres insistido","hubiere insistido","hubiéremos insistido","hubiereis insistido","hubieren insistido","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had insisted","hubiera insistido","hubieras insistido","hubiera insistido","hubiéramos insistido","hubierais insistido","hubieran insistido","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Insist! Don't insist!","","insiste","insista","insistamos","insistid","insistan","insistiendo","insisting","insistido","insisted" +"insistir","to insist","Imperativo Negativo","Imperative Negative","Presente","Present","Insist! Don't insist!","","no insistas","no insista","no insistamos","no insistáis","no insistan","insistiendo","insisting","insistido","insisted" +"instalar","to install; to set up, erect","Indicativo","Indicative","Presente","Present","I install, am installing","instalo","instalas","instala","instalamos","instaláis","instalan","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Futuro","Future","I will install","instalaré","instalarás","instalará","instalaremos","instalaréis","instalarán","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Imperfecto","Imperfect","I was installing, used to install, installed","instalaba","instalabas","instalaba","instalábamos","instalabais","instalaban","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Pretérito","Preterite","I installed","instalé","instalaste","instaló","instalamos","instalasteis","instalaron","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Condicional","Conditional","I would install","instalaría","instalarías","instalaría","instalaríamos","instalaríais","instalarían","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Presente perfecto","Present Perfect","I have installed","he instalado","has instalado","ha instalado","hemos instalado","habéis instalado","han instalado","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have installed","habré instalado","habrás instalado","habrá instalado","habremos instalado","habréis instalado","habrán instalado","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had installed","había instalado","habías instalado","había instalado","habíamos instalado","habíais instalado","habían instalado","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had installed","hube instalado","hubiste instalado","hubo instalado","hubimos instalado","hubisteis instalado","hubieron instalado","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have installed","habría instalado","habrías instalado","habría instalado","habríamos instalado","habríais instalado","habrían instalado","instalando","installing","instalado","installed" +"instalemos" +"instalar","to install; to set up, erect","Subjuntivo","Subjunctive","Presente","Present","I install, am installing","instale","instales","instale","instalemos","instaléis","instalen","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I installed, was installing","instalara","instalaras","instalara","instaláramos","instalarais","instalaran","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Subjuntivo","Subjunctive","Futuro","Future","I will install","instalare","instalares","instalare","instaláremos","instalareis","instalaren","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have installed, installed","haya instalado","hayas instalado","haya instalado","hayamos instalado","hayáis instalado","hayan instalado","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have installed","hubiere instalado","hubieres instalado","hubiere instalado","hubiéremos instalado","hubiereis instalado","hubieren instalado","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had installed","hubiera instalado","hubieras instalado","hubiera instalado","hubiéramos instalado","hubierais instalado","hubieran instalado","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Install! Don't install!","","instala","instale","instalemos","instalad","instalen","instalando","installing","instalado","installed" +"instalar","to install; to set up, erect","Imperativo Negativo","Imperative Negative","Presente","Present","Install! Don't install!","","no instales","no instale","no instalemos","no instaléis","no instalen","instalando","installing","instalado","installed" +"insultar","to insult","Indicativo","Indicative","Presente","Present","I insult, am insulting","insulto","insultas","insulta","insultamos","insultáis","insultan","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Futuro","Future","I will insult","insultaré","insultarás","insultará","insultaremos","insultaréis","insultarán","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Imperfecto","Imperfect","I was insulting, used to insult, insulted","insultaba","insultabas","insultaba","insultábamos","insultabais","insultaban","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Condicional","Conditional","I would insult","insultaría","insultarías","insultaría","insultaríamos","insultaríais","insultarían","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Presente perfecto","Present Perfect","I have insulted","he insultado","has insultado","ha insultado","hemos insultado","habéis insultado","han insultado","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have insulted","habré insultado","habrás insultado","habrá insultado","habremos insultado","habréis insultado","habrán insultado","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had insulted","había insultado","habías insultado","había insultado","habíamos insultado","habíais insultado","habían insultado","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had insulted","hube insultado","hubiste insultado","hubo insultado","hubimos insultado","hubisteis insultado","hubieron insultado","insultando","insulting","insultado","insulted" +"insultar","to insult","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have insulted","habría insultado","habrías insultado","habría insultado","habríamos insultado","habríais insultado","habrían insultado","insultando","insulting","insultado","insulted" +"insultemos" +"insultar","to insult","Subjuntivo","Subjunctive","Presente","Present","I insult, am insulting","insulte","insultes","insulte","insultemos","insultéis","insulten","insultando","insulting","insultado","insulted" +"insultar","to insult","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I insulted, was insulting","insultara","insultaras","insultara","insultáramos","insultarais","insultaran","insultando","insulting","insultado","insulted" +"insultar","to insult","Subjuntivo","Subjunctive","Futuro","Future","I will insult","insultare","insultares","insultare","insultáremos","insultareis","insultaren","insultando","insulting","insultado","insulted" +"insultar","to insult","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have insulted, insulted","haya insultado","hayas insultado","haya insultado","hayamos insultado","hayáis insultado","hayan insultado","insultando","insulting","insultado","insulted" +"insultar","to insult","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have insulted","hubiere insultado","hubieres insultado","hubiere insultado","hubiéremos insultado","hubiereis insultado","hubieren insultado","insultando","insulting","insultado","insulted" +"insultar","to insult","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had insulted","hubiera insultado","hubieras insultado","hubiera insultado","hubiéramos insultado","hubierais insultado","hubieran insultado","insultando","insulting","insultado","insulted" +"insultar","to insult","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Insult! Don't insult!","","insulta","insulte","insultemos","insultad","insulten","insultando","insulting","insultado","insulted" +"insultar","to insult","Imperativo Negativo","Imperative Negative","Presente","Present","Insult! Don't insult!","","no insultes","no insulte","no insultemos","no insultéis","no insulten","insultando","insulting","insultado","insulted" +"intentar","to try, attempt","Indicativo","Indicative","Presente","Present","I try, am trying","intento","intentas","intenta","intentamos","intentáis","intentan","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Futuro","Future","I will try","intentaré","intentarás","intentará","intentaremos","intentaréis","intentarán","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Imperfecto","Imperfect","I was trying, used to try, tried","intentaba","intentabas","intentaba","intentábamos","intentabais","intentaban","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Pretérito","Preterite","I tried","intenté","intentaste","intentó","intentamos","intentasteis","intentaron","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Condicional","Conditional","I would try","intentaría","intentarías","intentaría","intentaríamos","intentaríais","intentarían","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Presente perfecto","Present Perfect","I have tried","he intentado","has intentado","ha intentado","hemos intentado","habéis intentado","han intentado","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have tried","habré intentado","habrás intentado","habrá intentado","habremos intentado","habréis intentado","habrán intentado","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had tried","había intentado","habías intentado","había intentado","habíamos intentado","habíais intentado","habían intentado","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had tried","hube intentado","hubiste intentado","hubo intentado","hubimos intentado","hubisteis intentado","hubieron intentado","intentando","trying","intentado","tried" +"intentar","to try, attempt","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have tried","habría intentado","habrías intentado","habría intentado","habríamos intentado","habríais intentado","habrían intentado","intentando","trying","intentado","tried" +"intentemos" +"intentar","to try, attempt","Subjuntivo","Subjunctive","Presente","Present","I try, am trying","intente","intentes","intente","intentemos","intentéis","intenten","intentando","trying","intentado","tried" +"intentar","to try, attempt","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I tried, was trying","intentara","intentaras","intentara","intentáramos","intentarais","intentaran","intentando","trying","intentado","tried" +"intentar","to try, attempt","Subjuntivo","Subjunctive","Futuro","Future","I will try","intentare","intentares","intentare","intentáremos","intentareis","intentaren","intentando","trying","intentado","tried" +"intentar","to try, attempt","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have tried, tried","haya intentado","hayas intentado","haya intentado","hayamos intentado","hayáis intentado","hayan intentado","intentando","trying","intentado","tried" +"intentar","to try, attempt","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have tried","hubiere intentado","hubieres intentado","hubiere intentado","hubiéremos intentado","hubiereis intentado","hubieren intentado","intentando","trying","intentado","tried" +"intentar","to try, attempt","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had tried","hubiera intentado","hubieras intentado","hubiera intentado","hubiéramos intentado","hubierais intentado","hubieran intentado","intentando","trying","intentado","tried" +"intentar","to try, attempt","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Try! Don't try!","","intenta","intente","intentemos","intentad","intenten","intentando","trying","intentado","tried" +"intentar","to try, attempt","Imperativo Negativo","Imperative Negative","Presente","Present","Try! Don't try!","","no intentes","no intente","no intentemos","no intentéis","no intenten","intentando","trying","intentado","tried" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Presente","Present","I interest, am interesting","intereso","interesas","interesa","interesamos","interesáis","interesan","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Futuro","Future","I will interest","interesaré","interesarás","interesará","interesaremos","interesaréis","interesarán","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Imperfecto","Imperfect","I was interesting, used to interest, interested","interesaba","interesabas","interesaba","interesábamos","interesabais","interesaban","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Pretérito","Preterite","I interested","interesé","interesaste","interesó","interesamos","interesasteis","interesaron","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Condicional","Conditional","I would interest","interesaría","interesarías","interesaría","interesaríamos","interesaríais","interesarían","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have interested","he interesado","has interesado","ha interesado","hemos interesado","habéis interesado","han interesado","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have interested","habré interesado","habrás interesado","habrá interesado","habremos interesado","habréis interesado","habrán interesado","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had interested","había interesado","habías interesado","había interesado","habíamos interesado","habíais interesado","habían interesado","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had interested","hube interesado","hubiste interesado","hubo interesado","hubimos interesado","hubisteis interesado","hubieron interesado","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have interested","habría interesado","habrías interesado","habría interesado","habríamos interesado","habríais interesado","habrían interesado","interesando","interesting","interesado","interested" +"interesemos" +"interesar","to interest, be of interest [to]","Subjuntivo","Subjunctive","Presente","Present","I interest, am interesting","interese","intereses","interese","interesemos","intereséis","interesen","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I interested, was interesting","interesara","interesaras","interesara","interesáramos","interesarais","interesaran","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Subjuntivo","Subjunctive","Futuro","Future","I will interest","interesare","interesares","interesare","interesáremos","interesareis","interesaren","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have interested, interested","haya interesado","hayas interesado","haya interesado","hayamos interesado","hayáis interesado","hayan interesado","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have interested","hubiere interesado","hubieres interesado","hubiere interesado","hubiéremos interesado","hubiereis interesado","hubieren interesado","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had interested","hubiera interesado","hubieras interesado","hubiera interesado","hubiéramos interesado","hubierais interesado","hubieran interesado","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Interest! Don't interest!","","interesa","interese","interesemos","interesad","interesen","interesando","interesting","interesado","interested" +"interesar","to interest, be of interest [to]","Imperativo Negativo","Imperative Negative","Presente","Present","Interest! Don't interest!","","no intereses","no interese","no interesemos","no intereséis","no interesen","interesando","interesting","interesado","interested" +"interpretar","to interpret; to translate","Indicativo","Indicative","Presente","Present","I interpret, am interpreting","interpreto","interpretas","interpreta","interpretamos","interpretáis","interpretan","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Futuro","Future","I will interpret","interpretaré","interpretarás","interpretará","interpretaremos","interpretaréis","interpretarán","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Imperfecto","Imperfect","I was interpreting, used to interpret, interpreted","interpretaba","interpretabas","interpretaba","interpretábamos","interpretabais","interpretaban","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Pretérito","Preterite","I interpreted","interpreté","interpretaste","interpretó","interpretamos","interpretasteis","interpretaron","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Condicional","Conditional","I would interpret","interpretaría","interpretarías","interpretaría","interpretaríamos","interpretaríais","interpretarían","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have interpreted","he interpretado","has interpretado","ha interpretado","hemos interpretado","habéis interpretado","han interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have interpreted","habré interpretado","habrás interpretado","habrá interpretado","habremos interpretado","habréis interpretado","habrán interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had interpreted","había interpretado","habías interpretado","había interpretado","habíamos interpretado","habíais interpretado","habían interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had interpreted","hube interpretado","hubiste interpretado","hubo interpretado","hubimos interpretado","hubisteis interpretado","hubieron interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have interpreted","habría interpretado","habrías interpretado","habría interpretado","habríamos interpretado","habríais interpretado","habrían interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretemos" +"interpretar","to interpret; to translate","Subjuntivo","Subjunctive","Presente","Present","I interpret, am interpreting","interprete","interpretes","interprete","interpretemos","interpretéis","interpreten","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I interpreted, was interpreting","interpretara","interpretaras","interpretara","interpretáramos","interpretarais","interpretaran","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Subjuntivo","Subjunctive","Futuro","Future","I will interpret","interpretare","interpretares","interpretare","interpretáremos","interpretareis","interpretaren","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have interpreted, interpreted","haya interpretado","hayas interpretado","haya interpretado","hayamos interpretado","hayáis interpretado","hayan interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have interpreted","hubiere interpretado","hubieres interpretado","hubiere interpretado","hubiéremos interpretado","hubiereis interpretado","hubieren interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had interpreted","hubiera interpretado","hubieras interpretado","hubiera interpretado","hubiéramos interpretado","hubierais interpretado","hubieran interpretado","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Interpret! Don't interpret!","","interpreta","interprete","interpretemos","interpretad","interpreten","interpretando","interpreting","interpretado","interpreted" +"interpretar","to interpret; to translate","Imperativo Negativo","Imperative Negative","Presente","Present","Interpret! Don't interpret!","","no interpretes","no interprete","no interpretemos","no interpretéis","no interpreten","interpretando","interpreting","interpretado","interpreted" +"introducir","to introduce, insert","Indicativo","Indicative","Presente","Present","I introduce, am introducing","introduzco","introduces","introduce","introducimos","introducís","introducen","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Futuro","Future","I will introduce","introduciré","introducirás","introducirá","introduciremos","introduciréis","introducirán","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Imperfecto","Imperfect","I was introducing, used to introduce, introduced","introducía","introducías","introducía","introducíamos","introducíais","introducían","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Pretérito","Preterite","I introduced","introduje","introdujiste","introdujo","introdujimos","introdujisteis","introdujeron","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Condicional","Conditional","I would introduce","introduciría","introducirías","introduciría","introduciríamos","introduciríais","introducirían","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Presente perfecto","Present Perfect","I have introduced","he introducido","has introducido","ha introducido","hemos introducido","habéis introducido","han introducido","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have introduced","habré introducido","habrás introducido","habrá introducido","habremos introducido","habréis introducido","habrán introducido","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had introduced","había introducido","habías introducido","había introducido","habíamos introducido","habíais introducido","habían introducido","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had introduced","hube introducido","hubiste introducido","hubo introducido","hubimos introducido","hubisteis introducido","hubieron introducido","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have introduced","habría introducido","habrías introducido","habría introducido","habríamos introducido","habríais introducido","habrían introducido","introduciendo","introducing","introducido","introduced" +"introduzcamos" +"introducir","to introduce, insert","Subjuntivo","Subjunctive","Presente","Present","I introduce, am introducing","introduzca","introduzcas","introduzca","introduzcamos","introduzcáis","introduzcan","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I introduced, was introducing","introdujera","introdujeras","introdujera","introdujéramos","introdujerais","introdujeran","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Subjuntivo","Subjunctive","Futuro","Future","I will introduce","introdujere","introdujeres","introdujere","introdujéremos","introdujereis","introdujeren","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have introduced, introduced","haya introducido","hayas introducido","haya introducido","hayamos introducido","hayáis introducido","hayan introducido","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have introduced","hubiere introducido","hubieres introducido","hubiere introducido","hubiéremos introducido","hubiereis introducido","hubieren introducido","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had introduced","hubiera introducido","hubieras introducido","hubiera introducido","hubiéramos introducido","hubierais introducido","hubieran introducido","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Introduce! Don't introduce!","","introduce","introduzca","introduzcamos","introducid","introduzcan","introduciendo","introducing","introducido","introduced" +"introducir","to introduce, insert","Imperativo Negativo","Imperative Negative","Presente","Present","Introduce! Don't introduce!","","no introduzcas","no introduzca","no introduzcamos","no introduzcáis","no introduzcan","introduciendo","introducing","introducido","introduced" +"invadir","to invade, overrun","Indicativo","Indicative","Presente","Present","I invade, am invading","invado","invades","invade","invadimos","invadís","invaden","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Futuro","Future","I will invade","invadiré","invadirás","invadirá","invadiremos","invadiréis","invadirán","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Imperfecto","Imperfect","I was invading, used to invade, invaded","invadía","invadías","invadía","invadíamos","invadíais","invadían","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Pretérito","Preterite","I invaded","invadí","invadiste","invadió","invadimos","invadisteis","invadieron","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Condicional","Conditional","I would invade","invadiría","invadirías","invadiría","invadiríamos","invadiríais","invadirían","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Presente perfecto","Present Perfect","I have invaded","he invadido","has invadido","ha invadido","hemos invadido","habéis invadido","han invadido","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have invaded","habré invadido","habrás invadido","habrá invadido","habremos invadido","habréis invadido","habrán invadido","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had invaded","había invadido","habías invadido","había invadido","habíamos invadido","habíais invadido","habían invadido","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had invaded","hube invadido","hubiste invadido","hubo invadido","hubimos invadido","hubisteis invadido","hubieron invadido","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have invaded","habría invadido","habrías invadido","habría invadido","habríamos invadido","habríais invadido","habrían invadido","invadiendo","invading","invadido","invaded" +"invadamos" +"invadir","to invade, overrun","Subjuntivo","Subjunctive","Presente","Present","I invade, am invading","invada","invadas","invada","invadamos","invadáis","invadan","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I invaded, was invading","invadiera","invadieras","invadiera","invadiéramos","invadierais","invadieran","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Subjuntivo","Subjunctive","Futuro","Future","I will invade","invadiere","invadieres","invadiere","invadiéremos","invadiereis","invadieren","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have invaded, invaded","haya invadido","hayas invadido","haya invadido","hayamos invadido","hayáis invadido","hayan invadido","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have invaded","hubiere invadido","hubieres invadido","hubiere invadido","hubiéremos invadido","hubiereis invadido","hubieren invadido","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had invaded","hubiera invadido","hubieras invadido","hubiera invadido","hubiéramos invadido","hubierais invadido","hubieran invadido","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Invade! Don't invade!","","invade","invada","invadamos","invadid","invadan","invadiendo","invading","invadido","invaded" +"invadir","to invade, overrun","Imperativo Negativo","Imperative Negative","Presente","Present","Invade! Don't invade!","","no invadas","no invada","no invadamos","no invadáis","no invadan","invadiendo","invading","invadido","invaded" +"inventar","to invent","Indicativo","Indicative","Presente","Present","I invent, am inventing","invento","inventas","inventa","inventamos","inventáis","inventan","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Futuro","Future","I will invent","inventaré","inventarás","inventará","inventaremos","inventaréis","inventarán","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Imperfecto","Imperfect","I was inventing, used to invent, invented","inventaba","inventabas","inventaba","inventábamos","inventabais","inventaban","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Pretérito","Preterite","I invented","inventé","inventaste","inventó","inventamos","inventasteis","inventaron","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Condicional","Conditional","I would invent","inventaría","inventarías","inventaría","inventaríamos","inventaríais","inventarían","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Presente perfecto","Present Perfect","I have invented","he inventado","has inventado","ha inventado","hemos inventado","habéis inventado","han inventado","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have invented","habré inventado","habrás inventado","habrá inventado","habremos inventado","habréis inventado","habrán inventado","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had invented","había inventado","habías inventado","había inventado","habíamos inventado","habíais inventado","habían inventado","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had invented","hube inventado","hubiste inventado","hubo inventado","hubimos inventado","hubisteis inventado","hubieron inventado","inventando","inventing","inventado","invented" +"inventar","to invent","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have invented","habría inventado","habrías inventado","habría inventado","habríamos inventado","habríais inventado","habrían inventado","inventando","inventing","inventado","invented" +"inventemos" +"inventar","to invent","Subjuntivo","Subjunctive","Presente","Present","I invent, am inventing","invente","inventes","invente","inventemos","inventéis","inventen","inventando","inventing","inventado","invented" +"inventar","to invent","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I invented, was inventing","inventara","inventaras","inventara","inventáramos","inventarais","inventaran","inventando","inventing","inventado","invented" +"inventar","to invent","Subjuntivo","Subjunctive","Futuro","Future","I will invent","inventare","inventares","inventare","inventáremos","inventareis","inventaren","inventando","inventing","inventado","invented" +"inventar","to invent","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have invented, invented","haya inventado","hayas inventado","haya inventado","hayamos inventado","hayáis inventado","hayan inventado","inventando","inventing","inventado","invented" +"inventar","to invent","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have invented","hubiere inventado","hubieres inventado","hubiere inventado","hubiéremos inventado","hubiereis inventado","hubieren inventado","inventando","inventing","inventado","invented" +"inventar","to invent","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had invented","hubiera inventado","hubieras inventado","hubiera inventado","hubiéramos inventado","hubierais inventado","hubieran inventado","inventando","inventing","inventado","invented" +"inventar","to invent","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Invent! Don't invent!","","inventa","invente","inventemos","inventad","inventen","inventando","inventing","inventado","invented" +"inventar","to invent","Imperativo Negativo","Imperative Negative","Presente","Present","Invent! Don't invent!","","no inventes","no invente","no inventemos","no inventéis","no inventen","inventando","inventing","inventado","invented" +"invertir","to invest","Indicativo","Indicative","Presente","Present","I invest, am investing","invierto","inviertes","invierte","invertimos","invertís","invierten","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Futuro","Future","I will invest","invertiré","invertirás","invertirá","invertiremos","invertiréis","invertirán","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Imperfecto","Imperfect","I was investing, used to invest, invested","invertía","invertías","invertía","invertíamos","invertíais","invertían","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Pretérito","Preterite","I invested","invertí","invertiste","invirtió","invertimos","invertisteis","invirtieron","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Condicional","Conditional","I would invest","invertiría","invertirías","invertiría","invertiríamos","invertiríais","invertirían","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Presente perfecto","Present Perfect","I have invested","he invertido","has invertido","ha invertido","hemos invertido","habéis invertido","han invertido","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have invested","habré invertido","habrás invertido","habrá invertido","habremos invertido","habréis invertido","habrán invertido","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had invested","había invertido","habías invertido","había invertido","habíamos invertido","habíais invertido","habían invertido","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had invested","hube invertido","hubiste invertido","hubo invertido","hubimos invertido","hubisteis invertido","hubieron invertido","invirtiendo","investing","invertido","invested" +"invertir","to invest","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have invested","habría invertido","habrías invertido","habría invertido","habríamos invertido","habríais invertido","habrían invertido","invirtiendo","investing","invertido","invested" +"invirtamos" +"invertir","to invest","Subjuntivo","Subjunctive","Presente","Present","I invest, am investing","invierta","inviertas","invierta","invirtamos","invirtáis","inviertan","invirtiendo","investing","invertido","invested" +"invertir","to invest","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I invested, was investing","invirtiera","invirtieras","invirtiera","invirtéramos","invirtierais","invirtieran","invirtiendo","investing","invertido","invested" +"invertir","to invest","Subjuntivo","Subjunctive","Futuro","Future","I will invest","invirtiere","invirtieres","invirtiere","invirtiéremos","invirtiereis","invirtieren","invirtiendo","investing","invertido","invested" +"invertir","to invest","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have invested, invested","haya invertido","hayas invertido","haya invertido","hayamos invertido","hayáis invertido","hayan invertido","invirtiendo","investing","invertido","invested" +"invertir","to invest","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have invested","hubiere invertido","hubieres invertido","hubiere invertido","hubiéremos invertido","hubiereis invertido","hubieren invertido","invirtiendo","investing","invertido","invested" +"invertir","to invest","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had invested","hubiera invertido","hubieras invertido","hubiera invertido","hubiéramos invertido","hubierais invertido","hubieran invertido","invirtiendo","investing","invertido","invested" +"invertir","to invest","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Invest! Don't invest!","","invierte","invierta","invirtamos","invertid","inviertan","invirtiendo","investing","invertido","invested" +"invertir","to invest","Imperativo Negativo","Imperative Negative","Presente","Present","Invest! Don't invest!","","no inviertas","no invierta","no invirtamos","no invirtáis","no inviertan","invirtiendo","investing","invertido","invested" +"investigar","to investigate","Indicativo","Indicative","Presente","Present","I investigate, am investigating","investigo","investigas","investiga","investigamos","investigáis","investigan","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Futuro","Future","I will investigate","investigaré","investigarás","investigará","investigaremos","investigaréis","investigarán","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Imperfecto","Imperfect","I was investigating, used to investigate, investigated","investigaba","investigabas","investigaba","investigábamos","investigabais","investigaban","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Pretérito","Preterite","I investigated","investigué","investigaste","investigó","investigamos","investigasteis","investigaron","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Condicional","Conditional","I would investigate","investigaría","investigarías","investigaría","investigaríamos","investigaríais","investigarían","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have investigated","he investigado","has investigado","ha investigado","hemos investigado","habéis investigado","han investigado","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have investigated","habré investigado","habrás investigado","habrá investigado","habremos investigado","habréis investigado","habrán investigado","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had investigated","había investigado","habías investigado","había investigado","habíamos investigado","habíais investigado","habían investigado","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had investigated","hube investigado","hubiste investigado","hubo investigado","hubimos investigado","hubisteis investigado","hubieron investigado","investigando","investigating","investigado","investigated" +"investigar","to investigate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have investigated","habría investigado","habrías investigado","habría investigado","habríamos investigado","habríais investigado","habrían investigado","investigando","investigating","investigado","investigated" +"investiguemos" +"investigar","to investigate","Subjuntivo","Subjunctive","Presente","Present","I investigate, am investigating","investigue","investigues","investigue","investiguemos","investiguéis","investiguen","investigando","investigating","investigado","investigated" +"investigar","to investigate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I investigated, was investigating","investigara","investigaras","investigara","investigáramos","investigarais","investigaran","investigando","investigating","investigado","investigated" +"investigar","to investigate","Subjuntivo","Subjunctive","Futuro","Future","I will investigate","investigare","investigares","investigare","investigáremos","investigareis","investigaren","investigando","investigating","investigado","investigated" +"investigar","to investigate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have investigated, investigated","haya investigado","hayas investigado","haya investigado","hayamos investigado","hayáis investigado","hayan investigado","investigando","investigating","investigado","investigated" +"investigar","to investigate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have investigated","hubiere investigado","hubieres investigado","hubiere investigado","hubiéremos investigado","hubiereis investigado","hubieren investigado","investigando","investigating","investigado","investigated" +"investigar","to investigate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had investigated","hubiera investigado","hubieras investigado","hubiera investigado","hubiéramos investigado","hubierais investigado","hubieran investigado","investigando","investigating","investigado","investigated" +"investigar","to investigate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Investigate! Don't investigate!","","investiga","investigue","investiguemos","investigad","investiguen","investigando","investigating","investigado","investigated" +"investigar","to investigate","Imperativo Negativo","Imperative Negative","Presente","Present","Investigate! Don't investigate!","","no investigues","no investigue","no investiguemos","no investiguéis","no investiguen","investigando","investigating","investigado","investigated" +"invitar","to invite","Indicativo","Indicative","Presente","Present","I invite, am inviting","invito","invitas","invita","invitamos","invitáis","invitan","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Futuro","Future","I will invite","invitaré","invitarás","invitará","invitaremos","invitaréis","invitarán","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Imperfecto","Imperfect","I was inviting, used to invite, invited","invitaba","invitabas","invitaba","invitábamos","invitabais","invitaban","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Pretérito","Preterite","I invited","invité","invitaste","invitó","invitamos","invitasteis","invitaron","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Condicional","Conditional","I would invite","invitaría","invitarías","invitaría","invitaríamos","invitaríais","invitarían","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Presente perfecto","Present Perfect","I have invited","he invitado","has invitado","ha invitado","hemos invitado","habéis invitado","han invitado","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have invited","habré invitado","habrás invitado","habrá invitado","habremos invitado","habréis invitado","habrán invitado","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had invited","había invitado","habías invitado","había invitado","habíamos invitado","habíais invitado","habían invitado","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had invited","hube invitado","hubiste invitado","hubo invitado","hubimos invitado","hubisteis invitado","hubieron invitado","invitando","inviting","invitado","invited" +"invitar","to invite","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have invited","habría invitado","habrías invitado","habría invitado","habríamos invitado","habríais invitado","habrían invitado","invitando","inviting","invitado","invited" +"invitemos" +"invitar","to invite","Subjuntivo","Subjunctive","Presente","Present","I invite, am inviting","invite","invites","invite","invitemos","invitéis","inviten","invitando","inviting","invitado","invited" +"invitar","to invite","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I invited, was inviting","invitara","invitaras","invitara","invitáramos","invitarais","invitaran","invitando","inviting","invitado","invited" +"invitar","to invite","Subjuntivo","Subjunctive","Futuro","Future","I will invite","invitare","invitares","invitare","invitáremos","invitareis","invitaren","invitando","inviting","invitado","invited" +"invitar","to invite","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have invited, invited","haya invitado","hayas invitado","haya invitado","hayamos invitado","hayáis invitado","hayan invitado","invitando","inviting","invitado","invited" +"invitar","to invite","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have invited","hubiere invitado","hubieres invitado","hubiere invitado","hubiéremos invitado","hubiereis invitado","hubieren invitado","invitando","inviting","invitado","invited" +"invitar","to invite","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had invited","hubiera invitado","hubieras invitado","hubiera invitado","hubiéramos invitado","hubierais invitado","hubieran invitado","invitando","inviting","invitado","invited" +"invitar","to invite","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Invite! Don't invite!","","invita","invite","invitemos","invitad","inviten","invitando","inviting","invitado","invited" +"invitar","to invite","Imperativo Negativo","Imperative Negative","Presente","Present","Invite! Don't invite!","","no invites","no invite","no invitemos","no invitéis","no inviten","invitando","inviting","invitado","invited" +"invocar","to invoke","Indicativo","Indicative","Presente","Present","I invoke, am invoking","invoco","invocas","invoca","invocamos","invocáis","invocan","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Futuro","Future","I will invoke","invocaré","invocarás","invocará","invocaremos","invocaréis","invocarán","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Imperfecto","Imperfect","I was invoking, used to invoke, invoked","invocaba","invocabas","invocaba","invocábamos","invocabais","invocaban","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Pretérito","Preterite","I invoked","invoqué","invocaste","invocó","invocamos","invocasteis","invocaron","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Condicional","Conditional","I would invoke","invocaría","invocarías","invocaría","invocaríamos","invocaríais","invocarían","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Presente perfecto","Present Perfect","I have invoked","he invocado","has invocado","ha invocado","hemos invocado","habéis invocado","han invocado","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have invoked","habré invocado","habrás invocado","habrá invocado","habremos invocado","habréis invocado","habrán invocado","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had invoked","había invocado","habías invocado","había invocado","habíamos invocado","habíais invocado","habían invocado","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had invoked","hube invocado","hubiste invocado","hubo invocado","hubimos invocado","hubisteis invocado","hubieron invocado","invocando","invoking","invocado","invoked" +"invocar","to invoke","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have invoked","habría invocado","habrías invocado","habría invocado","habríamos invocado","habríais invocado","habrían invocado","invocando","invoking","invocado","invoked" +"invoquemos" +"invocar","to invoke","Subjuntivo","Subjunctive","Presente","Present","I invoke, am invoking","invoque","invoques","invoque","invoquemos","invoquéis","invoquen","invocando","invoking","invocado","invoked" +"invocar","to invoke","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I invoked, was invoking","invocara","invocaras","invocara","invocáramos","invocarais","invocaran","invocando","invoking","invocado","invoked" +"invocar","to invoke","Subjuntivo","Subjunctive","Futuro","Future","I will invoke","invocare","invocares","invocare","invocáremos","invocareis","invocaren","invocando","invoking","invocado","invoked" +"invocar","to invoke","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have invoked, invoked","haya invocado","hayas invocado","haya invocado","hayamos invocado","hayáis invocado","hayan invocado","invocando","invoking","invocado","invoked" +"invocar","to invoke","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have invoked","hubiere invocado","hubieres invocado","hubiere invocado","hubiéremos invocado","hubiereis invocado","hubieren invocado","invocando","invoking","invocado","invoked" +"invocar","to invoke","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had invoked","hubiera invocado","hubieras invocado","hubiera invocado","hubiéramos invocado","hubierais invocado","hubieran invocado","invocando","invoking","invocado","invoked" +"invocar","to invoke","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Invoke! Don't invoke!","","invoca","invoque","invoquemos","invocad","invoquen","invocando","invoking","invocado","invoked" +"invocar","to invoke","Imperativo Negativo","Imperative Negative","Presente","Present","Invoke! Don't invoke!","","no invoques","no invoque","no invoquemos","no invoquéis","no invoquen","invocando","invoking","invocado","invoked" +"ir","to go","Indicativo","Indicative","Presente","Present","I go, am going","voy","vas","va","vamos","vais","van","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Futuro","Future","I will go","iré","irás","irá","iremos","iréis","irán","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Imperfecto","Imperfect","I was going, used to go, went","iba","ibas","iba","íbamos","ibais","iban","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Pretérito","Preterite","I went","fui","fuiste","fue","fuimos","fuisteis","fueron","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Condicional","Conditional","I would go","iría","irías","iría","iríamos","iríais","irían","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gone","he ido","has ido","ha ido","hemos ido","habéis ido","han ido","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gone","habré ido","habrás ido","habrá ido","habremos ido","habréis ido","habrán ido","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gone","había ido","habías ido","había ido","habíamos ido","habíais ido","habían ido","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gone","hube ido","hubiste ido","hubo ido","hubimos ido","hubisteis ido","hubieron ido","yendo","going","ido","gone" +"ir","to go","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gone","habría ido","habrías ido","habría ido","habríamos ido","habríais ido","habrían ido","yendo","going","ido","gone" +"vayamos" +"ir","to go","Subjuntivo","Subjunctive","Presente","Present","I go, am going","vaya","vayas","vaya","vayamos","vayáis","vayan","yendo","going","ido","gone" +"ir","to go","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I went, was going","fuera","fueras","fuera","fuéramos","fuerais","fueran","yendo","going","ido","gone" +"ir","to go","Subjuntivo","Subjunctive","Futuro","Future","I will go","fuere","fueres","fuere","fuéremos","fuereis","fueren","yendo","going","ido","gone" +"ir","to go","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gone, went","haya ido","hayas ido","haya ido","hayamos ido","hayáis ido","hayan ido","yendo","going","ido","gone" +"ir","to go","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gone","hubiere ido","hubieres ido","hubiere ido","hubiéremos ido","hubiereis ido","hubieren ido","yendo","going","ido","gone" +"ir","to go","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gone","hubiera ido","hubieras ido","hubiera ido","hubiéramos ido","hubierais ido","hubieran ido","yendo","going","ido","gone" +"ir","to go","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Go! Don't go!","","ve","vaya","vayamos","id","vayan","yendo","going","ido","gone" +"ir","to go","Imperativo Negativo","Imperative Negative","Presente","Present","Go! Don't go!","","no vayas","no vaya","no vayamos","no vayáis","no vayan","yendo","going","ido","gone" +"irse","to go away, leave, depart","Indicativo","Indicative","Presente","Present","I go away, am going away","me voy","te vas","se va","nos vamos","os vais","se van","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Futuro","Future","I will go away","me iré","te irás","se irá","nos iremos","os iréis","se irán","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Imperfecto","Imperfect","I was going away, used to go away, went away","me iba","te ibas","se iba","nos íbamos","os ibais","se iban","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Pretérito","Preterite","I went away","me fui","te fuiste","se fue","nos fuimos","os fuisteis","se fueron","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Condicional","Conditional","I would go away","me iría","te irías","se iría","nos iríamos","os iríais","se irían","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gone away","me he ido","te has ido","se ha ido","nos hemos ido","os habéis ido","se han ido","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gone away","me habré ido","te habrás ido","se habrá ido","nos habremos ido","os habréis ido","se habrán ido","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gone away","me había ido","te habías ido","se había ido","nos habíamos ido","os habíais ido","se habían ido","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gone away","me hube ido","te hubiste ido","se hubo ido","nos hubimos ido","os hubisteis ido","se hubieron ido","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gone away","me habría ido","te habrías ido","se habría ido","nos habríamos ido","os habríais ido","se habrían ido","yéndose","going away","ido","gone away" +"nos vayamos" +"irse","to go away, leave, depart","Subjuntivo","Subjunctive","Presente","Present","I go away, am going away","me vaya","te vayas","se vaya","nos vayamos","os vayáis","se vayan","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I went away, was going away","me fuera","te fueras","se fuera","nos fuéramos","os fuerais","se fueran","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Subjuntivo","Subjunctive","Futuro","Future","I will go away","me fuere","te fueres","se fuere","nos fuéremos","os fuereis","se fueren","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gone away, went away","me haya ido","te hayas ido","se haya ido","nos hayamos ido","os hayáis ido","se hayan ido","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gone away","me hubiere ido","te hubieres ido","se hubiere ido","nos hubiéremos ido","os hubiereis ido","se hubieren ido","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gone away","me hubiera ido","te hubieras ido","se hubiera ido","nos hubiéramos ido","os hubierais ido","se hubieran ido","yéndose","going away","ido","gone away" +"irse","to go away, leave, depart","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Go away! Don't go away!","","vete","váyase","vámonos","idos","váyanse","yéndose","going away","ido","gone away", +"irse","to go away, leave, depart","Imperativo Negativo","Imperative Negative","Presente","Present","Go away! Don't go away!","","no te vayas","no se vaya","no nos vayamos","no os vayáis","no se vayan","yéndose","going away","ido","gone away", +"jactarse","to boast, brag","Indicativo","Indicative","Presente","Present","I boast, am boasting","me jacto","te jactas","se jacta","nos jactamos","os jactáis","se jactan","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Futuro","Future","I will boast","me jactaré","te jactarás","se jactará","nos jactaremos","os jactaréis","se jactarán","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Imperfecto","Imperfect","I was boasting, used to boast, boasted","me jactaba","te jactabas","se jactaba","nos jactábamos","os jactabais","se jactaban","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Pretérito","Preterite","I boasted","me jacté","te jactaste","se jactó","nos jactamos","os jactasteis","se jactaron","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Condicional","Conditional","I would boast","me jactaría","te jactarías","se jactaría","nos jactaríamos","os jactaríais","se jactarían","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Presente perfecto","Present Perfect","I have boasted","me he jactado","te has jactado","se ha jactado","nos hemos jactado","os habéis jactado","se han jactado","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have boasted","me habré jactado","te habrás jactado","se habrá jactado","nos habremos jactado","os habréis jactado","se habrán jactado","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had boasted","me había jactado","te habías jactado","se había jactado","nos habíamos jactado","os habíais jactado","se habían jactado","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had boasted","me hube jactado","te hubiste jactado","se hubo jactado","nos hubimos jactado","os hubisteis jactado","se hubieron jactado","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have boasted","me habría jactado","te habrías jactado","se habría jactado","nos habríamos jactado","os habríais jactado","se habrían jactado","jactándose","boasting","jactado","boasted" +"nos jactemos" +"jactarse","to boast, brag","Subjuntivo","Subjunctive","Presente","Present","I boast, am boasting","me jacte","te jactes","se jacte","nos jactemos","os jactéis","se jacten","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I boasted, was boasting","me jactara","te jactaras","se jactara","nos jactáramos","os jactarais","se jactaran","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Subjuntivo","Subjunctive","Futuro","Future","I will boast","me jactare","te jactares","se jactare","nos jactáremos","os jactareis","se jactaren","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have boasted, boasted","me haya jactado","te hayas jactado","se haya jactado","nos hayamos jactado","os hayáis jactado","se hayan jactado","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have boasted","me hubiere jactado","te hubieres jactado","se hubiere jactado","nos hubiéremos jactado","os hubiereis jactado","se hubieren jactado","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had boasted","me hubiera jactado","te hubieras jactado","se hubiera jactado","nos hubiéramos jactado","os hubierais jactado","se hubieran jactado","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Boast! Don't boast!","","jáctate","jáctese","nos jactemos","jactaos","jáctense","jactándose","boasting","jactado","boasted" +"jactarse","to boast, brag","Imperativo Negativo","Imperative Negative","Presente","Present","Boast! Don't boast!","","no te jactes","no se jacte","no nos jactemos","no os jactéis","no se jacten","jactándose","boasting","jactado","boasted" +"jugar","to play","Indicativo","Indicative","Presente","Present","I play, am playing","juego","juegas","juega","jugamos","jugáis","juegan","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Futuro","Future","I will play","jugaré","jugarás","jugará","jugaremos","jugaréis","jugarán","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Imperfecto","Imperfect","I was playing, used to play, played","jugaba","jugabas","jugaba","jugábamos","jugabais","jugaban","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Pretérito","Preterite","I played","jugué","jugaste","jugó","jugamos","jugasteis","jugaron","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Condicional","Conditional","I would play","jugaría","jugarías","jugaría","jugaríamos","jugaríais","jugarían","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Presente perfecto","Present Perfect","I have played","he jugado","has jugado","ha jugado","hemos jugado","habéis jugado","han jugado","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have played","habré jugado","habrás jugado","habrá jugado","habremos jugado","habréis jugado","habrán jugado","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had played","había jugado","habías jugado","había jugado","habíamos jugado","habíais jugado","habían jugado","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had played","hube jugado","hubiste jugado","hubo jugado","hubimos jugado","hubisteis jugado","hubieron jugado","jugando","playing","jugado","played" +"jugar","to play","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have played","habría jugado","habrías jugado","habría jugado","habríamos jugado","habríais jugado","habrían jugado","jugando","playing","jugado","played" +"juguemos" +"jugar","to play","Subjuntivo","Subjunctive","Presente","Present","I play, am playing","juegue","juegues","juegue","juguemos","juguéis","jueguen","jugando","playing","jugado","played" +"jugar","to play","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I played, was playing","jugara","jugaras","jugara","jugáramos","jugarais","jugaran","jugando","playing","jugado","played" +"jugar","to play","Subjuntivo","Subjunctive","Futuro","Future","I will play","jugare","jugares","jugare","jugáremos","jugareis","jugaren","jugando","playing","jugado","played" +"jugar","to play","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have played, played","haya jugado","hayas jugado","haya jugado","hayamos jugado","hayáis jugado","hayan jugado","jugando","playing","jugado","played" +"jugar","to play","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have played","hubiere jugado","hubieres jugado","hubiere jugado","hubiéremos jugado","hubiereis jugado","hubieren jugado","jugando","playing","jugado","played" +"jugar","to play","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had played","hubiera jugado","hubieras jugado","hubiera jugado","hubiéramos jugado","hubierais jugado","hubieran jugado","jugando","playing","jugado","played" +"jugar","to play","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Play! Don't play!","","juega","juegue","juguemos","jugad","jueguen","jugando","playing","jugado","played" +"jugar","to play","Imperativo Negativo","Imperative Negative","Presente","Present","Play! Don't play!","","no juegues","no juegue","no juguemos","no juguéis","no jueguen","jugando","playing","jugado","played" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Presente","Present","I join, am joining","junto","juntas","junta","juntamos","juntáis","juntan","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Futuro","Future","I will join","juntaré","juntarás","juntará","juntaremos","juntaréis","juntarán","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Imperfecto","Imperfect","I was joining, used to join, joined","juntaba","juntabas","juntaba","juntábamos","juntabais","juntaban","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Pretérito","Preterite","I joined","junté","juntaste","juntó","juntamos","juntasteis","juntaron","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Condicional","Conditional","I would join","juntaría","juntarías","juntaría","juntaríamos","juntaríais","juntarían","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Presente perfecto","Present Perfect","I have joined","he juntado","has juntado","ha juntado","hemos juntado","habéis juntado","han juntado","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have joined","habré juntado","habrás juntado","habrá juntado","habremos juntado","habréis juntado","habrán juntado","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had joined","había juntado","habías juntado","había juntado","habíamos juntado","habíais juntado","habían juntado","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had joined","hube juntado","hubiste juntado","hubo juntado","hubimos juntado","hubisteis juntado","hubieron juntado","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have joined","habría juntado","habrías juntado","habría juntado","habríamos juntado","habríais juntado","habrían juntado","juntando","joining","juntado","joined" +"juntemos" +"juntar","to join, unite, put together, assemble","Subjuntivo","Subjunctive","Presente","Present","I join, am joining","junte","juntes","junte","juntemos","juntéis","junten","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I joined, was joining","juntara","juntaras","juntara","juntáramos","juntarais","juntaran","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Subjuntivo","Subjunctive","Futuro","Future","I will join","juntare","juntares","juntare","juntáremos","juntareis","juntaren","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have joined, joined","haya juntado","hayas juntado","haya juntado","hayamos juntado","hayáis juntado","hayan juntado","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have joined","hubiere juntado","hubieres juntado","hubiere juntado","hubiéremos juntado","hubiereis juntado","hubieren juntado","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had joined","hubiera juntado","hubieras juntado","hubiera juntado","hubiéramos juntado","hubierais juntado","hubieran juntado","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Join! Don't join!","","junta","junte","juntemos","juntad","junten","juntando","joining","juntado","joined" +"juntar","to join, unite, put together, assemble","Imperativo Negativo","Imperative Negative","Presente","Present","Join! Don't join!","","no juntes","no junte","no juntemos","no juntéis","no junten","juntando","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Presente","Present","I join, am joining","me junto","te juntas","se junta","nos juntamos","os juntáis","se juntan","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Futuro","Future","I will join","me juntaré","te juntarás","se juntará","nos juntaremos","os juntaréis","se juntarán","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Imperfecto","Imperfect","I was joining, used to join, joined","me juntaba","te juntabas","se juntaba","nos juntábamos","os juntabais","se juntaban","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Pretérito","Preterite","I joined","me junté","te juntaste","se juntó","nos juntamos","os juntasteis","se juntaron","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Condicional","Conditional","I would join","me juntaría","te juntarías","se juntaría","nos juntaríamos","os juntaríais","se juntarían","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Presente perfecto","Present Perfect","I have joined","me he juntado","te has juntado","se ha juntado","nos hemos juntado","os habéis juntado","se han juntado","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have joined","me habré juntado","te habrás juntado","se habrá juntado","nos habremos juntado","os habréis juntado","se habrán juntado","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had joined","me había juntado","te habías juntado","se había juntado","nos habíamos juntado","os habíais juntado","se habían juntado","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had joined","me hube juntado","te hubiste juntado","se hubo juntado","nos hubimos juntado","os hubisteis juntado","se hubieron juntado","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have joined","me habría juntado","te habrías juntado","se habría juntado","nos habríamos juntado","os habríais juntado","se habrían juntado","juntándose","joining","juntado","joined" +"nos juntemos" +"juntarse","to join, come together, gather together, meet","Subjuntivo","Subjunctive","Presente","Present","I join, am joining","me junte","te juntes","se junte","nos juntemos","os juntéis","se junten","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I joined, was joining","me juntara","te juntaras","se juntara","nos juntáramos","os juntarais","se juntaran","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Subjuntivo","Subjunctive","Futuro","Future","I will join","me juntare","te juntares","se juntare","nos juntáremos","os juntareis","se juntaren","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have joined, joined","me haya juntado","te hayas juntado","se haya juntado","nos hayamos juntado","os hayáis juntado","se hayan juntado","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have joined","me hubiere juntado","te hubieres juntado","se hubiere juntado","nos hubiéremos juntado","os hubiereis juntado","se hubieren juntado","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had joined","me hubiera juntado","te hubieras juntado","se hubiera juntado","nos hubiéramos juntado","os hubierais juntado","se hubieran juntado","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Join! Don't join!","","júntate","júntese","nos juntemos","juntaos","júntense","juntándose","joining","juntado","joined" +"juntarse","to join, come together, gather together, meet","Imperativo Negativo","Imperative Negative","Presente","Present","Join! Don't join!","","no te juntes","no se junte","no nos juntemos","no os juntéis","no se junten","juntándose","joining","juntado","joined" +"jurar","to swear","Indicativo","Indicative","Presente","Present","I swear, am swearing","juro","juras","jura","juramos","juráis","juran","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Futuro","Future","I will swear","juraré","jurarás","jurará","juraremos","juraréis","jurarán","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Imperfecto","Imperfect","I was swearing, used to swear, swore","juraba","jurabas","juraba","jurábamos","jurabais","juraban","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Pretérito","Preterite","I swore","juré","juraste","juró","juramos","jurasteis","juraron","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Condicional","Conditional","I would swear","juraría","jurarías","juraría","juraríamos","juraríais","jurarían","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sworn","he jurado","has jurado","ha jurado","hemos jurado","habéis jurado","han jurado","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sworn","habré jurado","habrás jurado","habrá jurado","habremos jurado","habréis jurado","habrán jurado","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sworn","había jurado","habías jurado","había jurado","habíamos jurado","habíais jurado","habían jurado","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sworn","hube jurado","hubiste jurado","hubo jurado","hubimos jurado","hubisteis jurado","hubieron jurado","jurando","swearing","jurado","sworn" +"jurar","to swear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sworn","habría jurado","habrías jurado","habría jurado","habríamos jurado","habríais jurado","habrían jurado","jurando","swearing","jurado","sworn" +"juremos" +"jurar","to swear","Subjuntivo","Subjunctive","Presente","Present","I swear, am swearing","jure","jures","jure","juremos","juréis","juren","jurando","swearing","jurado","sworn" +"jurar","to swear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I swore, was swearing","jurara","juraras","jurara","juráramos","jurarais","juraran","jurando","swearing","jurado","sworn" +"jurar","to swear","Subjuntivo","Subjunctive","Futuro","Future","I will swear","jurare","jurares","jurare","juráremos","jurareis","juraren","jurando","swearing","jurado","sworn" +"jurar","to swear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sworn, swore","haya jurado","hayas jurado","haya jurado","hayamos jurado","hayáis jurado","hayan jurado","jurando","swearing","jurado","sworn" +"jurar","to swear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sworn","hubiere jurado","hubieres jurado","hubiere jurado","hubiéremos jurado","hubiereis jurado","hubieren jurado","jurando","swearing","jurado","sworn" +"jurar","to swear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sworn","hubiera jurado","hubieras jurado","hubiera jurado","hubiéramos jurado","hubierais jurado","hubieran jurado","jurando","swearing","jurado","sworn" +"jurar","to swear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Swear! Don't swear!","","jura","jure","juremos","jurad","juren","jurando","swearing","jurado","sworn" +"jurar","to swear","Imperativo Negativo","Imperative Negative","Presente","Present","Swear! Don't swear!","","no jures","no jure","no juremos","no juréis","no juren","jurando","swearing","jurado","sworn" +"ladrar","to bark","Indicativo","Indicative","Presente","Present","I bark, am barking","ladro","ladras","ladra","ladramos","ladráis","ladran","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Futuro","Future","I will bark","ladraré","ladrarás","ladrará","ladraremos","ladraréis","ladrarán","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Imperfecto","Imperfect","I was barking, used to bark, barked","ladraba","ladrabas","ladraba","ladrábamos","ladrabais","ladraban","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Pretérito","Preterite","I barked","ladré","ladraste","ladró","ladramos","ladrasteis","ladraron","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Condicional","Conditional","I would bark","ladraría","ladrarías","ladraría","ladraríamos","ladraríais","ladrarían","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Presente perfecto","Present Perfect","I have barked","he ladrado","has ladrado","ha ladrado","hemos ladrado","habéis ladrado","han ladrado","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have barked","habré ladrado","habrás ladrado","habrá ladrado","habremos ladrado","habréis ladrado","habrán ladrado","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had barked","había ladrado","habías ladrado","había ladrado","habíamos ladrado","habíais ladrado","habían ladrado","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had barked","hube ladrado","hubiste ladrado","hubo ladrado","hubimos ladrado","hubisteis ladrado","hubieron ladrado","ladrando","barking","ladrado","barked" +"ladrar","to bark","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have barked","habría ladrado","habrías ladrado","habría ladrado","habríamos ladrado","habríais ladrado","habrían ladrado","ladrando","barking","ladrado","barked" +"ladremos" +"ladrar","to bark","Subjuntivo","Subjunctive","Presente","Present","I bark, am barking","ladre","ladres","ladre","ladremos","ladréis","ladren","ladrando","barking","ladrado","barked" +"ladrar","to bark","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I barked, was barking","ladrara","ladraras","ladrara","ladráramos","ladrarais","ladraran","ladrando","barking","ladrado","barked" +"ladrar","to bark","Subjuntivo","Subjunctive","Futuro","Future","I will bark","ladrare","ladrares","ladrare","ladráremos","ladrareis","ladraren","ladrando","barking","ladrado","barked" +"ladrar","to bark","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have barked, barked","haya ladrado","hayas ladrado","haya ladrado","hayamos ladrado","hayáis ladrado","hayan ladrado","ladrando","barking","ladrado","barked" +"ladrar","to bark","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have barked","hubiere ladrado","hubieres ladrado","hubiere ladrado","hubiéremos ladrado","hubiereis ladrado","hubieren ladrado","ladrando","barking","ladrado","barked" +"ladrar","to bark","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had barked","hubiera ladrado","hubieras ladrado","hubiera ladrado","hubiéramos ladrado","hubierais ladrado","hubieran ladrado","ladrando","barking","ladrado","barked" +"ladrar","to bark","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bark! Don't bark!","","ladra","ladre","ladremos","ladrad","ladren","ladrando","barking","ladrado","barked" +"ladrar","to bark","Imperativo Negativo","Imperative Negative","Presente","Present","Bark! Don't bark!","","no ladres","no ladre","no ladremos","no ladréis","no ladren","ladrando","barking","ladrado","barked" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Presente","Present","I lament, am lamenting","lamento","lamentas","lamenta","lamentamos","lamentáis","lamentan","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Futuro","Future","I will lament","lamentaré","lamentarás","lamentará","lamentaremos","lamentaréis","lamentarán","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Imperfecto","Imperfect","I was lamenting, used to lament, lamented","lamentaba","lamentabas","lamentaba","lamentábamos","lamentabais","lamentaban","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Pretérito","Preterite","I lamented","lamenté","lamentaste","lamentó","lamentamos","lamentasteis","lamentaron","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Condicional","Conditional","I would lament","lamentaría","lamentarías","lamentaría","lamentaríamos","lamentaríais","lamentarían","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lamented","he lamentado","has lamentado","ha lamentado","hemos lamentado","habéis lamentado","han lamentado","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lamented","habré lamentado","habrás lamentado","habrá lamentado","habremos lamentado","habréis lamentado","habrán lamentado","lamentando","lamenting","lamentado","lamented" +"lavar","to wash","Indicativo","Indicative","Condicional","Conditional","I would wash","lavaría","lavarías","lavaría","lavaríamos","lavaríais","lavarían","lavando","washing","lavado","washed" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lamented","había lamentado","habías lamentado","había lamentado","habíamos lamentado","habíais lamentado","habían lamentado","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lamented","hube lamentado","hubiste lamentado","hubo lamentado","hubimos lamentado","hubisteis lamentado","hubieron lamentado","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lamented","habría lamentado","habrías lamentado","habría lamentado","habríamos lamentado","habríais lamentado","habrían lamentado","lamentando","lamenting","lamentado","lamented" +"lamentemos" +"lamentar","to lament, regret, feel sorry about","Subjuntivo","Subjunctive","Presente","Present","I lament, am lamenting","lamente","lamentes","lamente","lamentemos","lamentéis","lamenten","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lamented, was lamenting","lamentara","lamentaras","lamentara","lamentáramos","lamentarais","lamentaran","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Subjuntivo","Subjunctive","Futuro","Future","I will lament","lamentare","lamentares","lamentare","lamentáremos","lamentareis","lamentaren","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lamented, lamented","haya lamentado","hayas lamentado","haya lamentado","hayamos lamentado","hayáis lamentado","hayan lamentado","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lamented","hubiere lamentado","hubieres lamentado","hubiere lamentado","hubiéremos lamentado","hubiereis lamentado","hubieren lamentado","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lamented","hubiera lamentado","hubieras lamentado","hubiera lamentado","hubiéramos lamentado","hubierais lamentado","hubieran lamentado","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Lament! Don't lament!","","lamenta","lamente","lamentemos","lamentad","lamenten","lamentando","lamenting","lamentado","lamented" +"lamentar","to lament, regret, feel sorry about","Imperativo Negativo","Imperative Negative","Presente","Present","Lament! Don't lament!","","no lamentes","no lamente","no lamentemos","no lamentéis","no lamenten","lamentando","lamenting","lamentado","lamented" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Presente","Present","I throw, am throwing","lanzo","lanzas","lanza","lanzamos","lanzáis","lanzan","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Futuro","Future","I will throw","lanzaré","lanzarás","lanzará","lanzaremos","lanzaréis","lanzarán","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Imperfecto","Imperfect","I was throwing, used to throw, threw","lanzaba","lanzabas","lanzaba","lanzábamos","lanzabais","lanzaban","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Pretérito","Preterite","I threw","lancé","lanzaste","lanzó","lanzamos","lanzasteis","lanzaron","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Condicional","Conditional","I would throw","lanzaría","lanzarías","lanzaría","lanzaríamos","lanzaríais","lanzarían","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Presente perfecto","Present Perfect","I have thrown","he lanzado","has lanzado","ha lanzado","hemos lanzado","habéis lanzado","han lanzado","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have thrown","habré lanzado","habrás lanzado","habrá lanzado","habremos lanzado","habréis lanzado","habrán lanzado","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had thrown","había lanzado","habías lanzado","había lanzado","habíamos lanzado","habíais lanzado","habían lanzado","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had thrown","hube lanzado","hubiste lanzado","hubo lanzado","hubimos lanzado","hubisteis lanzado","hubieron lanzado","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have thrown","habría lanzado","habrías lanzado","habría lanzado","habríamos lanzado","habríais lanzado","habrían lanzado","lanzando","throwing","lanzado","thrown" +"lancemos" +"lanzar","to throw, hurl, cast, fling","Subjuntivo","Subjunctive","Presente","Present","I throw, am throwing","lance","lances","lance","lancemos","lancéis","lancen","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I threw, was throwing","lanzara","lanzaras","lanzara","lanzáramos","lanzarais","lanzaran","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Subjuntivo","Subjunctive","Futuro","Future","I will throw","lanzare","lanzares","lanzare","lanzáremos","lanzareis","lanzaren","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have thrown, threw","haya lanzado","hayas lanzado","haya lanzado","hayamos lanzado","hayáis lanzado","hayan lanzado","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have thrown","hubiere lanzado","hubieres lanzado","hubiere lanzado","hubiéremos lanzado","hubiereis lanzado","hubieren lanzado","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had thrown","hubiera lanzado","hubieras lanzado","hubiera lanzado","hubiéramos lanzado","hubierais lanzado","hubieran lanzado","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Throw! Don't throw!","","lanza","lance","lancemos","lanzad","lancen","lanzando","throwing","lanzado","thrown" +"lanzar","to throw, hurl, cast, fling","Imperativo Negativo","Imperative Negative","Presente","Present","Throw! Don't throw!","","no lances","no lance","no lancemos","no lancéis","no lancen","lanzando","throwing","lanzado","thrown" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Presente","Present","I hurt, am hurting","lastimo","lastimas","lastima","lastimamos","lastimáis","lastiman","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Futuro","Future","I will hurt","lastimaré","lastimarás","lastimará","lastimaremos","lastimaréis","lastimarán","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Imperfecto","Imperfect","I was hurting, used to hurt, hurt","lastimaba","lastimabas","lastimaba","lastimábamos","lastimabais","lastimaban","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Pretérito","Preterite","I hurt","lastimé","lastimaste","lastimó","lastimamos","lastimasteis","lastimaron","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Condicional","Conditional","I would hurt","lastimaría","lastimarías","lastimaría","lastimaríamos","lastimaríais","lastimarían","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hurt","he lastimado","has lastimado","ha lastimado","hemos lastimado","habéis lastimado","han lastimado","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hurt","habré lastimado","habrás lastimado","habrá lastimado","habremos lastimado","habréis lastimado","habrán lastimado","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hurt","había lastimado","habías lastimado","había lastimado","habíamos lastimado","habíais lastimado","habían lastimado","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hurt","hube lastimado","hubiste lastimado","hubo lastimado","hubimos lastimado","hubisteis lastimado","hubieron lastimado","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hurt","habría lastimado","habrías lastimado","habría lastimado","habríamos lastimado","habríais lastimado","habrían lastimado","lastimando","hurting","lastimado","hurt" +"lastimemos" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Subjuntivo","Subjunctive","Presente","Present","I hurt, am hurting","lastime","lastimes","lastime","lastimemos","lastiméis","lastimen","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hurt, was hurting","lastimara","lastimaras","lastimara","lastimáramos","lastimarais","lastimaran","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Subjuntivo","Subjunctive","Futuro","Future","I will hurt","lastimare","lastimares","lastimare","lastimáremos","lastimareis","lastimaren","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hurt, hurt","haya lastimado","hayas lastimado","haya lastimado","hayamos lastimado","hayáis lastimado","hayan lastimado","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hurt","hubiere lastimado","hubieres lastimado","hubiere lastimado","hubiéremos lastimado","hubiereis lastimado","hubieren lastimado","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hurt","hubiera lastimado","hubieras lastimado","hubiera lastimado","hubiéramos lastimado","hubierais lastimado","hubieran lastimado","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hurt! Don't hurt!","","lastima","lastime","lastimemos","lastimad","lastimen","lastimando","hurting","lastimado","hurt" +"lastimar","to hurt, injure, harm; to pity; to move to pity","Imperativo Negativo","Imperative Negative","Presente","Present","Hurt! Don't hurt!","","no lastimes","no lastime","no lastimemos","no lastiméis","no lastimen","lastimando","hurting","lastimado","hurt" +"lavar","to wash","Indicativo","Indicative","Presente","Present","I wash, am washing","lavo","lavas","lava","lavamos","laváis","lavan","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Futuro","Future","I will wash","lavaré","lavarás","lavará","lavaremos","lavaréis","lavarán","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Imperfecto","Imperfect","I was washing, used to wash, washed","lavaba","lavabas","lavaba","lavábamos","lavabais","lavaban","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Pretérito","Preterite","I washed","lavé","lavaste","lavó","lavamos","lavasteis","lavaron","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Presente perfecto","Present Perfect","I have washed","he lavado","has lavado","ha lavado","hemos lavado","habéis lavado","han lavado","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have washed","habré lavado","habrás lavado","habrá lavado","habremos lavado","habréis lavado","habrán lavado","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had washed","había lavado","habías lavado","había lavado","habíamos lavado","habíais lavado","habían lavado","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had washed","hube lavado","hubiste lavado","hubo lavado","hubimos lavado","hubisteis lavado","hubieron lavado","lavando","washing","lavado","washed" +"lavar","to wash","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have washed","habría lavado","habrías lavado","habría lavado","habríamos lavado","habríais lavado","habrían lavado","lavando","washing","lavado","washed" +"lavemos" +"lavar","to wash","Subjuntivo","Subjunctive","Presente","Present","I wash, am washing","lave","laves","lave","lavemos","lavéis","laven","lavando","washing","lavado","washed" +"lavar","to wash","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I washed, was washing","lavara","lavaras","lavara","laváramos","lavarais","lavaran","lavando","washing","lavado","washed" +"lavar","to wash","Subjuntivo","Subjunctive","Futuro","Future","I will wash","lavare","lavares","lavare","laváremos","lavareis","lavaren","lavando","washing","lavado","washed" +"lavar","to wash","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have washed, washed","haya lavado","hayas lavado","haya lavado","hayamos lavado","hayáis lavado","hayan lavado","lavando","washing","lavado","washed" +"lavar","to wash","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have washed","hubiere lavado","hubieres lavado","hubiere lavado","hubiéremos lavado","hubiereis lavado","hubieren lavado","lavando","washing","lavado","washed" +"lavar","to wash","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had washed","hubiera lavado","hubieras lavado","hubiera lavado","hubiéramos lavado","hubierais lavado","hubieran lavado","lavando","washing","lavado","washed" +"lavar","to wash","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Wash! Don't wash!","","lava","lave","lavemos","lavad","laven","lavando","washing","lavado","washed" +"lavar","to wash","Imperativo Negativo","Imperative Negative","Presente","Present","Wash! Don't wash!","","no laves","no lave","no lavemos","no lavéis","no laven","lavando","washing","lavado","washed" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Presente","Present","I wash up, am washing up","me lavo","te lavas","se lava","nos lavamos","os laváis","se lavan","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Futuro","Future","I will wash up","me lavaré","te lavarás","se lavará","nos lavaremos","os lavaréis","se lavarán","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Imperfecto","Imperfect","I was washing up, used to wash up, washed up","me lavaba","te lavabas","se lavaba","nos lavábamos","os lavabais","se lavaban","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Pretérito","Preterite","I washed up","me lavé","te lavaste","se lavó","nos lavamos","lavasteis","se lavaron","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Condicional","Conditional","I would wash up","me lavaría","te lavarías","se lavaría","nos lavaríamos","os lavaríais","se lavarían","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have washed up","me he lavado","te has lavado","se ha lavado","nos hemos lavado","os habéis lavado","se han lavado","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have washed up","me habré lavado","te habrás lavado","se habrá lavado","nos habremos lavado","os habréis lavado","se habrán lavado","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had washed up","me había lavado","te habías lavado","se había lavado","nos habíamos lavado","os habíais lavado","se habían lavado","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had washed up","me hube lavado","te hubiste lavado","se hubo lavado","nos hubimos lavado","os hubisteis lavado","se hubieron lavado","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have washed up","me habría lavado","te habrías lavado","se habría lavado","nos habríamos lavado","os habríais lavado","se habrían lavado","lavándose","washing up","lavado","washed up" +"nos lavemos" +"lavarse","to wash [oneself], to wash up","Subjuntivo","Subjunctive","Presente","Present","I wash up, am washing up","me lave","te laves","se lave","nos lavemos","os lavéis","se laven","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I washed up, was washing up","me lavara","te lavaras","se lavara","nos laváramos","os lavarais","se lavaran","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Subjuntivo","Subjunctive","Futuro","Future","I will wash up","me lavare","te lavares","se lavare","nos laváremos","os lavareis","se lavaren","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have washed up, washed up","me haya lavado","te hayas lavado","se haya lavado","nos hayamos lavado","os hayáis lavado","se hayan lavado","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have washed up","me hubiere lavado","te hubieres lavado","se hubiere lavado","nos hubiéremos lavado","os hubiereis lavado","se hubieren lavado","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had washed up","me hubiera lavado","te hubieras lavado","se hubiera lavado","nos hubiéramos lavado","os hubierais lavado","se hubieran lavado","lavándose","washing up","lavado","washed up" +"lavarse","to wash [oneself], to wash up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Wash up! Don't wash up!","","lávate","lávese","nos lavemos","lavaos","lávense","lavándose","washing up","lavado","washed up", +"lavarse","to wash [oneself], to wash up","Imperativo Negativo","Imperative Negative","Presente","Present","Wash up! Don't wash up!","","no te laves","no se lave","no nos lavemos","no os lavéis","no se laven","lavándose","washing up","lavado","washed up", +"leer","to read","Indicativo","Indicative","Presente","Present","I read, am reading","leo","lees","lee","leemos","leéis","leen","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Futuro","Future","I will read","leeré","leerás","leerá","leeremos","leeréis","leerán","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Imperfecto","Imperfect","I was reading, used to read, read","leía","leías","leía","leíamos","leíais","leían","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Pretérito","Preterite","I read","leí","leíste","leyó","leímos","leísteis","leyeron","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Condicional","Conditional","I would read","leería","leerías","leería","leeríamos","leeríais","leerían","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Presente perfecto","Present Perfect","I have read","he leído","has leído","ha leído","hemos leído","habéis leído","han leído","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have read","habré leído","habrás leído","habrá leído","habremos leído","habréis leído","habrán leído","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had read","había leído","habías leído","había leído","habíamos leído","habíais leído","habían leído","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had read","hube leído","hubiste leído","hubo leído","hubimos leído","hubisteis leído","hubieron leído","leyendo","reading","leído","read" +"leer","to read","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have read","habría leído","habrías leído","habría leído","habríamos leído","habríais leído","habrían leído","leyendo","reading","leído","read" +"leamos" +"leer","to read","Subjuntivo","Subjunctive","Presente","Present","I read, am reading","lea","leas","lea","leamos","leáis","lean","leyendo","reading","leído","read" +"leer","to read","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I read, was reading","leyera","leyeras","leyera","leyéramos","leyerais","leyeran","leyendo","reading","leído","read" +"leer","to read","Subjuntivo","Subjunctive","Futuro","Future","I will read","leyere","leyeres","leyere","leyéremos","leyereis","leyeren","leyendo","reading","leído","read" +"leer","to read","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have read, read","haya leído","hayas leído","haya leído","hayamos leído","hayáis leído","hayan leído","leyendo","reading","leído","read" +"leer","to read","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have read","hubiere leído","hubieres leído","hubiere leído","hubiéremos leído","hubiereis leído","hubieren leído","leyendo","reading","leído","read" +"leer","to read","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had read","hubiera leído","hubieras leído","hubiera leído","hubiéramos leído","hubierais leído","hubieran leído","leyendo","reading","leído","read" +"leer","to read","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Read! Don't read!","","lee","lea","leamos","leed","lean","leyendo","reading","leído","read" +"leer","to read","Imperativo Negativo","Imperative Negative","Presente","Present","Read! Don't read!","","no leas","no lea","no leamos","no leáis","no lean","leyendo","reading","leído","read" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Presente","Present","I legalize, am legalizing","legalizo","legalizas","legaliza","legalizamos","legalizáis","legalizan","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Futuro","Future","I will legalize","legalizaré","legalizarás","legalizará","legalizaremos","legalizaréis","legalizarán","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Imperfecto","Imperfect","I was legalizing, used to legalize, legalized","legalizaba","legalizabas","legalizaba","legalizábamos","legalizabais","legalizaban","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Pretérito","Preterite","I legalized","legalicé","legalizaste","legalizó","legalizamos","legalizasteis","legalizaron","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Condicional","Conditional","I would legalize","legalizaría","legalizarías","legalizaría","legalizaríamos","legalizaríais","legalizarían","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Presente perfecto","Present Perfect","I have legalized","he legalizado","has legalizado","ha legalizado","hemos legalizado","habéis legalizado","han legalizado","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have legalized","habré legalizado","habrás legalizado","habrá legalizado","habremos legalizado","habréis legalizado","habrán legalizado","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had legalized","había legalizado","habías legalizado","había legalizado","habíamos legalizado","habíais legalizado","habían legalizado","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had legalized","hube legalizado","hubiste legalizado","hubo legalizado","hubimos legalizado","hubisteis legalizado","hubieron legalizado","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have legalized","habría legalizado","habrías legalizado","habría legalizado","habríamos legalizado","habríais legalizado","habrían legalizado","legalizando","legalizing","legalizado","legalized" +"legalicemos" +"legalizar","to legalize, make lawful","Subjuntivo","Subjunctive","Presente","Present","I legalize, am legalizing","legalice","legalices","legalice","legalicemos","legalicéis","legalicen","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I legalized, was legalizing","legalizara","legalizaras","legalizara","legalizáramos","legalizarais","legalizaran","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Subjuntivo","Subjunctive","Futuro","Future","I will legalize","legalizare","legalizares","legalizare","legalizáremos","legalizareis","legalizaren","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have legalized, legalized","haya legalizado","hayas legalizado","haya legalizado","hayamos legalizado","hayáis legalizado","hayan legalizado","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have legalized","hubiere legalizado","hubieres legalizado","hubiere legalizado","hubiéremos legalizado","hubiereis legalizado","hubieren legalizado","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had legalized","hubiera legalizado","hubieras legalizado","hubiera legalizado","hubiéramos legalizado","hubierais legalizado","hubieran legalizado","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Legalize! Don't legalize!","","legaliza","legalice","legalicemos","legalizad","legalicen","legalizando","legalizing","legalizado","legalized" +"legalizar","to legalize, make lawful","Imperativo Negativo","Imperative Negative","Presente","Present","Legalize! Don't legalize!","","no legalices","no legalice","no legalicemos","no legalicéis","no legalicen","legalizando","legalizing","legalizado","legalized" +"levantar","to raise, to lift","Indicativo","Indicative","Presente","Present","I raise, am raising","levanto","levantas","levanta","levantamos","levantáis","levantan","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Futuro","Future","I will raise","levantaré","levantarás","levantará","levantaremos","levantaréis","levantarán","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Imperfecto","Imperfect","I was raising, used to raise, raised","levantaba","levantabas","levantaba","levantábamos","levantabais","levantaban","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Pretérito","Preterite","I raised","levanté","levantaste","levantó","levantamos","levantasteis","levantaron","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Condicional","Conditional","I would raise","levantaría","levantarías","levantaría","levantaríamos","levantaríais","levantarían","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Presente perfecto","Present Perfect","I have raised","he levantado","has levantado","ha levantado","hemos levantado","habéis levantado","han levantado","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have raised","habré levantado","habrás levantado","habrá levantado","habremos levantado","habréis levantado","habrán levantado","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had raised","había levantado","habías levantado","había levantado","habíamos levantado","habíais levantado","habían levantado","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had raised","hube levantado","hubiste levantado","hubo levantado","hubimos levantado","hubisteis levantado","hubieron levantado","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have raised","habría levantado","habrías levantado","habría levantado","habríamos levantado","habríais levantado","habrían levantado","levantando","raising","levantado","raised" +"levantemos" +"levantar","to raise, to lift","Subjuntivo","Subjunctive","Presente","Present","I raise, am raising","levante","levantes","levante","levantemos","levantéis","levanten","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I raised, was raising","levantara","levantaras","levantara","levantáramos","levantarais","levantaran","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Subjuntivo","Subjunctive","Futuro","Future","I will raise","levantare","levantares","levantare","levantáremos","levantareis","levantaren","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have raised, raised","haya levantado","hayas levantado","haya levantado","hayamos levantado","hayáis levantado","hayan levantado","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have raised","hubiere levantado","hubieres levantado","hubiere levantado","hubiéremos levantado","hubiereis levantado","hubieren levantado","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had raised","hubiera levantado","hubieras levantado","hubiera levantado","hubiéramos levantado","hubierais levantado","hubieran levantado","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","raise! Don't raise!","","levanta","levante","levantemos","levantad","levanten","levantando","raising","levantado","raised" +"levantar","to raise, to lift","Imperativo Negativo","Imperative Negative","Presente","Present","raise! Don't raise!","","no levantes","no levante","no levantemos","no levantéis","no levanten","levantando","raising","levantado","raised" +"levantarse","to get up","Indicativo","Indicative","Presente","Present","I get up, am getting up","me levanto","te levantas","se levanta","nos levantamos","os levantáis","se levantan","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Futuro","Future","I will get up","me levantaré","te levantarás","se levantará","nos levantaremos","os levantaréis","se levantarán","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Imperfecto","Imperfect","I was getting up, used to get up, got up","me levantaba","te levantabas","se levantaba","nos levantábamos","os levantabais","se levantaban","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Pretérito","Preterite","I got up","me levanté","te levantaste","se levantó","nos levantamos","levantasteis","se levantaron","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Condicional","Conditional","I would get up","me levantaría","te levantarías","se levantaría","nos levantaríamos","os levantaríais","se levantarían","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten up","me he levantado","te has levantado","se ha levantado","nos hemos levantado","os habéis levantado","se han levantado","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten up","me habré levantado","te habrás levantado","se habrá levantado","nos habremos levantado","os habréis levantado","se habrán levantado","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten up","me había levantado","te habías levantado","se había levantado","nos habíamos levantado","os habíais levantado","se habían levantado","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten up","me hube levantado","te hubiste levantado","se hubo levantado","nos hubimos levantado","os hubisteis levantado","se hubieron levantado","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten up","me habría levantado","te habrías levantado","se habría levantado","nos habríamos levantado","os habríais levantado","se habrían levantado","levantándose","getting up","levantado","gotten up" +"nos levantemos" +"levantarse","to get up","Subjuntivo","Subjunctive","Presente","Present","I get up, am getting up","me levante","te levantes","se levante","nos levantemos","os levantéis","se levanten","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got up, was getting up","me levantara","te levantaras","se levantara","nos levantáramos","os levantarais","se levantaran","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Subjuntivo","Subjunctive","Futuro","Future","I will get up","me levantare","te levantares","se levantare","nos levantáremos","os levantareis","se levantaren","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten up, got up","me haya levantado","te hayas levantado","se haya levantado","nos hayamos levantado","os hayáis levantado","se hayan levantado","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten up","me hubiere levantado","te hubieres levantado","se hubiere levantado","nos hubiéremos levantado","os hubiereis levantado","se hubieren levantado","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten up","me hubiera levantado","te hubieras levantado","se hubiera levantado","nos hubiéramos levantado","os hubierais levantado","se hubieran levantado","levantándose","getting up","levantado","gotten up" +"levantarse","to get up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get up! Don't get up!","","levántate","levántese","nos levantemos","levantaos","levántense","levantándose","getting up","levantado","gotten up", +"levantarse","to get up","Imperativo Negativo","Imperative Negative","Presente","Present","Get up! Don't get up!","","no te levantes","no se levante","no nos levantemos","no os levantéis","no se levanten","levantándose","getting up","levantado","gotten up", +"limpiar","to clean","Indicativo","Indicative","Presente","Present","I clean, am cleaning","limpio","limpias","limpia","limpiamos","limpiáis","limpian","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Futuro","Future","I will clean","limpiaré","limpiarás","limpiará","limpiaremos","limpiaréis","limpiarán","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Imperfecto","Imperfect","I was cleaning, used to clean, cleaned","limpiaba","limpiabas","limpiaba","limpiábamos","limpiabais","limpiaban","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Pretérito","Preterite","I cleaned","limpié","limpiaste","limpió","limpiamos","limpiasteis","limpiaron","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Condicional","Conditional","I would clean","limpiaría","limpiarías","limpiaría","limpiaríamos","limpiaríais","limpiarían","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cleaned","he limpiado","has limpiado","ha limpiado","hemos limpiado","habéis limpiado","han limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cleaned","habré limpiado","habrás limpiado","habrá limpiado","habremos limpiado","habréis limpiado","habrán limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cleaned","había limpiado","habías limpiado","había limpiado","habíamos limpiado","habíais limpiado","habían limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cleaned","hube limpiado","hubiste limpiado","hubo limpiado","hubimos limpiado","hubisteis limpiado","hubieron limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cleaned","habría limpiado","habrías limpiado","habría limpiado","habríamos limpiado","habríais limpiado","habrían limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiemos" +"limpiar","to clean","Subjuntivo","Subjunctive","Presente","Present","I clean, am cleaning","limpie","limpies","limpie","limpiemos","limpiéis","limpien","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cleaned, was cleaning","limpiara","limpiaras","limpiara","limpiáramos","limpiarais","limpiaran","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Subjuntivo","Subjunctive","Futuro","Future","I will clean","limpiare","limpiares","limpiare","limpiáremos","limpiareis","limpiaren","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cleaned, cleaned","haya limpiado","hayas limpiado","haya limpiado","hayamos limpiado","hayáis limpiado","hayan limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cleaned","hubiere limpiado","hubieres limpiado","hubiere limpiado","hubiéremos limpiado","hubiereis limpiado","hubieren limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cleaned","hubiera limpiado","hubieras limpiado","hubiera limpiado","hubiéramos limpiado","hubierais limpiado","hubieran limpiado","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Clean! Don't clean!","","limpia","limpie","limpiemos","limpiad","limpien","limpiando","cleaning","limpiado","cleaned" +"limpiar","to clean","Imperativo Negativo","Imperative Negative","Presente","Present","Clean! Don't clean!","","no limpies","no limpie","no limpiemos","no limpiéis","no limpien","limpiando","cleaning","limpiado","cleaned" +"llamar","to call, to name","Indicativo","Indicative","Presente","Present","I call, am calling","llamo","llamas","llama","llamamos","llamáis","llaman","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Futuro","Future","I will call","llamaré","llamarás","llamará","llamaremos","llamaréis","llamarán","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Imperfecto","Imperfect","I was calling, used to call, called","llamaba","llamabas","llamaba","llamábamos","llamabais","llamaban","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Pretérito","Preterite","I called","llamé","llamaste","llamó","llamamos","llamasteis","llamaron","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Condicional","Conditional","I would call","llamaría","llamarías","llamaría","llamaríamos","llamaríais","llamarían","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Presente perfecto","Present Perfect","I have called","he llamado","has llamado","ha llamado","hemos llamado","habéis llamado","han llamado","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have called","habré llamado","habrás llamado","habrá llamado","habremos llamado","habréis llamado","habrán llamado","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had called","había llamado","habías llamado","había llamado","habíamos llamado","habíais llamado","habían llamado","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had called","hube llamado","hubiste llamado","hubo llamado","hubimos llamado","hubisteis llamado","hubieron llamado","llamando","calling","llamado","called" +"llamar","to call, to name","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have called","habría llamado","habrías llamado","habría llamado","habríamos llamado","habríais llamado","habrían llamado","llamando","calling","llamado","called" +"llamemos" +"llamar","to call, to name","Subjuntivo","Subjunctive","Presente","Present","I call, am calling","llame","llames","llame","llamemos","llaméis","llamen","llamando","calling","llamado","called" +"llamar","to call, to name","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I called, was calling","llamara","llamaras","llamara","llamáramos","llamarais","llamaran","llamando","calling","llamado","called" +"llamar","to call, to name","Subjuntivo","Subjunctive","Futuro","Future","I will call","llamare","llamares","llamare","llamáremos","llamareis","llamaren","llamando","calling","llamado","called" +"llamar","to call, to name","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have called, called","haya llamado","hayas llamado","haya llamado","hayamos llamado","hayáis llamado","hayan llamado","llamando","calling","llamado","called" +"llamar","to call, to name","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have called","hubiere llamado","hubieres llamado","hubiere llamado","hubiéremos llamado","hubiereis llamado","hubieren llamado","llamando","calling","llamado","called" +"llamar","to call, to name","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had called","hubiera llamado","hubieras llamado","hubiera llamado","hubiéramos llamado","hubierais llamado","hubieran llamado","llamando","calling","llamado","called" +"llamar","to call, to name","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Call! Don't call!","","llama","llame","llamemos","llamad","llamen","llamando","calling","llamado","called" +"llamar","to call, to name","Imperativo Negativo","Imperative Negative","Presente","Present","Call! Don't call!","","no llames","no llame","no llamemos","no llaméis","no llamen","llamando","calling","llamado","called" +"llamarse","to be called, be named","Indicativo","Indicative","Presente","Present","my name is","me llamo","te llamas","se llama","nos llamamos","os llamáis","se llaman","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Futuro","Future","my name will be","me llamaré","te llamarás","se llamará","nos llamaremos","os llamaréis","se llamarán","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Imperfecto","Imperfect","my name was, my name used to be","me llamaba","te llamabas","se llamaba","nos llamábamos","os llamabais","se llamaban","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Pretérito","Preterite","my name was","me llamé","te llamaste","se llamó","nos llamamos","os llamasteis","se llamaron","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Condicional","Conditional","my name would be","me llamaría","te llamarías","se llamaría","nos llamaríamos","os llamaríais","se llamarían","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Presente perfecto","Present Perfect","my name has been","me he llamado","te has llamado","se ha llamado","nos hemos llamado","os habéis llamado","se han llamado","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Futuro perfecto","Future Perfect","my name will have been","me habré llamado","te habrás llamado","se habrá llamado","nos habremos llamado","os habréis llamado","se habrán llamado","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","my name had been","me había llamado","te habías llamado","se había llamado","nos habíamos llamado","os habíais llamado","se habían llamado","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","my name had been","me hube llamado","te hubiste llamado","se hubo llamado","nos hubimos llamado","os hubisteis llamado","se hubieron llamado","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","my name would have been","me habría llamado","te habrías llamado","se habría llamado","nos habríamos llamado","os habríais llamado","se habrían llamado","llamándose","being named","llamado","named" +"nos llamemos" +"llamarse","to be called, be named","Subjuntivo","Subjunctive","Presente","Present","my name is","me llame","te llames","se llame","nos llamemos","os llaméis","se llamen","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Subjuntivo","Subjunctive","Imperfecto","Imperfect","my name was","me llamara","te llamaras","se llamara","nos llamáramos","os llamarais","se llamaran","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Subjuntivo","Subjunctive","Futuro","Future","my name will be","me llamare","te llamares","se llamare","nos llamáremos","os llamareis","se llamaren","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","my name has been, my name was","me haya llamado","te hayas llamado","se haya llamado","nos hayamos llamado","os hayáis llamado","se hayan llamado","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","my name will have been","me hubiere llamado","te hubieres llamado","se hubiere llamado","nos hubiéremos llamado","os hubiereis llamado","se hubieren llamado","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","my name had been","me hubiera llamado","te hubieras llamado","se hubiera llamado","nos hubiéramos llamado","os hubierais llamado","se hubieran llamado","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be named! Call yourself! Don't be named/call yourself!","","llámate","llámese","nos llamemos","llamaos","llámense","llamándose","being named","llamado","named" +"llamarse","to be called, be named","Imperativo Negativo","Imperative Negative","Presente","Present","Be named! Call yourself! Don't be named/call yourself!","","no te llames","no se llame","no nos llamemos","no os llaméis","no se llamen","llamándose","being named","llamado","named" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Presente","Present","I arrive, am arriving","llego","llegas","llega","llegamos","llegáis","llegan","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Futuro","Future","I will arrive","llegaré","llegarás","llegará","llegaremos","llegaréis","llegarán","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Imperfecto","Imperfect","I was arriving, used to arrive, arrived","llegaba","llegabas","llegaba","llegábamos","llegabais","llegaban","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Pretérito","Preterite","I arrived","llegué","llegaste","llegó","llegamos","llegasteis","llegaron","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Condicional","Conditional","I would arrive","llegaría","llegarías","llegaría","llegaríamos","llegaríais","llegarían","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Presente perfecto","Present Perfect","I have arrived","he llegado","has llegado","ha llegado","hemos llegado","habéis llegado","han llegado","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have arrived","habré llegado","habrás llegado","habrá llegado","habremos llegado","habréis llegado","habrán llegado","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had arrived","había llegado","habías llegado","había llegado","habíamos llegado","habíais llegado","habían llegado","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had arrived","hube llegado","hubiste llegado","hubo llegado","hubimos llegado","hubisteis llegado","hubieron llegado","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have arrived","habría llegado","habrías llegado","habría llegado","habríamos llegado","habríais llegado","habrían llegado","llegando","arriving","llegado","arrived" +"lleguemos" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Subjuntivo","Subjunctive","Presente","Present","I arrive, am arriving","llegue","llegues","llegue","lleguemos","lleguéis","lleguen","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I arrived, was arriving","llegara","llegaras","llegara","llegáramos","llegarais","llegaran","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Subjuntivo","Subjunctive","Futuro","Future","I will arrive","llegare","llegares","llegare","llegáremos","llegareis","llegaren","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have arrived, arrived","haya llegado","hayas llegado","haya llegado","hayamos llegado","hayáis llegado","hayan llegado","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have arrived","hubiere llegado","hubieres llegado","hubiere llegado","hubiéremos llegado","hubiereis llegado","hubieren llegado","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had arrived","hubiera llegado","hubieras llegado","hubiera llegado","hubiéramos llegado","hubierais llegado","hubieran llegado","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Arrive! Don't arrive!","","llega","llegue","lleguemos","llegad","lleguen","llegando","arriving","llegado","arrived" +"llegar","to arrive, come, reach; to bring up, bring over; to gather together","Imperativo Negativo","Imperative Negative","Presente","Present","Arrive! Don't arrive!","","no llegues","no llegue","no lleguemos","no lleguéis","no lleguen","llegando","arriving","llegado","arrived" +"llenar","to fill; to fulfill","Indicativo","Indicative","Presente","Present","I fill, am filling","lleno","llenas","llena","llenamos","llenáis","llenan","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Futuro","Future","I will fill","llenaré","llenarás","llenará","llenaremos","llenaréis","llenarán","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Imperfecto","Imperfect","I was filling, used to fill, filled","llenaba","llenabas","llenaba","llenábamos","llenabais","llenaban","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Pretérito","Preterite","I filled","llené","llenaste","llenó","llenamos","llenasteis","llenaron","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Condicional","Conditional","I would fill","llenaría","llenarías","llenaría","llenaríamos","llenaríais","llenarían","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Presente perfecto","Present Perfect","I have filled","he llenado","has llenado","ha llenado","hemos llenado","habéis llenado","han llenado","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have filled","habré llenado","habrás llenado","habrá llenado","habremos llenado","habréis llenado","habrán llenado","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had filled","había llenado","habías llenado","había llenado","habíamos llenado","habíais llenado","habían llenado","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had filled","hube llenado","hubiste llenado","hubo llenado","hubimos llenado","hubisteis llenado","hubieron llenado","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have filled","habría llenado","habrías llenado","habría llenado","habríamos llenado","habríais llenado","habrían llenado","llenando","filling","llenado","filled" +"llenemos" +"llenar","to fill; to fulfill","Subjuntivo","Subjunctive","Presente","Present","I fill, am filling","llene","llenes","llene","llenemos","llenéis","llenen","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I filled, was filling","llenara","llenaras","llenara","llenáramos","llenarais","llenaran","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Subjuntivo","Subjunctive","Futuro","Future","I will fill","llenare","llenares","llenare","llenáremos","llenareis","llenaren","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have filled, filled","haya llenado","hayas llenado","haya llenado","hayamos llenado","hayáis llenado","hayan llenado","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have filled","hubiere llenado","hubieres llenado","hubiere llenado","hubiéremos llenado","hubiereis llenado","hubieren llenado","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had filled","hubiera llenado","hubieras llenado","hubiera llenado","hubiéramos llenado","hubierais llenado","hubieran llenado","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fill! Don't fill!","","llena","llene","llenemos","llenad","llenen","llenando","filling","llenado","filled" +"llenar","to fill; to fulfill","Imperativo Negativo","Imperative Negative","Presente","Present","Fill! Don't fill!","","no llenes","no llene","no llenemos","no llenéis","no llenen","llenando","filling","llenado","filled" +"llevar","to carry, bring","Indicativo","Indicative","Presente","Present","I carry, am carrying","llevo","llevas","lleva","llevamos","lleváis","llevan","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Futuro","Future","I will carry","llevaré","llevarás","llevará","llevaremos","llevaréis","llevarán","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Imperfecto","Imperfect","I was carrying, used to carry, carried","llevaba","llevabas","llevaba","llevábamos","llevabais","llevaban","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Pretérito","Preterite","I carried","llevé","llevaste","llevó","llevamos","llevasteis","llevaron","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Condicional","Conditional","I would carry","llevaría","llevarías","llevaría","llevaríamos","llevaríais","llevarían","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Presente perfecto","Present Perfect","I have carried","he llevado","has llevado","ha llevado","hemos llevado","habéis llevado","han llevado","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have carried","habré llevado","habrás llevado","habrá llevado","habremos llevado","habréis llevado","habrán llevado","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had carried","había llevado","habías llevado","había llevado","habíamos llevado","habíais llevado","habían llevado","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had carried","hube llevado","hubiste llevado","hubo llevado","hubimos llevado","hubisteis llevado","hubieron llevado","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have carried","habría llevado","habrías llevado","habría llevado","habríamos llevado","habríais llevado","habrían llevado","llevando","carrying","llevado","carried" +"llevemos" +"llevar","to carry, bring","Subjuntivo","Subjunctive","Presente","Present","I carry, am carrying","lleve","lleves","lleve","llevemos","llevéis","lleven","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I carried, was carrying","llevara","llevaras","llevara","lleváramos","llevarais","llevaran","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Subjuntivo","Subjunctive","Futuro","Future","I will carry","llevare","llevares","llevare","lleváremos","llevareis","llevaren","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have carried, carried","haya llevado","hayas llevado","haya llevado","hayamos llevado","hayáis llevado","hayan llevado","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have carried","hubiere llevado","hubieres llevado","hubiere llevado","hubiéremos llevado","hubiereis llevado","hubieren llevado","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had carried","hubiera llevado","hubieras llevado","hubiera llevado","hubiéramos llevado","hubierais llevado","hubieran llevado","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Carry! Don't carry!","","lleva","lleve","llevemos","llevad","lleven","llevando","carrying","llevado","carried" +"llevar","to carry, bring","Imperativo Negativo","Imperative Negative","Presente","Present","Carry! Don't carry!","","no lleves","no lleve","no llevemos","no llevéis","no lleven","llevando","carrying","llevado","carried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Presente","Present","I cry, am crying","lloro","lloras","llora","lloramos","lloráis","lloran","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Futuro","Future","I will cry","lloraré","llorarás","llorará","lloraremos","lloraréis","llorarán","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Imperfecto","Imperfect","I was crying, used to cry, cried","lloraba","llorabas","lloraba","llorábamos","llorabais","lloraban","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Pretérito","Preterite","I cried","lloré","lloraste","lloró","lloramos","llorasteis","lloraron","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Condicional","Conditional","I would cry","lloraría","llorarías","lloraría","lloraríamos","lloraríais","llorarían","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Presente perfecto","Present Perfect","I have cried","he llorado","has llorado","ha llorado","hemos llorado","habéis llorado","han llorado","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have cried","habré llorado","habrás llorado","habrá llorado","habremos llorado","habréis llorado","habrán llorado","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had cried","había llorado","habías llorado","había llorado","habíamos llorado","habíais llorado","habían llorado","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had cried","hube llorado","hubiste llorado","hubo llorado","hubimos llorado","hubisteis llorado","hubieron llorado","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have cried","habría llorado","habrías llorado","habría llorado","habríamos llorado","habríais llorado","habrían llorado","llorando","crying","llorado","cried" +"lloremos" +"llorar","to cry, weep; to weep for/about, cry about, lament","Subjuntivo","Subjunctive","Presente","Present","I cry, am crying","llore","llores","llore","lloremos","lloréis","lloren","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I cried, was crying","llorara","lloraras","llorara","lloráramos","llorarais","lloraran","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Subjuntivo","Subjunctive","Futuro","Future","I will cry","llorare","llorares","llorare","lloráremos","llorareis","lloraren","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have cried, cried","haya llorado","hayas llorado","haya llorado","hayamos llorado","hayáis llorado","hayan llorado","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have cried","hubiere llorado","hubieres llorado","hubiere llorado","hubiéremos llorado","hubiereis llorado","hubieren llorado","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had cried","hubiera llorado","hubieras llorado","hubiera llorado","hubiéramos llorado","hubierais llorado","hubieran llorado","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cry! Don't cry!","","llora","llore","lloremos","llorad","lloren","llorando","crying","llorado","cried" +"llorar","to cry, weep; to weep for/about, cry about, lament","Imperativo Negativo","Imperative Negative","Presente","Present","Cry! Don't cry!","","no llores","no llore","no lloremos","no lloréis","no lloren","llorando","crying","llorado","cried" +"llover","to rain","Indicativo","Indicative","Presente","Present","it rains, is raining","","","llueve","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Futuro","Future","it will rain","","","lloverá","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Imperfecto","Imperfect","it was raining, used to rain, rained","","","llovía","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Pretérito","Preterite","it rained","","","llovió","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Condicional","Conditional","it would rain","","","llovería","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Presente perfecto","Present Perfect","it has rained","","","ha llovido","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Futuro perfecto","Future Perfect","it will have rained","","","habrá llovido","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","it had rained","","","había llovido","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","it had rained","","","hubo llovido","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","it would have rained","","","habría llovido","","","","lloviendo","raining","llovido","rained" +"" +"llover","to rain","Subjuntivo","Subjunctive","Presente","Present","it rains, is raining","","","llueva","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","it rained, was raining","","","lloviera","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Subjuntivo","Subjunctive","Futuro","Future","it will rain","","","lloviere","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","it has rained, rained","","","haya llovido","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","it will have rained","","","hubiere llovido","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","it had rained","","","hubiera llovido","","","","lloviendo","raining","llovido","rained" +"llover","to rain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Rain! Don't rain!","","llueve","llueva","","lloved","lluevan","lloviendo","raining","llovido","rained" +"llover","to rain","Imperativo Negativo","Imperative Negative","Presente","Present","Rain! Don't rain!","","no lluevas","no llueva","no ","no llováis","no lluevan","lloviendo","raining","llovido","rained" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Presente","Present","I get, am getting","logro","logras","logra","logramos","lográis","logran","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Futuro","Future","I will get","lograré","lograrás","logrará","lograremos","lograréis","lograrán","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Imperfecto","Imperfect","I was getting, used to get, got","lograba","lograbas","lograba","lográbamos","lograbais","lograban","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Pretérito","Preterite","I got","logré","lograste","logró","logramos","lograsteis","lograron","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Condicional","Conditional","I would get","lograría","lograrías","lograría","lograríamos","lograríais","lograrían","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have got","he logrado","has logrado","ha logrado","hemos logrado","habéis logrado","han logrado","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have got","habré logrado","habrás logrado","habrá logrado","habremos logrado","habréis logrado","habrán logrado","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had got","había logrado","habías logrado","había logrado","habíamos logrado","habíais logrado","habían logrado","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had got","hube logrado","hubiste logrado","hubo logrado","hubimos logrado","hubisteis logrado","hubieron logrado","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have got","habría logrado","habrías logrado","habría logrado","habríamos logrado","habríais logrado","habrían logrado","logrando","getting","logrado","got" +"logremos" +"lograr","to get, obtain; to achieve, attain","Subjuntivo","Subjunctive","Presente","Present","I get, am getting","logre","logres","logre","logremos","logréis","logren","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got, was getting","lograra","lograras","lograra","lográramos","lograrais","lograran","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Subjuntivo","Subjunctive","Futuro","Future","I will get","lograre","lograres","lograre","lográremos","lograreis","lograren","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have got, got","haya logrado","hayas logrado","haya logrado","hayamos logrado","hayáis logrado","hayan logrado","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have got","hubiere logrado","hubieres logrado","hubiere logrado","hubiéremos logrado","hubiereis logrado","hubieren logrado","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had got","hubiera logrado","hubieras logrado","hubiera logrado","hubiéramos logrado","hubierais logrado","hubieran logrado","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get! Don't get!","","logra","logre","logremos","lograd","logren","logrando","getting","logrado","got" +"lograr","to get, obtain; to achieve, attain","Imperativo Negativo","Imperative Negative","Presente","Present","Get! Don't get!","","no logres","no logre","no logremos","no logréis","no logren","logrando","getting","logrado","got" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Presente","Present","I fight, am fighting","lucho","luchas","lucha","luchamos","lucháis","luchan","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Futuro","Future","I will fight","lucharé","lucharás","luchará","lucharemos","lucharéis","lucharán","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Imperfecto","Imperfect","I was fighting, used to fight, fought","luchaba","luchabas","luchaba","luchábamos","luchabais","luchaban","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Pretérito","Preterite","I fought","luché","luchaste","luchó","luchamos","luchasteis","lucharon","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Condicional","Conditional","I would fight","lucharía","lucharías","lucharía","lucharíamos","lucharíais","lucharían","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fought","he luchado","has luchado","ha luchado","hemos luchado","habéis luchado","han luchado","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fought","habré luchado","habrás luchado","habrá luchado","habremos luchado","habréis luchado","habrán luchado","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fought","había luchado","habías luchado","había luchado","habíamos luchado","habíais luchado","habían luchado","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fought","hube luchado","hubiste luchado","hubo luchado","hubimos luchado","hubisteis luchado","hubieron luchado","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fought","habría luchado","habrías luchado","habría luchado","habríamos luchado","habríais luchado","habrían luchado","luchando","fighting","luchado","fought" +"luchemos" +"luchar","to fight, struggle; to wrestle","Subjuntivo","Subjunctive","Presente","Present","I fight, am fighting","luche","luches","luche","luchemos","luchéis","luchen","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fought, was fighting","luchara","lucharas","luchara","lucháramos","lucharais","lucharan","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Subjuntivo","Subjunctive","Futuro","Future","I will fight","luchare","luchares","luchare","lucháremos","luchareis","lucharen","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fought, fought","haya luchado","hayas luchado","haya luchado","hayamos luchado","hayáis luchado","hayan luchado","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fought","hubiere luchado","hubieres luchado","hubiere luchado","hubiéremos luchado","hubiereis luchado","hubieren luchado","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fought","hubiera luchado","hubieras luchado","hubiera luchado","hubiéramos luchado","hubierais luchado","hubieran luchado","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fight! Don't fight!","","lucha","luche","luchemos","luchad","luchen","luchando","fighting","luchado","fought" +"luchar","to fight, struggle; to wrestle","Imperativo Negativo","Imperative Negative","Presente","Present","Fight! Don't fight!","","no luches","no luche","no luchemos","no luchéis","no luchen","luchando","fighting","luchado","fought" +"madurar","to mature; to ripen","Indicativo","Indicative","Presente","Present","I mature, am maturing","maduro","maduras","madura","maduramos","maduráis","maduran","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Futuro","Future","I will mature","maduraré","madurarás","madurará","maduraremos","maduraréis","madurarán","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Imperfecto","Imperfect","I was maturing, used to mature, matured","maduraba","madurabas","maduraba","madurábamos","madurabais","maduraban","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Pretérito","Preterite","I matured","maduré","maduraste","maduró","maduramos","madurasteis","maduraron","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Condicional","Conditional","I would mature","maduraría","madurarías","maduraría","maduraríamos","maduraríais","madurarían","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Presente perfecto","Present Perfect","I have matured","he madurado","has madurado","ha madurado","hemos madurado","habéis madurado","han madurado","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have matured","habré madurado","habrás madurado","habrá madurado","habremos madurado","habréis madurado","habrán madurado","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had matured","había madurado","habías madurado","había madurado","habíamos madurado","habíais madurado","habían madurado","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had matured","hube madurado","hubiste madurado","hubo madurado","hubimos madurado","hubisteis madurado","hubieron madurado","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have matured","habría madurado","habrías madurado","habría madurado","habríamos madurado","habríais madurado","habrían madurado","madurando","maturing","madurado","matured" +"maduremos" +"madurar","to mature; to ripen","Subjuntivo","Subjunctive","Presente","Present","I mature, am maturing","madure","madures","madure","maduremos","maduréis","maduren","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I matured, was maturing","madurara","maduraras","madurara","maduráramos","madurarais","maduraran","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Subjuntivo","Subjunctive","Futuro","Future","I will mature","madurare","madurares","madurare","maduráremos","madurareis","maduraren","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have matured, matured","haya madurado","hayas madurado","haya madurado","hayamos madurado","hayáis madurado","hayan madurado","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have matured","hubiere madurado","hubieres madurado","hubiere madurado","hubiéremos madurado","hubiereis madurado","hubieren madurado","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had matured","hubiera madurado","hubieras madurado","hubiera madurado","hubiéramos madurado","hubierais madurado","hubieran madurado","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Mature! Don't mature!","","madura","madure","maduremos","madurad","maduren","madurando","maturing","madurado","matured" +"madurar","to mature; to ripen","Imperativo Negativo","Imperative Negative","Presente","Present","Mature! Don't mature!","","no madures","no madure","no maduremos","no maduréis","no maduren","madurando","maturing","madurado","matured" +"mandar","to order","Indicativo","Indicative","Presente","Present","I order, am ordering","mando","mandas","manda","mandamos","mandáis","mandan","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Futuro","Future","I will order","mandaré","mandarás","mandará","mandaremos","mandaréis","mandarán","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Imperfecto","Imperfect","I was ordering, used to order, ordered","mandaba","mandabas","mandaba","mandábamos","mandabais","mandaban","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Pretérito","Preterite","I ordered","mandé","mandaste","mandó","mandamos","mandasteis","mandaron","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Condicional","Conditional","I would order","mandaría","mandarías","mandaría","mandaríamos","mandaríais","mandarían","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Presente perfecto","Present Perfect","I have ordered","he mandado","has mandado","ha mandado","hemos mandado","habéis mandado","han mandado","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have ordered","habré mandado","habrás mandado","habrá mandado","habremos mandado","habréis mandado","habrán mandado","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had ordered","había mandado","habías mandado","había mandado","habíamos mandado","habíais mandado","habían mandado","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had ordered","hube mandado","hubiste mandado","hubo mandado","hubimos mandado","hubisteis mandado","hubieron mandado","mandando","ordering","mandado","ordered" +"mandar","to order","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have ordered","habría mandado","habrías mandado","habría mandado","habríamos mandado","habríais mandado","habrían mandado","mandando","ordering","mandado","ordered" +"mandemos" +"mandar","to order","Subjuntivo","Subjunctive","Presente","Present","I order, am ordering","mande","mandes","mande","mandemos","mandéis","manden","mandando","ordering","mandado","ordered" +"mandar","to order","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ordered, was ordering","mandara","mandaras","mandara","mandáramos","mandarais","mandaran","mandando","ordering","mandado","ordered" +"mandar","to order","Subjuntivo","Subjunctive","Futuro","Future","I will order","mandare","mandares","mandare","mandáremos","mandareis","mandaren","mandando","ordering","mandado","ordered" +"mandar","to order","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have ordered, ordered","haya mandado","hayas mandado","haya mandado","hayamos mandado","hayáis mandado","hayan mandado","mandando","ordering","mandado","ordered" +"mandar","to order","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have ordered","hubiere mandado","hubieres mandado","hubiere mandado","hubiéremos mandado","hubiereis mandado","hubieren mandado","mandando","ordering","mandado","ordered" +"mandar","to order","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had ordered","hubiera mandado","hubieras mandado","hubiera mandado","hubiéramos mandado","hubierais mandado","hubieran mandado","mandando","ordering","mandado","ordered" +"mandar","to order","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Order! Don't order!","","manda","mande","mandemos","mandad","manden","mandando","ordering","mandado","ordered" +"mandar","to order","Imperativo Negativo","Imperative Negative","Presente","Present","Order! Don't order!","","no mandes","no mande","no mandemos","no mandéis","no manden","mandando","ordering","mandado","ordered" +"manejar","to drive","Indicativo","Indicative","Presente","Present","I drive, am driving","manejo","manejas","maneja","manejamos","manejáis","manejan","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Futuro","Future","I will drive","manejaré","manejarás","manejará","manejaremos","manejaréis","manejarán","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Imperfecto","Imperfect","I was driving, used to drive, drove","manejaba","manejabas","manejaba","manejábamos","manejabais","manejaban","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Pretérito","Preterite","I drove","manejé","manejaste","manejó","manejamos","manejasteis","manejaron","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Condicional","Conditional","I would drive","manejaría","manejarías","manejaría","manejaríamos","manejaríais","manejarían","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Presente perfecto","Present Perfect","I have driven","he manejado","has manejado","ha manejado","hemos manejado","habéis manejado","han manejado","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have driven","habré manejado","habrás manejado","habrá manejado","habremos manejado","habréis manejado","habrán manejado","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had driven","había manejado","habías manejado","había manejado","habíamos manejado","habíais manejado","habían manejado","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had driven","hube manejado","hubiste manejado","hubo manejado","hubimos manejado","hubisteis manejado","hubieron manejado","manejando","driving","manejado","driven" +"manejar","to drive","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have driven","habría manejado","habrías manejado","habría manejado","habríamos manejado","habríais manejado","habrían manejado","manejando","driving","manejado","driven" +"manejemos" +"manejar","to drive","Subjuntivo","Subjunctive","Presente","Present","I drive, am driving","maneje","manejes","maneje","manejemos","manejéis","manejen","manejando","driving","manejado","driven" +"manejar","to drive","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I drove, was driving","manejara","manejaras","manejara","manejáramos","manejarais","manejaran","manejando","driving","manejado","driven" +"manejar","to drive","Subjuntivo","Subjunctive","Futuro","Future","I will drive","manejare","manejares","manejare","manejáremos","manejareis","manejaren","manejando","driving","manejado","driven" +"manejar","to drive","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have driven, drove","haya manejado","hayas manejado","haya manejado","hayamos manejado","hayáis manejado","hayan manejado","manejando","driving","manejado","driven" +"manejar","to drive","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have driven","hubiere manejado","hubieres manejado","hubiere manejado","hubiéremos manejado","hubiereis manejado","hubieren manejado","manejando","driving","manejado","driven" +"manejar","to drive","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had driven","hubiera manejado","hubieras manejado","hubiera manejado","hubiéramos manejado","hubierais manejado","hubieran manejado","manejando","driving","manejado","driven" +"manejar","to drive","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Drive! Don't drive!","","maneja","maneje","manejemos","manejad","manejen","manejando","driving","manejado","driven" +"manejar","to drive","Imperativo Negativo","Imperative Negative","Presente","Present","Drive! Don't drive!","","no manejes","no maneje","no manejemos","no manejéis","no manejen","manejando","driving","manejado","driven" +"mantener","to maintain, get","Indicativo","Indicative","Presente","Present","I maintain, am maintaining","mantengo","mantienes","mantiene","mantenemos","mantenéis","mantienen","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Futuro","Future","I will maintain","mantendré","mantendrás","mantendrá","mantendremos","mantendréis","mantendrán","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Imperfecto","Imperfect","I was maintaining, used to maintain, maintained","mantenía","mantenías","mantenía","manteníamos","manteníais","mantenían","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Pretérito","Preterite","I maintained","mantuve","mantuviste","mantuvo","mantuvimos","mantuvisteis","mantuvieron","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Condicional","Conditional","I would maintain","mantendría","mantendrías","mantendría","mantendríamos","mantendríais","mantendrían","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Presente perfecto","Present Perfect","I have maintained","he mantenido","has mantenido","ha mantenido","hemos mantenido","habéis mantenido","han mantenido","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have maintained","habré mantenido","habrás mantenido","habrá mantenido","habremos mantenido","habréis mantenido","habrán mantenido","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had maintained","había mantenido","habías mantenido","había mantenido","habíamos mantenido","habíais mantenido","habían mantenido","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had maintained","hube mantenido","hubiste mantenido","hubo mantenido","hubimos mantenido","hubisteis mantenido","hubieron mantenido","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have maintained","habría mantenido","habrías mantenido","habría mantenido","habríamos mantenido","habríais mantenido","habrían mantenido","manteniendo","maintaining","mantenido","maintained" +"mantengamos" +"mantener","to maintain, get","Subjuntivo","Subjunctive","Presente","Present","I maintain, am maintaining","mantenga","mantengas","mantenga","mantengamos","mantengáis","mantengan","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I maintained, was maintaining","mantuviera","mantuvieras","mantuviera","mantuviéramos","mantuvierais","mantuvieran","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Subjuntivo","Subjunctive","Futuro","Future","I will maintain","mantuviere","mantuvieres","mantuviere","mantuviéremos","mantuviereis","mantuvieren","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have maintained, maintained","haya mantenido","hayas mantenido","haya mantenido","hayamos mantenido","hayáis mantenido","hayan mantenido","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have maintained","hubiere mantenido","hubieres mantenido","hubiere mantenido","hubiéremos mantenido","hubiereis mantenido","hubieren mantenido","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had maintained","hubiera mantenido","hubieras mantenido","hubiera mantenido","hubiéramos mantenido","hubierais mantenido","hubieran mantenido","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Maintain! Don't maintain!","","mantén","mantenga","mantengamos","mantened","mantengan","manteniendo","maintaining","mantenido","maintained" +"mantener","to maintain, get","Imperativo Negativo","Imperative Negative","Presente","Present","Maintain! Don't maintain!","","no mantengas","no mantenga","no mantengamos","no mantengáis","no mantengan","manteniendo","maintaining","mantenido","maintained" +"maquillar","to put make-up on","Indicativo","Indicative","Presente","Present","I put make-up on, am putting make-up on","maquillo","maquillas","maquilla","maquillamos","maquilláis","maquillan","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Futuro","Future","I will put make-up on","maquillaré","maquillarás","maquillará","maquillaremos","maquillaréis","maquillarán","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Imperfecto","Imperfect","I was putting make-up on, used to put make-up on, put make-up on","maquillaba","maquillabas","maquillaba","maquillábamos","maquillabais","maquillaban","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Pretérito","Preterite","I put make-up on","maquillé","maquillaste","maquilló","maquillamos","maquillasteis","maquillaron","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Condicional","Conditional","I would put make-up on","maquillaría","maquillarías","maquillaría","maquillaríamos","maquillaríais","maquillarían","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put make-up on","he maquillado","has maquillado","ha maquillado","hemos maquillado","habéis maquillado","han maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put make-up on","habré maquillado","habrás maquillado","habrá maquillado","habremos maquillado","habréis maquillado","habrán maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put make-up on","había maquillado","habías maquillado","había maquillado","habíamos maquillado","habíais maquillado","habían maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put make-up on","hube maquillado","hubiste maquillado","hubo maquillado","hubimos maquillado","hubisteis maquillado","hubieron maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put make-up on","habría maquillado","habrías maquillado","habría maquillado","habríamos maquillado","habríais maquillado","habrían maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillemos" +"maquillar","to put make-up on","Subjuntivo","Subjunctive","Presente","Present","I put make-up on, am putting make-up on","maquille","maquilles","maquille","maquillemos","maquilléis","maquillen","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put make-up on, was putting make-up on","maquillara","maquillaras","maquillara","maquilláramos","maquillarais","maquillaran","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Subjuntivo","Subjunctive","Futuro","Future","I will put make-up on","maquillare","maquillares","maquillare","maquilláremos","maquillareis","maquillaren","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put make-up on, put make-up on","haya maquillado","hayas maquillado","haya maquillado","hayamos maquillado","hayáis maquillado","hayan maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put make-up on","hubiere maquillado","hubieres maquillado","hubiere maquillado","hubiéremos maquillado","hubiereis maquillado","hubieren maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put make-up on","hubiera maquillado","hubieras maquillado","hubiera maquillado","hubiéramos maquillado","hubierais maquillado","hubieran maquillado","maquillando","putting make-up on","maquillado","put make-up on" +"maquillar","to put make-up on","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put make-up on! Don't put make-up on!","","maquilla","maquille","maquillemos","maquillad","maquillen","maquillando","putting make-up on","maquillado","put make-up on", +"maquillar","to put make-up on","Imperativo Negativo","Imperative Negative","Presente","Present","Put make-up on! Don't put make-up on!","","no maquilles","no maquille","no maquillemos","no maquilléis","no maquillen","maquillando","putting make-up on","maquillado","put make-up on", +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Presente","Present","I put on make-up, am putting on make-up","me maquillo","te maquillas","se maquilla","nos maquillamos","os maquilláis","se maquillan","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Futuro","Future","I will put on make-up","me maquillaré","te maquillarás","se maquillará","nos maquillaremos","os maquillaréis","se maquillarán","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was putting on make-up, used to put on make-up, put on make-up","me maquillaba","te maquillabas","se maquillaba","nos maquillábamos","os maquillabais","se maquillaban","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Pretérito","Preterite","I put on make-up","me maquillé","te maquillaste","se maquilló","nos maquillamos","os maquillasteis","se maquillaron","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Condicional","Conditional","I would put on make-up","me maquillaría","te maquillarías","se maquillaría","nos maquillaríamos","os maquillaríais","se maquillarían","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put on make-up","me he maquillado","te has maquillado","se ha maquillado","nos hemos maquillado","os habéis maquillado","se han maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put on make-up","me habré maquillado","te habrás maquillado","se habrá maquillado","nos habremos maquillado","os habréis maquillado","se habrán maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put on make-up","me había maquillado","te habías maquillado","se había maquillado","nos habíamos maquillado","os habíais maquillado","se habían maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put on make-up","me hube maquillado","te hubiste maquillado","se hubo maquillado","nos hubimos maquillado","os hubisteis maquillado","se hubieron maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put on make-up","me habría maquillado","te habrías maquillado","se habría maquillado","nos habríamos maquillado","os habríais maquillado","se habrían maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"nos maquillemos" +"maquillarse","to put on make-up [on oneself]","Subjuntivo","Subjunctive","Presente","Present","I put on make-up, am putting on make-up","me maquille","te maquilles","se maquille","nos maquillemos","os maquilléis","se maquillen","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put on make-up, was putting on make-up","me maquillara","te maquillaras","se maquillara","nos maquilláramos","os maquillarais","se maquillaran","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will put on make-up","me maquillare","te maquillares","se maquillare","nos maquilláremos","os maquillareis","se maquillaren","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put on make-up, put on make-up","me haya maquillado","te hayas maquillado","se haya maquillado","nos hayamos maquillado","os hayáis maquillado","se hayan maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put on make-up","me hubiere maquillado","te hubieres maquillado","se hubiere maquillado","nos hubiéremos maquillado","os hubiereis maquillado","se hubieren maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put on make-up","me hubiera maquillado","te hubieras maquillado","se hubiera maquillado","nos hubiéramos maquillado","os hubierais maquillado","se hubieran maquillado","maquillándose","putting on make-up","maquillado","put on make-up" +"maquillarse","to put on make-up [on oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put on make-up! Don't put on make-up!","","no te maquíllate","no te maquíllese","nos maquillemos","maquillaos","maquíllense","maquillándose","putting on make-up","maquillado","put on make-up", +"maquillarse","to put on make-up [on oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Put on make-up! Don't put on make-up!","","no te maquilles","no se maquille","no nos maquillemos","no os maquilléis","no se maquillen","maquillándose","putting on make-up","maquillado","put on make-up", +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Presente","Present","I mark, am marking","marco","marcas","marca","marcamos","marcáis","marcan","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Futuro","Future","I will mark","marcaré","marcarás","marcará","marcaremos","marcaréis","marcarán","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Imperfecto","Imperfect","I was marking, used to mark, marked","marcaba","marcabas","marcaba","marcábamos","marcabais","marcaban","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Pretérito","Preterite","I marked","marqué","marcaste","marcó","marcamos","marcasteis","marcaron","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Condicional","Conditional","I would mark","marcaría","marcarías","marcaría","marcaríamos","marcaríais","marcarían","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have marked","he marcado","has marcado","ha marcado","hemos marcado","habéis marcado","han marcado","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have marked","habré marcado","habrás marcado","habrá marcado","habremos marcado","habréis marcado","habrán marcado","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had marked","había marcado","habías marcado","había marcado","habíamos marcado","habíais marcado","habían marcado","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had marked","hube marcado","hubiste marcado","hubo marcado","hubimos marcado","hubisteis marcado","hubieron marcado","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have marked","habría marcado","habrías marcado","habría marcado","habríamos marcado","habríais marcado","habrían marcado","marcando","marking","marcado","marked" +"marquemos" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Subjuntivo","Subjunctive","Presente","Present","I mark, am marking","marque","marques","marque","marquemos","marquéis","marquen","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I marked, was marking","marcara","marcaras","marcara","marcáramos","marcarais","marcaran","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Subjuntivo","Subjunctive","Futuro","Future","I will mark","marcare","marcares","marcare","marcáremos","marcareis","marcaren","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have marked, marked","haya marcado","hayas marcado","haya marcado","hayamos marcado","hayáis marcado","hayan marcado","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have marked","hubiere marcado","hubieres marcado","hubiere marcado","hubiéremos marcado","hubiereis marcado","hubieren marcado","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had marked","hubiera marcado","hubieras marcado","hubiera marcado","hubiéramos marcado","hubierais marcado","hubieran marcado","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Mark! Don't mark!","","marca","marque","marquemos","marcad","marquen","marcando","marking","marcado","marked" +"marcar","to mark, stamp, to show, indicate; to dial [e.g., a phone]","Imperativo Negativo","Imperative Negative","Presente","Present","Mark! Don't mark!","","no marques","no marque","no marquemos","no marquéis","no marquen","marcando","marking","marcado","marked" +"masticar","to chew","Indicativo","Indicative","Presente","Present","I chew, am chewing","mastico","masticas","mastica","masticamos","masticáis","mastican","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Futuro","Future","I will chew","masticaré","masticarás","masticará","masticaremos","masticaréis","masticarán","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Imperfecto","Imperfect","I was chewing, used to chew, chewed","masticaba","masticabas","masticaba","masticábamos","masticabais","masticaban","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Pretérito","Preterite","I chewed","mastiqué","masticaste","masticó","masticamos","masticasteis","masticaron","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Condicional","Conditional","I would chew","masticaría","masticarías","masticaría","masticaríamos","masticaríais","masticarían","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Presente perfecto","Present Perfect","I have chewed","he masticado","has masticado","ha masticado","hemos masticado","habéis masticado","han masticado","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have chewed","habré masticado","habrás masticado","habrá masticado","habremos masticado","habréis masticado","habrán masticado","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had chewed","había masticado","habías masticado","había masticado","habíamos masticado","habíais masticado","habían masticado","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had chewed","hube masticado","hubiste masticado","hubo masticado","hubimos masticado","hubisteis masticado","hubieron masticado","masticando","chewing","masticado","chewed" +"masticar","to chew","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have chewed","habría masticado","habrías masticado","habría masticado","habríamos masticado","habríais masticado","habrían masticado","masticando","chewing","masticado","chewed" +"mastiquemos" +"masticar","to chew","Subjuntivo","Subjunctive","Presente","Present","I chew, am chewing","mastique","mastiques","mastique","mastiquemos","mastiquéis","mastiquen","masticando","chewing","masticado","chewed" +"masticar","to chew","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I chewed, was chewing","masticara","masticaras","masticara","masticáramos","masticarais","masticaran","masticando","chewing","masticado","chewed" +"masticar","to chew","Subjuntivo","Subjunctive","Futuro","Future","I will chew","masticare","masticares","masticare","masticáremos","masticareis","masticaren","masticando","chewing","masticado","chewed" +"masticar","to chew","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have chewed, chewed","haya masticado","hayas masticado","haya masticado","hayamos masticado","hayáis masticado","hayan masticado","masticando","chewing","masticado","chewed" +"masticar","to chew","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have chewed","hubiere masticado","hubieres masticado","hubiere masticado","hubiéremos masticado","hubiereis masticado","hubieren masticado","masticando","chewing","masticado","chewed" +"masticar","to chew","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had chewed","hubiera masticado","hubieras masticado","hubiera masticado","hubiéramos masticado","hubierais masticado","hubieran masticado","masticando","chewing","masticado","chewed" +"masticar","to chew","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Chew! Don't chew!","","mastica","mastique","mastiquemos","masticad","mastiquen","masticando","chewing","masticado","chewed" +"masticar","to chew","Imperativo Negativo","Imperative Negative","Presente","Present","Chew! Don't chew!","","no mastiques","no mastique","no mastiquemos","no mastiquéis","no mastiquen","masticando","chewing","masticado","chewed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Presente","Present","I kill, am killing","mato","matas","mata","matamos","matáis","matan","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Futuro","Future","I will kill","mataré","matarás","matará","mataremos","mataréis","matarán","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Imperfecto","Imperfect","I was killing, used to kill, killed","mataba","matabas","mataba","matábamos","matabais","mataban","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Pretérito","Preterite","I killed","maté","mataste","mató","matamos","matasteis","mataron","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Condicional","Conditional","I would kill","mataría","matarías","mataría","mataríamos","mataríais","matarían","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Presente perfecto","Present Perfect","I have killed","he matado","has matado","ha matado","hemos matado","habéis matado","han matado","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have killed","habré matado","habrás matado","habrá matado","habremos matado","habréis matado","habrán matado","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had killed","había matado","habías matado","había matado","habíamos matado","habíais matado","habían matado","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had killed","hube matado","hubiste matado","hubo matado","hubimos matado","hubisteis matado","hubieron matado","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have killed","habría matado","habrías matado","habría matado","habríamos matado","habríais matado","habrían matado","matando","killing","matado","killed" +"matemos" +"matar","to kill, slay, slaughter","Subjuntivo","Subjunctive","Presente","Present","I kill, am killing","mate","mates","mate","matemos","matéis","maten","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I killed, was killing","matara","mataras","matara","matáramos","matarais","mataran","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Subjuntivo","Subjunctive","Futuro","Future","I will kill","matare","matares","matare","matáremos","matareis","mataren","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have killed, killed","haya matado","hayas matado","haya matado","hayamos matado","hayáis matado","hayan matado","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have killed","hubiere matado","hubieres matado","hubiere matado","hubiéremos matado","hubiereis matado","hubieren matado","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had killed","hubiera matado","hubieras matado","hubiera matado","hubiéramos matado","hubierais matado","hubieran matado","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Kill! Don't kill!","","mata","mate","matemos","matad","maten","matando","killing","matado","killed" +"matar","to kill, slay, slaughter","Imperativo Negativo","Imperative Negative","Presente","Present","Kill! Don't kill!","","no mates","no mate","no matemos","no matéis","no maten","matando","killing","matado","killed" +"matricular","to register","Indicativo","Indicative","Presente","Present","I register, am registering","matriculo","matriculas","matricula","matriculamos","matriculáis","matriculan","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Futuro","Future","I will register","matricularé","matricularás","matriculará","matricularemos","matricularéis","matricularán","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Imperfecto","Imperfect","I was registering, used to register, registered","matriculaba","matriculabas","matriculaba","matriculábamos","matriculabais","matriculaban","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Pretérito","Preterite","I registered","matriculé","matriculaste","matriculó","matriculamos","matriculasteis","matricularon","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Condicional","Conditional","I would register","matricularía","matricularías","matricularía","matricularíamos","matricularíais","matricularían","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Presente perfecto","Present Perfect","I have registered","he matriculado","has matriculado","ha matriculado","hemos matriculado","habéis matriculado","han matriculado","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have registered","habré matriculado","habrás matriculado","habrá matriculado","habremos matriculado","habréis matriculado","habrán matriculado","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had registered","había matriculado","habías matriculado","había matriculado","habíamos matriculado","habíais matriculado","habían matriculado","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had registered","hube matriculado","hubiste matriculado","hubo matriculado","hubimos matriculado","hubisteis matriculado","hubieron matriculado","matriculando","registering","matriculado","registered" +"matricular","to register","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have registered","habría matriculado","habrías matriculado","habría matriculado","habríamos matriculado","habríais matriculado","habrían matriculado","matriculando","registering","matriculado","registered" +"matriculemos" +"matricular","to register","Subjuntivo","Subjunctive","Presente","Present","I register, am registering","matricule","matricules","matricule","matriculemos","matriculéis","matriculen","matriculando","registering","matriculado","registered" +"matricular","to register","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I registered, was registering","matriculara","matricularas","matriculara","matriculáramos","matricularais","matricularan","matriculando","registering","matriculado","registered" +"matricular","to register","Subjuntivo","Subjunctive","Futuro","Future","I will register","matriculare","matriculares","matriculare","matriculáremos","matriculareis","matricularen","matriculando","registering","matriculado","registered" +"matricular","to register","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have registered, registered","haya matriculado","hayas matriculado","haya matriculado","hayamos matriculado","hayáis matriculado","hayan matriculado","matriculando","registering","matriculado","registered" +"matricular","to register","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have registered","hubiere matriculado","hubieres matriculado","hubiere matriculado","hubiéremos matriculado","hubiereis matriculado","hubieren matriculado","matriculando","registering","matriculado","registered" +"matricular","to register","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had registered","hubiera matriculado","hubieras matriculado","hubiera matriculado","hubiéramos matriculado","hubierais matriculado","hubieran matriculado","matriculando","registering","matriculado","registered" +"matricular","to register","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Register! Don't register!","","matricula","matricule","matriculemos","matriculad","matriculen","matriculando","registering","matriculado","registered" +"matricular","to register","Imperativo Negativo","Imperative Negative","Presente","Present","Register! Don't register!","","no matricules","no matricule","no matriculemos","no matriculéis","no matriculen","matriculando","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Presente","Present","I register, am registering","me matriculo","te matriculas","se matricula","nos matriculamos","os matriculáis","se matriculan","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Futuro","Future","I will register","me matricularé","te matricularás","se matriculará","nos matricularemos","os matricularéis","se matricularán","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was registering, used to register, registered","me matriculaba","te matriculabas","se matriculaba","nos matriculábamos","os matriculabais","se matriculaban","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Pretérito","Preterite","I registered","me matriculé","te matriculaste","se matriculó","nos matriculamos","os matriculasteis","se matricularon","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Condicional","Conditional","I would register","me matricularía","te matricularías","se matricularía","nos matricularíamos","os matricularíais","se matricularían","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have registered","me he matriculado","te has matriculado","se ha matriculado","nos hemos matriculado","os habéis matriculado","se han matriculado","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have registered","me habré matriculado","te habrás matriculado","se habrá matriculado","nos habremos matriculado","os habréis matriculado","se habrán matriculado","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had registered","me había matriculado","te habías matriculado","se había matriculado","nos habíamos matriculado","os habíais matriculado","se habían matriculado","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had registered","me hube matriculado","te hubiste matriculado","se hubo matriculado","nos hubimos matriculado","os hubisteis matriculado","se hubieron matriculado","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have registered","me habría matriculado","te habrías matriculado","se habría matriculado","nos habríamos matriculado","os habríais matriculado","se habrían matriculado","matriculándose","registering","matriculado","registered" +"nos matriculemos" +"matricularse","to register, enroll, matriculate [oneself]","Subjuntivo","Subjunctive","Presente","Present","I register, am registering","me matricule","te matricules","se matricule","nos matriculemos","os matriculéis","se matriculen","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I registered, was registering","me matriculara","te matricularas","se matriculara","nos matriculáramos","os matricularais","se matricularan","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will register","me matriculare","te matriculares","se matriculare","nos matriculáremos","os matriculareis","se matricularen","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have registered, registered","me haya matriculado","te hayas matriculado","se haya matriculado","nos hayamos matriculado","os hayáis matriculado","se hayan matriculado","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have registered","me hubiere matriculado","te hubieres matriculado","se hubiere matriculado","nos hubiéremos matriculado","os hubiereis matriculado","se hubieren matriculado","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had registered","me hubiera matriculado","te hubieras matriculado","se hubiera matriculado","nos hubiéramos matriculado","os hubierais matriculado","se hubieran matriculado","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Register! Don't register!","","matricúlate","matricúlese","nos matriculemos","matriculaos","matricúlense","matriculándose","registering","matriculado","registered" +"matricularse","to register, enroll, matriculate [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Register! Don't register!","","no te matricules","no se matricule","no nos matriculemos","no os matriculéis","no se matriculen","matriculándose","registering","matriculado","registered" +"medir","to measure, be","Indicativo","Indicative","Presente","Present","I measure, am measuring","mido","mides","mide","medimos","medís","miden","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Futuro","Future","I will measure","mediré","medirás","medirá","mediremos","mediréis","medirán","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Imperfecto","Imperfect","I was measuring, used to measure, measured","medía","medías","medía","medíamos","medíais","medían","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Pretérito","Preterite","I measured","medí","mediste","midió","medimos","medisteis","midieron","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Condicional","Conditional","I would measure","mediría","medirías","mediría","mediríamos","mediríais","medirían","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Presente perfecto","Present Perfect","I have measured","he medido","has medido","ha medido","hemos medido","habéis medido","han medido","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have measured","habré medido","habrás medido","habrá medido","habremos medido","habréis medido","habrán medido","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had measured","había medido","habías medido","había medido","habíamos medido","habíais medido","habían medido","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had measured","hube medido","hubiste medido","hubo medido","hubimos medido","hubisteis medido","hubieron medido","midiendo","measuring","medido","measured" +"medir","to measure, be","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have measured","habría medido","habrías medido","habría medido","habríamos medido","habríais medido","habrían medido","midiendo","measuring","medido","measured" +"midamos" +"medir","to measure, be","Subjuntivo","Subjunctive","Presente","Present","I measure, am measuring","mida","midas","mida","midamos","midáis","midan","midiendo","measuring","medido","measured" +"medir","to measure, be","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I measured, was measuring","midiera","midieras","midiera","midiéramos","midierais","midieran","midiendo","measuring","medido","measured" +"medir","to measure, be","Subjuntivo","Subjunctive","Futuro","Future","I will measure","midiere","midieres","midiere","midiéremos","midiereis","midieren","midiendo","measuring","medido","measured" +"medir","to measure, be","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have measured, measured","haya medido","hayas medido","haya medido","hayamos medido","hayáis medido","hayan medido","midiendo","measuring","medido","measured" +"medir","to measure, be","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have measured","hubiere medido","hubieres medido","hubiere medido","hubiéremos medido","hubiereis medido","hubieren medido","midiendo","measuring","medido","measured" +"medir","to measure, be","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had measured","hubiera medido","hubieras medido","hubiera medido","hubiéramos medido","hubierais medido","hubieran medido","midiendo","measuring","medido","measured" +"medir","to measure, be","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Measure! Don't measure!","","mide","mida","midamos","medid","midan","midiendo","measuring","medido","measured" +"medir","to measure, be","Imperativo Negativo","Imperative Negative","Presente","Present","Measure! Don't measure!","","no midas","no mida","no midamos","no midáis","no midan","midiendo","measuring","medido","measured" +"mentir","to lie","Indicativo","Indicative","Presente","Present","I lie, am lying","miento","mientes","miente","mentimos","mentís","mienten","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Futuro","Future","I will lie","mentiré","mentirás","mentirá","mentiremos","mentiréis","mentirán","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Imperfecto","Imperfect","I was lying, used to lie, lied","mentía","mentías","mentía","mentíamos","mentíais","mentían","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Pretérito","Preterite","I lied","mentí","mentiste","mintió","mentimos","mentisteis","mintieron","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Condicional","Conditional","I would lie","mentiría","mentirías","mentiría","mentiríamos","mentiríais","mentirían","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lied","he mentido","has mentido","ha mentido","hemos mentido","habéis mentido","han mentido","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lied","habré mentido","habrás mentido","habrá mentido","habremos mentido","habréis mentido","habrán mentido","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lied","había mentido","habías mentido","había mentido","habíamos mentido","habíais mentido","habían mentido","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lied","hube mentido","hubiste mentido","hubo mentido","hubimos mentido","hubisteis mentido","hubieron mentido","mintiendo","lying","mentido","lied" +"mentir","to lie","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lied","habría mentido","habrías mentido","habría mentido","habríamos mentido","habríais mentido","habrían mentido","mintiendo","lying","mentido","lied" +"mintamos" +"mentir","to lie","Subjuntivo","Subjunctive","Presente","Present","I lie, am lying","mienta","mientas","mienta","mintamos","mintáis","mientan","mintiendo","lying","mentido","lied" +"mentir","to lie","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lied, was lying","mintiera","mintieras","mintiera","mintiéramos","mintierais","mintieran","mintiendo","lying","mentido","lied" +"mentir","to lie","Subjuntivo","Subjunctive","Futuro","Future","I will lie","mintiere","mintieres","mintiere","mintiéremos","mintiereis","mintieren","mintiendo","lying","mentido","lied" +"mentir","to lie","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lied, lied","haya mentido","hayas mentido","haya mentido","hayamos mentido","hayáis mentido","hayan mentido","mintiendo","lying","mentido","lied" +"mentir","to lie","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lied","hubiere mentido","hubieres mentido","hubiere mentido","hubiéremos mentido","hubiereis mentido","hubieren mentido","mintiendo","lying","mentido","lied" +"mentir","to lie","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lied","hubiera mentido","hubieras mentido","hubiera mentido","hubiéramos mentido","hubierais mentido","hubieran mentido","mintiendo","lying","mentido","lied" +"mentir","to lie","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Lie! Don't lie!","","miente","mienta","mintamos","mentid","mientan","mintiendo","lying","mentido","lied" +"mentir","to lie","Imperativo Negativo","Imperative Negative","Presente","Present","Lie! Don't lie!","","no mientas","no mienta","no mintamos","no mintáis","no mientan","mintiendo","lying","mentido","lied" +"merecer","to deserve, merit","Indicativo","Indicative","Presente","Present","I deserve, am deserving","merezco","mereces","merece","merecemos","merecéis","merecen","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Futuro","Future","I will deserve","mereceré","merecerás","merecerá","mereceremos","mereceréis","merecerán","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Imperfecto","Imperfect","I was deserving, used to deserve, deserved","merecía","merecías","merecía","merecíamos","merecíais","merecían","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Pretérito","Preterite","I deserved","merecí","mereciste","mereció","merecimos","merecisteis","merecieron","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Condicional","Conditional","I would deserve","merecería","merecerías","merecería","mereceríamos","mereceríais","merecerían","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Presente perfecto","Present Perfect","I have deserved","he merecido","has merecido","ha merecido","hemos merecido","habéis merecido","han merecido","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have deserved","habré merecido","habrás merecido","habrá merecido","habremos merecido","habréis merecido","habrán merecido","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had deserved","había merecido","habías merecido","había merecido","habíamos merecido","habíais merecido","habían merecido","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had deserved","hube merecido","hubiste merecido","hubo merecido","hubimos merecido","hubisteis merecido","hubieron merecido","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have deserved","habría merecido","habrías merecido","habría merecido","habríamos merecido","habríais merecido","habrían merecido","mereciendo","deserving","merecido","deserved" +"merezcamos" +"merecer","to deserve, merit","Subjuntivo","Subjunctive","Presente","Present","I deserve, am deserving","merezca","merezcas","merezca","merezcamos","merezcáis","merezcan","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I deserved, was deserving","mereciera","merecieras","mereciera","mereciéramos","merecierais","merecieran","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Subjuntivo","Subjunctive","Futuro","Future","I will deserve","mereciere","merecieres","mereciere","mereciéremos","mereciereis","merecieren","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have deserved, deserved","haya merecido","hayas merecido","haya merecido","hayamos merecido","hayáis merecido","hayan merecido","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have deserved","hubiere merecido","hubieres merecido","hubiere merecido","hubiéremos merecido","hubiereis merecido","hubieren merecido","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had deserved","hubiera merecido","hubieras merecido","hubiera merecido","hubiéramos merecido","hubierais merecido","hubieran merecido","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Deserve! Don't deserve!","","merece","merezca","merezcamos","mereced","merezcan","mereciendo","deserving","merecido","deserved" +"merecer","to deserve, merit","Imperativo Negativo","Imperative Negative","Presente","Present","Deserve! Don't deserve!","","no merezcas","no merezca","no merezcamos","no merezcáis","no merezcan","mereciendo","deserving","merecido","deserved" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Presente","Present","I have a snack, am having a snack","meriendo","meriendas","merienda","merendamos","merendáis","meriendan","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Futuro","Future","I will have a snack","merendaré","merendarás","merendará","merendaremos","merendaréis","merendarán","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Imperfecto","Imperfect","I was having a snack, used to have a snack, had a snack","merendaba","merendabas","merendaba","merendábamos","merendabais","merendaban","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Pretérito","Preterite","I had a snack","merendé","merendaste","merendó","merendamos","merendasteis","merendaron","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Condicional","Conditional","I would have a snack","merendaría","merendarías","merendaría","merendaríamos","merendaríais","merendarían","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Presente perfecto","Present Perfect","I have had a snack","he merendado","has merendado","ha merendado","hemos merendado","habéis merendado","han merendado","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have had a snack","habré merendado","habrás merendado","habrá merendado","habremos merendado","habréis merendado","habrán merendado","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had had a snack","había merendado","habías merendado","había merendado","habíamos merendado","habíais merendado","habían merendado","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had had a snack","hube merendado","hubiste merendado","hubo merendado","hubimos merendado","hubisteis merendado","hubieron merendado","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have had a snack","habría merendado","habrías merendado","habría merendado","habríamos merendado","habríais merendado","habrían merendado","merendando","having a snack","merendado","had a snack" +"merendemos" +"merendar","to have a[n afternoon] snack, have as a snack","Subjuntivo","Subjunctive","Presente","Present","I have a snack, am having a snack","meriende","meriendes","meriende","merendemos","merendéis","merienden","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I had a snack, was having a snack","merendara","merendaras","merendara","merendáramos","merendarais","merendaran","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Subjuntivo","Subjunctive","Futuro","Future","I will have a snack","merendare","merendares","merendare","merendáremos","merendareis","merendaren","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have had a snack, had a snack","haya merendado","hayas merendado","haya merendado","hayamos merendado","hayáis merendado","hayan merendado","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have had a snack","hubiere merendado","hubieres merendado","hubiere merendado","hubiéremos merendado","hubiereis merendado","hubieren merendado","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had had a snack","hubiera merendado","hubieras merendado","hubiera merendado","hubiéramos merendado","hubierais merendado","hubieran merendado","merendando","having a snack","merendado","had a snack" +"merendar","to have a[n afternoon] snack, have as a snack","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Have a snack! Don't have a snack!","","merienda","meriende","merendemos","merendad","merienden","merendando","having a snack","merendado","had a snack", +"merendar","to have a[n afternoon] snack, have as a snack","Imperativo Negativo","Imperative Negative","Presente","Present","Have a snack! Don't have a snack!","","no meriendes","no meriende","no merendemos","no merendéis","no merienden","merendando","having a snack","merendado","had a snack", +"meter","to put [in], place, insert","Indicativo","Indicative","Presente","Present","I put, am putting","meto","metes","mete","metemos","metéis","meten","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Futuro","Future","I will put","meteré","meterás","meterá","meteremos","meteréis","meterán","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Imperfecto","Imperfect","I was putting, used to put, put","metía","metías","metía","metíamos","metíais","metían","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Pretérito","Preterite","I put","metí","metiste","metió","metimos","metisteis","metieron","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Condicional","Conditional","I would put","metería","meterías","metería","meteríamos","meteríais","meterían","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put","he metido","has metido","ha metido","hemos metido","habéis metido","han metido","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put","habré metido","habrás metido","habrá metido","habremos metido","habréis metido","habrán metido","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put","había metido","habías metido","había metido","habíamos metido","habíais metido","habían metido","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put","hube metido","hubiste metido","hubo metido","hubimos metido","hubisteis metido","hubieron metido","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put","habría metido","habrías metido","habría metido","habríamos metido","habríais metido","habrían metido","metiendo","putting","metido","put" +"metamos" +"meter","to put [in], place, insert","Subjuntivo","Subjunctive","Presente","Present","I put, am putting","meta","metas","meta","metamos","metáis","metan","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put, was putting","metiera","metieras","metiera","metiéramos","metierais","metieran","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Subjuntivo","Subjunctive","Futuro","Future","I will put","metiere","metieres","metiere","metiéremos","metiereis","metieren","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put, put","haya metido","hayas metido","haya metido","hayamos metido","hayáis metido","hayan metido","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put","hubiere metido","hubieres metido","hubiere metido","hubiéremos metido","hubiereis metido","hubieren metido","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put","hubiera metido","hubieras metido","hubiera metido","hubiéramos metido","hubierais metido","hubieran metido","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put! Don't put!","","mete","meta","metamos","meted","metan","metiendo","putting","metido","put" +"meter","to put [in], place, insert","Imperativo Negativo","Imperative Negative","Presente","Present","Put! Don't put!","","no metas","no meta","no metamos","no metáis","no metan","metiendo","putting","metido","put" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Presente","Present","I mix, am mixing","mezclo","mezclas","mezcla","mezclamos","mezcláis","mezclan","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Futuro","Future","I will mix","mezclaré","mezclarás","mezclará","mezclaremos","mezclaréis","mezclarán","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Imperfecto","Imperfect","I was mixing, used to mix, mixed","mezclaba","mezclabas","mezclaba","mezclábamos","mezclabais","mezclaban","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Pretérito","Preterite","I mixed","mezclé","mezclaste","mezcló","mezclamos","mezclasteis","mezclaron","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Condicional","Conditional","I would mix","mezclaría","mezclarías","mezclaría","mezclaríamos","mezclaríais","mezclarían","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Presente perfecto","Present Perfect","I have mixed","he mezclado","has mezclado","ha mezclado","hemos mezclado","habéis mezclado","han mezclado","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have mixed","habré mezclado","habrás mezclado","habrá mezclado","habremos mezclado","habréis mezclado","habrán mezclado","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had mixed","había mezclado","habías mezclado","había mezclado","habíamos mezclado","habíais mezclado","habían mezclado","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had mixed","hube mezclado","hubiste mezclado","hubo mezclado","hubimos mezclado","hubisteis mezclado","hubieron mezclado","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have mixed","habría mezclado","habrías mezclado","habría mezclado","habríamos mezclado","habríais mezclado","habrían mezclado","mezclando","mixing","mezclado","mixed" +"mezclemos" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Subjuntivo","Subjunctive","Presente","Present","I mix, am mixing","mezcle","mezcles","mezcle","mezclemos","mezcléis","mezclen","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I mixed, was mixing","mezclara","mezclaras","mezclara","mezcláramos","mezclarais","mezclaran","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Subjuntivo","Subjunctive","Futuro","Future","I will mix","mezclare","mezclares","mezclare","mezcláremos","mezclareis","mezclaren","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have mixed, mixed","haya mezclado","hayas mezclado","haya mezclado","hayamos mezclado","hayáis mezclado","hayan mezclado","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have mixed","hubiere mezclado","hubieres mezclado","hubiere mezclado","hubiéremos mezclado","hubiereis mezclado","hubieren mezclado","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had mixed","hubiera mezclado","hubieras mezclado","hubiera mezclado","hubiéramos mezclado","hubierais mezclado","hubieran mezclado","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Mix! Don't mix!","","mezcla","mezcle","mezclemos","mezclad","mezclen","mezclando","mixing","mezclado","mixed" +"mezclar","to mix, mix up, mix together, blend; to combine, merge, shuffle","Imperativo Negativo","Imperative Negative","Presente","Present","Mix! Don't mix!","","no mezcles","no mezcle","no mezclemos","no mezcléis","no mezclen","mezclando","mixing","mezclado","mixed" +"mirar","to watch, look at","Indicativo","Indicative","Presente","Present","I watch, am watching","miro","miras","mira","miramos","miráis","miran","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Futuro","Future","I will watch","miraré","mirarás","mirará","miraremos","miraréis","mirarán","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Imperfecto","Imperfect","I was watching, used to watch, watched","miraba","mirabas","miraba","mirábamos","mirabais","miraban","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Pretérito","Preterite","I watched","miré","miraste","miró","miramos","mirasteis","miraron","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Condicional","Conditional","I would watch","miraría","mirarías","miraría","miraríamos","miraríais","mirarían","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Presente perfecto","Present Perfect","I have watched","he mirado","has mirado","ha mirado","hemos mirado","habéis mirado","han mirado","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have watched","habré mirado","habrás mirado","habrá mirado","habremos mirado","habréis mirado","habrán mirado","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had watched","había mirado","habías mirado","había mirado","habíamos mirado","habíais mirado","habían mirado","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had watched","hube mirado","hubiste mirado","hubo mirado","hubimos mirado","hubisteis mirado","hubieron mirado","mirando","watching","mirado","watched" +"mirar","to watch, look at","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have watched","habría mirado","habrías mirado","habría mirado","habríamos mirado","habríais mirado","habrían mirado","mirando","watching","mirado","watched" +"miremos" +"mirar","to watch, look at","Subjuntivo","Subjunctive","Presente","Present","I watch, am watching","mire","mires","mire","miremos","miréis","miren","mirando","watching","mirado","watched" +"mirar","to watch, look at","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I watched, was watching","mirara","miraras","mirara","miráramos","mirarais","miraran","mirando","watching","mirado","watched" +"mirar","to watch, look at","Subjuntivo","Subjunctive","Futuro","Future","I will watch","mirare","mirares","mirare","miráremos","mirareis","miraren","mirando","watching","mirado","watched" +"mirar","to watch, look at","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have watched, watched","haya mirado","hayas mirado","haya mirado","hayamos mirado","hayáis mirado","hayan mirado","mirando","watching","mirado","watched" +"mirar","to watch, look at","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have watched","hubiere mirado","hubieres mirado","hubiere mirado","hubiéremos mirado","hubiereis mirado","hubieren mirado","mirando","watching","mirado","watched" +"mirar","to watch, look at","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had watched","hubiera mirado","hubieras mirado","hubiera mirado","hubiéramos mirado","hubierais mirado","hubieran mirado","mirando","watching","mirado","watched" +"mirar","to watch, look at","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Watch! Don't watch!","","mira","mire","miremos","mirad","miren","mirando","watching","mirado","watched" +"mirar","to watch, look at","Imperativo Negativo","Imperative Negative","Presente","Present","Watch! Don't watch!","","no mires","no mire","no miremos","no miréis","no miren","mirando","watching","mirado","watched" +"modificar","to modify, change","Indicativo","Indicative","Presente","Present","I modify, am modifying","modifico","modificas","modifica","modificamos","modificáis","modifican","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Futuro","Future","I will modify","modificaré","modificarás","modificará","modificaremos","modificaréis","modificarán","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Imperfecto","Imperfect","I was modifying, used to modify, modified","modificaba","modificabas","modificaba","modificábamos","modificabais","modificaban","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Pretérito","Preterite","I modified","modifiqué","modificaste","modificó","modificamos","modificasteis","modificaron","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Condicional","Conditional","I would modify","modificaría","modificarías","modificaría","modificaríamos","modificaríais","modificarían","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Presente perfecto","Present Perfect","I have modified","he modificado","has modificado","ha modificado","hemos modificado","habéis modificado","han modificado","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have modified","habré modificado","habrás modificado","habrá modificado","habremos modificado","habréis modificado","habrán modificado","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had modified","había modificado","habías modificado","había modificado","habíamos modificado","habíais modificado","habían modificado","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had modified","hube modificado","hubiste modificado","hubo modificado","hubimos modificado","hubisteis modificado","hubieron modificado","modificando","modifying","modificado","modified" +"modificar","to modify, change","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have modified","habría modificado","habrías modificado","habría modificado","habríamos modificado","habríais modificado","habrían modificado","modificando","modifying","modificado","modified" +"modifiquemos" +"modificar","to modify, change","Subjuntivo","Subjunctive","Presente","Present","I modify, am modifying","modifique","modifiques","modifique","modifiquemos","modifiquéis","modifiquen","modificando","modifying","modificado","modified" +"modificar","to modify, change","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I modified, was modifying","modificara","modificaras","modificara","modificáramos","modificarais","modificaran","modificando","modifying","modificado","modified" +"modificar","to modify, change","Subjuntivo","Subjunctive","Futuro","Future","I will modify","modificare","modificares","modificare","modificáremos","modificareis","modificaren","modificando","modifying","modificado","modified" +"modificar","to modify, change","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have modified, modified","haya modificado","hayas modificado","haya modificado","hayamos modificado","hayáis modificado","hayan modificado","modificando","modifying","modificado","modified" +"modificar","to modify, change","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have modified","hubiere modificado","hubieres modificado","hubiere modificado","hubiéremos modificado","hubiereis modificado","hubieren modificado","modificando","modifying","modificado","modified" +"modificar","to modify, change","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had modified","hubiera modificado","hubieras modificado","hubiera modificado","hubiéramos modificado","hubierais modificado","hubieran modificado","modificando","modifying","modificado","modified" +"modificar","to modify, change","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Modify! Don't modify!","","modifica","modifique","modifiquemos","modificad","modifiquen","modificando","modifying","modificado","modified" +"modificar","to modify, change","Imperativo Negativo","Imperative Negative","Presente","Present","Modify! Don't modify!","","no modifiques","no modifique","no modifiquemos","no modifiquéis","no modifiquen","modificando","modifying","modificado","modified" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Presente","Present","I bother, am bothering","molesto","molestas","molesta","molestamos","molestáis","molestan","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Futuro","Future","I will bother","molestaré","molestarás","molestará","molestaremos","molestaréis","molestarán","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Imperfecto","Imperfect","I was bothering, used to bother, bothered","molestaba","molestabas","molestaba","molestábamos","molestabais","molestaban","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Pretérito","Preterite","I bothered","molesté","molestaste","molestó","molestamos","molestasteis","molestaron","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Condicional","Conditional","I would bother","molestaría","molestarías","molestaría","molestaríamos","molestaríais","molestarían","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Presente perfecto","Present Perfect","I have bothered","he molestado","has molestado","ha molestado","hemos molestado","habéis molestado","han molestado","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have bothered","habré molestado","habrás molestado","habrá molestado","habremos molestado","habréis molestado","habrán molestado","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had bothered","había molestado","habías molestado","había molestado","habíamos molestado","habíais molestado","habían molestado","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had bothered","hube molestado","hubiste molestado","hubo molestado","hubimos molestado","hubisteis molestado","hubieron molestado","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have bothered","habría molestado","habrías molestado","habría molestado","habríamos molestado","habríais molestado","habrían molestado","molestando","bothering","molestado","bothered" +"molestemos" +"molestar","to bother, annoy, inconovenience, put out, upset","Subjuntivo","Subjunctive","Presente","Present","I bother, am bothering","moleste","molestes","moleste","molestemos","molestéis","molesten","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I bothered, was bothering","molestara","molestaras","molestara","molestáramos","molestarais","molestaran","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Subjuntivo","Subjunctive","Futuro","Future","I will bother","molestare","molestares","molestare","molestáremos","molestareis","molestaren","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have bothered, bothered","haya molestado","hayas molestado","haya molestado","hayamos molestado","hayáis molestado","hayan molestado","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have bothered","hubiere molestado","hubieres molestado","hubiere molestado","hubiéremos molestado","hubiereis molestado","hubieren molestado","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had bothered","hubiera molestado","hubieras molestado","hubiera molestado","hubiéramos molestado","hubierais molestado","hubieran molestado","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bother! Don't bother!","","molesta","moleste","molestemos","molestad","molesten","molestando","bothering","molestado","bothered" +"molestar","to bother, annoy, inconovenience, put out, upset","Imperativo Negativo","Imperative Negative","Presente","Present","Bother! Don't bother!","","no molestes","no moleste","no molestemos","no molestéis","no molesten","molestando","bothering","molestado","bothered" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Presente","Present","I mount, am mounting","monto","montas","monta","montamos","montáis","montan","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Futuro","Future","I will mount","montaré","montarás","montará","montaremos","montaréis","montarán","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Imperfecto","Imperfect","I was mounting, used to mount, mounted","montaba","montabas","montaba","montábamos","montabais","montaban","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Pretérito","Preterite","I mounted","monté","montaste","montó","montamos","montasteis","montaron","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Condicional","Conditional","I would mount","montaría","montarías","montaría","montaríamos","montaríais","montarían","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Presente perfecto","Present Perfect","I have mounted","he montado","has montado","ha montado","hemos montado","habéis montado","han montado","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have mounted","habré montado","habrás montado","habrá montado","habremos montado","habréis montado","habrán montado","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had mounted","había montado","habías montado","había montado","habíamos montado","habíais montado","habían montado","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had mounted","hube montado","hubiste montado","hubo montado","hubimos montado","hubisteis montado","hubieron montado","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have mounted","habría montado","habrías montado","habría montado","habríamos montado","habríais montado","habrían montado","montando","mounting","montado","mounted" +"montemos" +"montar","to mount, to get on, to ride","Subjuntivo","Subjunctive","Presente","Present","I mount, am mounting","monte","montes","monte","montemos","montéis","monten","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I mounted, was mounting","montara","montaras","montara","montáramos","montarais","montaran","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Subjuntivo","Subjunctive","Futuro","Future","I will mount","montare","montares","montare","montáremos","montareis","montaren","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have mounted, mounted","haya montado","hayas montado","haya montado","hayamos montado","hayáis montado","hayan montado","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have mounted","hubiere montado","hubieres montado","hubiere montado","hubiéremos montado","hubiereis montado","hubieren montado","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had mounted","hubiera montado","hubieras montado","hubiera montado","hubiéramos montado","hubierais montado","hubieran montado","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","mount! Don't mount!","","monta","monte","montemos","montad","monten","montando","mounting","montado","mounted" +"montar","to mount, to get on, to ride","Imperativo Negativo","Imperative Negative","Presente","Present","mount! Don't mount!","","no montes","no monte","no montemos","no montéis","no monten","montando","mounting","montado","mounted" +"morir","to die","Indicativo","Indicative","Presente","Present","I die, am dying","muero","mueres","muere","morimos","morís","mueren","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Futuro","Future","I will die","moriré","morirás","morirá","moriremos","moriréis","morirán","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Imperfecto","Imperfect","I was dying, used to die, died","moría","morías","moría","moríamos","moríais","morían","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Pretérito","Preterite","I died","morí","moriste","murió","morimos","moristeis","murieron","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Condicional","Conditional","I would die","moriría","morirías","moriría","moriríamos","moriríais","morirían","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Presente perfecto","Present Perfect","I have died","he muerto","has muerto","ha muerto","hemos muerto","habéis muerto","han muerto","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have died","habré muerto","habrás muerto","habrá muerto","habremos muerto","habréis muerto","habrán muerto","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had died","había muerto","habías muerto","había muerto","habíamos muerto","habíais muerto","habían muerto","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had died","hube muerto","hubiste muerto","hubo muerto","hubimos muerto","hubisteis muerto","hubieron muerto","muriendo","dying","muerto","died" +"morir","to die","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have died","habría muerto","habrías muerto","habría muerto","habríamos muerto","habríais muerto","habrían muerto","muriendo","dying","muerto","died" +"muramos" +"morir","to die","Subjuntivo","Subjunctive","Presente","Present","I die, am dying","muera","mueras","muera","muramos","muráis","mueran","muriendo","dying","muerto","died" +"morir","to die","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I died, was dying","muriera","murieras","muriera","muriéramos","murierais","murieran","muriendo","dying","muerto","died" +"morir","to die","Subjuntivo","Subjunctive","Futuro","Future","I will die","muriere","murieres","muriere","muriéremos","muriereis","murieren","muriendo","dying","muerto","died" +"morir","to die","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have died, died","haya muerto","hayas muerto","haya muerto","hayamos muerto","hayáis muerto","hayan muerto","muriendo","dying","muerto","died" +"morir","to die","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have died","hubiere muerto","hubieres muerto","hubiere muerto","hubiéremos muerto","hubiereis muerto","hubieren muerto","muriendo","dying","muerto","died" +"morir","to die","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had died","hubiera muerto","hubieras muerto","hubiera muerto","hubiéramos muerto","hubierais muerto","hubieran muerto","muriendo","dying","muerto","died" +"morir","to die","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Die! Don't die!","","muere","muera","muramos","morid","mueran","muriendo","dying","muerto","died" +"morir","to die","Imperativo Negativo","Imperative Negative","Presente","Present","Die! Don't die!","","no mueras","no muera","no muramos","no muráis","no mueran","muriendo","dying","muerto","died" +"mostrar","to show","Indicativo","Indicative","Presente","Present","I show, am showing","muestro","muestras","muestra","mostramos","mostráis","muestran","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Futuro","Future","I will show","mostraré","mostrarás","mostrará","mostraremos","mostraréis","mostrarán","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Imperfecto","Imperfect","I was showing, used to show, showed","mostraba","mostrabas","mostraba","mostrábamos","mostrabais","mostraban","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Pretérito","Preterite","I showed","mostré","mostraste","mostró","mostramos","mostrasteis","mostraron","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Condicional","Conditional","I would show","mostraría","mostrarías","mostraría","mostraríamos","mostraríais","mostrarían","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shown","he mostrado","has mostrado","ha mostrado","hemos mostrado","habéis mostrado","han mostrado","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shown","habré mostrado","habrás mostrado","habrá mostrado","habremos mostrado","habréis mostrado","habrán mostrado","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shown","había mostrado","habías mostrado","había mostrado","habíamos mostrado","habíais mostrado","habían mostrado","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shown","hube mostrado","hubiste mostrado","hubo mostrado","hubimos mostrado","hubisteis mostrado","hubieron mostrado","mostrando","showing","mostrado","shown" +"mostrar","to show","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shown","habría mostrado","habrías mostrado","habría mostrado","habríamos mostrado","habríais mostrado","habrían mostrado","mostrando","showing","mostrado","shown" +"mostremos" +"mostrar","to show","Subjuntivo","Subjunctive","Presente","Present","I show, am showing","muestre","muestres","muestre","mostremos","mostréis","muestren","mostrando","showing","mostrado","shown" +"mostrar","to show","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I showed, was showing","mostrara","mostraras","mostrara","mostráramos","mostrarais","mostraran","mostrando","showing","mostrado","shown" +"mostrar","to show","Subjuntivo","Subjunctive","Futuro","Future","I will show","mostrare","mostrares","mostrare","mostráremos","mostrareis","mostraren","mostrando","showing","mostrado","shown" +"mostrar","to show","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shown, showed","haya mostrado","hayas mostrado","haya mostrado","hayamos mostrado","hayáis mostrado","hayan mostrado","mostrando","showing","mostrado","shown" +"mostrar","to show","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shown","hubiere mostrado","hubieres mostrado","hubiere mostrado","hubiéremos mostrado","hubiereis mostrado","hubieren mostrado","mostrando","showing","mostrado","shown" +"mostrar","to show","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shown","hubiera mostrado","hubieras mostrado","hubiera mostrado","hubiéramos mostrado","hubierais mostrado","hubieran mostrado","mostrando","showing","mostrado","shown" +"mostrar","to show","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Show! Don't show!","","muestra","muestre","mostremos","mostrad","muestren","mostrando","showing","mostrado","shown" +"mostrar","to show","Imperativo Negativo","Imperative Negative","Presente","Present","Show! Don't show!","","no muestres","no muestre","no mostremos","no mostréis","no muestren","mostrando","showing","mostrado","shown" +"mover","to move","Indicativo","Indicative","Presente","Present","I move, am moving","muevo","mueves","mueve","movemos","movéis","mueven","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Futuro","Future","I will move","moveré","moverás","moverá","moveremos","moveréis","moverán","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Imperfecto","Imperfect","I was moving, used to move, moved","movía","movías","movía","movíamos","movíais","movían","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Pretérito","Preterite","I moved","moví","moviste","movió","movimos","movisteis","movieron","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Condicional","Conditional","I would move","movería","moverías","movería","moveríamos","moveríais","moverían","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Presente perfecto","Present Perfect","I have moved","he movido","has movido","ha movido","hemos movido","habéis movido","han movido","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have moved","habré movido","habrás movido","habrá movido","habremos movido","habréis movido","habrán movido","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had moved","había movido","habías movido","había movido","habíamos movido","habíais movido","habían movido","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had moved","hube movido","hubiste movido","hubo movido","hubimos movido","hubisteis movido","hubieron movido","moviendo","moving","movido","moved" +"mover","to move","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have moved","habría movido","habrías movido","habría movido","habríamos movido","habríais movido","habrían movido","moviendo","moving","movido","moved" +"movamos" +"mover","to move","Subjuntivo","Subjunctive","Presente","Present","I move, am moving","mueva","muevas","mueva","movamos","mováis","muevan","moviendo","moving","movido","moved" +"mover","to move","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I moved, was moving","moviera","movieras","moviera","moviéramos","movierais","movieran","moviendo","moving","movido","moved" +"mover","to move","Subjuntivo","Subjunctive","Futuro","Future","I will move","moviere","movieres","moviere","moviéremos","moviereis","movieren","moviendo","moving","movido","moved" +"mover","to move","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have moved, moved","haya movido","hayas movido","haya movido","hayamos movido","hayáis movido","hayan movido","moviendo","moving","movido","moved" +"mover","to move","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have moved","hubiere movido","hubieres movido","hubiere movido","hubiéremos movido","hubiereis movido","hubieren movido","moviendo","moving","movido","moved" +"mover","to move","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had moved","hubiera movido","hubieras movido","hubiera movido","hubiéramos movido","hubierais movido","hubieran movido","moviendo","moving","movido","moved" +"mover","to move","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Move! Don't move!","","mueve","mueva","movamos","moved","muevan","moviendo","moving","movido","moved" +"mover","to move","Imperativo Negativo","Imperative Negative","Presente","Present","Move! Don't move!","","no muevas","no mueva","no movamos","no mováis","no muevan","moviendo","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Presente","Present","I move, am moving","me muevo","te mueves","se mueve","nos movemos","os movéis","se mueven","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Futuro","Future","I will move","me moveré","te moverás","se moverá","nos moveremos","os moveréis","se moverán","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was moving, used to move, moved","me movía","te movías","se movía","nos movíamos","os movíais","se movían","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Pretérito","Preterite","I moved","me moví","te moviste","se movió","nos movimos","os movisteis","se movieron","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Condicional","Conditional","I would move","me movería","te moverías","se movería","nos moveríamos","os moveríais","se moverían","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have moved","me he movido","te has movido","se ha movido","nos hemos movido","os habéis movido","se han movido","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have moved","me habré movido","te habrás movido","se habrá movido","nos habremos movido","os habréis movido","se habrán movido","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had moved","me había movido","te habías movido","se había movido","nos habíamos movido","os habíais movido","se habían movido","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had moved","me hube movido","te hubiste movido","se hubo movido","nos hubimos movido","os hubisteis movido","se hubieron movido","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have moved","me habría movido","te habrías movido","se habría movido","nos habríamos movido","os habríais movido","se habrían movido","moviéndose","moving","movido","moved" +"nos movamos" +"moverse","to move [oneself]","Subjuntivo","Subjunctive","Presente","Present","I move, am moving","me mueva","te muevas","se mueva","nos movamos","os mováis","se muevan","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I moved, was moving","me moviera","te movieras","se moviera","nos moviéramos","os movierais","se movieran","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will move","me moviere","te movieres","se moviere","nos moviéremos","os moviereis","se movieren","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have moved, moved","me haya movido","te hayas movido","se haya movido","nos hayamos movido","os hayáis movido","se hayan movido","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have moved","me hubiere movido","te hubieres movido","se hubiere movido","nos hubiéremos movido","os hubiereis movido","se hubieren movido","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had moved","me hubiera movido","te hubieras movido","se hubiera movido","nos hubiéramos movido","os hubierais movido","se hubieran movido","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Move! Don't move!","","muévete","muévase","nos movamos","movíos","muévanse","moviéndose","moving","movido","moved" +"moverse","to move [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Move! Don't move!","","no te muevas","no se mueva","no nos movamos","no os mováis","no se muevan","moviéndose","moving","movido","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Presente","Present","I move, am moving","mudo","mudas","muda","mudamos","mudáis","mudan","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Futuro","Future","I will move","mudaré","mudarás","mudará","mudaremos","mudaréis","mudarán","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Imperfecto","Imperfect","I was moving, used to move, moved","mudaba","mudabas","mudaba","mudábamos","mudabais","mudaban","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Pretérito","Preterite","I moved","mudé","mudaste","mudó","mudamos","mudasteis","mudaron","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Condicional","Conditional","I would move","mudaría","mudarías","mudaría","mudaríamos","mudaríais","mudarían","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Presente perfecto","Present Perfect","I have moved","he mudado","has mudado","ha mudado","hemos mudado","habéis mudado","han mudado","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have moved","habré mudado","habrás mudado","habrá mudado","habremos mudado","habréis mudado","habrán mudado","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had moved","había mudado","habías mudado","había mudado","habíamos mudado","habíais mudado","habían mudado","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had moved","hube mudado","hubiste mudado","hubo mudado","hubimos mudado","hubisteis mudado","hubieron mudado","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have moved","habría mudado","habrías mudado","habría mudado","habríamos mudado","habríais mudado","habrían mudado","mudando","moving","mudado","moved" +"mudemos" +"mudar","to change, alter; to move","Subjuntivo","Subjunctive","Presente","Present","I move, am moving","mude","mudes","mude","mudemos","mudéis","muden","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I moved, was moving","mudara","mudaras","mudara","mudáramos","mudarais","mudaran","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Subjuntivo","Subjunctive","Futuro","Future","I will move","mudare","mudares","mudare","mudáremos","mudareis","mudaren","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have moved, moved","haya mudado","hayas mudado","haya mudado","hayamos mudado","hayáis mudado","hayan mudado","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have moved","hubiere mudado","hubieres mudado","hubiere mudado","hubiéremos mudado","hubiereis mudado","hubieren mudado","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had moved","hubiera mudado","hubieras mudado","hubiera mudado","hubiéramos mudado","hubierais mudado","hubieran mudado","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Move! Don't move!","","muda","mude","mudemos","mudad","muden","mudando","moving","mudado","moved" +"mudar","to change, alter; to move","Imperativo Negativo","Imperative Negative","Presente","Present","Move! Don't move!","","no mudes","no mude","no mudemos","no mudéis","no muden","mudando","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Presente","Present","I move, am moving","me mudo","te mudas","se muda","nos mudamos","os mudáis","se mudan","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Futuro","Future","I will move","me mudaré","te mudarás","se mudará","nos mudaremos","os mudaréis","se mudarán","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Imperfecto","Imperfect","I was moving, used to move, moved","me mudaba","te mudabas","se mudaba","nos mudábamos","os mudabais","se mudaban","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Pretérito","Preterite","I moved","me mudé","te mudaste","se mudó","nos mudamos","os mudasteis","se mudaron","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Condicional","Conditional","I would move","me mudaría","te mudarías","se mudaría","nos mudaríamos","os mudaríais","se mudarían","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have moved","me he mudado","te has mudado","se ha mudado","nos hemos mudado","os habéis mudado","se han mudado","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have moved","me habré mudado","te habrás mudado","se habrá mudado","nos habremos mudado","os habréis mudado","se habrán mudado","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had moved","me había mudado","te habías mudado","se había mudado","nos habíamos mudado","os habíais mudado","se habían mudado","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had moved","me hube mudado","te hubiste mudado","se hubo mudado","nos hubimos mudado","os hubisteis mudado","se hubieron mudado","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have moved","me habría mudado","te habrías mudado","se habría mudado","nos habríamos mudado","os habríais mudado","se habrían mudado","mudándose","moving","mudado","moved" +"nos mudemos" +"mudarse","to move [=change residence]","Subjuntivo","Subjunctive","Presente","Present","I move, am moving","me mude","te mudes","se mude","nos mudemos","os mudéis","se muden","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I moved, was moving","me mudara","te mudaras","se mudara","nos mudáramos","os mudarais","se mudaran","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Subjuntivo","Subjunctive","Futuro","Future","I will move","me mudare","te mudares","se mudare","nos mudáremos","os mudareis","se mudaren","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have moved, moved","me haya mudado","te hayas mudado","se haya mudado","nos hayamos mudado","os hayáis mudado","se hayan mudado","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have moved","me hubiere mudado","te hubieres mudado","se hubiere mudado","nos hubiéremos mudado","os hubiereis mudado","se hubieren mudado","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had moved","me hubiera mudado","te hubieras mudado","se hubiera mudado","nos hubiéramos mudado","os hubierais mudado","se hubieran mudado","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Move! Don't move!","","múdate","múdese","nos mudemos","mudaos","múdense","mudándose","moving","mudado","moved" +"mudarse","to move [=change residence]","Imperativo Negativo","Imperative Negative","Presente","Present","Move! Don't move!","","no te mudes","no se mude","no nos mudemos","no os mudéis","no se muden","mudándose","moving","mudado","moved" +"nacer","to be born","Indicativo","Indicative","Presente","Present","I am born, am being born","nazco","naces","nace","nacemos","nacéis","nacen","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Futuro","Future","I will be born","naceré","nacerás","nacerá","naceremos","naceréis","nacerán","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Imperfecto","Imperfect","I was being born, used to be born, was born","nacía","nacías","nacía","nacíamos","nacíais","nacían","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Pretérito","Preterite","I was born","nací","naciste","nació","nacimos","nacisteis","nacieron","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Condicional","Conditional","I would be born","nacería","nacerías","nacería","naceríamos","naceríais","nacerían","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been born","he nacido","has nacido","ha nacido","hemos nacido","habéis nacido","han nacido","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been born","habré nacido","habrás nacido","habrá nacido","habremos nacido","habréis nacido","habrán nacido","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been born","había nacido","habías nacido","había nacido","habíamos nacido","habíais nacido","habían nacido","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been born","hube nacido","hubiste nacido","hubo nacido","hubimos nacido","hubisteis nacido","hubieron nacido","naciendo","being born","nacido","(been) born" +"nacer","to be born","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been born","habría nacido","habrías nacido","habría nacido","habríamos nacido","habríais nacido","habrían nacido","naciendo","being born","nacido","(been) born" +"nazcamos" +"nacer","to be born","Subjuntivo","Subjunctive","Presente","Present","I am born, am being born","nazca","nazcas","nazca","nazcamos","nazcáis","nazcan","naciendo","being born","nacido","(been) born" +"nacer","to be born","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was born, was being born","naciera","nacieras","naciera","naciéramos","nacierais","nacieran","naciendo","being born","nacido","(been) born" +"nacer","to be born","Subjuntivo","Subjunctive","Futuro","Future","I will be born","naciere","nacieres","naciere","naciéremos","naciereis","nacieren","naciendo","being born","nacido","(been) born" +"nacer","to be born","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been born, was born","haya nacido","hayas nacido","haya nacido","hayamos nacido","hayáis nacido","hayan nacido","naciendo","being born","nacido","(been) born" +"nacer","to be born","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been born","hubiere nacido","hubieres nacido","hubiere nacido","hubiéremos nacido","hubiereis nacido","hubieren nacido","naciendo","being born","nacido","(been) born" +"nacer","to be born","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been born","hubiera nacido","hubieras nacido","hubiera nacido","hubiéramos nacido","hubierais nacido","hubieran nacido","naciendo","being born","nacido","(been) born" +"nacer","to be born","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be born! Don't be born!","","nace","nazca","nazcamos","naced","nazcan","naciendo","being born","nacido","(been) born", +"nacer","to be born","Imperativo Negativo","Imperative Negative","Presente","Present","Be born! Don't be born!","","no nazcas","no nazca","no nazcamos","no nazcáis","no nazcan","naciendo","being born","nacido","(been) born", +"nadar","to swim","Indicativo","Indicative","Presente","Present","I swim, am swimming","nado","nadas","nada","nadamos","nadáis","nadan","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Futuro","Future","I will swim","nadaré","nadarás","nadará","nadaremos","nadaréis","nadarán","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Imperfecto","Imperfect","I was swimming, used to swim, swam","nadaba","nadabas","nadaba","nadábamos","nadabais","nadaban","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Pretérito","Preterite","I swam","nadé","nadaste","nadó","nadamos","nadasteis","nadaron","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Condicional","Conditional","I would swim","nadaría","nadarías","nadaría","nadaríamos","nadaríais","nadarían","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Presente perfecto","Present Perfect","I have swum","he nadado","has nadado","ha nadado","hemos nadado","habéis nadado","han nadado","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have swum","habré nadado","habrás nadado","habrá nadado","habremos nadado","habréis nadado","habrán nadado","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had swum","había nadado","habías nadado","había nadado","habíamos nadado","habíais nadado","habían nadado","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had swum","hube nadado","hubiste nadado","hubo nadado","hubimos nadado","hubisteis nadado","hubieron nadado","nadando","swimming","nadado","swum" +"nadar","to swim","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have swum","habría nadado","habrías nadado","habría nadado","habríamos nadado","habríais nadado","habrían nadado","nadando","swimming","nadado","swum" +"nademos" +"nadar","to swim","Subjuntivo","Subjunctive","Presente","Present","I swim, am swimming","nade","nades","nade","nademos","nadéis","naden","nadando","swimming","nadado","swum" +"nadar","to swim","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I swam, was swimming","nadara","nadaras","nadara","nadáramos","nadarais","nadaran","nadando","swimming","nadado","swum" +"nadar","to swim","Subjuntivo","Subjunctive","Futuro","Future","I will swim","nadare","nadares","nadare","nadáremos","nadareis","nadaren","nadando","swimming","nadado","swum" +"nadar","to swim","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have swum, swam","haya nadado","hayas nadado","haya nadado","hayamos nadado","hayáis nadado","hayan nadado","nadando","swimming","nadado","swum" +"nadar","to swim","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have swum","hubiere nadado","hubieres nadado","hubiere nadado","hubiéremos nadado","hubiereis nadado","hubieren nadado","nadando","swimming","nadado","swum" +"nadar","to swim","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had swum","hubiera nadado","hubieras nadado","hubiera nadado","hubiéramos nadado","hubierais nadado","hubieran nadado","nadando","swimming","nadado","swum" +"nadar","to swim","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Swim! Don't swim!","","nada","nade","nademos","nadad","naden","nadando","swimming","nadado","swum" +"nadar","to swim","Imperativo Negativo","Imperative Negative","Presente","Present","Swim! Don't swim!","","no nades","no nade","no nademos","no nadéis","no naden","nadando","swimming","nadado","swum" +"navegar","to navigate, sail","Indicativo","Indicative","Presente","Present","I navigate, am navigating","navego","navegas","navega","navegamos","navegáis","navegan","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Futuro","Future","I will navigate","navegaré","navegarás","navegará","navegaremos","navegaréis","navegarán","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Imperfecto","Imperfect","I was navigating, used to navigate, navigated","navegaba","navegabas","navegaba","navegábamos","navegabais","navegaban","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Pretérito","Preterite","I navigated","navegué","navegaste","navegó","navegamos","navegasteis","navegaron","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Condicional","Conditional","I would navigate","navegaría","navegarías","navegaría","navegaríamos","navegaríais","navegarían","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Presente perfecto","Present Perfect","I have navigated","he navegado","has navegado","ha navegado","hemos navegado","habéis navegado","han navegado","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have navigated","habré navegado","habrás navegado","habrá navegado","habremos navegado","habréis navegado","habrán navegado","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had navigated","había navegado","habías navegado","había navegado","habíamos navegado","habíais navegado","habían navegado","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had navigated","hube navegado","hubiste navegado","hubo navegado","hubimos navegado","hubisteis navegado","hubieron navegado","navegando","navigating","navegado","navigated" +"plantar","to plant","Indicativo","Indicative","Pretérito","Preterite","I planted","planté","plantaste","plantó","plantamos","plantasteis","plantaron","plantando","planting","plantado","planted" +"navegar","to navigate, sail","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have navigated","habría navegado","habrías navegado","habría navegado","habríamos navegado","habríais navegado","habrían navegado","navegando","navigating","navegado","navigated" +"naveguemos" +"navegar","to navigate, sail","Subjuntivo","Subjunctive","Presente","Present","I navigate, am navigating","navegue","navegues","navegue","naveguemos","naveguéis","naveguen","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I navigated, was navigating","navegara","navegaras","navegara","navegáramos","navegarais","navegaran","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Subjuntivo","Subjunctive","Futuro","Future","I will navigate","navegare","navegares","navegare","navegáremos","navegareis","navegaren","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have navigated, navigated","haya navegado","hayas navegado","haya navegado","hayamos navegado","hayáis navegado","hayan navegado","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have navigated","hubiere navegado","hubieres navegado","hubiere navegado","hubiéremos navegado","hubiereis navegado","hubieren navegado","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had navigated","hubiera navegado","hubieras navegado","hubiera navegado","hubiéramos navegado","hubierais navegado","hubieran navegado","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Navigate! Don't navigate!","","navega","navegue","naveguemos","navegad","naveguen","navegando","navigating","navegado","navigated" +"navegar","to navigate, sail","Imperativo Negativo","Imperative Negative","Presente","Present","Navigate! Don't navigate!","","no navegues","no navegue","no naveguemos","no naveguéis","no naveguen","navegando","navigating","navegado","navigated" +"necesitar","to need, require","Indicativo","Indicative","Presente","Present","I need, am needing","necesito","necesitas","necesita","necesitamos","necesitáis","necesitan","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Futuro","Future","I will need","necesitaré","necesitarás","necesitará","necesitaremos","necesitaréis","necesitarán","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Imperfecto","Imperfect","I was needing, used to need, needed","necesitaba","necesitabas","necesitaba","necesitábamos","necesitabais","necesitaban","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Pretérito","Preterite","I needed","necesité","necesitaste","necesitó","necesitamos","necesitasteis","necesitaron","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Condicional","Conditional","I would need","necesitaría","necesitarías","necesitaría","necesitaríamos","necesitaríais","necesitarían","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Presente perfecto","Present Perfect","I have needed","he necesitado","has necesitado","ha necesitado","hemos necesitado","habéis necesitado","han necesitado","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have needed","habré necesitado","habrás necesitado","habrá necesitado","habremos necesitado","habréis necesitado","habrán necesitado","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had needed","había necesitado","habías necesitado","había necesitado","habíamos necesitado","habíais necesitado","habían necesitado","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had needed","hube necesitado","hubiste necesitado","hubo necesitado","hubimos necesitado","hubisteis necesitado","hubieron necesitado","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have needed","habría necesitado","habrías necesitado","habría necesitado","habríamos necesitado","habríais necesitado","habrían necesitado","necesitando","needing","necesitado","needed" +"necesitemos" +"necesitar","to need, require","Subjuntivo","Subjunctive","Presente","Present","I need, am needing","necesite","necesites","necesite","necesitemos","necesitéis","necesiten","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I needed, was needing","necesitara","necesitaras","necesitara","necesitáramos","necesitarais","necesitaran","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Subjuntivo","Subjunctive","Futuro","Future","I will need","necesitare","necesitares","necesitare","necesitáremos","necesitareis","necesitaren","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have needed, needed","haya necesitado","hayas necesitado","haya necesitado","hayamos necesitado","hayáis necesitado","hayan necesitado","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have needed","hubiere necesitado","hubieres necesitado","hubiere necesitado","hubiéremos necesitado","hubiereis necesitado","hubieren necesitado","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had needed","hubiera necesitado","hubieras necesitado","hubiera necesitado","hubiéramos necesitado","hubierais necesitado","hubieran necesitado","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Need! Don't need!","","necesita","necesite","necesitemos","necesitad","necesiten","necesitando","needing","necesitado","needed" +"necesitar","to need, require","Imperativo Negativo","Imperative Negative","Presente","Present","Need! Don't need!","","no necesites","no necesite","no necesitemos","no necesitéis","no necesiten","necesitando","needing","necesitado","needed" +"negar","to deny, refuse","Indicativo","Indicative","Presente","Present","I deny, am denying","niego","niegas","niega","negamos","negáis","niegan","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Futuro","Future","I will deny","negaré","negarás","negará","negaremos","negaréis","negarán","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Imperfecto","Imperfect","I was denying, used to deny, denied","negaba","negabas","negaba","negábamos","negabais","negaban","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Pretérito","Preterite","I denied","negué","negaste","negó","negamos","negasteis","negaron","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Condicional","Conditional","I would deny","negaría","negarías","negaría","negaríamos","negaríais","negarían","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Presente perfecto","Present Perfect","I have denied","he negado","has negado","ha negado","hemos negado","habéis negado","han negado","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have denied","habré negado","habrás negado","habrá negado","habremos negado","habréis negado","habrán negado","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had denied","había negado","habías negado","había negado","habíamos negado","habíais negado","habían negado","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had denied","hube negado","hubiste negado","hubo negado","hubimos negado","hubisteis negado","hubieron negado","negando","denying","negado","denied" +"negar","to deny, refuse","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have denied","habría negado","habrías negado","habría negado","habríamos negado","habríais negado","habrían negado","negando","denying","negado","denied" +"neguemos" +"negar","to deny, refuse","Subjuntivo","Subjunctive","Presente","Present","I deny, am denying","niegue","niegues","niegue","neguemos","neguéis","nieguen","negando","denying","negado","denied" +"negar","to deny, refuse","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I denied, was denying","negara","negaras","negara","negáramos","negarais","negaran","negando","denying","negado","denied" +"negar","to deny, refuse","Subjuntivo","Subjunctive","Futuro","Future","I will deny","negare","negares","negare","negáremos","negareis","negaren","negando","denying","negado","denied" +"negar","to deny, refuse","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have denied, denied","haya negado","hayas negado","haya negado","hayamos negado","hayáis negado","hayan negado","negando","denying","negado","denied" +"negar","to deny, refuse","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have denied","hubiere negado","hubieres negado","hubiere negado","hubiéremos negado","hubiereis negado","hubieren negado","negando","denying","negado","denied" +"negar","to deny, refuse","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had denied","hubiera negado","hubieras negado","hubiera negado","hubiéramos negado","hubierais negado","hubieran negado","negando","denying","negado","denied" +"negar","to deny, refuse","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Deny! Don't deny!","","niega","niegue","neguemos","negad","nieguen","negando","denying","negado","denied" +"negar","to deny, refuse","Imperativo Negativo","Imperative Negative","Presente","Present","Deny! Don't deny!","","no niegues","no niegue","no neguemos","no neguéis","no nieguen","negando","denying","negado","denied" +"negarse","to refuse","Indicativo","Indicative","Presente","Present","I refuse, am refusing","me niego","te niegas","se niega","nos negamos","os negáis","se niegan","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Futuro","Future","I will refuse","me negaré","te negarás","se negará","nos negaremos","os negaréis","se negarán","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Imperfecto","Imperfect","I was refusing, used to refuse, refused","me negaba","te negabas","se negaba","nos negábamos","os negabais","se negaban","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Pretérito","Preterite","I refused","me negué","te negaste","se negó","nos negamos","os negasteis","se negaron","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Condicional","Conditional","I would refuse","me negaría","te negarías","se negaría","nos negaríamos","os negaríais","se negarían","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Presente perfecto","Present Perfect","I have refused","me he negado","te has negado","se ha negado","nos hemos negado","os habéis negado","se han negado","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have refused","me habré negado","te habrás negado","se habrá negado","nos habremos negado","os habréis negado","se habrán negado","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had refused","me había negado","te habías negado","se había negado","nos habíamos negado","os habíais negado","se habían negado","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had refused","me hube negado","te hubiste negado","se hubo negado","nos hubimos negado","os hubisteis negado","se hubieron negado","negándose","refusing","negado","refused" +"negarse","to refuse","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have refused","me habría negado","te habrías negado","se habría negado","nos habríamos negado","os habríais negado","se habrían negado","negándose","refusing","negado","refused" +"nos neguemos" +"negarse","to refuse","Subjuntivo","Subjunctive","Presente","Present","I refuse, am refusing","me niegue","te niegues","se niegue","nos neguemos","os neguéis","se nieguen","negándose","refusing","negado","refused" +"negarse","to refuse","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I refused, was refusing","me negara","te negaras","se negara","nos negáramos","os negarais","se negaran","negándose","refusing","negado","refused" +"negarse","to refuse","Subjuntivo","Subjunctive","Futuro","Future","I will refuse","me negare","te negares","se negare","nos negáremos","os negareis","se negaren","negándose","refusing","negado","refused" +"negarse","to refuse","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have refused, refused","me haya negado","te hayas negado","se haya negado","nos hayamos negado","os hayáis negado","se hayan negado","negándose","refusing","negado","refused" +"negarse","to refuse","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have refused","me hubiere negado","te hubieres negado","se hubiere negado","nos hubiéremos negado","os hubiereis negado","se hubieren negado","negándose","refusing","negado","refused" +"negarse","to refuse","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had refused","me hubiera negado","te hubieras negado","se hubiera negado","nos hubiéramos negado","os hubierais negado","se hubieran negado","negándose","refusing","negado","refused" +"negarse","to refuse","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Refuse! Don't refuse!","","niégate","niéguese","nos neguemos","negaos","niéguense","negándose","refusing","negado","refused" +"negarse","to refuse","Imperativo Negativo","Imperative Negative","Presente","Present","Refuse! Don't refuse!","","no te niegues","no se niegue","no nos neguemos","no os neguéis","no se nieguen","negándose","refusing","negado","refused" +"negociar","to negotiate","Indicativo","Indicative","Presente","Present","I negotiate, am negotiating","negocio","negocias","negocia","negociamos","negociáis","negocian","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Futuro","Future","I will negotiate","negociaré","negociarás","negociará","negociaremos","negociaréis","negociarán","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Imperfecto","Imperfect","I was negotiating, used to negotiate, negotiated","negociaba","negociabas","negociaba","negociábamos","negociabais","negociaban","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Pretérito","Preterite","I negotiated","negocié","negociaste","negoció","negociamos","negociasteis","negociaron","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Condicional","Conditional","I would negotiate","negociaría","negociarías","negociaría","negociaríamos","negociaríais","negociarían","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have negotiated","he negociado","has negociado","ha negociado","hemos negociado","habéis negociado","han negociado","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have negotiated","habré negociado","habrás negociado","habrá negociado","habremos negociado","habréis negociado","habrán negociado","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had negotiated","había negociado","habías negociado","había negociado","habíamos negociado","habíais negociado","habían negociado","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had negotiated","hube negociado","hubiste negociado","hubo negociado","hubimos negociado","hubisteis negociado","hubieron negociado","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have negotiated","habría negociado","habrías negociado","habría negociado","habríamos negociado","habríais negociado","habrían negociado","negociando","negotiating","negociado","negotiated" +"negociemos" +"negociar","to negotiate","Subjuntivo","Subjunctive","Presente","Present","I negotiate, am negotiating","negocie","negocies","negocie","negociemos","negociéis","negocien","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I negotiated, was negotiating","negociara","negociaras","negociara","negociáramos","negociarais","negociaran","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Subjuntivo","Subjunctive","Futuro","Future","I will negotiate","negociare","negociares","negociare","negociáremos","negociareis","negociaren","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have negotiated, negotiated","haya negociado","hayas negociado","haya negociado","hayamos negociado","hayáis negociado","hayan negociado","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have negotiated","hubiere negociado","hubieres negociado","hubiere negociado","hubiéremos negociado","hubiereis negociado","hubieren negociado","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had negotiated","hubiera negociado","hubieras negociado","hubiera negociado","hubiéramos negociado","hubierais negociado","hubieran negociado","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Negotiate! Don't negotiate!","","negocia","negocie","negociemos","negociad","negocien","negociando","negotiating","negociado","negotiated" +"negociar","to negotiate","Imperativo Negativo","Imperative Negative","Presente","Present","Negotiate! Don't negotiate!","","no negocies","no negocie","no negociemos","no negociéis","no negocien","negociando","negotiating","negociado","negotiated" +"nevar","to snow","Indicativo","Indicative","Presente","Present","it snows, is snowing","","","nieva","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Futuro","Future","it will snow","","","nevará","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Imperfecto","Imperfect","it was snowing, used to snow, snowed","","","nevaba","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Pretérito","Preterite","it snowed","","","nevó","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Condicional","Conditional","it would snow","","","nevaría","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Presente perfecto","Present Perfect","it has snowed","","","ha nevado","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Futuro perfecto","Future Perfect","it will have snowed","","","habrá nevado","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","it had snowed","","","había nevado","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","it had snowed","","","hubo nevado","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","it would have snowed","","","habría nevado","","","","nevando","snowing","nevado","snowed" +"" +"nevar","to snow","Subjuntivo","Subjunctive","Presente","Present","it snows, is snowing","","","nieve","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Subjuntivo","Subjunctive","Imperfecto","Imperfect","it snowed, was snowing","","","nevara","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Subjuntivo","Subjunctive","Futuro","Future","it will snow","","","nevare","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","it has snowed, snowed","","","haya nevado","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","it will have snowed","","","hubiere nevado","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","it had snowed","","","hubiera nevado","","","","nevando","snowing","nevado","snowed" +"nevar","to snow","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Snow! Don't snow!","","nieva","nieve","","nevad","nieven","nevando","snowing","nevado","snowed" +"nevar","to snow","Imperativo Negativo","Imperative Negative","Presente","Present","Snow! Don't snow!","","no nieves","no nieve","no ","no nevéis","no nieven","nevando","snowing","nevado","snowed" +"notar","to note, notice, observe","Indicativo","Indicative","Presente","Present","I note, am noting","noto","notas","nota","notamos","notáis","notan","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Futuro","Future","I will note","notaré","notarás","notará","notaremos","notaréis","notarán","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Imperfecto","Imperfect","I was noting, used to note, noted","notaba","notabas","notaba","notábamos","notabais","notaban","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Pretérito","Preterite","I noted","noté","notaste","notó","notamos","notasteis","notaron","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Condicional","Conditional","I would note","notaría","notarías","notaría","notaríamos","notaríais","notarían","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Presente perfecto","Present Perfect","I have noted","he notado","has notado","ha notado","hemos notado","habéis notado","han notado","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have noted","habré notado","habrás notado","habrá notado","habremos notado","habréis notado","habrán notado","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had noted","había notado","habías notado","había notado","habíamos notado","habíais notado","habían notado","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had noted","hube notado","hubiste notado","hubo notado","hubimos notado","hubisteis notado","hubieron notado","notando","noting","notado","noted" +"notar","to note, notice, observe","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have noted","habría notado","habrías notado","habría notado","habríamos notado","habríais notado","habrían notado","notando","noting","notado","noted" +"notemos" +"notar","to note, notice, observe","Subjuntivo","Subjunctive","Presente","Present","I note, am noting","note","notes","note","notemos","notéis","noten","notando","noting","notado","noted" +"notar","to note, notice, observe","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I noted, was noting","notara","notaras","notara","notáramos","notarais","notaran","notando","noting","notado","noted" +"notar","to note, notice, observe","Subjuntivo","Subjunctive","Futuro","Future","I will note","notare","notares","notare","notáremos","notareis","notaren","notando","noting","notado","noted" +"notar","to note, notice, observe","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have noted, noted","haya notado","hayas notado","haya notado","hayamos notado","hayáis notado","hayan notado","notando","noting","notado","noted" +"notar","to note, notice, observe","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have noted","hubiere notado","hubieres notado","hubiere notado","hubiéremos notado","hubiereis notado","hubieren notado","notando","noting","notado","noted" +"notar","to note, notice, observe","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had noted","hubiera notado","hubieras notado","hubiera notado","hubiéramos notado","hubierais notado","hubieran notado","notando","noting","notado","noted" +"notar","to note, notice, observe","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Note! Don't note!","","nota","note","notemos","notad","noten","notando","noting","notado","noted" +"notar","to note, notice, observe","Imperativo Negativo","Imperative Negative","Presente","Present","Note! Don't note!","","no notes","no note","no notemos","no notéis","no noten","notando","noting","notado","noted" +"obedecer","to obey","Indicativo","Indicative","Presente","Present","I obey, am obeying","obedezco","obedeces","obedece","obedecemos","obedecéis","obedecen","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Futuro","Future","I will obey","obedeceré","obedecerás","obedecerá","obedeceremos","obedeceréis","obedecerán","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Imperfecto","Imperfect","I was obeying, used to obey, obeyed","obedecía","obedecías","obedecía","obedecíamos","obedecíais","obedecían","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Pretérito","Preterite","I obeyed","obedecí","obedeciste","obedeció","obedecimos","obedecisteis","obedecieron","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Condicional","Conditional","I would obey","obedecería","obedecerías","obedecería","obedeceríamos","obedeceríais","obedecerían","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Presente perfecto","Present Perfect","I have obeyed","he obedecido","has obedecido","ha obedecido","hemos obedecido","habéis obedecido","han obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have obeyed","habré obedecido","habrás obedecido","habrá obedecido","habremos obedecido","habréis obedecido","habrán obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had obeyed","había obedecido","habías obedecido","había obedecido","habíamos obedecido","habíais obedecido","habían obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had obeyed","hube obedecido","hubiste obedecido","hubo obedecido","hubimos obedecido","hubisteis obedecido","hubieron obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have obeyed","habría obedecido","habrías obedecido","habría obedecido","habríamos obedecido","habríais obedecido","habrían obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedezcamos" +"obedecer","to obey","Subjuntivo","Subjunctive","Presente","Present","I obey, am obeying","obedezca","obedezcas","obedezca","obedezcamos","obedezcáis","obedezcan","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I obeyed, was obeying","obedeciera","obedecieras","obedeciera","obedeciéramos","obedecierais","obedecieran","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Subjuntivo","Subjunctive","Futuro","Future","I will obey","obedeciere","obedecieres","obedeciere","obedeciéremos","obedeciereis","obedecieren","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have obeyed, obeyed","haya obedecido","hayas obedecido","haya obedecido","hayamos obedecido","hayáis obedecido","hayan obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have obeyed","hubiere obedecido","hubieres obedecido","hubiere obedecido","hubiéremos obedecido","hubiereis obedecido","hubieren obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had obeyed","hubiera obedecido","hubieras obedecido","hubiera obedecido","hubiéramos obedecido","hubierais obedecido","hubieran obedecido","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Obey! Don't obey!","","obedece","obedezca","obedezcamos","obedeced","obedezcan","obedeciendo","obeying","obedecido","obeyed" +"obedecer","to obey","Imperativo Negativo","Imperative Negative","Presente","Present","Obey! Don't obey!","","no obedezcas","no obedezca","no obedezcamos","no obedezcáis","no obedezcan","obedeciendo","obeying","obedecido","obeyed" +"obligar","to oblige","Indicativo","Indicative","Presente","Present","I oblige, am obliging","obligo","obligas","obliga","obligamos","obligáis","obligan","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Futuro","Future","I will oblige","obligaré","obligarás","obligará","obligaremos","obligaréis","obligarán","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Imperfecto","Imperfect","I was obliging, used to oblige, obliged","obligaba","obligabas","obligaba","obligábamos","obligabais","obligaban","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Pretérito","Preterite","I obliged","obligué","obligaste","obligó","obligamos","obligasteis","obligaron","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Condicional","Conditional","I would oblige","obligaría","obligarías","obligaría","obligaríamos","obligaríais","obligarían","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Presente perfecto","Present Perfect","I have obliged","he obligado","has obligado","ha obligado","hemos obligado","habéis obligado","han obligado","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have obliged","habré obligado","habrás obligado","habrá obligado","habremos obligado","habréis obligado","habrán obligado","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had obliged","había obligado","habías obligado","había obligado","habíamos obligado","habíais obligado","habían obligado","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had obliged","hube obligado","hubiste obligado","hubo obligado","hubimos obligado","hubisteis obligado","hubieron obligado","obligando","obliging","obligado","obliged" +"obligar","to oblige","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have obliged","habría obligado","habrías obligado","habría obligado","habríamos obligado","habríais obligado","habrían obligado","obligando","obliging","obligado","obliged" +"obliguemos" +"obligar","to oblige","Subjuntivo","Subjunctive","Presente","Present","I oblige, am obliging","obligue","obligues","obligue","obliguemos","obliguéis","obliguen","obligando","obliging","obligado","obliged" +"obligar","to oblige","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I obliged, was obliging","obligara","obligaras","obligara","obligáramos","obligarais","obligaran","obligando","obliging","obligado","obliged" +"obligar","to oblige","Subjuntivo","Subjunctive","Futuro","Future","I will oblige","obligare","obligares","obligare","obligáremos","obligareis","obligaren","obligando","obliging","obligado","obliged" +"obligar","to oblige","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have obliged, obliged","haya obligado","hayas obligado","haya obligado","hayamos obligado","hayáis obligado","hayan obligado","obligando","obliging","obligado","obliged" +"obligar","to oblige","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have obliged","hubiere obligado","hubieres obligado","hubiere obligado","hubiéremos obligado","hubiereis obligado","hubieren obligado","obligando","obliging","obligado","obliged" +"obligar","to oblige","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had obliged","hubiera obligado","hubieras obligado","hubiera obligado","hubiéramos obligado","hubierais obligado","hubieran obligado","obligando","obliging","obligado","obliged" +"obligar","to oblige","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Oblige! Don't oblige!","","obliga","obligue","obliguemos","obligad","obliguen","obligando","obliging","obligado","obliged" +"obligar","to oblige","Imperativo Negativo","Imperative Negative","Presente","Present","Oblige! Don't oblige!","","no obligues","no obligue","no obliguemos","no obliguéis","no obliguen","obligando","obliging","obligado","obliged" +"obtener","to obtain, get","Indicativo","Indicative","Presente","Present","I obtain, am obtaining","obtengo","obtienes","obtiene","obtenemos","obtenéis","obtienen","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Futuro","Future","I will obtain","obtendré","obtendrás","obtendrá","obtendremos","obtendréis","obtendrán","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Imperfecto","Imperfect","I was obtaining, used to obtain, obtained","obtenía","obtenías","obtenía","obteníamos","obteníais","obtenían","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Pretérito","Preterite","I obtained","obtuve","obtuviste","obtuvo","obtuvimos","obtuvisteis","obtuvieron","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Condicional","Conditional","I would obtain","obtendría","obtendrías","obtendría","obtendríamos","obtendríais","obtendrían","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Presente perfecto","Present Perfect","I have obtained","he obtenido","has obtenido","ha obtenido","hemos obtenido","habéis obtenido","han obtenido","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have obtained","habré obtenido","habrás obtenido","habrá obtenido","habremos obtenido","habréis obtenido","habrán obtenido","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had obtained","había obtenido","habías obtenido","había obtenido","habíamos obtenido","habíais obtenido","habían obtenido","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had obtained","hube obtenido","hubiste obtenido","hubo obtenido","hubimos obtenido","hubisteis obtenido","hubieron obtenido","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have obtained","habría obtenido","habrías obtenido","habría obtenido","habríamos obtenido","habríais obtenido","habrían obtenido","obteniendo","obtaining","obtenido","obtained" +"obtengamos" +"obtener","to obtain, get","Subjuntivo","Subjunctive","Presente","Present","I obtain, am obtaining","obtenga","obtengas","obtenga","obtengamos","obtengáis","obtengan","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I obtained, was obtaining","obtuviera","obtuvieras","obtuviera","obtuviéramos","obtuvierais","obtuvieran","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Subjuntivo","Subjunctive","Futuro","Future","I will obtain","obtuviere","obtuvieres","obtuviere","obtuviéremos","obtuviereis","obtuvieren","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have obtained, obtained","haya obtenido","hayas obtenido","haya obtenido","hayamos obtenido","hayáis obtenido","hayan obtenido","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have obtained","hubiere obtenido","hubieres obtenido","hubiere obtenido","hubiéremos obtenido","hubiereis obtenido","hubieren obtenido","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had obtained","hubiera obtenido","hubieras obtenido","hubiera obtenido","hubiéramos obtenido","hubierais obtenido","hubieran obtenido","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Obtain! Don't obtain!","","obtén","obtenga","obtengamos","obtened","obtengan","obteniendo","obtaining","obtenido","obtained" +"obtener","to obtain, get","Imperativo Negativo","Imperative Negative","Presente","Present","Obtain! Don't obtain!","","no obtengas","no obtenga","no obtengamos","no obtengáis","no obtengan","obteniendo","obtaining","obtenido","obtained" +"ocurrir","to occur, happen","Indicativo","Indicative","Presente","Present","it occurs, is occurring","","","ocurre","","","ocurren","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Futuro","Future","it will occur","","","ocurrirá","","","ocurrirán","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Imperfecto","Imperfect","it was occurring, used to occur, occurred","","","ocurría","","","ocurrían","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Pretérito","Preterite","it occurred","","","ocurrió","","","ocurrieron","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Condicional","Conditional","it would occur","","","ocurriría","","","ocurrirían","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Presente perfecto","Present Perfect","it has occurred","","","ha ocurrido","","","han ocurrido","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Futuro perfecto","Future Perfect","it will have occurred","","","habrá ocurrido","","","habrán ocurrido","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","it had occurred","","","había ocurrido","","","habían ocurrido","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","it had occurred","","","hubo ocurrido","","","hubieron ocurrido","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","it would have occurred","","","habría ocurrido","","","habrían ocurrido","ocurriendo","occurring","ocurrido","occurred" +"" +"ocurrir","to occur, happen","Subjuntivo","Subjunctive","Presente","Present","it occurs, is occurring","","","ocurra","","","ocurran","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Subjuntivo","Subjunctive","Imperfecto","Imperfect","it occurred, was occurring","","","ocurriera","","","ocurrieran","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Subjuntivo","Subjunctive","Futuro","Future","it will occur","","","ocurriere","","","ocurrieren","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","it has occurred, occurred","","","haya ocurrido","","","hayan ocurrido","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","it will have occurred","","","hubiere ocurrido","","","hubieren ocurrido","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","it had occurred","","","hubiera ocurrido","","","hubieran ocurrido","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Occur! Don't occur!","","ocurre","ocurra","","ocurrid","ocurran","ocurriendo","occurring","ocurrido","occurred" +"ocurrir","to occur, happen","Imperativo Negativo","Imperative Negative","Presente","Present","Occur! Don't occur!","","no ocurras","no ocurra","no ","no ocurráis","no ocurran","ocurriendo","occurring","ocurrido","occurred" +"odiar","to hate","Indicativo","Indicative","Presente","Present","I hate, am hating","odio","odias","odia","odiamos","odiáis","odian","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Futuro","Future","I will hate","odiaré","odiarás","odiará","odiaremos","odiaréis","odiarán","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Imperfecto","Imperfect","I was hating, used to hate, hated","odiaba","odiabas","odiaba","odiábamos","odiabais","odiaban","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Pretérito","Preterite","I hated","odié","odiaste","odió","odiamos","odiasteis","odiaron","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Condicional","Conditional","I would hate","odiaría","odiarías","odiaría","odiaríamos","odiaríais","odiarían","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hated","he odiado","has odiado","ha odiado","hemos odiado","habéis odiado","han odiado","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hated","habré odiado","habrás odiado","habrá odiado","habremos odiado","habréis odiado","habrán odiado","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hated","había odiado","habías odiado","había odiado","habíamos odiado","habíais odiado","habían odiado","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hated","hube odiado","hubiste odiado","hubo odiado","hubimos odiado","hubisteis odiado","hubieron odiado","odiando","hating","odiado","hated" +"odiar","to hate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hated","habría odiado","habrías odiado","habría odiado","habríamos odiado","habríais odiado","habrían odiado","odiando","hating","odiado","hated" +"odiemos" +"odiar","to hate","Subjuntivo","Subjunctive","Presente","Present","I hate, am hating","odie","odies","odie","odiemos","odiéis","odien","odiando","hating","odiado","hated" +"odiar","to hate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hated, was hating","odiara","odiaras","odiara","odiáramos","odiarais","odiaran","odiando","hating","odiado","hated" +"odiar","to hate","Subjuntivo","Subjunctive","Futuro","Future","I will hate","odiare","odiares","odiare","odiáremos","odiareis","odiaren","odiando","hating","odiado","hated" +"odiar","to hate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hated, hated","haya odiado","hayas odiado","haya odiado","hayamos odiado","hayáis odiado","hayan odiado","odiando","hating","odiado","hated" +"odiar","to hate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hated","hubiere odiado","hubieres odiado","hubiere odiado","hubiéremos odiado","hubiereis odiado","hubieren odiado","odiando","hating","odiado","hated" +"odiar","to hate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hated","hubiera odiado","hubieras odiado","hubiera odiado","hubiéramos odiado","hubierais odiado","hubieran odiado","odiando","hating","odiado","hated" +"odiar","to hate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hate! Don't hate!","","odia","odie","odiemos","odiad","odien","odiando","hating","odiado","hated" +"odiar","to hate","Imperativo Negativo","Imperative Negative","Presente","Present","Hate! Don't hate!","","no odies","no odie","no odiemos","no odiéis","no odien","odiando","hating","odiado","hated" +"ofender","to offend","Indicativo","Indicative","Presente","Present","I offend, am offending","ofendo","ofendes","ofende","ofendemos","ofendéis","ofenden","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Futuro","Future","I will offend","ofenderé","ofenderás","ofenderá","ofenderemos","ofenderéis","ofenderán","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Imperfecto","Imperfect","I was offending, used to offend, offended","ofendía","ofendías","ofendía","ofendíamos","ofendíais","ofendían","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Pretérito","Preterite","I offended","ofendí","ofendiste","ofendió","ofendimos","ofendisteis","ofendieron","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Condicional","Conditional","I would offend","ofendería","ofenderías","ofendería","ofenderíamos","ofenderíais","ofenderían","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have offended","he ofendido","has ofendido","ha ofendido","hemos ofendido","habéis ofendido","han ofendido","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have offended","habré ofendido","habrás ofendido","habrá ofendido","habremos ofendido","habréis ofendido","habrán ofendido","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had offended","había ofendido","habías ofendido","había ofendido","habíamos ofendido","habíais ofendido","habían ofendido","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had offended","hube ofendido","hubiste ofendido","hubo ofendido","hubimos ofendido","hubisteis ofendido","hubieron ofendido","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have offended","habría ofendido","habrías ofendido","habría ofendido","habríamos ofendido","habríais ofendido","habrían ofendido","ofendiendo","offending","ofendido","offended" +"ofendamos" +"ofender","to offend","Subjuntivo","Subjunctive","Presente","Present","I offend, am offending","ofenda","ofendas","ofenda","ofendamos","ofendáis","ofendan","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I offended, was offending","ofendiera","ofendieras","ofendiera","ofendiéramos","ofendierais","ofendieran","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Subjuntivo","Subjunctive","Futuro","Future","I will offend","ofendiere","ofendieres","ofendiere","ofendiéremos","ofendiereis","ofendieren","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have offended, offended","haya ofendido","hayas ofendido","haya ofendido","hayamos ofendido","hayáis ofendido","hayan ofendido","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have offended","hubiere ofendido","hubieres ofendido","hubiere ofendido","hubiéremos ofendido","hubiereis ofendido","hubieren ofendido","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had offended","hubiera ofendido","hubieras ofendido","hubiera ofendido","hubiéramos ofendido","hubierais ofendido","hubieran ofendido","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Offend! Don't offend!","","ofende","ofenda","ofendamos","ofended","ofendan","ofendiendo","offending","ofendido","offended" +"ofender","to offend","Imperativo Negativo","Imperative Negative","Presente","Present","Offend! Don't offend!","","no ofendas","no ofenda","no ofendamos","no ofendáis","no ofendan","ofendiendo","offending","ofendido","offended" +"ofrecer","to offer","Indicativo","Indicative","Presente","Present","I offer, am offering","ofrezco","ofreces","ofrece","ofrecemos","ofrecéis","ofrecen","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Futuro","Future","I will offer","ofreceré","ofrecerás","ofrecerá","ofreceremos","ofreceréis","ofrecerán","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Imperfecto","Imperfect","I was offering, used to offer, offered","ofrecía","ofrecías","ofrecía","ofrecíamos","ofrecíais","ofrecían","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Pretérito","Preterite","I offered","ofrecí","ofreciste","ofreció","ofrecimos","ofrecisteis","ofrecieron","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Condicional","Conditional","I would offer","ofrecería","ofrecerías","ofrecería","ofreceríamos","ofreceríais","ofrecerían","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Presente perfecto","Present Perfect","I have offered","he ofrecido","has ofrecido","ha ofrecido","hemos ofrecido","habéis ofrecido","han ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have offered","habré ofrecido","habrás ofrecido","habrá ofrecido","habremos ofrecido","habréis ofrecido","habrán ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had offered","había ofrecido","habías ofrecido","había ofrecido","habíamos ofrecido","habíais ofrecido","habían ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had offered","hube ofrecido","hubiste ofrecido","hubo ofrecido","hubimos ofrecido","hubisteis ofrecido","hubieron ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have offered","habría ofrecido","habrías ofrecido","habría ofrecido","habríamos ofrecido","habríais ofrecido","habrían ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrezcamos" +"ofrecer","to offer","Subjuntivo","Subjunctive","Presente","Present","I offer, am offering","ofrezca","ofrezcas","ofrezca","ofrezcamos","ofrezcáis","ofrezcan","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I offered, was offering","ofreciera","ofrecieras","ofreciera","ofreciéramos","ofrecierais","ofrecieran","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Subjuntivo","Subjunctive","Futuro","Future","I will offer","ofreciere","ofrecieres","ofreciere","ofreciéremos","ofreciereis","ofrecieren","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have offered, offered","haya ofrecido","hayas ofrecido","haya ofrecido","hayamos ofrecido","hayáis ofrecido","hayan ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have offered","hubiere ofrecido","hubieres ofrecido","hubiere ofrecido","hubiéremos ofrecido","hubiereis ofrecido","hubieren ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had offered","hubiera ofrecido","hubieras ofrecido","hubiera ofrecido","hubiéramos ofrecido","hubierais ofrecido","hubieran ofrecido","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Offer! Don't offer!","","ofrece","ofrezca","ofrezcamos","ofreced","ofrezcan","ofreciendo","offering","ofrecido","offered" +"ofrecer","to offer","Imperativo Negativo","Imperative Negative","Presente","Present","Offer! Don't offer!","","no ofrezcas","no ofrezca","no ofrezcamos","no ofrezcáis","no ofrezcan","ofreciendo","offering","ofrecido","offered" +"oír","to hear","Indicativo","Indicative","Presente","Present","I hear, am hearing","oigo","oyes","oye","oímos","oís","oyen","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Futuro","Future","I will hear","oiré","oirás","oirá","oiremos","oiréis","oirán","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Imperfecto","Imperfect","I was hearing, used to hear, heard","oía","oías","oía","oíamos","oíais","oían","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Pretérito","Preterite","I heard","oí","oíste","oyó","oímos","oísteis","oyeron","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Condicional","Conditional","I would hear","oiría","oirías","oiría","oiríamos","oiríais","oirían","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have heard","he oído","has oído","ha oído","hemos oído","habéis oído","han oído","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have heard","habré oído","habrás oído","habrá oído","habremos oído","habréis oído","habrán oído","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had heard","había oído","habías oído","había oído","habíamos oído","habíais oído","habían oído","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had heard","hube oído","hubiste oído","hubo oído","hubimos oído","hubisteis oído","hubieron oído","oyendo","hearing","oído","heard" +"oír","to hear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have heard","habría oído","habrías oído","habría oído","habríamos oído","habríais oído","habrían oído","oyendo","hearing","oído","heard" +"oigamos" +"oír","to hear","Subjuntivo","Subjunctive","Presente","Present","I hear, am hearing","oiga","oigas","oiga","oigamos","oigáis","oigan","oyendo","hearing","oído","heard" +"oír","to hear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I heard, was hearing","oyera","oyeras","oyera","oyéramos","oyerais","oyeran","oyendo","hearing","oído","heard" +"oír","to hear","Subjuntivo","Subjunctive","Futuro","Future","I will hear","oyere","oyeres","oyere","oyéremos","oyereis","oyeren","oyendo","hearing","oído","heard" +"oír","to hear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have heard, heard","haya oído","hayas oído","haya oído","hayamos oído","hayáis oído","hayan oído","oyendo","hearing","oído","heard" +"oír","to hear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have heard","hubiere oído","hubieres oído","hubiere oído","hubiéremos oído","hubiereis oído","hubieren oído","oyendo","hearing","oído","heard" +"oír","to hear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had heard","hubiera oído","hubieras oído","hubiera oído","hubiéramos oído","hubierais oído","hubieran oído","oyendo","hearing","oído","heard" +"oír","to hear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hear! Don't hear!","","oye","oiga","oigamos","oíd","oigan","oyendo","hearing","oído","heard" +"oír","to hear","Imperativo Negativo","Imperative Negative","Presente","Present","Hear! Don't hear!","","no oigas","no oiga","no oigamos","no oigáis","no oigan","oyendo","hearing","oído","heard" +"oler","to smell","Indicativo","Indicative","Presente","Present","I smell, am smelling","huelo","hueles","huele","olemos","oléis","huelen","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Futuro","Future","I will smell","oleré","olerás","olerá","oleremos","oleréis","olerán","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Imperfecto","Imperfect","I was smelling, used to smell, smelled","olía","olías","olía","olíamos","olíais","olían","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Pretérito","Preterite","I smelled","olí","oliste","olió","olimos","olisteis","olieron","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Condicional","Conditional","I would smell","olería","olerías","olería","oleríamos","oleríais","olerían","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Presente perfecto","Present Perfect","I have smelled","he olido","has olido","ha olido","hemos olido","habéis olido","han olido","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have smelled","habré olido","habrás olido","habrá olido","habremos olido","habréis olido","habrán olido","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had smelled","había olido","habías olido","había olido","habíamos olido","habíais olido","habían olido","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had smelled","hube olido","hubiste olido","hubo olido","hubimos olido","hubisteis olido","hubieron olido","oliendo","smelling","olido","smelled" +"oler","to smell","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have smelled","habría olido","habrías olido","habría olido","habríamos olido","habríais olido","habrían olido","oliendo","smelling","olido","smelled" +"olamos" +"oler","to smell","Subjuntivo","Subjunctive","Presente","Present","I smell, am smelling","huela","huelas","huela","olamos","oláis","huelan","oliendo","smelling","olido","smelled" +"oler","to smell","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I smelled, was smelling","oliera","olieras","oliera","oliéramos","olierais","olieran","oliendo","smelling","olido","smelled" +"oler","to smell","Subjuntivo","Subjunctive","Futuro","Future","I will smell","oliere","olieres","oliere","oliéremos","oliereis","olieren","oliendo","smelling","olido","smelled" +"oler","to smell","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have smelled, smelled","haya olido","hayas olido","haya olido","hayamos olido","hayáis olido","hayan olido","oliendo","smelling","olido","smelled" +"oler","to smell","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have smelled","hubiere olido","hubieres olido","hubiere olido","hubiéremos olido","hubiereis olido","hubieren olido","oliendo","smelling","olido","smelled" +"oler","to smell","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had smelled","hubiera olido","hubieras olido","hubiera olido","hubiéramos olido","hubierais olido","hubieran olido","oliendo","smelling","olido","smelled" +"oler","to smell","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Smell! Don't smell!","","huele","huela","olamos","oled","huelan","oliendo","smelling","olido","smelled" +"oler","to smell","Imperativo Negativo","Imperative Negative","Presente","Present","Smell! Don't smell!","","no huelas","no huela","no olamos","no oláis","no huelan","oliendo","smelling","olido","smelled" +"olvidar","to forget","Indicativo","Indicative","Presente","Present","I forget, am forgetting","olvido","olvidas","olvida","olvidamos","olvidáis","olvidan","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Futuro","Future","I will forget","olvidaré","olvidarás","olvidará","olvidaremos","olvidaréis","olvidarán","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Imperfecto","Imperfect","I was forgetting, used to forget, forgot","olvidaba","olvidabas","olvidaba","olvidábamos","olvidabais","olvidaban","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Pretérito","Preterite","I forgot","olvidé","olvidaste","olvidó","olvidamos","olvidasteis","olvidaron","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Condicional","Conditional","I would forget","olvidaría","olvidarías","olvidaría","olvidaríamos","olvidaríais","olvidarían","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Presente perfecto","Present Perfect","I have forgotten","he olvidado","has olvidado","ha olvidado","hemos olvidado","habéis olvidado","han olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have forgotten","habré olvidado","habrás olvidado","habrá olvidado","habremos olvidado","habréis olvidado","habrán olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had forgotten","había olvidado","habías olvidado","había olvidado","habíamos olvidado","habíais olvidado","habían olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had forgotten","hube olvidado","hubiste olvidado","hubo olvidado","hubimos olvidado","hubisteis olvidado","hubieron olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have forgotten","habría olvidado","habrías olvidado","habría olvidado","habríamos olvidado","habríais olvidado","habrían olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidemos" +"olvidar","to forget","Subjuntivo","Subjunctive","Presente","Present","I forget, am forgetting","olvide","olvides","olvide","olvidemos","olvidéis","olviden","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I forgot, was forgetting","olvidara","olvidaras","olvidara","olvidáramos","olvidarais","olvidaran","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Subjuntivo","Subjunctive","Futuro","Future","I will forget","olvidare","olvidares","olvidare","olvidáremos","olvidareis","olvidaren","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have forgotten, forgot","haya olvidado","hayas olvidado","haya olvidado","hayamos olvidado","hayáis olvidado","hayan olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have forgotten","hubiere olvidado","hubieres olvidado","hubiere olvidado","hubiéremos olvidado","hubiereis olvidado","hubieren olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had forgotten","hubiera olvidado","hubieras olvidado","hubiera olvidado","hubiéramos olvidado","hubierais olvidado","hubieran olvidado","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Forget! Don't forget!","","olvida","olvide","olvidemos","olvidad","olviden","olvidando","forgetting","olvidado","forgotten" +"olvidar","to forget","Imperativo Negativo","Imperative Negative","Presente","Present","Forget! Don't forget!","","no olvides","no olvide","no olvidemos","no olvidéis","no olviden","olvidando","forgetting","olvidado","forgotten" +"olvidarse","to forget","Indicativo","Indicative","Presente","Present","I forget, am forgetting","me olvido","te olvidas","se olvida","nos olvidamos","os olvidáis","se olvidan","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Futuro","Future","I will forget","me olvidaré","te olvidarás","se olvidará","nos olvidaremos","os olvidaréis","se olvidarán","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Imperfecto","Imperfect","I was forgetting, used to forget, forgot","me olvidaba","te olvidabas","se olvidaba","nos olvidábamos","os olvidabais","se olvidaban","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Pretérito","Preterite","I forgot","me olvidé","te olvidaste","se olvidó","nos olvidamos","os olvidasteis","se olvidaron","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Condicional","Conditional","I would forget","me olvidaría","te olvidarías","se olvidaría","nos olvidaríamos","os olvidaríais","se olvidarían","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Presente perfecto","Present Perfect","I have forgotten","me he olvidado","te has olvidado","se ha olvidado","nos hemos olvidado","os habéis olvidado","se han olvidado","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have forgotten","me habré olvidado","te habrás olvidado","se habrá olvidado","nos habremos olvidado","os habréis olvidado","se habrán olvidado","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had forgotten","me había olvidado","te habías olvidado","se había olvidado","nos habíamos olvidado","os habíais olvidado","se habían olvidado","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had forgotten","me hube olvidado","te hubiste olvidado","se hubo olvidado","nos hubimos olvidado","os hubisteis olvidado","se hubieron olvidado","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have forgotten","me habría olvidado","te habrías olvidado","se habría olvidado","nos habríamos olvidado","os habríais olvidado","se habrían olvidado","olvidándose","forgetting","olvidado","forgot" +"nos olvidemos" +"olvidarse","to forget","Subjuntivo","Subjunctive","Presente","Present","I forget, am forgetting","me olvide","te olvides","se olvide","nos olvidemos","os olvidéis","se olviden","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I forgot, was forgetting","me olvidara","te olvidaras","se olvidara","nos olvidáramos","os olvidarais","se olvidaran","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Subjuntivo","Subjunctive","Futuro","Future","I will forget","me olvidare","te olvidares","se olvidare","nos olvidáremos","os olvidareis","se olvidaren","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have forgotten, forgot","me haya olvidado","te hayas olvidado","se haya olvidado","nos hayamos olvidado","os hayáis olvidado","se hayan olvidado","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have forgotten","me hubiere olvidado","te hubieres olvidado","se hubiere olvidado","nos hubiéremos olvidado","os hubiereis olvidado","se hubieren olvidado","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had forgotten","me hubiera olvidado","te hubieras olvidado","se hubiera olvidado","nos hubiéramos olvidado","os hubierais olvidado","se hubieran olvidado","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Forget! Don't forget!","","olvídate","olvídese","nos olvidemos","olvidaos","olvídense","olvidándose","forgetting","olvidado","forgot" +"olvidarse","to forget","Imperativo Negativo","Imperative Negative","Presente","Present","Forget! Don't forget!","","no te olvides","no se olvide","no nos olvidemos","no os olvidéis","no se olviden","olvidándose","forgetting","olvidado","forgot" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Presente","Present","I pit, am pitting","opongo","opones","opone","oponemos","oponéis","oponen","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Futuro","Future","I will pit","opondré","opondrás","opondrá","opondremos","opondréis","opondrán","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Imperfecto","Imperfect","I was pitting, used to pit, pitted","oponía","oponías","oponía","oponíamos","oponíais","oponían","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Pretérito","Preterite","I pitted","opuse","opusiste","opuso","opusimos","opusisteis","opusieron","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Condicional","Conditional","I would pit","opondría","opondrías","opondría","opondríamos","opondríais","opondrían","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have pitted","he opuesto","has opuesto","ha opuesto","hemos opuesto","habéis opuesto","han opuesto","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have pitted","habré opuesto","habrás opuesto","habrá opuesto","habremos opuesto","habréis opuesto","habrán opuesto","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had pitted","había opuesto","habías opuesto","había opuesto","habíamos opuesto","habíais opuesto","habían opuesto","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had pitted","hube opuesto","hubiste opuesto","hubo opuesto","hubimos opuesto","hubisteis opuesto","hubieron opuesto","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have pitted","habría opuesto","habrías opuesto","habría opuesto","habríamos opuesto","habríais opuesto","habrían opuesto","oponiendo","pitting","opuesto","pitted" +"opongamos" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Subjuntivo","Subjunctive","Presente","Present","I pit, am pitting","oponga","opongas","oponga","opongamos","opongáis","opongan","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I pitted, was pitting","opusiera","opusieras","opusiera","opusiéramos","opusierais","opusieran","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Subjuntivo","Subjunctive","Futuro","Future","I will pit","opusiere","opusieres","opusiere","opusiéremos","opusiereis","opusieren","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have pitted, pitted","haya opuesto","hayas opuesto","haya opuesto","hayamos opuesto","hayáis opuesto","hayan opuesto","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have pitted","hubiere opuesto","hubieres opuesto","hubiere opuesto","hubiéremos opuesto","hubiereis opuesto","hubieren opuesto","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had pitted","hubiera opuesto","hubieras opuesto","hubiera opuesto","hubiéramos opuesto","hubierais opuesto","hubieran opuesto","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Pit! Don't pit!","","opón","oponga","opongamos","oponed","opongan","oponiendo","pitting","opuesto","pitted" +"oponer","to pit [A against B], set up [A in opposition to B], play off [A against B]","Imperativo Negativo","Imperative Negative","Presente","Present","Pit! Don't pit!","","no opongas","no oponga","no opongamos","no opongáis","no opongan","oponiendo","pitting","opuesto","pitted" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Presente","Present","I put on, am putting on","me opongo","te opones","se opone","nos oponemos","os oponéis","se oponen","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Futuro","Future","I will put on","me opondré","te opondrás","se opondrá","nos opondremos","os opondréis","se opondrán","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Imperfecto","Imperfect","I was putting on, used to put on, put on","me oponía","te oponías","se oponía","nos oponíamos","os oponíais","se oponían","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Pretérito","Preterite","I put on","me opuse","te opusiste","se opuso","nos opusimos","os opusisteis","se opusieron","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Condicional","Conditional","I would put on","me opondría","te opondrías","se opondría","nos opondríamos","os opondríais","se opondrían","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put on","me he opuesto","te has opuesto","se ha opuesto","nos hemos opuesto","os habéis opuesto","se han opuesto","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put on","me habré opuesto","te habrás opuesto","se habrá opuesto","nos habremos opuesto","os habréis opuesto","se habrán opuesto","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put on","me había opuesto","te habías opuesto","se había opuesto","nos habíamos opuesto","os habíais opuesto","se habían opuesto","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put on","me hube opuesto","te hubiste opuesto","se hubo opuesto","nos hubimos opuesto","os hubisteis opuesto","se hubieron opuesto","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put on","me habría opuesto","te habrías opuesto","se habría opuesto","nos habríamos opuesto","os habríais opuesto","se habrían opuesto","oponiéndose","putting on","opuesto","put on" +"nos opongamos" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Presente","Present","I put on, am putting on","me oponga","te opongas","se oponga","nos opongamos","os opongáis","se opongan","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put on, was putting on","me opusiera","te opusieras","se opusiera","nos opusiéramos","os opusierais","se opusieran","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Futuro","Future","I will put on","me opusiere","te opusieres","se opusiere","nos opusiéremos","os opusiereis","se opusieren","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put on, put on","me haya opuesto","te hayas opuesto","se haya opuesto","nos hayamos opuesto","os hayáis opuesto","se hayan opuesto","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put on","me hubiere opuesto","te hubieres opuesto","se hubiere opuesto","nos hubiéremos opuesto","os hubiereis opuesto","se hubieren opuesto","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put on","me hubiera opuesto","te hubieras opuesto","se hubiera opuesto","nos hubiéramos opuesto","os hubierais opuesto","se hubieran opuesto","oponiéndose","putting on","opuesto","put on" +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put on! Don't put on!","","oponte","opóngase","nos opongamos","oponeos","opónganse","oponiéndose","putting on","opuesto","put on", +"oponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Imperativo Negativo","Imperative Negative","Presente","Present","Put on! Don't put on!","","no te opongas","no se oponga","no nos opongamos","no os opongáis","no se opongan","oponiéndose","putting on","opuesto","put on", +"organizar","to organize","Indicativo","Indicative","Presente","Present","I organize, am organizing","organizo","organizas","organiza","organizamos","organizáis","organizan","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Futuro","Future","I will organize","organizaré","organizarás","organizará","organizaremos","organizaréis","organizarán","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Imperfecto","Imperfect","I was organizing, used to organize, organized","organizaba","organizabas","organizaba","organizábamos","organizabais","organizaban","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Pretérito","Preterite","I organized","organicé","organizaste","organizó","organizamos","organizasteis","organizaron","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Condicional","Conditional","I would organize","organizaría","organizarías","organizaría","organizaríamos","organizaríais","organizarían","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have organized","he organizado","has organizado","ha organizado","hemos organizado","habéis organizado","han organizado","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have organized","habré organizado","habrás organizado","habrá organizado","habremos organizado","habréis organizado","habrán organizado","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had organized","había organizado","habías organizado","había organizado","habíamos organizado","habíais organizado","habían organizado","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had organized","hube organizado","hubiste organizado","hubo organizado","hubimos organizado","hubisteis organizado","hubieron organizado","organizando","organizing","organizado","organized" +"organizar","to organize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have organized","habría organizado","habrías organizado","habría organizado","habríamos organizado","habríais organizado","habrían organizado","organizando","organizing","organizado","organized" +"organicemos" +"organizar","to organize","Subjuntivo","Subjunctive","Presente","Present","I organize, am organizing","organice","organices","organice","organicemos","organicéis","organicen","organizando","organizing","organizado","organized" +"organizar","to organize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I organized, was organizing","organizara","organizaras","organizara","organizáramos","organizarais","organizaran","organizando","organizing","organizado","organized" +"organizar","to organize","Subjuntivo","Subjunctive","Futuro","Future","I will organize","organizare","organizares","organizare","organizáremos","organizareis","organizaren","organizando","organizing","organizado","organized" +"organizar","to organize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have organized, organized","haya organizado","hayas organizado","haya organizado","hayamos organizado","hayáis organizado","hayan organizado","organizando","organizing","organizado","organized" +"organizar","to organize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have organized","hubiere organizado","hubieres organizado","hubiere organizado","hubiéremos organizado","hubiereis organizado","hubieren organizado","organizando","organizing","organizado","organized" +"querer","to want, love","Indicativo","Indicative","Futuro","Future","I will want","querré","querrás","querrá","querremos","querréis","querrán","queriendo","wanting","querido","wanted" +"organizar","to organize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had organized","hubiera organizado","hubieras organizado","hubiera organizado","hubiéramos organizado","hubierais organizado","hubieran organizado","organizando","organizing","organizado","organized" +"organizar","to organize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Organize! Don't organize!","","organiza","organice","organicemos","organizad","organicen","organizando","organizing","organizado","organized" +"organizar","to organize","Imperativo Negativo","Imperative Negative","Presente","Present","Organize! Don't organize!","","no organices","no organice","no organicemos","no organicéis","no organicen","organizando","organizing","organizado","organized" +"padecer","to suffer","Indicativo","Indicative","Presente","Present","I suffer, am suffering","padezco","padeces","padece","padecemos","padecéis","padecen","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Futuro","Future","I will suffer","padeceré","padecerás","padecerá","padeceremos","padeceréis","padecerán","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Imperfecto","Imperfect","I was suffering, used to suffer, suffered","padecía","padecías","padecía","padecíamos","padecíais","padecían","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Pretérito","Preterite","I suffered","padecí","padeciste","padeció","padecimos","padecisteis","padecieron","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Condicional","Conditional","I would suffer","padecería","padecerías","padecería","padeceríamos","padeceríais","padecerían","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Presente perfecto","Present Perfect","I have suffered","he padecido","has padecido","ha padecido","hemos padecido","habéis padecido","han padecido","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have suffered","habré padecido","habrás padecido","habrá padecido","habremos padecido","habréis padecido","habrán padecido","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had suffered","había padecido","habías padecido","había padecido","habíamos padecido","habíais padecido","habían padecido","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had suffered","hube padecido","hubiste padecido","hubo padecido","hubimos padecido","hubisteis padecido","hubieron padecido","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have suffered","habría padecido","habrías padecido","habría padecido","habríamos padecido","habríais padecido","habrían padecido","padeciendo","suffering","padecido","suffered" +"padezcamos" +"padecer","to suffer","Subjuntivo","Subjunctive","Presente","Present","I suffer, am suffering","padezca","padezcas","padezca","padezcamos","padezcáis","padezcan","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I suffered, was suffering","padeciera","padecieras","padeciera","padeciéramos","padecierais","padecieran","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Subjuntivo","Subjunctive","Futuro","Future","I will suffer","padeciere","padecieres","padeciere","padeciéremos","padeciereis","padecieren","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have suffered, suffered","haya padecido","hayas padecido","haya padecido","hayamos padecido","hayáis padecido","hayan padecido","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have suffered","hubiere padecido","hubieres padecido","hubiere padecido","hubiéremos padecido","hubiereis padecido","hubieren padecido","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had suffered","hubiera padecido","hubieras padecido","hubiera padecido","hubiéramos padecido","hubierais padecido","hubieran padecido","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Suffer! Don't suffer!","","padece","padezca","padezcamos","padeced","padezcan","padeciendo","suffering","padecido","suffered" +"padecer","to suffer","Imperativo Negativo","Imperative Negative","Presente","Present","Suffer! Don't suffer!","","no padezcas","no padezca","no padezcamos","no padezcáis","no padezcan","padeciendo","suffering","padecido","suffered" +"pagar","to pay, pay for","Indicativo","Indicative","Presente","Present","I pay, am paying","pago","pagas","paga","pagamos","pagáis","pagan","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Futuro","Future","I will pay","pagaré","pagarás","pagará","pagaremos","pagaréis","pagarán","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Imperfecto","Imperfect","I was paying, used to pay, paid","pagaba","pagabas","pagaba","pagábamos","pagabais","pagaban","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Pretérito","Preterite","I paid","pagué","pagaste","pagó","pagamos","pagasteis","pagaron","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Condicional","Conditional","I would pay","pagaría","pagarías","pagaría","pagaríamos","pagaríais","pagarían","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have paid","he pagado","has pagado","ha pagado","hemos pagado","habéis pagado","han pagado","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have paid","habré pagado","habrás pagado","habrá pagado","habremos pagado","habréis pagado","habrán pagado","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had paid","había pagado","habías pagado","había pagado","habíamos pagado","habíais pagado","habían pagado","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had paid","hube pagado","hubiste pagado","hubo pagado","hubimos pagado","hubisteis pagado","hubieron pagado","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have paid","habría pagado","habrías pagado","habría pagado","habríamos pagado","habríais pagado","habrían pagado","pagando","paying","pagado","paid" +"paguemos" +"pagar","to pay, pay for","Subjuntivo","Subjunctive","Presente","Present","I pay, am paying","pague","pagues","pague","paguemos","paguéis","paguen","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I paid, was paying","pagara","pagaras","pagara","pagáramos","pagarais","pagaran","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Subjuntivo","Subjunctive","Futuro","Future","I will pay","pagare","pagares","pagare","pagáremos","pagareis","pagaren","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have paid, paid","haya pagado","hayas pagado","haya pagado","hayamos pagado","hayáis pagado","hayan pagado","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have paid","hubiere pagado","hubieres pagado","hubiere pagado","hubiéremos pagado","hubiereis pagado","hubieren pagado","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had paid","hubiera pagado","hubieras pagado","hubiera pagado","hubiéramos pagado","hubierais pagado","hubieran pagado","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Pay! Don't pay!","","paga","pague","paguemos","pagad","paguen","pagando","paying","pagado","paid" +"pagar","to pay, pay for","Imperativo Negativo","Imperative Negative","Presente","Present","Pay! Don't pay!","","no pagues","no pague","no paguemos","no paguéis","no paguen","pagando","paying","pagado","paid" +"parar","to stop, halt","Indicativo","Indicative","Presente","Present","I stop, am stopping","paro","paras","para","paramos","paráis","paran","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Futuro","Future","I will stop","pararé","pararás","parará","pararemos","pararéis","pararán","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Imperfecto","Imperfect","I was stopping, used to stop, stopped","paraba","parabas","paraba","parábamos","parabais","paraban","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Pretérito","Preterite","I stopped","paré","paraste","paró","paramos","parasteis","pararon","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Condicional","Conditional","I would stop","pararía","pararías","pararía","pararíamos","pararíais","pararían","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Presente perfecto","Present Perfect","I have stopped","he parado","has parado","ha parado","hemos parado","habéis parado","han parado","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have stopped","habré parado","habrás parado","habrá parado","habremos parado","habréis parado","habrán parado","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had stopped","había parado","habías parado","había parado","habíamos parado","habíais parado","habían parado","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had stopped","hube parado","hubiste parado","hubo parado","hubimos parado","hubisteis parado","hubieron parado","parando","stopping","parado","stopped" +"parar","to stop, halt","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have stopped","habría parado","habrías parado","habría parado","habríamos parado","habríais parado","habrían parado","parando","stopping","parado","stopped" +"paremos" +"parar","to stop, halt","Subjuntivo","Subjunctive","Presente","Present","I stop, am stopping","pare","pares","pare","paremos","paréis","paren","parando","stopping","parado","stopped" +"parar","to stop, halt","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I stopped, was stopping","parara","pararas","parara","paráramos","pararais","pararan","parando","stopping","parado","stopped" +"parar","to stop, halt","Subjuntivo","Subjunctive","Futuro","Future","I will stop","parare","parares","parare","paráremos","parareis","pararen","parando","stopping","parado","stopped" +"parar","to stop, halt","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have stopped, stopped","haya parado","hayas parado","haya parado","hayamos parado","hayáis parado","hayan parado","parando","stopping","parado","stopped" +"recojamos" +"recoger","to pick up","Subjuntivo","Subjunctive","Presente","Present","I pick up, am picking up","recoja","recojas","recoja","recojamos","recojáis","recojan","recogiendo","picking up","recogido","picked up" +"parar","to stop, halt","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have stopped","hubiere parado","hubieres parado","hubiere parado","hubiéremos parado","hubiereis parado","hubieren parado","parando","stopping","parado","stopped" +"parar","to stop, halt","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had stopped","hubiera parado","hubieras parado","hubiera parado","hubiéramos parado","hubierais parado","hubieran parado","parando","stopping","parado","stopped" +"parar","to stop, halt","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Stop! Don't stop!","","para","pare","recojamos","parad","paren","parando","stopping","parado","stopped" +"parar","to stop, halt","Imperativo Negativo","Imperative Negative","Presente","Present","Stop! Don't stop!","","no pares","no pare","no recojamos","no paréis","no paren","parando","stopping","parado","stopped" +"parecer","to seem, appear","Indicativo","Indicative","Presente","Present","I seem, am seeming","parezco","pareces","parece","parecemos","parecéis","parecen","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Futuro","Future","I will seem","pareceré","parecerás","parecerá","pareceremos","pareceréis","parecerán","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Imperfecto","Imperfect","I was seeming, used to seem, seemed","parecía","parecías","parecía","parecíamos","parecíais","parecían","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Pretérito","Preterite","I seemed","parecí","pareciste","pareció","parecimos","parecisteis","parecieron","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Condicional","Conditional","I would seem","parecería","parecerías","parecería","pareceríamos","pareceríais","parecerían","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have seemed","he parecido","has parecido","ha parecido","hemos parecido","habéis parecido","han parecido","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have seemed","habré parecido","habrás parecido","habrá parecido","habremos parecido","habréis parecido","habrán parecido","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had seemed","había parecido","habías parecido","había parecido","habíamos parecido","habíais parecido","habían parecido","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had seemed","hube parecido","hubiste parecido","hubo parecido","hubimos parecido","hubisteis parecido","hubieron parecido","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have seemed","habría parecido","habrías parecido","habría parecido","habríamos parecido","habríais parecido","habrían parecido","pareciendo","seeming","parecido","seemed" +"parezcamos" +"parecer","to seem, appear","Subjuntivo","Subjunctive","Presente","Present","I seem, am seeming","parezca","parezcas","parezca","parezcamos","parezcáis","parezcan","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I seemed, was seeming","pareciera","parecieras","pareciera","pareciéramos","parecierais","parecieran","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Subjuntivo","Subjunctive","Futuro","Future","I will seem","pareciere","parecieres","pareciere","pareciéremos","pareciereis","parecieren","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have seemed, seemed","haya parecido","hayas parecido","haya parecido","hayamos parecido","hayáis parecido","hayan parecido","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have seemed","hubiere parecido","hubieres parecido","hubiere parecido","hubiéremos parecido","hubiereis parecido","hubieren parecido","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had seemed","hubiera parecido","hubieras parecido","hubiera parecido","hubiéramos parecido","hubierais parecido","hubieran parecido","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Seem! Don't seem!","","parece","parezca","parezcamos","pareced","parezcan","pareciendo","seeming","parecido","seemed" +"parecer","to seem, appear","Imperativo Negativo","Imperative Negative","Presente","Present","Seem! Don't seem!","","no parezcas","no parezca","no parezcamos","no parezcáis","no parezcan","pareciendo","seeming","parecido","seemed" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Presente","Present","I participate, am participating","participo","participas","participa","participamos","participáis","participan","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Futuro","Future","I will participate","participaré","participarás","participará","participaremos","participaréis","participarán","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Imperfecto","Imperfect","I was participating, used to participate, participated","participaba","participabas","participaba","participábamos","participabais","participaban","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Pretérito","Preterite","I participated","participé","participaste","participó","participamos","participasteis","participaron","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Condicional","Conditional","I would participate","participaría","participarías","participaría","participaríamos","participaríais","participarían","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Presente perfecto","Present Perfect","I have participated","he participado","has participado","ha participado","hemos participado","habéis participado","han participado","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have participated","habré participado","habrás participado","habrá participado","habremos participado","habréis participado","habrán participado","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had participated","había participado","habías participado","había participado","habíamos participado","habíais participado","habían participado","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had participated","hube participado","hubiste participado","hubo participado","hubimos participado","hubisteis participado","hubieron participado","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have participated","habría participado","habrías participado","habría participado","habríamos participado","habríais participado","habrían participado","participando","participating","participado","participated" +"participemos" +"participar","to participate, take part in; to share in; to inform, notify","Subjuntivo","Subjunctive","Presente","Present","I participate, am participating","participe","participes","participe","participemos","participéis","participen","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I participated, was participating","participara","participaras","participara","participáramos","participarais","participaran","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Subjuntivo","Subjunctive","Futuro","Future","I will participate","participare","participares","participare","participáremos","participareis","participaren","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have participated, participated","haya participado","hayas participado","haya participado","hayamos participado","hayáis participado","hayan participado","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have participated","hubiere participado","hubieres participado","hubiere participado","hubiéremos participado","hubiereis participado","hubieren participado","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had participated","hubiera participado","hubieras participado","hubiera participado","hubiéramos participado","hubierais participado","hubieran participado","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Participate! Don't participate!","","participa","participe","participemos","participad","participen","participando","participating","participado","participated" +"participar","to participate, take part in; to share in; to inform, notify","Imperativo Negativo","Imperative Negative","Presente","Present","Participate! Don't participate!","","no participes","no participe","no participemos","no participéis","no participen","participando","participating","participado","participated" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Presente","Present","I pass, am passing","paso","pasas","pasa","pasamos","pasáis","pasan","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Futuro","Future","I will pass","pasaré","pasarás","pasará","pasaremos","pasaréis","pasarán","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Imperfecto","Imperfect","I was passing, used to pass, passed","pasaba","pasabas","pasaba","pasábamos","pasabais","pasaban","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Pretérito","Preterite","I passed","pasé","pasaste","pasó","pasamos","pasasteis","pasaron","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Condicional","Conditional","I would pass","pasaría","pasarías","pasaría","pasaríamos","pasaríais","pasarían","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Presente perfecto","Present Perfect","I have passed","he pasado","has pasado","ha pasado","hemos pasado","habéis pasado","han pasado","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have passed","habré pasado","habrás pasado","habrá pasado","habremos pasado","habréis pasado","habrán pasado","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had passed","había pasado","habías pasado","había pasado","habíamos pasado","habíais pasado","habían pasado","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had passed","hube pasado","hubiste pasado","hubo pasado","hubimos pasado","hubisteis pasado","hubieron pasado","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have passed","habría pasado","habrías pasado","habría pasado","habríamos pasado","habríais pasado","habrían pasado","pasando","passing","pasado","passed" +"pasemos" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Subjuntivo","Subjunctive","Presente","Present","I pass, am passing","pase","pases","pase","pasemos","paséis","pasen","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I passed, was passing","pasara","pasaras","pasara","pasáramos","pasarais","pasaran","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Subjuntivo","Subjunctive","Futuro","Future","I will pass","pasare","pasares","pasare","pasáremos","pasareis","pasaren","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have passed, passed","haya pasado","hayas pasado","haya pasado","hayamos pasado","hayáis pasado","hayan pasado","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have passed","hubiere pasado","hubieres pasado","hubiere pasado","hubiéremos pasado","hubiereis pasado","hubieren pasado","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had passed","hubiera pasado","hubieras pasado","hubiera pasado","hubiéramos pasado","hubierais pasado","hubieran pasado","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Pass! Don't pass!","","pasa","pase","pasemos","pasad","pasen","pasando","passing","pasado","passed" +"pasar","to pass, pass by, go; to pass on, hand; to spend [time]; to happen","Imperativo Negativo","Imperative Negative","Presente","Present","Pass! Don't pass!","","no pases","no pase","no pasemos","no paséis","no pasen","pasando","passing","pasado","passed" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Presente","Present","I skate, am skating","patino","patinas","patina","patinamos","patináis","patinan","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Futuro","Future","I will skate","patinaré","patinarás","patinará","patinaremos","patinaréis","patinarán","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Imperfecto","Imperfect","I was skating, used to skate, skated","patinaba","patinabas","patinaba","patinábamos","patinabais","patinaban","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Pretérito","Preterite","I skated","patiné","patinaste","patinó","patinamos","patinasteis","patinaron","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Condicional","Conditional","I would skate","patinaría","patinarías","patinaría","patinaríamos","patinaríais","patinarían","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Presente perfecto","Present Perfect","I have skated","he patinado","has patinado","ha patinado","hemos patinado","habéis patinado","han patinado","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have skated","habré patinado","habrás patinado","habrá patinado","habremos patinado","habréis patinado","habrán patinado","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had skated","había patinado","habías patinado","había patinado","habíamos patinado","habíais patinado","habían patinado","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had skated","hube patinado","hubiste patinado","hubo patinado","hubimos patinado","hubisteis patinado","hubieron patinado","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have skated","habría patinado","habrías patinado","habría patinado","habríamos patinado","habríais patinado","habrían patinado","patinando","skating","patinado","skated" +"patinemos" +"patinar","to skate; to slide, skid","Subjuntivo","Subjunctive","Presente","Present","I skate, am skating","patine","patines","patine","patinemos","patinéis","patinen","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I skated, was skating","patinara","patinaras","patinara","patináramos","patinarais","patinaran","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Subjuntivo","Subjunctive","Futuro","Future","I will skate","patinare","patinares","patinare","patináremos","patinareis","patinaren","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have skated, skated","haya patinado","hayas patinado","haya patinado","hayamos patinado","hayáis patinado","hayan patinado","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have skated","hubiere patinado","hubieres patinado","hubiere patinado","hubiéremos patinado","hubiereis patinado","hubieren patinado","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had skated","hubiera patinado","hubieras patinado","hubiera patinado","hubiéramos patinado","hubierais patinado","hubieran patinado","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Skate! Don't skate!","","patina","patine","patinemos","patinad","patinen","patinando","skating","patinado","skated" +"patinar","to skate; to slide, skid","Imperativo Negativo","Imperative Negative","Presente","Present","Skate! Don't skate!","","no patines","no patine","no patinemos","no patinéis","no patinen","patinando","skating","patinado","skated" +"pedir","to request, ask for","Indicativo","Indicative","Presente","Present","I request, am requesting","pido","pides","pide","pedimos","pedís","piden","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Futuro","Future","I will request","pediré","pedirás","pedirá","pediremos","pediréis","pedirán","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Imperfecto","Imperfect","I was requesting, used to request, requested","pedía","pedías","pedía","pedíamos","pedíais","pedían","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Pretérito","Preterite","I requested","pedí","pediste","pidió","pedimos","pedisteis","pidieron","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Condicional","Conditional","I would request","pediría","pedirías","pediría","pediríamos","pediríais","pedirían","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have requested","he pedido","has pedido","ha pedido","hemos pedido","habéis pedido","han pedido","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have requested","habré pedido","habrás pedido","habrá pedido","habremos pedido","habréis pedido","habrán pedido","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had requested","había pedido","habías pedido","había pedido","habíamos pedido","habíais pedido","habían pedido","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had requested","hube pedido","hubiste pedido","hubo pedido","hubimos pedido","hubisteis pedido","hubieron pedido","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have requested","habría pedido","habrías pedido","habría pedido","habríamos pedido","habríais pedido","habrían pedido","pidiendo","requesting","pedido","requested" +"pidamos" +"pedir","to request, ask for","Subjuntivo","Subjunctive","Presente","Present","I request, am requesting","pida","pidas","pida","pidamos","pidáis","pidan","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I requested, was requesting","pidiera","pidieras","pidiera","pidiéramos","pidierais","pidieran","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Subjuntivo","Subjunctive","Futuro","Future","I will request","pidiere","pidieres","pidiere","pidiéremos","pidiereis","pidieren","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have requested, requested","haya pedido","hayas pedido","haya pedido","hayamos pedido","hayáis pedido","hayan pedido","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have requested","hubiere pedido","hubieres pedido","hubiere pedido","hubiéremos pedido","hubiereis pedido","hubieren pedido","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had requested","hubiera pedido","hubieras pedido","hubiera pedido","hubiéramos pedido","hubierais pedido","hubieran pedido","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Request! Don't request!","","pide","pida","pidamos","pedid","pidan","pidiendo","requesting","pedido","requested" +"pedir","to request, ask for","Imperativo Negativo","Imperative Negative","Presente","Present","Request! Don't request!","","no pidas","no pida","no pidamos","no pidáis","no pidan","pidiendo","requesting","pedido","requested" +"pegar","to stick, glue, hit","Indicativo","Indicative","Presente","Present","I stick, am sticking","pego","pegas","pega","pegamos","pegáis","pegan","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Futuro","Future","I will stick","pegaré","pegarás","pegará","pegaremos","pegaréis","pegarán","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Imperfecto","Imperfect","I was sticking, used to stick, stuck","pegaba","pegabas","pegaba","pegábamos","pegabais","pegaban","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Pretérito","Preterite","I stuck","pegué","pegaste","pegó","pegamos","pegasteis","pegaron","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Condicional","Conditional","I would stick","pegaría","pegarías","pegaría","pegaríamos","pegaríais","pegarían","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Presente perfecto","Present Perfect","I have stuck","he pegado","has pegado","ha pegado","hemos pegado","habéis pegado","han pegado","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have stuck","habré pegado","habrás pegado","habrá pegado","habremos pegado","habréis pegado","habrán pegado","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had stuck","había pegado","habías pegado","había pegado","habíamos pegado","habíais pegado","habían pegado","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had stuck","hube pegado","hubiste pegado","hubo pegado","hubimos pegado","hubisteis pegado","hubieron pegado","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have stuck","habría pegado","habrías pegado","habría pegado","habríamos pegado","habríais pegado","habrían pegado","pegando","sticking","pegado","stuck" +"peguemos" +"pegar","to stick, glue, hit","Subjuntivo","Subjunctive","Presente","Present","I stick, am sticking","pegue","pegues","pegue","peguemos","peguéis","peguen","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I stuck, was sticking","pegara","pegaras","pegara","pegáramos","pegarais","pegaran","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Subjuntivo","Subjunctive","Futuro","Future","I will stick","pegare","pegares","pegare","pegáremos","pegareis","pegaren","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have stuck, stuck","haya pegado","hayas pegado","haya pegado","hayamos pegado","hayáis pegado","hayan pegado","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have stuck","hubiere pegado","hubieres pegado","hubiere pegado","hubiéremos pegado","hubiereis pegado","hubieren pegado","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had stuck","hubiera pegado","hubieras pegado","hubiera pegado","hubiéramos pegado","hubierais pegado","hubieran pegado","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Stick! Don't stick!","","pega","pegue","peguemos","pegad","peguen","pegando","sticking","pegado","stuck" +"pegar","to stick, glue, hit","Imperativo Negativo","Imperative Negative","Presente","Present","Stick! Don't stick!","","no pegues","no pegue","no peguemos","no peguéis","no peguen","pegando","sticking","pegado","stuck" +"peinar","to comb","Indicativo","Indicative","Presente","Present","I comb, am combing","peino","peinas","peina","peinamos","peináis","peinan","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Futuro","Future","I will comb","peinaré","peinarás","peinará","peinaremos","peinaréis","peinarán","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Imperfecto","Imperfect","I was combing, used to comb, combed","peinaba","peinabas","peinaba","peinábamos","peinabais","peinaban","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Pretérito","Preterite","I combed","peiné","peinaste","peinó","peinamos","peinasteis","peinaron","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Condicional","Conditional","I would comb","peinaría","peinarías","peinaría","peinaríamos","peinaríais","peinarían","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Presente perfecto","Present Perfect","I have combed","he peinado","has peinado","ha peinado","hemos peinado","habéis peinado","han peinado","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have combed","habré peinado","habrás peinado","habrá peinado","habremos peinado","habréis peinado","habrán peinado","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had combed","había peinado","habías peinado","había peinado","habíamos peinado","habíais peinado","habían peinado","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had combed","hube peinado","hubiste peinado","hubo peinado","hubimos peinado","hubisteis peinado","hubieron peinado","peinando","combing","peinado","combed" +"peinar","to comb","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have combed","habría peinado","habrías peinado","habría peinado","habríamos peinado","habríais peinado","habrían peinado","peinando","combing","peinado","combed" +"peinemos" +"peinar","to comb","Subjuntivo","Subjunctive","Presente","Present","I comb, am combing","peine","peines","peine","peinemos","peinéis","peinen","peinando","combing","peinado","combed" +"peinar","to comb","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I combed, was combing","peinara","peinaras","peinara","peináramos","peinarais","peinaran","peinando","combing","peinado","combed" +"peinar","to comb","Subjuntivo","Subjunctive","Futuro","Future","I will comb","peinare","peinares","peinare","peináremos","peinareis","peinaren","peinando","combing","peinado","combed" +"peinar","to comb","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have combed, combed","haya peinado","hayas peinado","haya peinado","hayamos peinado","hayáis peinado","hayan peinado","peinando","combing","peinado","combed" +"peinar","to comb","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have combed","hubiere peinado","hubieres peinado","hubiere peinado","hubiéremos peinado","hubiereis peinado","hubieren peinado","peinando","combing","peinado","combed" +"peinar","to comb","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had combed","hubiera peinado","hubieras peinado","hubiera peinado","hubiéramos peinado","hubierais peinado","hubieran peinado","peinando","combing","peinado","combed" +"peinar","to comb","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Comb! Don't comb!","","peina","peine","peinemos","peinad","peinen","peinando","combing","peinado","combed" +"peinar","to comb","Imperativo Negativo","Imperative Negative","Presente","Present","Comb! Don't comb!","","no peines","no peine","no peinemos","no peinéis","no peinen","peinando","combing","peinado","combed" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Presente","Present","I comb my hair, am combing my hair","me peino","te peinas","se peina","nos peinamos","os peináis","se peinan","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Futuro","Future","I will comb my hair","me peinaré","te peinarás","se peinará","nos peinaremos","os peinaréis","se peinarán","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Imperfecto","Imperfect","I was combing my hair, used to comb my hair, combed my hair","me peinaba","te peinabas","se peinaba","nos peinábamos","os peinabais","se peinaban","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Pretérito","Preterite","I combed my hair","me peiné","te peinaste","se peinó","nos peinamos","os peinasteis","se peinaron","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Condicional","Conditional","I would comb my hair","me peinaría","te peinarías","se peinaría","nos peinaríamos","os peinaríais","se peinarían","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Presente perfecto","Present Perfect","I have combed my hair","me he peinado","te has peinado","se ha peinado","nos hemos peinado","os habéis peinado","se han peinado","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have combed my hair","me habré peinado","te habrás peinado","se habrá peinado","nos habremos peinado","os habréis peinado","se habrán peinado","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had combed my hair","me había peinado","te habías peinado","se había peinado","nos habíamos peinado","os habíais peinado","se habían peinado","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had combed my hair","me hube peinado","te hubiste peinado","se hubo peinado","nos hubimos peinado","os hubisteis peinado","se hubieron peinado","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have combed my hair","me habría peinado","te habrías peinado","se habría peinado","nos habríamos peinado","os habríais peinado","se habrían peinado","peinándose","combing my hair","peinado","combed my hair" +"nos peinemos" +"peinarse","to comb one's hair; to do one's hair","Subjuntivo","Subjunctive","Presente","Present","I comb my hair, am combing my hair","me peine","te peines","se peine","nos peinemos","os peinéis","se peinen","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I combed my hair, was combing my hair","me peinara","te peinaras","se peinara","nos peináramos","os peinarais","se peinaran","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Subjuntivo","Subjunctive","Futuro","Future","I will comb my hair","me peinare","te peinares","se peinare","nos peináremos","os peinareis","se peinaren","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have combed my hair, combed my hair","me haya peinado","te hayas peinado","se haya peinado","nos hayamos peinado","os hayáis peinado","se hayan peinado","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have combed my hair","me hubiere peinado","te hubieres peinado","se hubiere peinado","nos hubiéremos peinado","os hubiereis peinado","se hubieren peinado","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had combed my hair","me hubiera peinado","te hubieras peinado","se hubiera peinado","nos hubiéramos peinado","os hubierais peinado","se hubieran peinado","peinándose","combing my hair","peinado","combed my hair" +"peinarse","to comb one's hair; to do one's hair","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Comb my hair! Don't comb my hair!","","péinate","péinese","nos peinemos","peinaos","péinense","peinándose","combing my hair","peinado","combed my hair", +"peinarse","to comb one's hair; to do one's hair","Imperativo Negativo","Imperative Negative","Presente","Present","Comb my hair! Don't comb my hair!","","no te peines","no se peine","no nos peinemos","no os peinéis","no se peinen","peinándose","combing my hair","peinado","combed my hair", +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Presente","Present","I fight, am fighting","peleo","peleas","pelea","peleamos","peleáis","pelean","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Futuro","Future","I will fight","pelearé","pelearás","peleará","pelearemos","pelearéis","pelearán","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Imperfecto","Imperfect","I was fighting, used to fight, fought","peleaba","peleabas","peleaba","peleábamos","peleabais","peleaban","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Pretérito","Preterite","I fought","peleé","peleaste","peleó","peleamos","peleasteis","pelearon","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Condicional","Conditional","I would fight","pelearía","pelearías","pelearía","pelearíamos","pelearíais","pelearían","peleando","fighting","peleado","fought" +"reinar","to reign, rule","Indicativo","Indicative","Presente","Present","I reign, am reigning","reino","reinas","reina","reinamos","reináis","reinan","reinando","reigning","reinado","reigned" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fought","he peleado","has peleado","ha peleado","hemos peleado","habéis peleado","han peleado","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fought","habré peleado","habrás peleado","habrá peleado","habremos peleado","habréis peleado","habrán peleado","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fought","había peleado","habías peleado","había peleado","habíamos peleado","habíais peleado","habían peleado","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fought","hube peleado","hubiste peleado","hubo peleado","hubimos peleado","hubisteis peleado","hubieron peleado","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fought","habría peleado","habrías peleado","habría peleado","habríamos peleado","habríais peleado","habrían peleado","peleando","fighting","peleado","fought" +"peleemos" +"pelear","to fight; to brawl, scruffle","Subjuntivo","Subjunctive","Presente","Present","I fight, am fighting","pelee","pelees","pelee","peleemos","peleéis","peleen","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fought, was fighting","peleara","pelearas","peleara","peleáramos","pelearais","pelearan","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Subjuntivo","Subjunctive","Futuro","Future","I will fight","peleare","peleares","peleare","peleáremos","peleareis","pelearen","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fought, fought","haya peleado","hayas peleado","haya peleado","hayamos peleado","hayáis peleado","hayan peleado","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fought","hubiere peleado","hubieres peleado","hubiere peleado","hubiéremos peleado","hubiereis peleado","hubieren peleado","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fought","hubiera peleado","hubieras peleado","hubiera peleado","hubiéramos peleado","hubierais peleado","hubieran peleado","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fight! Don't fight!","","pelea","pelee","peleemos","pelead","peleen","peleando","fighting","peleado","fought" +"pelear","to fight; to brawl, scruffle","Imperativo Negativo","Imperative Negative","Presente","Present","Fight! Don't fight!","","no pelees","no pelee","no peleemos","no peleéis","no peleen","peleando","fighting","peleado","fought" +"pensar","to think","Indicativo","Indicative","Presente","Present","I think, am thinking","pienso","piensas","piensa","pensamos","pensáis","piensan","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Futuro","Future","I will think","pensaré","pensarás","pensará","pensaremos","pensaréis","pensarán","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Imperfecto","Imperfect","I was thinking, used to think, thought","pensaba","pensabas","pensaba","pensábamos","pensabais","pensaban","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Pretérito","Preterite","I thought","pensé","pensaste","pensó","pensamos","pensasteis","pensaron","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Condicional","Conditional","I would think","pensaría","pensarías","pensaría","pensaríamos","pensaríais","pensarían","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Presente perfecto","Present Perfect","I have thought","he pensado","has pensado","ha pensado","hemos pensado","habéis pensado","han pensado","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have thought","habré pensado","habrás pensado","habrá pensado","habremos pensado","habréis pensado","habrán pensado","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had thought","había pensado","habías pensado","había pensado","habíamos pensado","habíais pensado","habían pensado","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had thought","hube pensado","hubiste pensado","hubo pensado","hubimos pensado","hubisteis pensado","hubieron pensado","pensando","thinking","pensado","thought" +"pensar","to think","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have thought","habría pensado","habrías pensado","habría pensado","habríamos pensado","habríais pensado","habrían pensado","pensando","thinking","pensado","thought" +"pensemos" +"pensar","to think","Subjuntivo","Subjunctive","Presente","Present","I think, am thinking","piense","pienses","piense","pensemos","penséis","piensen","pensando","thinking","pensado","thought" +"pensar","to think","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I thought, was thinking","pensara","pensaras","pensara","pensáramos","pensarais","pensaran","pensando","thinking","pensado","thought" +"pensar","to think","Subjuntivo","Subjunctive","Futuro","Future","I will think","pensare","pensares","pensare","pensáremos","pensareis","pensaren","pensando","thinking","pensado","thought" +"pensar","to think","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have thought, thought","haya pensado","hayas pensado","haya pensado","hayamos pensado","hayáis pensado","hayan pensado","pensando","thinking","pensado","thought" +"pensar","to think","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have thought","hubiere pensado","hubieres pensado","hubiere pensado","hubiéremos pensado","hubiereis pensado","hubieren pensado","pensando","thinking","pensado","thought" +"pensar","to think","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had thought","hubiera pensado","hubieras pensado","hubiera pensado","hubiéramos pensado","hubierais pensado","hubieran pensado","pensando","thinking","pensado","thought" +"pensar","to think","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Think! Don't think!","","piensa","piense","pensemos","pensad","piensen","pensando","thinking","pensado","thought" +"pensar","to think","Imperativo Negativo","Imperative Negative","Presente","Present","Think! Don't think!","","no pienses","no piense","no pensemos","no penséis","no piensen","pensando","thinking","pensado","thought" +"perder","to lose","Indicativo","Indicative","Presente","Present","I lose, am losing","pierdo","pierdes","pierde","perdemos","perdéis","pierden","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Futuro","Future","I will lose","perderé","perderás","perderá","perderemos","perderéis","perderán","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Imperfecto","Imperfect","I was losing, used to lose, lost","perdía","perdías","perdía","perdíamos","perdíais","perdían","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Pretérito","Preterite","I lost","perdí","perdiste","perdió","perdimos","perdisteis","perdieron","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Condicional","Conditional","I would lose","perdería","perderías","perdería","perderíamos","perderíais","perderían","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lost","he perdido","has perdido","ha perdido","hemos perdido","habéis perdido","han perdido","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lost","habré perdido","habrás perdido","habrá perdido","habremos perdido","habréis perdido","habrán perdido","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lost","había perdido","habías perdido","había perdido","habíamos perdido","habíais perdido","habían perdido","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lost","hube perdido","hubiste perdido","hubo perdido","hubimos perdido","hubisteis perdido","hubieron perdido","perdiendo","losing","perdido","lost" +"perder","to lose","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lost","habría perdido","habrías perdido","habría perdido","habríamos perdido","habríais perdido","habrían perdido","perdiendo","losing","perdido","lost" +"perdamos" +"perder","to lose","Subjuntivo","Subjunctive","Presente","Present","I lose, am losing","pierda","pierdas","pierda","perdamos","perdáis","pierdan","perdiendo","losing","perdido","lost" +"perder","to lose","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lost, was losing","perdiera","perdieras","perdiera","perdiéramos","perdierais","perdieran","perdiendo","losing","perdido","lost" +"perder","to lose","Subjuntivo","Subjunctive","Futuro","Future","I will lose","perdiere","perdieres","perdiere","perdiéremos","perdiereis","perdieren","perdiendo","losing","perdido","lost" +"perder","to lose","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lost, lost","haya perdido","hayas perdido","haya perdido","hayamos perdido","hayáis perdido","hayan perdido","perdiendo","losing","perdido","lost" +"perder","to lose","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lost","hubiere perdido","hubieres perdido","hubiere perdido","hubiéremos perdido","hubiereis perdido","hubieren perdido","perdiendo","losing","perdido","lost" +"perder","to lose","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lost","hubiera perdido","hubieras perdido","hubiera perdido","hubiéramos perdido","hubierais perdido","hubieran perdido","perdiendo","losing","perdido","lost" +"perder","to lose","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Lose! Don't lose!","","pierde","pierda","perdamos","perded","pierdan","perdiendo","losing","perdido","lost" +"perder","to lose","Imperativo Negativo","Imperative Negative","Presente","Present","Lose! Don't lose!","","no pierdas","no pierda","no perdamos","no perdáis","no pierdan","perdiendo","losing","perdido","lost" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Presente","Present","I forgive, am forgiving","perdono","perdonas","perdona","perdonamos","perdonáis","perdonan","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Futuro","Future","I will forgive","perdonaré","perdonarás","perdonará","perdonaremos","perdonaréis","perdonarán","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Imperfecto","Imperfect","I was forgiving, used to forgive, forgave","perdonaba","perdonabas","perdonaba","perdonábamos","perdonabais","perdonaban","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Pretérito","Preterite","I forgave","perdoné","perdonaste","perdonó","perdonamos","perdonasteis","perdonaron","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Condicional","Conditional","I would forgive","perdonaría","perdonarías","perdonaría","perdonaríamos","perdonaríais","perdonarían","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Presente perfecto","Present Perfect","I have forgiven","he perdonado","has perdonado","ha perdonado","hemos perdonado","habéis perdonado","han perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have forgiven","habré perdonado","habrás perdonado","habrá perdonado","habremos perdonado","habréis perdonado","habrán perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had forgiven","había perdonado","habías perdonado","había perdonado","habíamos perdonado","habíais perdonado","habían perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had forgiven","hube perdonado","hubiste perdonado","hubo perdonado","hubimos perdonado","hubisteis perdonado","hubieron perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have forgiven","habría perdonado","habrías perdonado","habría perdonado","habríamos perdonado","habríais perdonado","habrían perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonemos" +"perdonar","to forgive, pardon, excuse","Subjuntivo","Subjunctive","Presente","Present","I forgive, am forgiving","perdone","perdones","perdone","perdonemos","perdonéis","perdonen","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I forgave, was forgiving","perdonara","perdonaras","perdonara","perdonáramos","perdonarais","perdonaran","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Subjuntivo","Subjunctive","Futuro","Future","I will forgive","perdonare","perdonares","perdonare","perdonáremos","perdonareis","perdonaren","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have forgiven, forgave","haya perdonado","hayas perdonado","haya perdonado","hayamos perdonado","hayáis perdonado","hayan perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have forgiven","hubiere perdonado","hubieres perdonado","hubiere perdonado","hubiéremos perdonado","hubiereis perdonado","hubieren perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had forgiven","hubiera perdonado","hubieras perdonado","hubiera perdonado","hubiéramos perdonado","hubierais perdonado","hubieran perdonado","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Forgive! Don't forgive!","","perdona","perdone","perdonemos","perdonad","perdonen","perdonando","forgiving","perdonado","forgiven" +"perdonar","to forgive, pardon, excuse","Imperativo Negativo","Imperative Negative","Presente","Present","Forgive! Don't forgive!","","no perdones","no perdone","no perdonemos","no perdonéis","no perdonen","perdonando","forgiving","perdonado","forgiven" +"permanecer","to stay, remain","Indicativo","Indicative","Presente","Present","I stay, am staying","permanezco","permaneces","permanece","permanecemos","permanecéis","permanecen","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Futuro","Future","I will stay","permaneceré","permanecerás","permanecerá","permaneceremos","permaneceréis","permanecerán","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Imperfecto","Imperfect","I was staying, used to stay, stayed","permanecía","permanecías","permanecía","permanecíamos","permanecíais","permanecían","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Pretérito","Preterite","I stayed","permanecí","permaneciste","permaneció","permanecimos","permanecisteis","permanecieron","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Condicional","Conditional","I would stay","permanecería","permanecerías","permanecería","permaneceríamos","permaneceríais","permanecerían","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have stayed","he permanecido","has permanecido","ha permanecido","hemos permanecido","habéis permanecido","han permanecido","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have stayed","habré permanecido","habrás permanecido","habrá permanecido","habremos permanecido","habréis permanecido","habrán permanecido","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had stayed","había permanecido","habías permanecido","había permanecido","habíamos permanecido","habíais permanecido","habían permanecido","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had stayed","hube permanecido","hubiste permanecido","hubo permanecido","hubimos permanecido","hubisteis permanecido","hubieron permanecido","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have stayed","habría permanecido","habrías permanecido","habría permanecido","habríamos permanecido","habríais permanecido","habrían permanecido","permaneciendo","staying","permanecido","stayed" +"permanezcamos" +"permanecer","to stay, remain","Subjuntivo","Subjunctive","Presente","Present","I stay, am staying","permanezca","permanezcas","permanezca","permanezcamos","permanezcáis","permanezcan","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I stayed, was staying","permaneciera","permanecieras","permaneciera","permaneciéramos","permanecierais","permanecieran","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Subjuntivo","Subjunctive","Futuro","Future","I will stay","permaneciere","permanecieres","permaneciere","permaneciéremos","permaneciereis","permanecieren","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have stayed, stayed","haya permanecido","hayas permanecido","haya permanecido","hayamos permanecido","hayáis permanecido","hayan permanecido","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have stayed","hubiere permanecido","hubieres permanecido","hubiere permanecido","hubiéremos permanecido","hubiereis permanecido","hubieren permanecido","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had stayed","hubiera permanecido","hubieras permanecido","hubiera permanecido","hubiéramos permanecido","hubierais permanecido","hubieran permanecido","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Stay! Don't stay!","","permanece","permanezca","permanezcamos","permaneced","permanezcan","permaneciendo","staying","permanecido","stayed" +"permanecer","to stay, remain","Imperativo Negativo","Imperative Negative","Presente","Present","Stay! Don't stay!","","no permanezcas","no permanezca","no permanezcamos","no permanezcáis","no permanezcan","permaneciendo","staying","permanecido","stayed" +"permitir","to permit, allow","Indicativo","Indicative","Presente","Present","I permit, am permitting","permito","permites","permite","permitimos","permitís","permiten","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Futuro","Future","I will permit","permitiré","permitirás","permitirá","permitiremos","permitiréis","permitirán","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Imperfecto","Imperfect","I was permitting, used to permit, permitted","permitía","permitías","permitía","permitíamos","permitíais","permitían","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Pretérito","Preterite","I permitted","permití","permitiste","permitió","permitimos","permitisteis","permitieron","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Condicional","Conditional","I would permit","permitiría","permitirías","permitiría","permitiríamos","permitiríais","permitirían","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Presente perfecto","Present Perfect","I have permitted","he permitido","has permitido","ha permitido","hemos permitido","habéis permitido","han permitido","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have permitted","habré permitido","habrás permitido","habrá permitido","habremos permitido","habréis permitido","habrán permitido","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had permitted","había permitido","habías permitido","había permitido","habíamos permitido","habíais permitido","habían permitido","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had permitted","hube permitido","hubiste permitido","hubo permitido","hubimos permitido","hubisteis permitido","hubieron permitido","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have permitted","habría permitido","habrías permitido","habría permitido","habríamos permitido","habríais permitido","habrían permitido","permitiendo","permitting","permitido","permitted" +"permitamos" +"permitir","to permit, allow","Subjuntivo","Subjunctive","Presente","Present","I permit, am permitting","permita","permitas","permita","permitamos","permitáis","permitan","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I permitted, was permitting","permitiera","permitieras","permitiera","permitiéramos","permitierais","permitieran","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Subjuntivo","Subjunctive","Futuro","Future","I will permit","permitiere","permitieres","permitiere","permitiéremos","permitiereis","permitieren","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have permitted, permitted","haya permitido","hayas permitido","haya permitido","hayamos permitido","hayáis permitido","hayan permitido","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have permitted","hubiere permitido","hubieres permitido","hubiere permitido","hubiéremos permitido","hubiereis permitido","hubieren permitido","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had permitted","hubiera permitido","hubieras permitido","hubiera permitido","hubiéramos permitido","hubierais permitido","hubieran permitido","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Permit! Don't permit!","","permite","permita","permitamos","permitid","permitan","permitiendo","permitting","permitido","permitted" +"permitir","to permit, allow","Imperativo Negativo","Imperative Negative","Presente","Present","Permit! Don't permit!","","no permitas","no permita","no permitamos","no permitáis","no permitan","permitiendo","permitting","permitido","permitted" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Presente","Present","I pursue, am pursuing","persigo","persigues","persigue","perseguimos","perseguís","persiguen","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Futuro","Future","I will pursue","perseguiré","perseguirás","perseguirá","perseguiremos","perseguiréis","perseguirán","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Imperfecto","Imperfect","I was pursuing, used to pursue, pursued","perseguía","perseguías","perseguía","perseguíamos","perseguíais","perseguían","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Pretérito","Preterite","I pursued","perseguí","perseguiste","persiguió","perseguimos","perseguisteis","persiguieron","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Condicional","Conditional","I would pursue","perseguiría","perseguirías","perseguiría","perseguiríamos","perseguiríais","perseguirían","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Presente perfecto","Present Perfect","I have pursued","he perseguido","has perseguido","ha perseguido","hemos perseguido","habéis perseguido","han perseguido","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have pursued","habré perseguido","habrás perseguido","habrá perseguido","habremos perseguido","habréis perseguido","habrán perseguido","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had pursued","había perseguido","habías perseguido","había perseguido","habíamos perseguido","habíais perseguido","habían perseguido","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had pursued","hube perseguido","hubiste perseguido","hubo perseguido","hubimos perseguido","hubisteis perseguido","hubieron perseguido","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have pursued","habría perseguido","habrías perseguido","habría perseguido","habríamos perseguido","habríais perseguido","habrían perseguido","persiguiendo","pursuing","perseguido","pursued" +"persigamos" +"perseguir","to pursue, chase, hunt down","Subjuntivo","Subjunctive","Presente","Present","I pursue, am pursuing","persiga","persigas","persiga","persigamos","persigáis","persigan","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I pursued, was pursuing","persiguiera","persiguieras","persiguiera","persiguiéramos","persiguierais","persiguieran","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Subjuntivo","Subjunctive","Futuro","Future","I will pursue","persiguiere","persiguieres","persiguiere","persiguiéremos","persiguiereis","persiguieren","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have pursued, pursued","haya perseguido","hayas perseguido","haya perseguido","hayamos perseguido","hayáis perseguido","hayan perseguido","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have pursued","hubiere perseguido","hubieres perseguido","hubiere perseguido","hubiéremos perseguido","hubiereis perseguido","hubieren perseguido","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had pursued","hubiera perseguido","hubieras perseguido","hubiera perseguido","hubiéramos perseguido","hubierais perseguido","hubieran perseguido","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Pursue! Don't pursue!","","persigue","persiga","persigamos","perseguid","persigan","persiguiendo","pursuing","perseguido","pursued" +"perseguir","to pursue, chase, hunt down","Imperativo Negativo","Imperative Negative","Presente","Present","Pursue! Don't pursue!","","no persigas","no persiga","no persigamos","no persigáis","no persigan","persiguiendo","pursuing","perseguido","pursued" +"pertenecer","to belong, pertain","Indicativo","Indicative","Presente","Present","I belong, am belonging","pertenezco","perteneces","pertenece","pertenecemos","pertenecéis","pertenecen","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Futuro","Future","I will belong","perteneceré","pertenecerás","pertenecerá","perteneceremos","perteneceréis","pertenecerán","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Imperfecto","Imperfect","I was belonging, used to belong, belonged","pertenecía","pertenecías","pertenecía","pertenecíamos","pertenecíais","pertenecían","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Pretérito","Preterite","I belonged","pertenecí","perteneciste","perteneció","pertenecimos","pertenecisteis","pertenecieron","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Condicional","Conditional","I would belong","pertenecería","pertenecerías","pertenecería","perteneceríamos","perteneceríais","pertenecerían","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have belonged","he pertenecido","has pertenecido","ha pertenecido","hemos pertenecido","habéis pertenecido","han pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have belonged","habré pertenecido","habrás pertenecido","habrá pertenecido","habremos pertenecido","habréis pertenecido","habrán pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had belonged","había pertenecido","habías pertenecido","había pertenecido","habíamos pertenecido","habíais pertenecido","habían pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had belonged","hube pertenecido","hubiste pertenecido","hubo pertenecido","hubimos pertenecido","hubisteis pertenecido","hubieron pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have belonged","habría pertenecido","habrías pertenecido","habría pertenecido","habríamos pertenecido","habríais pertenecido","habrían pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenezcamos" +"pertenecer","to belong, pertain","Subjuntivo","Subjunctive","Presente","Present","I belong, am belonging","pertenezca","pertenezcas","pertenezca","pertenezcamos","pertenezcáis","pertenezcan","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I belonged, was belonging","perteneciera","pertenecieras","perteneciera","perteneciéramos","pertenecierais","pertenecieran","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Subjuntivo","Subjunctive","Futuro","Future","I will belong","perteneciere","pertenecieres","perteneciere","perteneciéremos","perteneciereis","pertenecieren","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have belonged, belonged","haya pertenecido","hayas pertenecido","haya pertenecido","hayamos pertenecido","hayáis pertenecido","hayan pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have belonged","hubiere pertenecido","hubieres pertenecido","hubiere pertenecido","hubiéremos pertenecido","hubiereis pertenecido","hubieren pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had belonged","hubiera pertenecido","hubieras pertenecido","hubiera pertenecido","hubiéramos pertenecido","hubierais pertenecido","hubieran pertenecido","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Belong! Don't belong!","","pertenece","pertenezca","pertenezcamos","perteneced","pertenezcan","perteneciendo","belonging","pertenecido","belonged" +"pertenecer","to belong, pertain","Imperativo Negativo","Imperative Negative","Presente","Present","Belong! Don't belong!","","no pertenezcas","no pertenezca","no pertenezcamos","no pertenezcáis","no pertenezcan","perteneciendo","belonging","pertenecido","belonged" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Presente","Present","I weigh, am weighing","peso","pesas","pesa","pesamos","pesáis","pesan","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Futuro","Future","I will weigh","pesaré","pesarás","pesará","pesaremos","pesaréis","pesarán","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Imperfecto","Imperfect","I was weighing, used to weigh, weighed","pesaba","pesabas","pesaba","pesábamos","pesabais","pesaban","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Pretérito","Preterite","I weighed","pesé","pesaste","pesó","pesamos","pesasteis","pesaron","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Condicional","Conditional","I would weigh","pesaría","pesarías","pesaría","pesaríamos","pesaríais","pesarían","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Presente perfecto","Present Perfect","I have weighed","he pesado","has pesado","ha pesado","hemos pesado","habéis pesado","han pesado","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have weighed","habré pesado","habrás pesado","habrá pesado","habremos pesado","habréis pesado","habrán pesado","pesando","weighing","pesado","weighed" +"reinar","to reign, rule","Indicativo","Indicative","Futuro","Future","I will reign","reinaré","reinarás","reinará","reinaremos","reinaréis","reinarán","reinando","reigning","reinado","reigned" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had weighed","había pesado","habías pesado","había pesado","habíamos pesado","habíais pesado","habían pesado","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had weighed","hube pesado","hubiste pesado","hubo pesado","hubimos pesado","hubisteis pesado","hubieron pesado","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have weighed","habría pesado","habrías pesado","habría pesado","habríamos pesado","habríais pesado","habrían pesado","pesando","weighing","pesado","weighed" +"pesemos" +"pesar","to weigh; to weigh down, weigh heavily;","Subjuntivo","Subjunctive","Presente","Present","I weigh, am weighing","pese","peses","pese","pesemos","peséis","pesen","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I weighed, was weighing","pesara","pesaras","pesara","pesáramos","pesarais","pesaran","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Subjuntivo","Subjunctive","Futuro","Future","I will weigh","pesare","pesares","pesare","pesáremos","pesareis","pesaren","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have weighed, weighed","haya pesado","hayas pesado","haya pesado","hayamos pesado","hayáis pesado","hayan pesado","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have weighed","hubiere pesado","hubieres pesado","hubiere pesado","hubiéremos pesado","hubiereis pesado","hubieren pesado","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had weighed","hubiera pesado","hubieras pesado","hubiera pesado","hubiéramos pesado","hubierais pesado","hubieran pesado","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Weigh! Don't weigh!","","pesa","pese","pesemos","pesad","pesen","pesando","weighing","pesado","weighed" +"pesar","to weigh; to weigh down, weigh heavily;","Imperativo Negativo","Imperative Negative","Presente","Present","Weigh! Don't weigh!","","no peses","no pese","no pesemos","no peséis","no pesen","pesando","weighing","pesado","weighed" +"pescar","to fish","Indicativo","Indicative","Presente","Present","I fish, am fishing","pesco","pescas","pesca","pescamos","pescáis","pescan","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Futuro","Future","I will fish","pescaré","pescarás","pescará","pescaremos","pescaréis","pescarán","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Imperfecto","Imperfect","I was fishing, used to fish, fished","pescaba","pescabas","pescaba","pescábamos","pescabais","pescaban","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Pretérito","Preterite","I fished","pesqué","pescaste","pescó","pescamos","pescasteis","pescaron","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Condicional","Conditional","I would fish","pescaría","pescarías","pescaría","pescaríamos","pescaríais","pescarían","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Presente perfecto","Present Perfect","I have fished","he pescado","has pescado","ha pescado","hemos pescado","habéis pescado","han pescado","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have fished","habré pescado","habrás pescado","habrá pescado","habremos pescado","habréis pescado","habrán pescado","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had fished","había pescado","habías pescado","había pescado","habíamos pescado","habíais pescado","habían pescado","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had fished","hube pescado","hubiste pescado","hubo pescado","hubimos pescado","hubisteis pescado","hubieron pescado","pescando","fishing","pescado","fished" +"pescar","to fish","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have fished","habría pescado","habrías pescado","habría pescado","habríamos pescado","habríais pescado","habrían pescado","pescando","fishing","pescado","fished" +"pesquemos" +"pescar","to fish","Subjuntivo","Subjunctive","Presente","Present","I fish, am fishing","pesque","pesques","pesque","pesquemos","pesquéis","pesquen","pescando","fishing","pescado","fished" +"pescar","to fish","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I fished, was fishing","pescara","pescaras","pescara","pescáramos","pescarais","pescaran","pescando","fishing","pescado","fished" +"pescar","to fish","Subjuntivo","Subjunctive","Futuro","Future","I will fish","pescare","pescares","pescare","pescáremos","pescareis","pescaren","pescando","fishing","pescado","fished" +"pescar","to fish","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have fished, fished","haya pescado","hayas pescado","haya pescado","hayamos pescado","hayáis pescado","hayan pescado","pescando","fishing","pescado","fished" +"pescar","to fish","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have fished","hubiere pescado","hubieres pescado","hubiere pescado","hubiéremos pescado","hubiereis pescado","hubieren pescado","pescando","fishing","pescado","fished" +"pescar","to fish","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had fished","hubiera pescado","hubieras pescado","hubiera pescado","hubiéramos pescado","hubierais pescado","hubieran pescado","pescando","fishing","pescado","fished" +"pescar","to fish","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fish! Don't fish!","","pesca","pesque","pesquemos","pescad","pesquen","pescando","fishing","pescado","fished" +"pescar","to fish","Imperativo Negativo","Imperative Negative","Presente","Present","Fish! Don't fish!","","no pesques","no pesque","no pesquemos","no pesquéis","no pesquen","pescando","fishing","pescado","fished" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Presente","Present","I prick, am pricking","pico","picas","pica","picamos","picáis","pican","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Futuro","Future","I will prick","picaré","picarás","picará","picaremos","picaréis","picarán","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Imperfecto","Imperfect","I was pricking, used to prick, pricked","picaba","picabas","picaba","picábamos","picabais","picaban","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Pretérito","Preterite","I pricked","piqué","picaste","picó","picamos","picasteis","picaron","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Condicional","Conditional","I would prick","picaría","picarías","picaría","picaríamos","picaríais","picarían","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Presente perfecto","Present Perfect","I have pricked","he picado","has picado","ha picado","hemos picado","habéis picado","han picado","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have pricked","habré picado","habrás picado","habrá picado","habremos picado","habréis picado","habrán picado","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had pricked","había picado","habías picado","había picado","habíamos picado","habíais picado","habían picado","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had pricked","hube picado","hubiste picado","hubo picado","hubimos picado","hubisteis picado","hubieron picado","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have pricked","habría picado","habrías picado","habría picado","habríamos picado","habríais picado","habrían picado","picando","pricking","picado","pricked" +"piquemos" +"picar","to prick, puncture, perforate; to sting, bite","Subjuntivo","Subjunctive","Presente","Present","I prick, am pricking","pique","piques","pique","piquemos","piquéis","piquen","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I pricked, was pricking","picara","picaras","picara","picáramos","picarais","picaran","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Subjuntivo","Subjunctive","Futuro","Future","I will prick","picare","picares","picare","picáremos","picareis","picaren","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have pricked, pricked","haya picado","hayas picado","haya picado","hayamos picado","hayáis picado","hayan picado","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have pricked","hubiere picado","hubieres picado","hubiere picado","hubiéremos picado","hubiereis picado","hubieren picado","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had pricked","hubiera picado","hubieras picado","hubiera picado","hubiéramos picado","hubierais picado","hubieran picado","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Prick! Don't prick!","","pica","pique","piquemos","picad","piquen","picando","pricking","picado","pricked" +"picar","to prick, puncture, perforate; to sting, bite","Imperativo Negativo","Imperative Negative","Presente","Present","Prick! Don't prick!","","no piques","no pique","no piquemos","no piquéis","no piquen","picando","pricking","picado","pricked" +"pintar","to paint","Indicativo","Indicative","Presente","Present","I paint, am painting","pinto","pintas","pinta","pintamos","pintáis","pintan","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Futuro","Future","I will paint","pintaré","pintarás","pintará","pintaremos","pintaréis","pintarán","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Imperfecto","Imperfect","I was painting, used to paint, painted","pintaba","pintabas","pintaba","pintábamos","pintabais","pintaban","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Pretérito","Preterite","I painted","pinté","pintaste","pintó","pintamos","pintasteis","pintaron","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Condicional","Conditional","I would paint","pintaría","pintarías","pintaría","pintaríamos","pintaríais","pintarían","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Presente perfecto","Present Perfect","I have painted","he pintado","has pintado","ha pintado","hemos pintado","habéis pintado","han pintado","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have painted","habré pintado","habrás pintado","habrá pintado","habremos pintado","habréis pintado","habrán pintado","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had painted","había pintado","habías pintado","había pintado","habíamos pintado","habíais pintado","habían pintado","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had painted","hube pintado","hubiste pintado","hubo pintado","hubimos pintado","hubisteis pintado","hubieron pintado","pintando","painting","pintado","painted" +"pintar","to paint","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have painted","habría pintado","habrías pintado","habría pintado","habríamos pintado","habríais pintado","habrían pintado","pintando","painting","pintado","painted" +"pintemos" +"pintar","to paint","Subjuntivo","Subjunctive","Presente","Present","I paint, am painting","pinte","pintes","pinte","pintemos","pintéis","pinten","pintando","painting","pintado","painted" +"pintar","to paint","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I painted, was painting","pintara","pintaras","pintara","pintáramos","pintarais","pintaran","pintando","painting","pintado","painted" +"pintar","to paint","Subjuntivo","Subjunctive","Futuro","Future","I will paint","pintare","pintares","pintare","pintáremos","pintareis","pintaren","pintando","painting","pintado","painted" +"pintar","to paint","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have painted, painted","haya pintado","hayas pintado","haya pintado","hayamos pintado","hayáis pintado","hayan pintado","pintando","painting","pintado","painted" +"pintar","to paint","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have painted","hubiere pintado","hubieres pintado","hubiere pintado","hubiéremos pintado","hubiereis pintado","hubieren pintado","pintando","painting","pintado","painted" +"pintar","to paint","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had painted","hubiera pintado","hubieras pintado","hubiera pintado","hubiéramos pintado","hubierais pintado","hubieran pintado","pintando","painting","pintado","painted" +"pintar","to paint","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Paint! Don't paint!","","pinta","pinte","pintemos","pintad","pinten","pintando","painting","pintado","painted" +"pintar","to paint","Imperativo Negativo","Imperative Negative","Presente","Present","Paint! Don't paint!","","no pintes","no pinte","no pintemos","no pintéis","no pinten","pintando","painting","pintado","painted" +"platicar","to chat, talk","Indicativo","Indicative","Presente","Present","I chat, am chatting","platico","platicas","platica","platicamos","platicáis","platican","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Futuro","Future","I will chat","platicaré","platicarás","platicará","platicaremos","platicaréis","platicarán","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Imperfecto","Imperfect","I was chatting, used to chat, chatted","platicaba","platicabas","platicaba","platicábamos","platicabais","platicaban","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Pretérito","Preterite","I chatted","platiqué","platicaste","platicó","platicamos","platicasteis","platicaron","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Condicional","Conditional","I would chat","platicaría","platicarías","platicaría","platicaríamos","platicaríais","platicarían","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Presente perfecto","Present Perfect","I have chatted","he platicado","has platicado","ha platicado","hemos platicado","habéis platicado","han platicado","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have chatted","habré platicado","habrás platicado","habrá platicado","habremos platicado","habréis platicado","habrán platicado","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had chatted","había platicado","habías platicado","había platicado","habíamos platicado","habíais platicado","habían platicado","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had chatted","hube platicado","hubiste platicado","hubo platicado","hubimos platicado","hubisteis platicado","hubieron platicado","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have chatted","habría platicado","habrías platicado","habría platicado","habríamos platicado","habríais platicado","habrían platicado","platicando","chatting","platicado","chatted" +"platiquemos" +"platicar","to chat, talk","Subjuntivo","Subjunctive","Presente","Present","I chat, am chatting","platique","platiques","platique","platiquemos","platiquéis","platiquen","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I chatted, was chatting","platicara","platicaras","platicara","platicáramos","platicarais","platicaran","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Subjuntivo","Subjunctive","Futuro","Future","I will chat","platicare","platicares","platicare","platicáremos","platicareis","platicaren","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have chatted, chatted","haya platicado","hayas platicado","haya platicado","hayamos platicado","hayáis platicado","hayan platicado","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have chatted","hubiere platicado","hubieres platicado","hubiere platicado","hubiéremos platicado","hubiereis platicado","hubieren platicado","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had chatted","hubiera platicado","hubieras platicado","hubiera platicado","hubiéramos platicado","hubierais platicado","hubieran platicado","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Chat! Don't chat!","","platica","platique","platiquemos","platicad","platiquen","platicando","chatting","platicado","chatted" +"platicar","to chat, talk","Imperativo Negativo","Imperative Negative","Presente","Present","Chat! Don't chat!","","no platiques","no platique","no platiquemos","no platiquéis","no platiquen","platicando","chatting","platicado","chatted" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Presente","Present","I iron, am ironing","plancho","planchas","plancha","planchamos","plancháis","planchan","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Futuro","Future","I will iron","plancharé","plancharás","planchará","plancharemos","plancharéis","plancharán","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Imperfecto","Imperfect","I was ironing, used to iron, ironed","planchaba","planchabas","planchaba","planchábamos","planchabais","planchaban","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Pretérito","Preterite","I ironed","planché","planchaste","planchó","planchamos","planchasteis","plancharon","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Condicional","Conditional","I would iron","plancharía","plancharías","plancharía","plancharíamos","plancharíais","plancharían","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Presente perfecto","Present Perfect","I have ironed","he planchado","has planchado","ha planchado","hemos planchado","habéis planchado","han planchado","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have ironed","habré planchado","habrás planchado","habrá planchado","habremos planchado","habréis planchado","habrán planchado","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had ironed","había planchado","habías planchado","había planchado","habíamos planchado","habíais planchado","habían planchado","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had ironed","hube planchado","hubiste planchado","hubo planchado","hubimos planchado","hubisteis planchado","hubieron planchado","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have ironed","habría planchado","habrías planchado","habría planchado","habríamos planchado","habríais planchado","habrían planchado","planchando","ironing","planchado","ironed" +"planchemos" +"planchar","to iron, press; to do the ironing","Subjuntivo","Subjunctive","Presente","Present","I iron, am ironing","planche","planches","planche","planchemos","planchéis","planchen","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ironed, was ironing","planchara","plancharas","planchara","plancháramos","plancharais","plancharan","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Subjuntivo","Subjunctive","Futuro","Future","I will iron","planchare","planchares","planchare","plancháremos","planchareis","plancharen","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have ironed, ironed","haya planchado","hayas planchado","haya planchado","hayamos planchado","hayáis planchado","hayan planchado","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have ironed","hubiere planchado","hubieres planchado","hubiere planchado","hubiéremos planchado","hubiereis planchado","hubieren planchado","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had ironed","hubiera planchado","hubieras planchado","hubiera planchado","hubiéramos planchado","hubierais planchado","hubieran planchado","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","iron! Don't iron!","","plancha","planche","planchemos","planchad","planchen","planchando","ironing","planchado","ironed" +"planchar","to iron, press; to do the ironing","Imperativo Negativo","Imperative Negative","Presente","Present","iron! Don't iron!","","no planches","no planche","no planchemos","no planchéis","no planchen","planchando","ironing","planchado","ironed" +"plantar","to plant","Indicativo","Indicative","Presente","Present","I plant, am planting","planto","plantas","planta","plantamos","plantáis","plantan","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Futuro","Future","I will plant","plantaré","plantarás","plantará","plantaremos","plantaréis","plantarán","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Imperfecto","Imperfect","I was planting, used to plant, planted","plantaba","plantabas","plantaba","plantábamos","plantabais","plantaban","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Condicional","Conditional","I would plant","plantaría","plantarías","plantaría","plantaríamos","plantaríais","plantarían","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Presente perfecto","Present Perfect","I have planted","he plantado","has plantado","ha plantado","hemos plantado","habéis plantado","han plantado","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have planted","habré plantado","habrás plantado","habrá plantado","habremos plantado","habréis plantado","habrán plantado","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had planted","había plantado","habías plantado","había plantado","habíamos plantado","habíais plantado","habían plantado","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had planted","hube plantado","hubiste plantado","hubo plantado","hubimos plantado","hubisteis plantado","hubieron plantado","plantando","planting","plantado","planted" +"plantar","to plant","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have planted","habría plantado","habrías plantado","habría plantado","habríamos plantado","habríais plantado","habrían plantado","plantando","planting","plantado","planted" +"plantemos" +"plantar","to plant","Subjuntivo","Subjunctive","Presente","Present","I plant, am planting","plante","plantes","plante","plantemos","plantéis","planten","plantando","planting","plantado","planted" +"plantar","to plant","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I planted, was planting","plantara","plantaras","plantara","plantáramos","plantarais","plantaran","plantando","planting","plantado","planted" +"plantar","to plant","Subjuntivo","Subjunctive","Futuro","Future","I will plant","plantare","plantares","plantare","plantáremos","plantareis","plantaren","plantando","planting","plantado","planted" +"plantar","to plant","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have planted, planted","haya plantado","hayas plantado","haya plantado","hayamos plantado","hayáis plantado","hayan plantado","plantando","planting","plantado","planted" +"plantar","to plant","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have planted","hubiere plantado","hubieres plantado","hubiere plantado","hubiéremos plantado","hubiereis plantado","hubieren plantado","plantando","planting","plantado","planted" +"plantar","to plant","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had planted","hubiera plantado","hubieras plantado","hubiera plantado","hubiéramos plantado","hubierais plantado","hubieran plantado","plantando","planting","plantado","planted" +"plantar","to plant","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Plant! Don't plant!","","planta","plante","plantemos","plantad","planten","plantando","planting","plantado","planted" +"plantar","to plant","Imperativo Negativo","Imperative Negative","Presente","Present","Plant! Don't plant!","","no plantes","no plante","no plantemos","no plantéis","no planten","plantando","planting","plantado","planted" +"poder","to be able, can","Indicativo","Indicative","Presente","Present","I am able, can","puedo","puedes","puede","podemos","podéis","pueden","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Futuro","Future","I will be able","podré","podrás","podrá","podremos","podréis","podrán","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Imperfecto","Imperfect","I used to be able, was able, could","podía","podías","podía","podíamos","podíais","podían","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Pretérito","Preterite","I was able, could","pude","pudiste","pudo","pudimos","pudisteis","pudieron","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Condicional","Conditional","I would be able","podría","podrías","podría","podríamos","podríais","podrían","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been able","he podido","has podido","ha podido","hemos podido","habéis podido","han podido","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been able","habré podido","habrás podido","habrá podido","habremos podido","habréis podido","habrán podido","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been able","había podido","habías podido","había podido","habíamos podido","habíais podido","habían podido","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been able","hube podido","hubiste podido","hubo podido","hubimos podido","hubisteis podido","hubieron podido","pudiendo","being able","podido","been able" +"poder","to be able, can","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been able","habría podido","habrías podido","habría podido","habríamos podido","habríais podido","habrían podido","pudiendo","being able","podido","been able" +"podamos" +"poder","to be able, can","Subjuntivo","Subjunctive","Presente","Present","I am able, can","pueda","puedas","pueda","podamos","podáis","puedan","pudiendo","being able","podido","been able" +"poder","to be able, can","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was able, could","pudiera","pudieras","pudiera","pudiéramos","pudierais","pudieran","pudiendo","being able","podido","been able" +"poder","to be able, can","Subjuntivo","Subjunctive","Futuro","Future","I will be able","pudiere","pudieres","pudiere","pudiéremos","pudiereis","pudieren","pudiendo","being able","podido","been able" +"poder","to be able, can","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been able, was able","haya podido","hayas podido","haya podido","hayamos podido","hayáis podido","hayan podido","pudiendo","being able","podido","been able" +"poder","to be able, can","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been able","hubiere podido","hubieres podido","hubiere podido","hubiéremos podido","hubiereis podido","hubieren podido","pudiendo","being able","podido","been able" +"poder","to be able, can","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been able","hubiera podido","hubieras podido","hubiera podido","hubiéramos podido","hubierais podido","hubieran podido","pudiendo","being able","podido","been able" +"poder","to be able, can","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be able! Don't be able!","","puede","pueda","podamos","poded","puedan","pudiendo","being able","podido","been able", +"poder","to be able, can","Imperativo Negativo","Imperative Negative","Presente","Present","Be able! Don't be able!","","no puedas","no pueda","no podamos","no podáis","no puedan","pudiendo","being able","podido","been able", +"poner","to put, place, set","Indicativo","Indicative","Presente","Present","I put, am puting","pongo","pones","pone","ponemos","ponéis","ponen","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Futuro","Future","I will put","pondré","pondrás","pondrá","pondremos","pondréis","pondrán","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Imperfecto","Imperfect","I was puting, used to put, put","ponía","ponías","ponía","poníamos","poníais","ponían","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Pretérito","Preterite","I put","puse","pusiste","puso","pusimos","pusisteis","pusieron","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Condicional","Conditional","I would put","pondría","pondrías","pondría","pondríamos","pondríais","pondrían","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put","he puesto","has puesto","ha puesto","hemos puesto","habéis puesto","han puesto","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put","habré puesto","habrás puesto","habrá puesto","habremos puesto","habréis puesto","habrán puesto","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put","había puesto","habías puesto","había puesto","habíamos puesto","habíais puesto","habían puesto","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put","hube puesto","hubiste puesto","hubo puesto","hubimos puesto","hubisteis puesto","hubieron puesto","poniendo","puting","puesto","put" +"poner","to put, place, set","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put","habría puesto","habrías puesto","habría puesto","habríamos puesto","habríais puesto","habrían puesto","poniendo","puting","puesto","put" +"pongamos" +"poner","to put, place, set","Subjuntivo","Subjunctive","Presente","Present","I put, am puting","ponga","pongas","ponga","pongamos","pongáis","pongan","poniendo","puting","puesto","put" +"poner","to put, place, set","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put, was puting","pusiera","pusieras","pusiera","pusiéramos","pusierais","pusieran","poniendo","puting","puesto","put" +"poner","to put, place, set","Subjuntivo","Subjunctive","Futuro","Future","I will put","pusiere","pusieres","pusiere","pusiéremos","pusiereis","pusieren","poniendo","puting","puesto","put" +"poner","to put, place, set","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put, put","haya puesto","hayas puesto","haya puesto","hayamos puesto","hayáis puesto","hayan puesto","poniendo","puting","puesto","put" +"poner","to put, place, set","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put","hubiere puesto","hubieres puesto","hubiere puesto","hubiéremos puesto","hubiereis puesto","hubieren puesto","poniendo","puting","puesto","put" +"poner","to put, place, set","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put","hubiera puesto","hubieras puesto","hubiera puesto","hubiéramos puesto","hubierais puesto","hubieran puesto","poniendo","puting","puesto","put" +"poner","to put, place, set","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put! Don't put!","","pon","ponga","pongamos","poned","pongan","poniendo","puting","puesto","put" +"poner","to put, place, set","Imperativo Negativo","Imperative Negative","Presente","Present","Put! Don't put!","","no pongas","no ponga","no pongamos","no pongáis","no pongan","poniendo","puting","puesto","put" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Presente","Present","I put on, am putting on","me pongo","te pones","se pone","nos ponemos","os ponéis","se ponen","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Futuro","Future","I will put on","me pondré","te pondrás","se pondrá","nos pondremos","os pondréis","se pondrán","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Imperfecto","Imperfect","I was putting on, used to put on, put on","me ponía","te ponías","se ponía","nos poníamos","os poníais","se ponían","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Pretérito","Preterite","I put on","me puse","te pusiste","se puso","nos pusimos","os pusisteis","se pusieron","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Condicional","Conditional","I would put on","me pondría","te pondrías","se pondría","nos pondríamos","os pondríais","se pondrían","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Presente perfecto","Present Perfect","I have put on","me he puesto","te has puesto","se ha puesto","nos hemos puesto","os habéis puesto","se han puesto","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have put on","me habré puesto","te habrás puesto","se habrá puesto","nos habremos puesto","os habréis puesto","se habrán puesto","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had put on","me había puesto","te habías puesto","se había puesto","nos habíamos puesto","os habíais puesto","se habían puesto","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had put on","me hube puesto","te hubiste puesto","se hubo puesto","nos hubimos puesto","os hubisteis puesto","se hubieron puesto","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have put on","me habría puesto","te habrías puesto","se habría puesto","nos habríamos puesto","os habríais puesto","se habrían puesto","poniéndose","putting on","puesto","put on" +"nos pongamos" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Presente","Present","I put on, am putting on","me ponga","te pongas","se ponga","nos pongamos","os pongáis","se pongan","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I put on, was putting on","me pusiera","te pusieras","se pusiera","nos pusiéramos","os pusierais","se pusieran","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Futuro","Future","I will put on","me pusiere","te pusieres","se pusiere","nos pusiéremos","os pusiereis","se pusieren","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have put on, put on","me haya puesto","te hayas puesto","se haya puesto","nos hayamos puesto","os hayáis puesto","se hayan puesto","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have put on","me hubiere puesto","te hubieres puesto","se hubiere puesto","nos hubiéremos puesto","os hubiereis puesto","se hubieren puesto","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had put on","me hubiera puesto","te hubieras puesto","se hubiera puesto","nos hubiéramos puesto","os hubierais puesto","se hubieran puesto","poniéndose","putting on","puesto","put on" +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Put on! Don't put on!","","ponte","póngase","nos pongamos","poneos","pónganse","poniéndose","putting on","puesto","put on", +"ponerse","to put on [clothing]; to put/place [oneself]; to turn/get/become","Imperativo Negativo","Imperative Negative","Presente","Present","Put on! Don't put on!","","no te pongas","no se ponga","no nos pongamos","no os pongáis","no se pongan","poniéndose","putting on","puesto","put on", +"practicar","to practice","Indicativo","Indicative","Presente","Present","I practice, am practicing","practico","practicas","practica","practicamos","practicáis","practican","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Futuro","Future","I will practice","practicaré","practicarás","practicará","practicaremos","practicaréis","practicarán","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Imperfecto","Imperfect","I was practicing, used to practice, practiced","practicaba","practicabas","practicaba","practicábamos","practicabais","practicaban","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Pretérito","Preterite","I practiced","practiqué","practicaste","practicó","practicamos","practicasteis","practicaron","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Condicional","Conditional","I would practice","practicaría","practicarías","practicaría","practicaríamos","practicaríais","practicarían","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Presente perfecto","Present Perfect","I have practiced","he practicado","has practicado","ha practicado","hemos practicado","habéis practicado","han practicado","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have practiced","habré practicado","habrás practicado","habrá practicado","habremos practicado","habréis practicado","habrán practicado","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had practiced","había practicado","habías practicado","había practicado","habíamos practicado","habíais practicado","habían practicado","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had practiced","hube practicado","hubiste practicado","hubo practicado","hubimos practicado","hubisteis practicado","hubieron practicado","practicando","practicing","practicado","practiced" +"practicar","to practice","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have practiced","habría practicado","habrías practicado","habría practicado","habríamos practicado","habríais practicado","habrían practicado","practicando","practicing","practicado","practiced" +"practiquemos" +"practicar","to practice","Subjuntivo","Subjunctive","Presente","Present","I practice, am practicing","practique","practiques","practique","practiquemos","practiquéis","practiquen","practicando","practicing","practicado","practiced" +"practicar","to practice","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I practiced, was practicing","practicara","practicaras","practicara","practicáramos","practicarais","practicaran","practicando","practicing","practicado","practiced" +"practicar","to practice","Subjuntivo","Subjunctive","Futuro","Future","I will practice","practicare","practicares","practicare","practicáremos","practicareis","practicaren","practicando","practicing","practicado","practiced" +"practicar","to practice","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have practiced, practiced","haya practicado","hayas practicado","haya practicado","hayamos practicado","hayáis practicado","hayan practicado","practicando","practicing","practicado","practiced" +"practicar","to practice","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have practiced","hubiere practicado","hubieres practicado","hubiere practicado","hubiéremos practicado","hubiereis practicado","hubieren practicado","practicando","practicing","practicado","practiced" +"practicar","to practice","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had practiced","hubiera practicado","hubieras practicado","hubiera practicado","hubiéramos practicado","hubierais practicado","hubieran practicado","practicando","practicing","practicado","practiced" +"practicar","to practice","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Practice! Don't practice!","","practica","practique","practiquemos","practicad","practiquen","practicando","practicing","practicado","practiced" +"practicar","to practice","Imperativo Negativo","Imperative Negative","Presente","Present","Practice! Don't practice!","","no practiques","no practique","no practiquemos","no practiquéis","no practiquen","practicando","practicing","practicado","practiced" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Presente","Present","I predict, am predicting","predigo","predices","predice","predecimos","predecís","predicen","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Futuro","Future","I will predict","predeciré","predecirás","predecirá","predeciremos","predeciréis","predecirán","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Imperfecto","Imperfect","I was predicting, used to predict, predicted","predecía","predecías","predecía","predecíamos","predecíais","predecían","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Pretérito","Preterite","I predicted","predije","predijiste","predijo","predijimos","predijisteis","predijeron","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Condicional","Conditional","I would predict","predeciría","predecirías","predeciría","predeciríamos","predeciríais","predecirían","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Presente perfecto","Present Perfect","I have predicted","he predicho","has predicho","ha predicho","hemos predicho","habéis predicho","han predicho","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have predicted","habré predicho","habrás predicho","habrá predicho","habremos predicho","habréis predicho","habrán predicho","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had predicted","había predicho","habías predicho","había predicho","habíamos predicho","habíais predicho","habían predicho","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had predicted","hube predicho","hubiste predicho","hubo predicho","hubimos predicho","hubisteis predicho","hubieron predicho","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have predicted","habría predicho","habrías predicho","habría predicho","habríamos predicho","habríais predicho","habrían predicho","prediciendo","predicting","predicho","predicted" +"predigamos" +"predecir","to predict, foretell, forecast","Subjuntivo","Subjunctive","Presente","Present","I predict, am predicting","prediga","predigas","prediga","predigamos","predigáis","predigan","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I predicted, was predicting","predijera","predijeras","predijera","predijéramos","predijerais","predijeran","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Subjuntivo","Subjunctive","Futuro","Future","I will predict","predijere","predijeres","predijere","predijéremos","predijereis","predijeren","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have predicted, predicted","haya predicho","hayas predicho","haya predicho","hayamos predicho","hayáis predicho","hayan predicho","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have predicted","hubiere predicho","hubieres predicho","hubiere predicho","hubiéremos predicho","hubiereis predicho","hubieren predicho","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had predicted","hubiera predicho","hubieras predicho","hubiera predicho","hubiéramos predicho","hubierais predicho","hubieran predicho","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Predict! Don't predict!","","predice","prediga","predigamos","predecid","predigan","prediciendo","predicting","predicho","predicted" +"predecir","to predict, foretell, forecast","Imperativo Negativo","Imperative Negative","Presente","Present","Predict! Don't predict!","","no predigas","no prediga","no predigamos","no predigáis","no predigan","prediciendo","predicting","predicho","predicted" +"preferir","to prefer","Indicativo","Indicative","Presente","Present","I prefer, am preferring","prefiero","prefieres","prefiere","preferimos","preferís","prefieren","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Futuro","Future","I will prefer","preferiré","preferirás","preferirá","preferiremos","preferiréis","preferirán","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Imperfecto","Imperfect","I was preferring, used to prefer, preferred","prefería","preferías","prefería","preferíamos","preferíais","preferían","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Pretérito","Preterite","I preferred","preferí","preferiste","prefirió","preferimos","preferisteis","prefirieron","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Condicional","Conditional","I would prefer","preferiría","preferirías","preferiría","preferiríamos","preferiríais","preferirían","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Presente perfecto","Present Perfect","I have preferred","he preferido","has preferido","ha preferido","hemos preferido","habéis preferido","han preferido","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have preferred","habré preferido","habrás preferido","habrá preferido","habremos preferido","habréis preferido","habrán preferido","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had preferred","había preferido","habías preferido","había preferido","habíamos preferido","habíais preferido","habían preferido","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had preferred","hube preferido","hubiste preferido","hubo preferido","hubimos preferido","hubisteis preferido","hubieron preferido","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have preferred","habría preferido","habrías preferido","habría preferido","habríamos preferido","habríais preferido","habrían preferido","prefiriendo","preferring","preferido","preferred" +"prefiramos" +"preferir","to prefer","Subjuntivo","Subjunctive","Presente","Present","I prefer, am preferring","prefiera","prefieras","prefiera","prefiramos","prefiráis","prefieran","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I preferred, was preferring","prefiriera","prefirieras","prefiriera","prefiriéramos","prefirierais","prefirieran","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Subjuntivo","Subjunctive","Futuro","Future","I will prefer","prefiriere","prefirieres","prefiriere","prefiriéremos","prefiriereis","prefirieren","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have preferred, preferred","haya preferido","hayas preferido","haya preferido","hayamos preferido","hayáis preferido","hayan preferido","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have preferred","hubiere preferido","hubieres preferido","hubiere preferido","hubiéremos preferido","hubiereis preferido","hubieren preferido","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had preferred","hubiera preferido","hubieras preferido","hubiera preferido","hubiéramos preferido","hubierais preferido","hubieran preferido","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Prefer! Don't prefer!","","prefiere","prefiera","prefiramos","preferid","prefieran","prefiriendo","preferring","preferido","preferred" +"preferir","to prefer","Imperativo Negativo","Imperative Negative","Presente","Present","Prefer! Don't prefer!","","no prefieras","no prefiera","no prefiramos","no prefiráis","no prefieran","prefiriendo","preferring","preferido","preferred" +"preguntar","to ask, inquire","Indicativo","Indicative","Presente","Present","I ask, am asking","pregunto","preguntas","pregunta","preguntamos","preguntáis","preguntan","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Futuro","Future","I will ask","preguntaré","preguntarás","preguntará","preguntaremos","preguntaréis","preguntarán","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Imperfecto","Imperfect","I was asking, used to ask, asked","preguntaba","preguntabas","preguntaba","preguntábamos","preguntabais","preguntaban","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Pretérito","Preterite","I asked","pregunté","preguntaste","preguntó","preguntamos","preguntasteis","preguntaron","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Condicional","Conditional","I would ask","preguntaría","preguntarías","preguntaría","preguntaríamos","preguntaríais","preguntarían","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Presente perfecto","Present Perfect","I have asked","he preguntado","has preguntado","ha preguntado","hemos preguntado","habéis preguntado","han preguntado","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have asked","habré preguntado","habrás preguntado","habrá preguntado","habremos preguntado","habréis preguntado","habrán preguntado","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had asked","había preguntado","habías preguntado","había preguntado","habíamos preguntado","habíais preguntado","habían preguntado","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had asked","hube preguntado","hubiste preguntado","hubo preguntado","hubimos preguntado","hubisteis preguntado","hubieron preguntado","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have asked","habría preguntado","habrías preguntado","habría preguntado","habríamos preguntado","habríais preguntado","habrían preguntado","preguntando","asking","preguntado","asked" +"preguntemos" +"preguntar","to ask, inquire","Subjuntivo","Subjunctive","Presente","Present","I ask, am asking","pregunte","preguntes","pregunte","preguntemos","preguntéis","pregunten","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I asked, was asking","preguntara","preguntaras","preguntara","preguntáramos","preguntarais","preguntaran","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Subjuntivo","Subjunctive","Futuro","Future","I will ask","preguntare","preguntares","preguntare","preguntáremos","preguntareis","preguntaren","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have asked, asked","haya preguntado","hayas preguntado","haya preguntado","hayamos preguntado","hayáis preguntado","hayan preguntado","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have asked","hubiere preguntado","hubieres preguntado","hubiere preguntado","hubiéremos preguntado","hubiereis preguntado","hubieren preguntado","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had asked","hubiera preguntado","hubieras preguntado","hubiera preguntado","hubiéramos preguntado","hubierais preguntado","hubieran preguntado","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Ask! Don't ask!","","pregunta","pregunte","preguntemos","preguntad","pregunten","preguntando","asking","preguntado","asked" +"preguntar","to ask, inquire","Imperativo Negativo","Imperative Negative","Presente","Present","Ask! Don't ask!","","no preguntes","no pregunte","no preguntemos","no preguntéis","no pregunten","preguntando","asking","preguntado","asked" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Presente","Present","I wonder, am wondering","me pregunto","te preguntas","se pregunta","nos preguntamos","os preguntáis","se preguntan","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Futuro","Future","I will wonder","me preguntaré","te preguntarás","se preguntará","nos preguntaremos","os preguntaréis","se preguntarán","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Imperfecto","Imperfect","I was wondering, used to wonder, wondered","me preguntaba","te preguntabas","se preguntaba","nos preguntábamos","os preguntabais","se preguntaban","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Pretérito","Preterite","I wondered","me pregunté","te preguntaste","se preguntó","nos preguntamos","os preguntasteis","se preguntaron","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Condicional","Conditional","I would wonder","me preguntaría","te preguntarías","se preguntaría","nos preguntaríamos","os preguntaríais","se preguntarían","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Presente perfecto","Present Perfect","I have wondered","me he preguntado","te has preguntado","se ha preguntado","nos hemos preguntado","os habéis preguntado","se han preguntado","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have wondered","me habré preguntado","te habrás preguntado","se habrá preguntado","nos habremos preguntado","os habréis preguntado","se habrán preguntado","preguntándose","wondering","preguntado","wondered" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have foreseen","habré previsto","habrás previsto","habrá previsto","habremos previsto","habréis previsto","habrán previsto","previendo","foreseeing","previsto","foreseen" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had wondered","me había preguntado","te habías preguntado","se había preguntado","nos habíamos preguntado","os habíais preguntado","se habían preguntado","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had wondered","me hube preguntado","te hubiste preguntado","se hubo preguntado","nos hubimos preguntado","os hubisteis preguntado","se hubieron preguntado","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have wondered","me habría preguntado","te habrías preguntado","se habría preguntado","nos habríamos preguntado","os habríais preguntado","se habrían preguntado","preguntándose","wondering","preguntado","wondered" +"nos preguntemos" +"preguntarse","to wonder, ask oneself","Subjuntivo","Subjunctive","Presente","Present","I wonder, am wondering","me pregunte","te preguntes","se pregunte","nos preguntemos","os preguntéis","se pregunten","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I wondered, was wondering","me preguntara","te preguntaras","se preguntara","nos preguntáramos","os preguntarais","se preguntaran","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Subjuntivo","Subjunctive","Futuro","Future","I will wonder","me preguntare","te preguntares","se preguntare","nos preguntáremos","os preguntareis","se preguntaren","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have wondered, wondered","me haya preguntado","te hayas preguntado","se haya preguntado","nos hayamos preguntado","os hayáis preguntado","se hayan preguntado","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have wondered","me hubiere preguntado","te hubieres preguntado","se hubiere preguntado","nos hubiéremos preguntado","os hubiereis preguntado","se hubieren preguntado","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had wondered","me hubiera preguntado","te hubieras preguntado","se hubiera preguntado","nos hubiéramos preguntado","os hubierais preguntado","se hubieran preguntado","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Wonder! Don't wonder!","","pregúntate","pregúntese","nos preguntemos","preguntaos","pregúntense","preguntándose","wondering","preguntado","wondered" +"preguntarse","to wonder, ask oneself","Imperativo Negativo","Imperative Negative","Presente","Present","Wonder! Don't wonder!","","no te preguntes","no se pregunte","no nos preguntemos","no os preguntéis","no se pregunten","preguntándose","wondering","preguntado","wondered" +"preparar","to prepare, get","Indicativo","Indicative","Presente","Present","I prepare, am preparing","preparo","preparas","prepara","preparamos","preparáis","preparan","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Futuro","Future","I will prepare","prepararé","prepararás","preparará","prepararemos","prepararéis","prepararán","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Imperfecto","Imperfect","I was preparing, used to prepare, prepared","preparaba","preparabas","preparaba","preparábamos","preparabais","preparaban","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Pretérito","Preterite","I prepared","preparé","preparaste","preparó","preparamos","preparasteis","prepararon","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Condicional","Conditional","I would prepare","prepararía","prepararías","prepararía","prepararíamos","prepararíais","prepararían","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Presente perfecto","Present Perfect","I have prepared","he preparado","has preparado","ha preparado","hemos preparado","habéis preparado","han preparado","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have prepared","habré preparado","habrás preparado","habrá preparado","habremos preparado","habréis preparado","habrán preparado","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had prepared","había preparado","habías preparado","había preparado","habíamos preparado","habíais preparado","habían preparado","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had prepared","hube preparado","hubiste preparado","hubo preparado","hubimos preparado","hubisteis preparado","hubieron preparado","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have prepared","habría preparado","habrías preparado","habría preparado","habríamos preparado","habríais preparado","habrían preparado","preparando","preparing","preparado","prepared" +"preparemos" +"preparar","to prepare, get","Subjuntivo","Subjunctive","Presente","Present","I prepare, am preparing","prepare","prepares","prepare","preparemos","preparéis","preparen","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I prepared, was preparing","preparara","prepararas","preparara","preparáramos","prepararais","prepararan","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Subjuntivo","Subjunctive","Futuro","Future","I will prepare","preparare","preparares","preparare","preparáremos","preparareis","prepararen","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have prepared, prepared","haya preparado","hayas preparado","haya preparado","hayamos preparado","hayáis preparado","hayan preparado","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have prepared","hubiere preparado","hubieres preparado","hubiere preparado","hubiéremos preparado","hubiereis preparado","hubieren preparado","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had prepared","hubiera preparado","hubieras preparado","hubiera preparado","hubiéramos preparado","hubierais preparado","hubieran preparado","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Prepare! Don't prepare!","","prepara","prepare","preparemos","preparad","preparen","preparando","preparing","preparado","prepared" +"preparar","to prepare, get","Imperativo Negativo","Imperative Negative","Presente","Present","Prepare! Don't prepare!","","no prepares","no prepare","no preparemos","no preparéis","no preparen","preparando","preparing","preparado","prepared" +"prepararse","to get","Indicativo","Indicative","Presente","Present","I get ready, am getting ready","me preparo","te preparas","se prepara","nos preparamos","os preparáis","se preparan","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Futuro","Future","I will get ready","me prepararé","te prepararás","se preparará","nos prepararemos","os prepararéis","se prepararán","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Imperfecto","Imperfect","I was getting ready, used to get ready, got ready","me preparaba","te preparabas","se preparaba","nos preparábamos","os preparabais","se preparaban","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Pretérito","Preterite","I got ready","me preparé","te preparaste","se preparó","nos preparamos","os preparasteis","se prepararon","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Condicional","Conditional","I would get ready","me prepararía","te prepararías","se prepararía","nos prepararíamos","os prepararíais","se prepararían","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten ready","me he preparado","te has preparado","se ha preparado","nos hemos preparado","os habéis preparado","se han preparado","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten ready","me habré preparado","te habrás preparado","se habrá preparado","nos habremos preparado","os habréis preparado","se habrán preparado","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten ready","me había preparado","te habías preparado","se había preparado","nos habíamos preparado","os habíais preparado","se habían preparado","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten ready","me hube preparado","te hubiste preparado","se hubo preparado","nos hubimos preparado","os hubisteis preparado","se hubieron preparado","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten ready","me habría preparado","te habrías preparado","se habría preparado","nos habríamos preparado","os habríais preparado","se habrían preparado","preparándose","getting ready","preparado","gotten ready" +"nos preparemos" +"prepararse","to get","Subjuntivo","Subjunctive","Presente","Present","I get ready, am getting ready","me prepare","te prepares","se prepare","nos preparemos","os preparéis","se preparen","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got ready, was getting ready","me preparara","te prepararas","se preparara","nos preparáramos","os prepararais","se prepararan","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Subjuntivo","Subjunctive","Futuro","Future","I will get ready","me preparare","te preparares","se preparare","nos preparáremos","os preparareis","se prepararen","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten ready, got ready","me haya preparado","te hayas preparado","se haya preparado","nos hayamos preparado","os hayáis preparado","se hayan preparado","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten ready","me hubiere preparado","te hubieres preparado","se hubiere preparado","nos hubiéremos preparado","os hubiereis preparado","se hubieren preparado","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten ready","me hubiera preparado","te hubieras preparado","se hubiera preparado","nos hubiéramos preparado","os hubierais preparado","se hubieran preparado","preparándose","getting ready","preparado","gotten ready" +"prepararse","to get","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get ready! Don't get ready!","","prepárate","prepárese","nos preparemos","preparaos","prepárense","preparándose","getting ready","preparado","gotten ready", +"prepararse","to get","Imperativo Negativo","Imperative Negative","Presente","Present","Get ready! Don't get ready!","","no te prepares","no se prepare","no nos preparemos","no os preparéis","no se preparen","preparándose","getting ready","preparado","gotten ready", +"presentir","to have a premonition of","Indicativo","Indicative","Presente","Present","I have a premonition of, am having a premonition of","presiento","presientes","presiente","presentimos","presentís","presienten","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Futuro","Future","I will have a premonition","presentiré","presentirás","presentirá","presentiremos","presentiréis","presentirán","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Imperfecto","Imperfect","I was having a premonition of, used to have a premonition, had a premonition of","presentía","presentías","presentía","presentíamos","presentíais","presentían","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Pretérito","Preterite","I had a premonition of","presentí","presentiste","presintió","presentimos","presentisteis","presintieron","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Condicional","Conditional","I would have a premonition of","presentiría","presentirías","presentiría","presentiríamos","presentiríais","presentirían","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Presente perfecto","Present Perfect","I have had a premonition of","he presentido","has presentido","ha presentido","hemos presentido","habéis presentido","han presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have had a premonition of","habré presentido","habrás presentido","habrá presentido","habremos presentido","habréis presentido","habrán presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had had a premonition of","había presentido","habías presentido","había presentido","habíamos presentido","habíais presentido","habían presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had had a premonition of","hube presentido","hubiste presentido","hubo presentido","hubimos presentido","hubisteis presentido","hubieron presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have had a premonition of","habría presentido","habrías presentido","habría presentido","habríamos presentido","habríais presentido","habrían presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presintamos" +"presentir","to have a premonition of","Subjuntivo","Subjunctive","Presente","Present","I have a premonition of, am having a premonition of","presienta","presientas","presienta","presintamos","presintáis","presientan","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I had a premonition of, was having a premonition of","presintiera","presintieras","presintiera","presintéramos","presintierais","presintieran","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Subjuntivo","Subjunctive","Futuro","Future","I will have a premonition of","presintiere","presintieres","presintiere","presintiéremos","presintiereis","presintieren","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have had a premonition of, had a premonition of","haya presentido","hayas presentido","haya presentido","hayamos presentido","hayáis presentido","hayan presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have had a premonition of","hubiere presentido","hubieres presentido","hubiere presentido","hubiéremos presentido","hubiereis presentido","hubieren presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had had a premonition of","hubiera presentido","hubieras presentido","hubiera presentido","hubiéramos presentido","hubierais presentido","hubieran presentido","presintiendo","having a premonition of","presentido","had a premonition of" +"presentir","to have a premonition of","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Have a premonition of! Don't have a premonition of!","","presiente","presienta","presintamos","presentid","presientan","presintiendo","having a premonition of","presentido","had a premonition of", +"presentir","to have a premonition of","Imperativo Negativo","Imperative Negative","Presente","Present","Have a premonition of! Don't have a premonition of!","","no presientas","no presienta","no presintamos","no presintáis","no presientan","presintiendo","having a premonition of","presentido","had a premonition of", +"preservar","to preserve, protect","Indicativo","Indicative","Presente","Present","I preserve, am preserving","preservo","preservas","preserva","preservamos","preserváis","preservan","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Futuro","Future","I will preserve","preservaré","preservarás","preservará","preservaremos","preservaréis","preservarán","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Imperfecto","Imperfect","I was preserving, used to preserve, preserved","preservaba","preservabas","preservaba","preservábamos","preservabais","preservaban","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Pretérito","Preterite","I preserved","preservé","preservaste","preservó","preservamos","preservasteis","preservaron","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Condicional","Conditional","I would preserve","preservaría","preservarías","preservaría","preservaríamos","preservaríais","preservarían","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Presente perfecto","Present Perfect","I have preserved","he preservado","has preservado","ha preservado","hemos preservado","habéis preservado","han preservado","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have preserved","habré preservado","habrás preservado","habrá preservado","habremos preservado","habréis preservado","habrán preservado","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had preserved","había preservado","habías preservado","había preservado","habíamos preservado","habíais preservado","habían preservado","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had preserved","hube preservado","hubiste preservado","hubo preservado","hubimos preservado","hubisteis preservado","hubieron preservado","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have preserved","habría preservado","habrías preservado","habría preservado","habríamos preservado","habríais preservado","habrían preservado","preservando","preserving","preservado","preserved" +"preservemos" +"preservar","to preserve, protect","Subjuntivo","Subjunctive","Presente","Present","I preserve, am preserving","preserve","preserves","preserve","preservemos","preservéis","preserven","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I preserved, was preserving","preservara","preservaras","preservara","preserváramos","preservarais","preservaran","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Subjuntivo","Subjunctive","Futuro","Future","I will preserve","preservare","preservares","preservare","preserváremos","preservareis","preservaren","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have preserved, preserved","haya preservado","hayas preservado","haya preservado","hayamos preservado","hayáis preservado","hayan preservado","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have preserved","hubiere preservado","hubieres preservado","hubiere preservado","hubiéremos preservado","hubiereis preservado","hubieren preservado","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had preserved","hubiera preservado","hubieras preservado","hubiera preservado","hubiéramos preservado","hubierais preservado","hubieran preservado","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Preserve! Don't preserve!","","preserva","preserve","preservemos","preservad","preserven","preservando","preserving","preservado","preserved" +"preservar","to preserve, protect","Imperativo Negativo","Imperative Negative","Presente","Present","Preserve! Don't preserve!","","no preserves","no preserve","no preservemos","no preservéis","no preserven","preservando","preserving","preservado","preserved" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Presente","Present","I foresee, am foreseeing","preveo","prevés","prevé","prevemos","prevéis","prevén","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Futuro","Future","I will foresee","preveré","preverás","preverá","preveremos","preveréis","preverán","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Imperfecto","Imperfect","I was foreseeing, used to foresee, foresaw","preveía","preveías","preveía","preveíamos","preveíais","preveían","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Pretérito","Preterite","I foresaw","preví","previste","previó","previmos","previsteis","previeron","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Condicional","Conditional","I would foresee","prevería","preverías","prevería","preveríamos","preveríais","preverían","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have foreseen","he previsto","has previsto","ha previsto","hemos previsto","habéis previsto","han previsto","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had foreseen","había previsto","habías previsto","había previsto","habíamos previsto","habíais previsto","habían previsto","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had foreseen","hube previsto","hubiste previsto","hubo previsto","hubimos previsto","hubisteis previsto","hubieron previsto","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have foreseen","habría previsto","habrías previsto","habría previsto","habríamos previsto","habríais previsto","habrían previsto","previendo","foreseeing","previsto","foreseen" +"preveamos" +"prever","to foresee, anticipate, envisage, visualize","Subjuntivo","Subjunctive","Presente","Present","I foresee, am foreseeing","prevea","preveas","prevea","preveamos","preveáis","prevean","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I foresaw, was foreseeing","previera","previeras","previera","previéramos","previerais","previeran","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Subjuntivo","Subjunctive","Futuro","Future","I will foresee","previere","previeres","previere","previéremos","previereis","previeren","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have foreseen, foresaw","haya previsto","hayas previsto","haya previsto","hayamos previsto","hayáis previsto","hayan previsto","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will hapreve foreseen","hubiere previsto","hubieres previsto","hubiere previsto","hubiéremos previsto","hubiereis previsto","hubieren previsto","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had foreseen","hubiera previsto","hubieras previsto","hubiera previsto","hubiéramos previsto","hubierais previsto","hubieran previsto","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Foresee! Don't foresee!","","prevé","prevea","preveamos","preved","prevean","previendo","foreseeing","previsto","foreseen" +"prever","to foresee, anticipate, envisage, visualize","Imperativo Negativo","Imperative Negative","Presente","Present","Foresee! Don't foresee!","","no preveas","no prevea","no preveamos","no preveáis","no prevean","previendo","foreseeing","previsto","foreseen" +"probar","to taste, try, test","Indicativo","Indicative","Presente","Present","I taste, am tasting","pruebo","pruebas","prueba","probamos","probáis","prueban","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Futuro","Future","I will taste","probaré","probarás","probará","probaremos","probaréis","probarán","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Imperfecto","Imperfect","I was tasting, used to taste, tasted","probaba","probabas","probaba","probábamos","probabais","probaban","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Pretérito","Preterite","I tasted","probé","probaste","probó","probamos","probasteis","probaron","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Condicional","Conditional","I would taste","probaría","probarías","probaría","probaríamos","probaríais","probarían","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Presente perfecto","Present Perfect","I have tasted","he probado","has probado","ha probado","hemos probado","habéis probado","han probado","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have tasted","habré probado","habrás probado","habrá probado","habremos probado","habréis probado","habrán probado","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had tasted","había probado","habías probado","había probado","habíamos probado","habíais probado","habían probado","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had tasted","hube probado","hubiste probado","hubo probado","hubimos probado","hubisteis probado","hubieron probado","probando","tasting","probado","tasted" +"probar","to taste, try, test","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have tasted","habría probado","habrías probado","habría probado","habríamos probado","habríais probado","habrían probado","probando","tasting","probado","tasted" +"probemos" +"probar","to taste, try, test","Subjuntivo","Subjunctive","Presente","Present","I taste, am tasting","pruebe","pruebes","pruebe","probemos","probéis","prueben","probando","tasting","probado","tasted" +"probar","to taste, try, test","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I tasted, was tasting","probara","probaras","probara","probáramos","probarais","probaran","probando","tasting","probado","tasted" +"probar","to taste, try, test","Subjuntivo","Subjunctive","Futuro","Future","I will taste","probare","probares","probare","probáremos","probareis","probaren","probando","tasting","probado","tasted" +"probar","to taste, try, test","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have tasted, tasted","haya probado","hayas probado","haya probado","hayamos probado","hayáis probado","hayan probado","probando","tasting","probado","tasted" +"probar","to taste, try, test","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have tasted","hubiere probado","hubieres probado","hubiere probado","hubiéremos probado","hubiereis probado","hubieren probado","probando","tasting","probado","tasted" +"probar","to taste, try, test","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had tasted","hubiera probado","hubieras probado","hubiera probado","hubiéramos probado","hubierais probado","hubieran probado","probando","tasting","probado","tasted" +"probar","to taste, try, test","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Taste! Don't taste!","","prueba","pruebe","probemos","probad","prueben","probando","tasting","probado","tasted" +"probar","to taste, try, test","Imperativo Negativo","Imperative Negative","Presente","Present","Taste! Don't taste!","","no pruebes","no pruebe","no probemos","no probéis","no prueben","probando","tasting","probado","tasted" +"producir","to produce","Indicativo","Indicative","Presente","Present","I produce, am producing","produzco","produces","produce","producimos","producís","producen","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Futuro","Future","I will produce","produciré","producirás","producirá","produciremos","produciréis","producirán","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Imperfecto","Imperfect","I was producing, used to produce, produced","producía","producías","producía","producíamos","producíais","producían","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Pretérito","Preterite","I produced","produje","produjiste","produjo","produjimos","produjisteis","produjeron","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Condicional","Conditional","I would produce","produciría","producirías","produciría","produciríamos","produciríais","producirían","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have produced","he producido","has producido","ha producido","hemos producido","habéis producido","han producido","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have produced","habré producido","habrás producido","habrá producido","habremos producido","habréis producido","habrán producido","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had produced","había producido","habías producido","había producido","habíamos producido","habíais producido","habían producido","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had produced","hube producido","hubiste producido","hubo producido","hubimos producido","hubisteis producido","hubieron producido","produciendo","producing","producido","produced" +"producir","to produce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have produced","habría producido","habrías producido","habría producido","habríamos producido","habríais producido","habrían producido","produciendo","producing","producido","produced" +"produzcamos" +"producir","to produce","Subjuntivo","Subjunctive","Presente","Present","I produce, am producing","produzca","produzcas","produzca","produzcamos","produzcáis","produzcan","produciendo","producing","producido","produced" +"producir","to produce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I produced, was producing","produjera","produjeras","produjera","produjéramos","produjerais","produjeran","produciendo","producing","producido","produced" +"producir","to produce","Subjuntivo","Subjunctive","Futuro","Future","I will produce","produjere","produjeres","produjere","produjéremos","produjereis","produjeren","produciendo","producing","producido","produced" +"producir","to produce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have produced, produced","haya producido","hayas producido","haya producido","hayamos producido","hayáis producido","hayan producido","produciendo","producing","producido","produced" +"producir","to produce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have produced","hubiere producido","hubieres producido","hubiere producido","hubiéremos producido","hubiereis producido","hubieren producido","produciendo","producing","producido","produced" +"producir","to produce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had produced","hubiera producido","hubieras producido","hubiera producido","hubiéramos producido","hubierais producido","hubieran producido","produciendo","producing","producido","produced" +"producir","to produce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Produce! Don't produce!","","produce","produzca","produzcamos","producid","produzcan","produciendo","producing","producido","produced" +"producir","to produce","Imperativo Negativo","Imperative Negative","Presente","Present","Produce! Don't produce!","","no produzcas","no produzca","no produzcamos","no produzcáis","no produzcan","produciendo","producing","producido","produced" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Presente","Present","I prohibit, am prohibiting","prohíbo","prohíbes","prohíbe","prohibimos","prohibís","prohíben","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Futuro","Future","I will prohibit","prohibiré","prohibirás","prohibirá","prohibiremos","prohibiréis","prohibirán","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Imperfecto","Imperfect","I was prohibiting, used to prohibit, prohibited","prohibía","prohibías","prohibía","prohibíamos","prohibíais","prohibían","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Pretérito","Preterite","I prohibited","prohibí","prohibiste","prohibió","prohibimos","prohibisteis","prohibieron","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Condicional","Conditional","I would prohibit","prohibiría","prohibirías","prohibiría","prohibiríamos","prohibiríais","prohibirían","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Presente perfecto","Present Perfect","I have prohibited","he prohibido","has prohibido","ha prohibido","hemos prohibido","habéis prohibido","han prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have prohibited","habré prohibido","habrás prohibido","habrá prohibido","habremos prohibido","habréis prohibido","habrán prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had prohibited","había prohibido","habías prohibido","había prohibido","habíamos prohibido","habíais prohibido","habían prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had prohibited","hube prohibido","hubiste prohibido","hubo prohibido","hubimos prohibido","hubisteis prohibido","hubieron prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have prohibited","habría prohibido","habrías prohibido","habría prohibido","habríamos prohibido","habríais prohibido","habrían prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibamos" +"prohibir","to prohibit, forbid","Subjuntivo","Subjunctive","Presente","Present","I prohibit, am prohibiting","prohíba","prohíbas","prohíba","prohibamos","prohibáis","prohíban","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I prohibited, was prohibiting","prohibiera","prohibieras","prohibiera","prohibiéramos","prohibierais","prohibieran","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Subjuntivo","Subjunctive","Futuro","Future","I will prohibit","prohibiere","prohibieres","prohibiere","prohibiéremos","prohibiereis","prohibieren","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have prohibited, prohibited","haya prohibido","hayas prohibido","haya prohibido","hayamos prohibido","hayáis prohibido","hayan prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have prohibited","hubiere prohibido","hubieres prohibido","hubiere prohibido","hubiéremos prohibido","hubiereis prohibido","hubieren prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had prohibited","hubiera prohibido","hubieras prohibido","hubiera prohibido","hubiéramos prohibido","hubierais prohibido","hubieran prohibido","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Prohibit! Don't prohibit!","","prohíbe","prohíba","prohibamos","prohibid","prohíban","prohibiendo","prohibiting","prohibido","prohibited" +"prohibir","to prohibit, forbid","Imperativo Negativo","Imperative Negative","Presente","Present","Prohibit! Don't prohibit!","","no prohíbas","no prohíba","no prohibamos","no prohibáis","no prohíban","prohibiendo","prohibiting","prohibido","prohibited" +"prometer","to promise","Indicativo","Indicative","Presente","Present","I promise, am promising","prometo","prometes","promete","prometemos","prometéis","prometen","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Futuro","Future","I will promise","prometeré","prometerás","prometerá","prometeremos","prometeréis","prometerán","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Imperfecto","Imperfect","I was promising, used to promise, promised","prometía","prometías","prometía","prometíamos","prometíais","prometían","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Pretérito","Preterite","I promised","prometí","prometiste","prometió","prometimos","prometisteis","prometieron","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Condicional","Conditional","I would promise","prometería","prometerías","prometería","prometeríamos","prometeríais","prometerían","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Presente perfecto","Present Perfect","I have promised","he prometido","has prometido","ha prometido","hemos prometido","habéis prometido","han prometido","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have promised","habré prometido","habrás prometido","habrá prometido","habremos prometido","habréis prometido","habrán prometido","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had promised","había prometido","habías prometido","había prometido","habíamos prometido","habíais prometido","habían prometido","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had promised","hube prometido","hubiste prometido","hubo prometido","hubimos prometido","hubisteis prometido","hubieron prometido","prometiendo","promising","prometido","promised" +"prometer","to promise","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have promised","habría prometido","habrías prometido","habría prometido","habríamos prometido","habríais prometido","habrían prometido","prometiendo","promising","prometido","promised" +"prometamos" +"prometer","to promise","Subjuntivo","Subjunctive","Presente","Present","I promise, am promising","prometa","prometas","prometa","prometamos","prometáis","prometan","prometiendo","promising","prometido","promised" +"prometer","to promise","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I promised, was promising","prometiera","prometieras","prometiera","prometiéramos","prometierais","prometieran","prometiendo","promising","prometido","promised" +"prometer","to promise","Subjuntivo","Subjunctive","Futuro","Future","I will promise","prometiere","prometieres","prometiere","prometiéremos","prometiereis","prometieren","prometiendo","promising","prometido","promised" +"prometer","to promise","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have promised, promised","haya prometido","hayas prometido","haya prometido","hayamos prometido","hayáis prometido","hayan prometido","prometiendo","promising","prometido","promised" +"prometer","to promise","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have promised","hubiere prometido","hubieres prometido","hubiere prometido","hubiéremos prometido","hubiereis prometido","hubieren prometido","prometiendo","promising","prometido","promised" +"prometer","to promise","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had promised","hubiera prometido","hubieras prometido","hubiera prometido","hubiéramos prometido","hubierais prometido","hubieran prometido","prometiendo","promising","prometido","promised" +"prometer","to promise","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Promise! Don't promise!","","promete","prometa","prometamos","prometed","prometan","prometiendo","promising","prometido","promised" +"prometer","to promise","Imperativo Negativo","Imperative Negative","Presente","Present","Promise! Don't promise!","","no prometas","no prometa","no prometamos","no prometáis","no prometan","prometiendo","promising","prometido","promised" +"proponer","to propose","Indicativo","Indicative","Presente","Present","I propose, am proposing","propongo","propones","propone","proponemos","proponéis","proponen","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Futuro","Future","I will propose","propondré","propondrás","propondrá","propondremos","propondréis","propondrán","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Imperfecto","Imperfect","I was proposing, used to propose, proposed","proponía","proponías","proponía","proponíamos","proponíais","proponían","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Pretérito","Preterite","I proposed","propuse","propusiste","propuso","propusimos","propusisteis","propusieron","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Condicional","Conditional","I would propose","propondría","propondrías","propondría","propondríamos","propondríais","propondrían","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Presente perfecto","Present Perfect","I have proposed","he propuesto","has propuesto","ha propuesto","hemos propuesto","habéis propuesto","han propuesto","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have proposed","habré propuesto","habrás propuesto","habrá propuesto","habremos propuesto","habréis propuesto","habrán propuesto","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had proposed","había propuesto","habías propuesto","había propuesto","habíamos propuesto","habíais propuesto","habían propuesto","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had proposed","hube propuesto","hubiste propuesto","hubo propuesto","hubimos propuesto","hubisteis propuesto","hubieron propuesto","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have proposed","habría propuesto","habrías propuesto","habría propuesto","habríamos propuesto","habríais propuesto","habrían propuesto","proponiendo","proposing","propuesto","proposed" +"propongamos" +"proponer","to propose","Subjuntivo","Subjunctive","Presente","Present","I propose, am proposing","proponga","propongas","proponga","propongamos","propongáis","propongan","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I proposed, was proposing","propusiera","propusieras","propusiera","propusiéramos","propusierais","propusieran","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Subjuntivo","Subjunctive","Futuro","Future","I will propose","propusiere","propusieres","propusiere","propusiéremos","propusiereis","propusieren","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have proposed, proposed","haya propuesto","hayas propuesto","haya propuesto","hayamos propuesto","hayáis propuesto","hayan propuesto","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have proposed","hubiere propuesto","hubieres propuesto","hubiere propuesto","hubiéremos propuesto","hubiereis propuesto","hubieren propuesto","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had proposed","hubiera propuesto","hubieras propuesto","hubiera propuesto","hubiéramos propuesto","hubierais propuesto","hubieran propuesto","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Propose! Don't propose!","","propón","proponga","propongamos","proponed","propongan","proponiendo","proposing","propuesto","proposed" +"proponer","to propose","Imperativo Negativo","Imperative Negative","Presente","Present","Propose! Don't propose!","","no propongas","no proponga","no propongamos","no propongáis","no propongan","proponiendo","proposing","propuesto","proposed" +"proseguir","to continue, proceed with","Indicativo","Indicative","Presente","Present","I continue, am continuing","prosigo","prosigues","prosigue","proseguimos","proseguís","prosiguen","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Futuro","Future","I will continue","proseguiré","proseguirás","proseguirá","proseguiremos","proseguiréis","proseguirán","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Imperfecto","Imperfect","I was continuing, used to continue, continued","proseguía","proseguías","proseguía","proseguíamos","proseguíais","proseguían","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Pretérito","Preterite","I continued","proseguí","proseguiste","prosiguió","proseguimos","proseguisteis","prosiguieron","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Condicional","Conditional","I would continue","proseguiría","proseguirías","proseguiría","proseguiríamos","proseguiríais","proseguirían","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Presente perfecto","Present Perfect","I have continued","he proseguido","has proseguido","ha proseguido","hemos proseguido","habéis proseguido","han proseguido","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have continued","habré proseguido","habrás proseguido","habrá proseguido","habremos proseguido","habréis proseguido","habrán proseguido","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had continued","había proseguido","habías proseguido","había proseguido","habíamos proseguido","habíais proseguido","habían proseguido","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had continued","hube proseguido","hubiste proseguido","hubo proseguido","hubimos proseguido","hubisteis proseguido","hubieron proseguido","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have continued","habría proseguido","habrías proseguido","habría proseguido","habríamos proseguido","habríais proseguido","habrían proseguido","prosiguiendo","continuing","proseguido","continued" +"prosigamos" +"proseguir","to continue, proceed with","Subjuntivo","Subjunctive","Presente","Present","I continue, am continuing","prosiga","prosigas","prosiga","prosigamos","prosigáis","prosigan","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I continued, was continuing","prosiguiera","prosiguieras","prosiguiera","prosiguiéramos","prosiguierais","prosiguieran","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Subjuntivo","Subjunctive","Futuro","Future","I will continue","prosiguiere","prosiguieres","prosiguiere","prosiguiéremos","prosiguiereis","prosiguieren","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have continued, continued","haya proseguido","hayas proseguido","haya proseguido","hayamos proseguido","hayáis proseguido","hayan proseguido","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have continued","hubiere proseguido","hubieres proseguido","hubiere proseguido","hubiéremos proseguido","hubiereis proseguido","hubieren proseguido","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had continued","hubiera proseguido","hubieras proseguido","hubiera proseguido","hubiéramos proseguido","hubierais proseguido","hubieran proseguido","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Continue! Don't continue!","","prosigue","prosiga","prosigamos","proseguid","prosigan","prosiguiendo","continuing","proseguido","continued" +"proseguir","to continue, proceed with","Imperativo Negativo","Imperative Negative","Presente","Present","Continue! Don't continue!","","no prosigas","no prosiga","no prosigamos","no prosigáis","no prosigan","prosiguiendo","continuing","proseguido","continued" +"proteger","to protect","Indicativo","Indicative","Presente","Present","I protect, am protecting","protejo","proteges","protege","protegemos","protegéis","protegen","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Futuro","Future","I will protect","protegeré","protegerás","protegerá","protegeremos","protegeréis","protegerán","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Imperfecto","Imperfect","I was protecting, used to protect, protected","protegía","protegías","protegía","protegíamos","protegíais","protegían","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Pretérito","Preterite","I protected","protegí","protegiste","protegió","protegimos","protegisteis","protegieron","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Condicional","Conditional","I would protect","protegería","protegerías","protegería","protegeríamos","protegeríais","protegerían","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Presente perfecto","Present Perfect","I have protected","he protegido","has protegido","ha protegido","hemos protegido","habéis protegido","han protegido","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have protected","habré protegido","habrás protegido","habrá protegido","habremos protegido","habréis protegido","habrán protegido","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had protected","había protegido","habías protegido","había protegido","habíamos protegido","habíais protegido","habían protegido","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had protected","hube protegido","hubiste protegido","hubo protegido","hubimos protegido","hubisteis protegido","hubieron protegido","protegiendo","protecting","protegido","protected" +"proteger","to protect","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have protected","habría protegido","habrías protegido","habría protegido","habríamos protegido","habríais protegido","habrían protegido","protegiendo","protecting","protegido","protected" +"protejamos" +"proteger","to protect","Subjuntivo","Subjunctive","Presente","Present","I protect, am protecting","proteja","protejas","proteja","protejamos","protejáis","protejan","protegiendo","protecting","protegido","protected" +"proteger","to protect","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I protected, was protecting","protegiera","protegieras","protegiera","protegiéramos","protegierais","protegieran","protegiendo","protecting","protegido","protected" +"proteger","to protect","Subjuntivo","Subjunctive","Futuro","Future","I will protect","protegiere","protegieres","protegiere","protegiéremos","protegiereis","protegieren","protegiendo","protecting","protegido","protected" +"proteger","to protect","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have protected, protected","haya protegido","hayas protegido","haya protegido","hayamos protegido","hayáis protegido","hayan protegido","protegiendo","protecting","protegido","protected" +"proteger","to protect","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have protected","hubiere protegido","hubieres protegido","hubiere protegido","hubiéremos protegido","hubiereis protegido","hubieren protegido","protegiendo","protecting","protegido","protected" +"proteger","to protect","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had protected","hubiera protegido","hubieras protegido","hubiera protegido","hubiéramos protegido","hubierais protegido","hubieran protegido","protegiendo","protecting","protegido","protected" +"proteger","to protect","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Protect! Don't protect!","","protege","proteja","protejamos","proteged","protejan","protegiendo","protecting","protegido","protected" +"proteger","to protect","Imperativo Negativo","Imperative Negative","Presente","Present","Protect! Don't protect!","","no protejas","no proteja","no protejamos","no protejáis","no protejan","protegiendo","protecting","protegido","protected" +"protestar","to protest","Indicativo","Indicative","Presente","Present","I protest, am protesting","protesto","protestas","protesta","protestamos","protestáis","protestan","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Futuro","Future","I will protest","protestaré","protestarás","protestará","protestaremos","protestaréis","protestarán","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Imperfecto","Imperfect","I was protesting, used to protest, protested","protestaba","protestabas","protestaba","protestábamos","protestabais","protestaban","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Pretérito","Preterite","I protested","protesté","protestaste","protestó","protestamos","protestasteis","protestaron","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Condicional","Conditional","I would protest","protestaría","protestarías","protestaría","protestaríamos","protestaríais","protestarían","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Presente perfecto","Present Perfect","I have protested","he protestado","has protestado","ha protestado","hemos protestado","habéis protestado","han protestado","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have protested","habré protestado","habrás protestado","habrá protestado","habremos protestado","habréis protestado","habrán protestado","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had protested","había protestado","habías protestado","había protestado","habíamos protestado","habíais protestado","habían protestado","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had protested","hube protestado","hubiste protestado","hubo protestado","hubimos protestado","hubisteis protestado","hubieron protestado","protestando","protesting","protestado","protested" +"protestar","to protest","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have protested","habría protestado","habrías protestado","habría protestado","habríamos protestado","habríais protestado","habrían protestado","protestando","protesting","protestado","protested" +"protestemos" +"protestar","to protest","Subjuntivo","Subjunctive","Presente","Present","I protest, am protesting","proteste","protestes","proteste","protestemos","protestéis","protesten","protestando","protesting","protestado","protested" +"protestar","to protest","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I protested, was protesting","protestara","protestaras","protestara","protestáramos","protestarais","protestaran","protestando","protesting","protestado","protested" +"protestar","to protest","Subjuntivo","Subjunctive","Futuro","Future","I will protest","protestare","protestares","protestare","protestáremos","protestareis","protestaren","protestando","protesting","protestado","protested" +"protestar","to protest","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have protested, protested","haya protestado","hayas protestado","haya protestado","hayamos protestado","hayáis protestado","hayan protestado","protestando","protesting","protestado","protested" +"protestar","to protest","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have protested","hubiere protestado","hubieres protestado","hubiere protestado","hubiéremos protestado","hubiereis protestado","hubieren protestado","protestando","protesting","protestado","protested" +"protestar","to protest","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had protested","hubiera protestado","hubieras protestado","hubiera protestado","hubiéramos protestado","hubierais protestado","hubieran protestado","protestando","protesting","protestado","protested" +"protestar","to protest","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Protest! Don't protest!","","protesta","proteste","protestemos","protestad","protesten","protestando","protesting","protestado","protested" +"protestar","to protest","Imperativo Negativo","Imperative Negative","Presente","Present","Protest! Don't protest!","","no protestes","no proteste","no protestemos","no protestéis","no protesten","protestando","protesting","protestado","protested" +"provocar","to provoke","Indicativo","Indicative","Presente","Present","I provoke, am provoking","provoco","provocas","provoca","provocamos","provocáis","provocan","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Futuro","Future","I will provoke","provocaré","provocarás","provocará","provocaremos","provocaréis","provocarán","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Imperfecto","Imperfect","I was provoking, used to provoke, provoked","provocaba","provocabas","provocaba","provocábamos","provocabais","provocaban","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Pretérito","Preterite","I provoked","provoqué","provocaste","provocó","provocamos","provocasteis","provocaron","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Condicional","Conditional","I would provoke","provocaría","provocarías","provocaría","provocaríamos","provocaríais","provocarían","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Presente perfecto","Present Perfect","I have provoked","he provocado","has provocado","ha provocado","hemos provocado","habéis provocado","han provocado","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have provoked","habré provocado","habrás provocado","habrá provocado","habremos provocado","habréis provocado","habrán provocado","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had provoked","había provocado","habías provocado","había provocado","habíamos provocado","habíais provocado","habían provocado","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had provoked","hube provocado","hubiste provocado","hubo provocado","hubimos provocado","hubisteis provocado","hubieron provocado","provocando","provoking","provocado","provoked" +"provocar","to provoke","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have provoked","habría provocado","habrías provocado","habría provocado","habríamos provocado","habríais provocado","habrían provocado","provocando","provoking","provocado","provoked" +"provoquemos" +"provocar","to provoke","Subjuntivo","Subjunctive","Presente","Present","I provoke, am provoking","provoque","provoques","provoque","provoquemos","provoquéis","provoquen","provocando","provoking","provocado","provoked" +"provocar","to provoke","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I provoked, was provoking","provocara","provocaras","provocara","provocáramos","provocarais","provocaran","provocando","provoking","provocado","provoked" +"provocar","to provoke","Subjuntivo","Subjunctive","Futuro","Future","I will provoke","provocare","provocares","provocare","provocáremos","provocareis","provocaren","provocando","provoking","provocado","provoked" +"provocar","to provoke","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have provoked, provoked","haya provocado","hayas provocado","haya provocado","hayamos provocado","hayáis provocado","hayan provocado","provocando","provoking","provocado","provoked" +"provocar","to provoke","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have provoked","hubiere provocado","hubieres provocado","hubiere provocado","hubiéremos provocado","hubiereis provocado","hubieren provocado","provocando","provoking","provocado","provoked" +"provocar","to provoke","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had provoked","hubiera provocado","hubieras provocado","hubiera provocado","hubiéramos provocado","hubierais provocado","hubieran provocado","provocando","provoking","provocado","provoked" +"provocar","to provoke","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Provoke! Don't provoke!","","provoca","provoque","provoquemos","provocad","provoquen","provocando","provoking","provocado","provoked" +"provocar","to provoke","Imperativo Negativo","Imperative Negative","Presente","Present","Provoke! Don't provoke!","","no provoques","no provoque","no provoquemos","no provoquéis","no provoquen","provocando","provoking","provocado","provoked" +"publicar","to publish","Indicativo","Indicative","Presente","Present","I publish, am publishing","publico","publicas","publica","publicamos","publicáis","publican","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Futuro","Future","I will publish","publicaré","publicarás","publicará","publicaremos","publicaréis","publicarán","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Imperfecto","Imperfect","I was publishing, used to publish, published","publicaba","publicabas","publicaba","publicábamos","publicabais","publicaban","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Pretérito","Preterite","I published","publiqué","publicaste","publicó","publicamos","publicasteis","publicaron","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Condicional","Conditional","I would publish","publicaría","publicarías","publicaría","publicaríamos","publicaríais","publicarían","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Presente perfecto","Present Perfect","I have published","he publicado","has publicado","ha publicado","hemos publicado","habéis publicado","han publicado","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have published","habré publicado","habrás publicado","habrá publicado","habremos publicado","habréis publicado","habrán publicado","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had published","había publicado","habías publicado","había publicado","habíamos publicado","habíais publicado","habían publicado","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had published","hube publicado","hubiste publicado","hubo publicado","hubimos publicado","hubisteis publicado","hubieron publicado","publicando","publishing","publicado","published" +"publicar","to publish","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have published","habría publicado","habrías publicado","habría publicado","habríamos publicado","habríais publicado","habrían publicado","publicando","publishing","publicado","published" +"publiquemos" +"publicar","to publish","Subjuntivo","Subjunctive","Presente","Present","I publish, am publishing","publique","publiques","publique","publiquemos","publiquéis","publiquen","publicando","publishing","publicado","published" +"publicar","to publish","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I published, was publishing","publicara","publicaras","publicara","publicáramos","publicarais","publicaran","publicando","publishing","publicado","published" +"publicar","to publish","Subjuntivo","Subjunctive","Futuro","Future","I will publish","publicare","publicares","publicare","publicáremos","publicareis","publicaren","publicando","publishing","publicado","published" +"publicar","to publish","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have published, published","haya publicado","hayas publicado","haya publicado","hayamos publicado","hayáis publicado","hayan publicado","publicando","publishing","publicado","published" +"publicar","to publish","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have published","hubiere publicado","hubieres publicado","hubiere publicado","hubiéremos publicado","hubiereis publicado","hubieren publicado","publicando","publishing","publicado","published" +"publicar","to publish","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had published","hubiera publicado","hubieras publicado","hubiera publicado","hubiéramos publicado","hubierais publicado","hubieran publicado","publicando","publishing","publicado","published" +"publicar","to publish","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Publish! Don't publish!","","publica","publique","publiquemos","publicad","publiquen","publicando","publishing","publicado","published" +"publicar","to publish","Imperativo Negativo","Imperative Negative","Presente","Present","Publish! Don't publish!","","no publiques","no publique","no publiquemos","no publiquéis","no publiquen","publicando","publishing","publicado","published" +"purificar","to purify","Indicativo","Indicative","Presente","Present","I purify, am purifying","purifico","purificas","purifica","purificamos","purificáis","purifican","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Futuro","Future","I will purify","purificaré","purificarás","purificará","purificaremos","purificaréis","purificarán","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Imperfecto","Imperfect","I was purifying, used to purify, purified","purificaba","purificabas","purificaba","purificábamos","purificabais","purificaban","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Pretérito","Preterite","I purified","purifiqué","purificaste","purificó","purificamos","purificasteis","purificaron","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Condicional","Conditional","I would purify","purificaría","purificarías","purificaría","purificaríamos","purificaríais","purificarían","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Presente perfecto","Present Perfect","I have purified","he purificado","has purificado","ha purificado","hemos purificado","habéis purificado","han purificado","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have purified","habré purificado","habrás purificado","habrá purificado","habremos purificado","habréis purificado","habrán purificado","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had purified","había purificado","habías purificado","había purificado","habíamos purificado","habíais purificado","habían purificado","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had purified","hube purificado","hubiste purificado","hubo purificado","hubimos purificado","hubisteis purificado","hubieron purificado","purificando","purifying","purificado","purified" +"purificar","to purify","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have purified","habría purificado","habrías purificado","habría purificado","habríamos purificado","habríais purificado","habrían purificado","purificando","purifying","purificado","purified" +"purifiquemos" +"purificar","to purify","Subjuntivo","Subjunctive","Presente","Present","I purify, am purifying","purifique","purifiques","purifique","purifiquemos","purifiquéis","purifiquen","purificando","purifying","purificado","purified" +"purificar","to purify","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I purified, was purifying","purificara","purificaras","purificara","purificáramos","purificarais","purificaran","purificando","purifying","purificado","purified" +"purificar","to purify","Subjuntivo","Subjunctive","Futuro","Future","I will purify","purificare","purificares","purificare","purificáremos","purificareis","purificaren","purificando","purifying","purificado","purified" +"purificar","to purify","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have purified, purified","haya purificado","hayas purificado","haya purificado","hayamos purificado","hayáis purificado","hayan purificado","purificando","purifying","purificado","purified" +"purificar","to purify","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have purified","hubiere purificado","hubieres purificado","hubiere purificado","hubiéremos purificado","hubiereis purificado","hubieren purificado","purificando","purifying","purificado","purified" +"purificar","to purify","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had purified","hubiera purificado","hubieras purificado","hubiera purificado","hubiéramos purificado","hubierais purificado","hubieran purificado","purificando","purifying","purificado","purified" +"purificar","to purify","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Purify! Don't purify!","","purifica","purifique","purifiquemos","purificad","purifiquen","purificando","purifying","purificado","purified" +"purificar","to purify","Imperativo Negativo","Imperative Negative","Presente","Present","Purify! Don't purify!","","no purifiques","no purifique","no purifiquemos","no purifiquéis","no purifiquen","purificando","purifying","purificado","purified" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Presente","Present","I break, am breaking","quiebro","quiebras","quiebra","quebramos","quebráis","quiebran","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Futuro","Future","I will break","quebraré","quebrarás","quebrará","quebraremos","quebraréis","quebrarán","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Imperfecto","Imperfect","I was breaking, used to break, broke","quebraba","quebrabas","quebraba","quebrábamos","quebrabais","quebraban","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Pretérito","Preterite","I broke","quebré","quebraste","quebró","quebramos","quebrasteis","quebraron","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Condicional","Conditional","I would break","quebraría","quebrarías","quebraría","quebraríamos","quebraríais","quebrarían","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Presente perfecto","Present Perfect","I have broken","he quebrado","has quebrado","ha quebrado","hemos quebrado","habéis quebrado","han quebrado","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have broken","habré quebrado","habrás quebrado","habrá quebrado","habremos quebrado","habréis quebrado","habrán quebrado","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had broken","había quebrado","habías quebrado","había quebrado","habíamos quebrado","habíais quebrado","habían quebrado","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had broken","hube quebrado","hubiste quebrado","hubo quebrado","hubimos quebrado","hubisteis quebrado","hubieron quebrado","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have broken","habría quebrado","habrías quebrado","habría quebrado","habríamos quebrado","habríais quebrado","habrían quebrado","quebrando","breaking","quebrado","broken" +"quebremos" +"quebrar","to break, smash; to fail, go bankrupt","Subjuntivo","Subjunctive","Presente","Present","I break, am breaking","quiebre","quiebres","quiebre","quebremos","quebréis","quiebren","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I broke, was breaking","quebrara","quebraras","quebrara","quebráramos","quebrarais","quebraran","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Subjuntivo","Subjunctive","Futuro","Future","I will break","quebrare","quebrares","quebrare","quebráremos","quebrareis","quebraren","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have broken, broke","haya quebrado","hayas quebrado","haya quebrado","hayamos quebrado","hayáis quebrado","hayan quebrado","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have broken","hubiere quebrado","hubieres quebrado","hubiere quebrado","hubiéremos quebrado","hubiereis quebrado","hubieren quebrado","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had broken","hubiera quebrado","hubieras quebrado","hubiera quebrado","hubiéramos quebrado","hubierais quebrado","hubieran quebrado","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Break! Don't break!","","quiebra","quiebre","quebremos","quebrad","quiebren","quebrando","breaking","quebrado","broken" +"quebrar","to break, smash; to fail, go bankrupt","Imperativo Negativo","Imperative Negative","Presente","Present","Break! Don't break!","","no quiebres","no quiebre","no quebremos","no quebréis","no quiebren","quebrando","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Presente","Present","I break, am breaking","me quiebro","te quiebras","se quiebra","nos quebramos","os quebráis","se quiebran","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Futuro","Future","I will break","me quebraré","te quebrarás","se quebrará","nos quebraremos","os quebraréis","se quebrarán","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Imperfecto","Imperfect","I was breaking, used to break, broke","me quebraba","te quebrabas","se quebraba","nos quebrábamos","os quebrabais","se quebraban","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Pretérito","Preterite","I broke","me quebré","te quebraste","se quebró","nos quebramos","quebrasteis","se quebraron","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Condicional","Conditional","I would break","me quebraría","te quebrarías","se quebraría","nos quebraríamos","os quebraríais","se quebrarían","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Presente perfecto","Present Perfect","I have broken","me he quebrado","te has quebrado","se ha quebrado","nos hemos quebrado","os habéis quebrado","se han quebrado","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have broken","me habré quebrado","te habrás quebrado","se habrá quebrado","nos habremos quebrado","os habréis quebrado","se habrán quebrado","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had broken","me había quebrado","te habías quebrado","se había quebrado","nos habíamos quebrado","os habíais quebrado","se habían quebrado","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had broken","me hube quebrado","te hubiste quebrado","se hubo quebrado","nos hubimos quebrado","os hubisteis quebrado","se hubieron quebrado","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have broken","me habría quebrado","te habrías quebrado","se habría quebrado","nos habríamos quebrado","os habríais quebrado","se habrían quebrado","quebrándose","breaking","quebrado","broken" +"nos quebremos" +"quebrarse","to break, smash, get broken","Subjuntivo","Subjunctive","Presente","Present","I break, am breaking","me quiebre","te quiebres","se quiebre","nos quebremos","os quebréis","se quiebren","quebrándose","breaking","quebrado","broken" +"querer","to want, love","Indicativo","Indicative","Presente","Present","I want, am wanting","quiero","quieres","quiere","queremos","queréis","quieren","queriendo","wanting","querido","wanted" +"quebrarse","to break, smash, get broken","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I broke, was breaking","me quebrara","te quebraras","se quebrara","nos quebráramos","os quebrarais","se quebraran","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Subjuntivo","Subjunctive","Futuro","Future","I will break","me quebrare","te quebrares","se quebrare","nos quebráremos","os quebrareis","se quebraren","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have broken, broke","me haya quebrado","te hayas quebrado","se haya quebrado","nos hayamos quebrado","os hayáis quebrado","se hayan quebrado","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have broken","me hubiere quebrado","te hubieres quebrado","se hubiere quebrado","nos hubiéremos quebrado","os hubiereis quebrado","se hubieren quebrado","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had broken","me hubiera quebrado","te hubieras quebrado","se hubiera quebrado","nos hubiéramos quebrado","os hubierais quebrado","se hubieran quebrado","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Break! Don't break!","","quiébrate","quiébrese","nos quebremos","quebraos","quiébrense","quebrándose","breaking","quebrado","broken" +"quebrarse","to break, smash, get broken","Imperativo Negativo","Imperative Negative","Presente","Present","Break! Don't break!","","no te quiebres","no se quiebre","no nos quebremos","no os quebréis","no se quiebren","quebrándose","breaking","quebrado","broken" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Presente","Present","I stay, am staying","quedo","quedas","queda","quedamos","quedáis","quedan","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Futuro","Future","I will stay","quedaré","quedarás","quedará","quedaremos","quedaréis","quedarán","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Imperfecto","Imperfect","I was staying, used to stay, stayed","quedaba","quedabas","quedaba","quedábamos","quedabais","quedaban","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Pretérito","Preterite","I stayed","quedé","quedaste","quedó","quedamos","quedasteis","quedaron","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Condicional","Conditional","I would stay","quedaría","quedarías","quedaría","quedaríamos","quedaríais","quedarían","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have stayed","he quedado","has quedado","ha quedado","hemos quedado","habéis quedado","han quedado","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have stayed","habré quedado","habrás quedado","habrá quedado","habremos quedado","habréis quedado","habrán quedado","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had stayed","había quedado","habías quedado","había quedado","habíamos quedado","habíais quedado","habían quedado","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had stayed","hube quedado","hubiste quedado","hubo quedado","hubimos quedado","hubisteis quedado","hubieron quedado","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have stayed","habría quedado","habrías quedado","habría quedado","habríamos quedado","habríais quedado","habrían quedado","quedando","staying","quedado","stayed" +"quedemos" +"quedar","to stay, remain, be left; to be [indicating location]","Subjuntivo","Subjunctive","Presente","Present","I stay, am staying","quede","quedes","quede","quedemos","quedéis","queden","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I stayed, was staying","quedara","quedaras","quedara","quedáramos","quedarais","quedaran","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Subjuntivo","Subjunctive","Futuro","Future","I will stay","quedare","quedares","quedare","quedáremos","quedareis","quedaren","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have stayed, stayed","haya quedado","hayas quedado","haya quedado","hayamos quedado","hayáis quedado","hayan quedado","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have stayed","hubiere quedado","hubieres quedado","hubiere quedado","hubiéremos quedado","hubiereis quedado","hubieren quedado","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had stayed","hubiera quedado","hubieras quedado","hubiera quedado","hubiéramos quedado","hubierais quedado","hubieran quedado","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","stay! Don't stay!","","queda","quede","quedemos","quedad","queden","quedando","staying","quedado","stayed" +"quedar","to stay, remain, be left; to be [indicating location]","Imperativo Negativo","Imperative Negative","Presente","Present","stay! Don't stay!","","no quedes","no quede","no quedemos","no quedéis","no queden","quedando","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Presente","Present","I stay, am staying","me quedo","te quedas","se queda","nos quedamos","os quedáis","se quedan","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Futuro","Future","I will stay","me quedaré","te quedarás","se quedará","nos quedaremos","os quedaréis","se quedarán","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Imperfecto","Imperfect","I was staying, used to stay, stayed","me quedaba","te quedabas","se quedaba","nos quedábamos","os quedabais","se quedaban","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Pretérito","Preterite","I stayed","me quedé","te quedaste","se quedó","nos quedamos","os quedasteis","se quedaron","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Condicional","Conditional","I would stay","me quedaría","te quedarías","se quedaría","nos quedaríamos","os quedaríais","se quedarían","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have stayed","me he quedado","te has quedado","se ha quedado","nos hemos quedado","os habéis quedado","se han quedado","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have stayed","me habré quedado","te habrás quedado","se habrá quedado","nos habremos quedado","os habréis quedado","se habrán quedado","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had stayed","me había quedado","te habías quedado","se había quedado","nos habíamos quedado","os habíais quedado","se habían quedado","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had stayed","me hube quedado","te hubiste quedado","se hubo quedado","nos hubimos quedado","os hubisteis quedado","se hubieron quedado","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have stayed","me habría quedado","te habrías quedado","se habría quedado","nos habríamos quedado","os habríais quedado","se habrían quedado","quedándose","staying","quedado","stayed" +"nos quedemos" +"quedarse","to stay [behind], remain [behind]","Subjuntivo","Subjunctive","Presente","Present","I stay, am staying","me quede","te quedes","se quede","nos quedemos","os quedéis","se queden","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I stayed, was staying","me quedara","te quedaras","se quedara","nos quedáramos","os quedarais","se quedaran","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Subjuntivo","Subjunctive","Futuro","Future","I will stay","me quedare","te quedares","se quedare","nos quedáremos","os quedareis","se quedaren","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have stayed, stayed","me haya quedado","te hayas quedado","se haya quedado","nos hayamos quedado","os hayáis quedado","se hayan quedado","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have stayed","me hubiere quedado","te hubieres quedado","se hubiere quedado","nos hubiéremos quedado","os hubiereis quedado","se hubieren quedado","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had stayed","me hubiera quedado","te hubieras quedado","se hubiera quedado","nos hubiéramos quedado","os hubierais quedado","se hubieran quedado","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Stay! Don't stay!","","quédate","quédese","nos quedemos","quedaos","quédense","quedándose","staying","quedado","stayed" +"quedarse","to stay [behind], remain [behind]","Imperativo Negativo","Imperative Negative","Presente","Present","Stay! Don't stay!","","no te quedes","no se quede","no nos quedemos","no os quedéis","no se queden","quedándose","staying","quedado","stayed" +"quejarse","to complain","Indicativo","Indicative","Presente","Present","I complain, am complaining","me quejo","te quejas","se queja","nos quejamos","os quejáis","se quejan","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Futuro","Future","I will complain","me quejaré","te quejarás","se quejará","nos quejaremos","os quejaréis","se quejarán","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Imperfecto","Imperfect","I was complaining, used to complain, complained","me quejaba","te quejabas","se quejaba","nos quejábamos","os quejabais","se quejaban","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Pretérito","Preterite","I complained","me quejé","te quejaste","se quejó","nos quejamos","os quejasteis","se quejaron","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Condicional","Conditional","I would complain","me quejaría","te quejarías","se quejaría","nos quejaríamos","os quejaríais","se quejarían","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have complained","me he quejado","te has quejado","se ha quejado","nos hemos quejado","os habéis quejado","se han quejado","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have complained","me habré quejado","te habrás quejado","se habrá quejado","nos habremos quejado","os habréis quejado","se habrán quejado","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had complained","me había quejado","te habías quejado","se había quejado","nos habíamos quejado","os habíais quejado","se habían quejado","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had complained","me hube quejado","te hubiste quejado","se hubo quejado","nos hubimos quejado","os hubisteis quejado","se hubieron quejado","quejándose","complaining","quejado","complained" +"quejarse","to complain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have complained","me habría quejado","te habrías quejado","se habría quejado","nos habríamos quejado","os habríais quejado","se habrían quejado","quejándose","complaining","quejado","complained" +"nos quejemos" +"quejarse","to complain","Subjuntivo","Subjunctive","Presente","Present","I complain, am complaining","me queje","te quejes","se queje","nos quejemos","os quejéis","se quejen","quejándose","complaining","quejado","complained" +"quejarse","to complain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I complained, was complaining","me quejara","te quejaras","se quejara","nos quejáramos","os quejarais","se quejaran","quejándose","complaining","quejado","complained" +"quejarse","to complain","Subjuntivo","Subjunctive","Futuro","Future","I will complain","me quejare","te quejares","se quejare","nos quejáremos","os quejareis","se quejaren","quejándose","complaining","quejado","complained" +"quejarse","to complain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have complained, complained","me haya quejado","te hayas quejado","se haya quejado","nos hayamos quejado","os hayáis quejado","se hayan quejado","quejándose","complaining","quejado","complained" +"quejarse","to complain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have complained","me hubiere quejado","te hubieres quejado","se hubiere quejado","nos hubiéremos quejado","os hubiereis quejado","se hubieren quejado","quejándose","complaining","quejado","complained" +"quejarse","to complain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had complained","me hubiera quejado","te hubieras quejado","se hubiera quejado","nos hubiéramos quejado","os hubierais quejado","se hubieran quejado","quejándose","complaining","quejado","complained" +"quejarse","to complain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Complain! Don't complain!","","quéjate","quéjese","nos quejemos","quejaos","quéjense","quejándose","complaining","quejado","complained" +"quejarse","to complain","Imperativo Negativo","Imperative Negative","Presente","Present","Complain! Don't complain!","","no te quejes","no se queje","no nos quejemos","no os quejéis","no se quejen","quejándose","complaining","quejado","complained" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Presente","Present","I burn, am burning","quemo","quemas","quema","quemamos","quemáis","queman","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Futuro","Future","I will burn","quemaré","quemarás","quemará","quemaremos","quemaréis","quemarán","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Imperfecto","Imperfect","I was burning, used to burn, burned","quemaba","quemabas","quemaba","quemábamos","quemabais","quemaban","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Pretérito","Preterite","I burned","quemé","quemaste","quemó","quemamos","quemasteis","quemaron","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Condicional","Conditional","I would burn","quemaría","quemarías","quemaría","quemaríamos","quemaríais","quemarían","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Presente perfecto","Present Perfect","I have burned","he quemado","has quemado","ha quemado","hemos quemado","habéis quemado","han quemado","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have burned","habré quemado","habrás quemado","habrá quemado","habremos quemado","habréis quemado","habrán quemado","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had burned","había quemado","habías quemado","había quemado","habíamos quemado","habíais quemado","habían quemado","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had burned","hube quemado","hubiste quemado","hubo quemado","hubimos quemado","hubisteis quemado","hubieron quemado","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have burned","habría quemado","habrías quemado","habría quemado","habríamos quemado","habríais quemado","habrían quemado","quemando","burning","quemado","burned" +"quememos" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Subjuntivo","Subjunctive","Presente","Present","I burn, am burning","queme","quemes","queme","quememos","queméis","quemen","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I burned, was burning","quemara","quemaras","quemara","quemáramos","quemarais","quemaran","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Subjuntivo","Subjunctive","Futuro","Future","I will burn","quemare","quemares","quemare","quemáremos","quemareis","quemaren","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have burned, burned","haya quemado","hayas quemado","haya quemado","hayamos quemado","hayáis quemado","hayan quemado","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have burned","hubiere quemado","hubieres quemado","hubiere quemado","hubiéremos quemado","hubiereis quemado","hubieren quemado","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had burned","hubiera quemado","hubieras quemado","hubiera quemado","hubiéramos quemado","hubierais quemado","hubieran quemado","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Burn! Don't burn!","","quema","queme","quememos","quemad","quemen","quemando","burning","quemado","burned" +"quemar","to burn [up], set on fire, scald, scorch; to be burning hot","Imperativo Negativo","Imperative Negative","Presente","Present","Burn! Don't burn!","","no quemes","no queme","no quememos","no queméis","no quemen","quemando","burning","quemado","burned" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Presente","Present","I burn up, am burning up","me quemo","te quemas","se quema","nos quemamos","os quemáis","se queman","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Futuro","Future","I will burn up","me quemaré","te quemarás","se quemará","nos quemaremos","os quemaréis","se quemarán","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Imperfecto","Imperfect","I was burning up, used to burn up, burned up","me quemaba","te quemabas","se quemaba","nos quemábamos","os quemabais","se quemaban","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Pretérito","Preterite","I burned up","me quemé","te quemaste","se quemó","nos quemamos","os quemasteis","se quemaron","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Condicional","Conditional","I would burn up","me quemaría","te quemarías","se quemaría","nos quemaríamos","os quemaríais","se quemarían","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Presente perfecto","Present Perfect","I have burned up","me he quemado","te has quemado","se ha quemado","nos hemos quemado","os habéis quemado","se han quemado","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have burned up","me habré quemado","te habrás quemado","se habrá quemado","nos habremos quemado","os habréis quemado","se habrán quemado","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had burned up","me había quemado","te habías quemado","se había quemado","nos habíamos quemado","os habíais quemado","se habían quemado","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had burned up","me hube quemado","te hubiste quemado","se hubo quemado","nos hubimos quemado","os hubisteis quemado","se hubieron quemado","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have burned up","me habría quemado","te habrías quemado","se habría quemado","nos habríamos quemado","os habríais quemado","se habrían quemado","quemándose","burning up","quemado","burned up" +"nos quememos" +"quemarse","to burn [oneself], to burn up, burn down","Subjuntivo","Subjunctive","Presente","Present","I burn up, am burning up","me queme","te quemes","se queme","nos quememos","os queméis","se quemen","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I burned up, was burning up","me quemara","te quemaras","se quemara","nos quemáramos","os quemarais","se quemaran","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Subjuntivo","Subjunctive","Futuro","Future","I will burn up","me quemare","te quemares","se quemare","nos quemáremos","os quemareis","se quemaren","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have burned up, burned up","me haya quemado","te hayas quemado","se haya quemado","nos hayamos quemado","os hayáis quemado","se hayan quemado","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have burned up","me hubiere quemado","te hubieres quemado","se hubiere quemado","nos hubiéremos quemado","os hubiereis quemado","se hubieren quemado","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had burned up","me hubiera quemado","te hubieras quemado","se hubiera quemado","nos hubiéramos quemado","os hubierais quemado","se hubieran quemado","quemándose","burning up","quemado","burned up" +"quemarse","to burn [oneself], to burn up, burn down","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","burn up! Don't burn up!","","quémate","quémese","nos quememos","quemaos","quémense","quemándose","burning up","quemado","burned up", +"quemarse","to burn [oneself], to burn up, burn down","Imperativo Negativo","Imperative Negative","Presente","Present","burn up! Don't burn up!","","no te quemes","no se queme","no nos quememos","no os queméis","no se quemen","quemándose","burning up","quemado","burned up", +"querer","to want, love","Indicativo","Indicative","Imperfecto","Imperfect","I was wanting, used to want, wanted","quería","querías","quería","queríamos","queríais","querían","queriendo","wanting","querido","wanted" +"querer","to want, love","Indicativo","Indicative","Pretérito","Preterite","I wanted","quise","quisiste","quiso","quisimos","quisisteis","quisieron","queriendo","wanting","querido","wanted" +"querer","to want, love","Indicativo","Indicative","Condicional","Conditional","I would want","querría","querrías","querría","querríamos","querríais","querrían","queriendo","wanting","querido","wanted" +"querer","to want, love","Indicativo","Indicative","Presente perfecto","Present Perfect","I have wanted","he querido","has querido","ha querido","hemos querido","habéis querido","han querido","queriendo","wanting","querido","wanted" +"querer","to want, love","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have wanted","habré querido","habrás querido","habrá querido","habremos querido","habréis querido","habrán querido","queriendo","wanting","querido","wanted" +"querer","to want, love","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had wanted","había querido","habías querido","había querido","habíamos querido","habíais querido","habían querido","queriendo","wanting","querido","wanted" +"querer","to want, love","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had wanted","hube querido","hubiste querido","hubo querido","hubimos querido","hubisteis querido","hubieron querido","queriendo","wanting","querido","wanted" +"querer","to want, love","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have wanted","habría querido","habrías querido","habría querido","habríamos querido","habríais querido","habrían querido","queriendo","wanting","querido","wanted" +"queramos" +"querer","to want, love","Subjuntivo","Subjunctive","Presente","Present","I want, am wanting","quiera","quieras","quiera","queramos","queráis","quieran","queriendo","wanting","querido","wanted" +"querer","to want, love","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I wanted, was wanting","quisiera","quisieras","quisiera","quisiéramos","quisierais","quisieran","queriendo","wanting","querido","wanted" +"querer","to want, love","Subjuntivo","Subjunctive","Futuro","Future","I will want","quisiere","quisieres","quisiere","quisiéremos","quisiereis","quisieren","queriendo","wanting","querido","wanted" +"querer","to want, love","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have wanted, wanted","haya querido","hayas querido","haya querido","hayamos querido","hayáis querido","hayan querido","queriendo","wanting","querido","wanted" +"querer","to want, love","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have wanted","hubiere querido","hubieres querido","hubiere querido","hubiéremos querido","hubiereis querido","hubieren querido","queriendo","wanting","querido","wanted" +"querer","to want, love","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had wanted","hubiera querido","hubieras querido","hubiera querido","hubiéramos querido","hubierais querido","hubieran querido","queriendo","wanting","querido","wanted" +"querer","to want, love","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Want! Don't want!","","quiere","quiera","queramos","quered","quieran","queriendo","wanting","querido","wanted" +"querer","to want, love","Imperativo Negativo","Imperative Negative","Presente","Present","Want! Don't want!","","no quieras","no quiera","no queramos","no queráis","no quieran","queriendo","wanting","querido","wanted" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Presente","Present","I achieve, am achieving","realizo","realizas","realiza","realizamos","realizáis","realizan","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Futuro","Future","I will achieve","realizaré","realizarás","realizará","realizaremos","realizaréis","realizarán","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Imperfecto","Imperfect","I was achieving, used to achieve, achieved","realizaba","realizabas","realizaba","realizábamos","realizabais","realizaban","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Pretérito","Preterite","I achieved","realicé","realizaste","realizó","realizamos","realizasteis","realizaron","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Condicional","Conditional","I would achieve","realizaría","realizarías","realizaría","realizaríamos","realizaríais","realizarían","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have achieved","he realizado","has realizado","ha realizado","hemos realizado","habéis realizado","han realizado","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have achieved","habré realizado","habrás realizado","habrá realizado","habremos realizado","habréis realizado","habrán realizado","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had achieved","había realizado","habías realizado","había realizado","habíamos realizado","habíais realizado","habían realizado","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had achieved","hube realizado","hubiste realizado","hubo realizado","hubimos realizado","hubisteis realizado","hubieron realizado","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have achieved","habría realizado","habrías realizado","habría realizado","habríamos realizado","habríais realizado","habrían realizado","realizando","achieving","realizado","achieved" +"realicemos" +"realizar","to achieve, attain, accomplish, realize","Subjuntivo","Subjunctive","Presente","Present","I achieve, am achieving","realice","realices","realice","realicemos","realicéis","realicen","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I achieved, was achieving","realizara","realizaras","realizara","realizáramos","realizarais","realizaran","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Subjuntivo","Subjunctive","Futuro","Future","I will achieve","realizare","realizares","realizare","realizáremos","realizareis","realizaren","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have achieved, achieved","haya realizado","hayas realizado","haya realizado","hayamos realizado","hayáis realizado","hayan realizado","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have achieved","hubiere realizado","hubieres realizado","hubiere realizado","hubiéremos realizado","hubiereis realizado","hubieren realizado","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had achieved","hubiera realizado","hubieras realizado","hubiera realizado","hubiéramos realizado","hubierais realizado","hubieran realizado","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Achieve! Don't achieve!","","realiza","realice","realicemos","realizad","realicen","realizando","achieving","realizado","achieved" +"realizar","to achieve, attain, accomplish, realize","Imperativo Negativo","Imperative Negative","Presente","Present","Achieve! Don't achieve!","","no realices","no realice","no realicemos","no realicéis","no realicen","realizando","achieving","realizado","achieved" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Presente","Present","I reject, am rejecting","rechazo","rechazas","rechaza","rechazamos","rechazáis","rechazan","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Futuro","Future","I will reject","rechazaré","rechazarás","rechazará","rechazaremos","rechazaréis","rechazarán","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Imperfecto","Imperfect","I was rejecting, used to reject, rejected","rechazaba","rechazabas","rechazaba","rechazábamos","rechazabais","rechazaban","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Pretérito","Preterite","I rejected","rechacé","rechazaste","rechazó","rechazamos","rechazasteis","rechazaron","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Condicional","Conditional","I would reject","rechazaría","rechazarías","rechazaría","rechazaríamos","rechazaríais","rechazarían","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Presente perfecto","Present Perfect","I have rejected","he rechazado","has rechazado","ha rechazado","hemos rechazado","habéis rechazado","han rechazado","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have rejected","habré rechazado","habrás rechazado","habrá rechazado","habremos rechazado","habréis rechazado","habrán rechazado","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had rejected","había rechazado","habías rechazado","había rechazado","habíamos rechazado","habíais rechazado","habían rechazado","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had rejected","hube rechazado","hubiste rechazado","hubo rechazado","hubimos rechazado","hubisteis rechazado","hubieron rechazado","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have rejected","habría rechazado","habrías rechazado","habría rechazado","habríamos rechazado","habríais rechazado","habrían rechazado","rechazando","rejecting","rechazado","rejected" +"rechacemos" +"rechazar","to reject; to push back, repel","Subjuntivo","Subjunctive","Presente","Present","I reject, am rejecting","rechace","rechaces","rechace","rechacemos","rechacéis","rechacen","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I rejected, was rejecting","rechazara","rechazaras","rechazara","rechazáramos","rechazarais","rechazaran","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Subjuntivo","Subjunctive","Futuro","Future","I will reject","rechazare","rechazares","rechazare","rechazáremos","rechazareis","rechazaren","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have rejected, rejected","haya rechazado","hayas rechazado","haya rechazado","hayamos rechazado","hayáis rechazado","hayan rechazado","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have rejected","hubiere rechazado","hubieres rechazado","hubiere rechazado","hubiéremos rechazado","hubiereis rechazado","hubieren rechazado","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had rejected","hubiera rechazado","hubieras rechazado","hubiera rechazado","hubiéramos rechazado","hubierais rechazado","hubieran rechazado","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Reject! Don't reject!","","rechaza","rechace","rechacemos","rechazad","rechacen","rechazando","rejecting","rechazado","rejected" +"rechazar","to reject; to push back, repel","Imperativo Negativo","Imperative Negative","Presente","Present","Reject! Don't reject!","","no rechaces","no rechace","no rechacemos","no rechacéis","no rechacen","rechazando","rejecting","rechazado","rejected" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Presente","Present","I receive, am receiving","recibo","recibes","recibe","recibimos","recibís","reciben","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Futuro","Future","I will receive","recibiré","recibirás","recibirá","recibiremos","recibiréis","recibirán","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Imperfecto","Imperfect","I was receiving, used to receive, received","recibía","recibías","recibía","recibíamos","recibíais","recibían","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Pretérito","Preterite","I received","recibí","recibiste","recibió","recibimos","recibisteis","recibieron","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Condicional","Conditional","I would receive","recibiría","recibirías","recibiría","recibiríamos","recibiríais","recibirían","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Presente perfecto","Present Perfect","I have received","he recibido","has recibido","ha recibido","hemos recibido","habéis recibido","han recibido","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have received","habré recibido","habrás recibido","habrá recibido","habremos recibido","habréis recibido","habrán recibido","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had received","había recibido","habías recibido","había recibido","habíamos recibido","habíais recibido","habían recibido","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had received","hube recibido","hubiste recibido","hubo recibido","hubimos recibido","hubisteis recibido","hubieron recibido","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have received","habría recibido","habrías recibido","habría recibido","habríamos recibido","habríais recibido","habrían recibido","recibiendo","receiving","recibido","received" +"recibamos" +"recibir","to receive; to welcome, greet","Subjuntivo","Subjunctive","Presente","Present","I receive, am receiving","reciba","recibas","reciba","recibamos","recibáis","reciban","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I received, was receiving","recibiera","recibieras","recibiera","recibiéramos","recibierais","recibieran","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Subjuntivo","Subjunctive","Futuro","Future","I will receive","recibiere","recibieres","recibiere","recibiéremos","recibiereis","recibieren","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have received, received","haya recibido","hayas recibido","haya recibido","hayamos recibido","hayáis recibido","hayan recibido","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have received","hubiere recibido","hubieres recibido","hubiere recibido","hubiéremos recibido","hubiereis recibido","hubieren recibido","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had received","hubiera recibido","hubieras recibido","hubiera recibido","hubiéramos recibido","hubierais recibido","hubieran recibido","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Receive! Don't receive!","","recibe","reciba","recibamos","recibid","reciban","recibiendo","receiving","recibido","received" +"recibir","to receive; to welcome, greet","Imperativo Negativo","Imperative Negative","Presente","Present","Receive! Don't receive!","","no recibas","no reciba","no recibamos","no recibáis","no reciban","recibiendo","receiving","recibido","received" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Presente","Present","I recycle, am recycling","reciclo","reciclas","recicla","reciclamos","recicláis","reciclan","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Futuro","Future","I will recycle","reciclaré","reciclarás","reciclará","reciclaremos","reciclaréis","reciclarán","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Imperfecto","Imperfect","I was recycling, used to recycle, recycled","reciclaba","reciclabas","reciclaba","reciclábamos","reciclabais","reciclaban","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Pretérito","Preterite","I recycled","reciclé","reciclaste","recicló","reciclamos","reciclasteis","reciclaron","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Condicional","Conditional","I would recycle","reciclaría","reciclarías","reciclaría","reciclaríamos","reciclaríais","reciclarían","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have recycled","he reciclado","has reciclado","ha reciclado","hemos reciclado","habéis reciclado","han reciclado","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have recycled","habré reciclado","habrás reciclado","habrá reciclado","habremos reciclado","habréis reciclado","habrán reciclado","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had recycled","había reciclado","habías reciclado","había reciclado","habíamos reciclado","habíais reciclado","habían reciclado","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had recycled","hube reciclado","hubiste reciclado","hubo reciclado","hubimos reciclado","hubisteis reciclado","hubieron reciclado","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have recycled","habría reciclado","habrías reciclado","habría reciclado","habríamos reciclado","habríais reciclado","habrían reciclado","reciclando","recycling","reciclado","recycled" +"reciclemos" +"reciclar","to recycle; to retrain [a person]","Subjuntivo","Subjunctive","Presente","Present","I recycle, am recycling","recicle","recicles","recicle","reciclemos","recicléis","reciclen","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I recycled, was recycling","reciclara","reciclaras","reciclara","recicláramos","reciclarais","reciclaran","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Subjuntivo","Subjunctive","Futuro","Future","I will recycle","reciclare","reciclares","reciclare","recicláremos","reciclareis","reciclaren","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have recycled, recycled","haya reciclado","hayas reciclado","haya reciclado","hayamos reciclado","hayáis reciclado","hayan reciclado","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have recycled","hubiere reciclado","hubieres reciclado","hubiere reciclado","hubiéremos reciclado","hubiereis reciclado","hubieren reciclado","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had recycled","hubiera reciclado","hubieras reciclado","hubiera reciclado","hubiéramos reciclado","hubierais reciclado","hubieran reciclado","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Recycle! Don't recycle!","","recicla","recicle","reciclemos","reciclad","reciclen","reciclando","recycling","reciclado","recycled" +"reciclar","to recycle; to retrain [a person]","Imperativo Negativo","Imperative Negative","Presente","Present","Recycle! Don't recycle!","","no recicles","no recicle","no reciclemos","no recicléis","no reciclen","reciclando","recycling","reciclado","recycled" +"recoger","to pick up","Indicativo","Indicative","Presente","Present","I pick up, am picking up","recojo","recoges","recoge","recogemos","recogéis","recogen","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Futuro","Future","I will pick up","recogeré","recogerás","recogerá","recogeremos","recogeréis","recogerán","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Imperfecto","Imperfect","I was picking up, used to pick up, picked up","recogía","recogías","recogía","recogíamos","recogíais","recogían","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Pretérito","Preterite","I picked up","recogí","recogiste","recogió","recogimos","recogisteis","recogieron","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Condicional","Conditional","I would pick up","recogería","recogerías","recogería","recogeríamos","recogeríais","recogerían","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have picked up","he recogido","has recogido","ha recogido","hemos recogido","habéis recogido","han recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have picked up","habré recogido","habrás recogido","habrá recogido","habremos recogido","habréis recogido","habrán recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had picked up","había recogido","habías recogido","había recogido","habíamos recogido","habíais recogido","habían recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had picked up","hube recogido","hubiste recogido","hubo recogido","hubimos recogido","hubisteis recogido","hubieron recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have picked up","habría recogido","habrías recogido","habría recogido","habríamos recogido","habríais recogido","habrían recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I picked up, was picking up","recogiera","recogieras","recogiera","recogiéramos","recogierais","recogieran","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Subjuntivo","Subjunctive","Futuro","Future","I will pick up","recogiere","recogieres","recogiere","recogiéremos","recogiereis","recogieren","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have picked up, picked up","haya recogido","hayas recogido","haya recogido","hayamos recogido","hayáis recogido","hayan recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have picked up","hubiere recogido","hubieres recogido","hubiere recogido","hubiéremos recogido","hubiereis recogido","hubieren recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had picked up","hubiera recogido","hubieras recogido","hubiera recogido","hubiéramos recogido","hubierais recogido","hubieran recogido","recogiendo","picking up","recogido","picked up" +"recoger","to pick up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Pick up! Don't pick up!","","recoge","recoja","reciclemos","recoged","recojan","recogiendo","picking up","recogido","picked up", +"recoger","to pick up","Imperativo Negativo","Imperative Negative","Presente","Present","Pick up! Don't pick up!","","no recojas","no recoja","no reciclemos","no recojáis","no recojan","recogiendo","picking up","recogido","picked up", +"recomendar","to recommend","Indicativo","Indicative","Presente","Present","I recommend, am recommending","recomiendo","recomiendas","recomienda","recomendamos","recomendáis","recomiendan","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Futuro","Future","I will recommend","recomendaré","recomendarás","recomendará","recomendaremos","recomendaréis","recomendarán","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Imperfecto","Imperfect","I was recommending, used to recommend, recommended","recomendaba","recomendabas","recomendaba","recomendábamos","recomendabais","recomendaban","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Pretérito","Preterite","I recommended","recomendé","recomendaste","recomendó","recomendamos","recomendasteis","recomendaron","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Condicional","Conditional","I would recommend","recomendaría","recomendarías","recomendaría","recomendaríamos","recomendaríais","recomendarían","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Presente perfecto","Present Perfect","I have recommended","he recomendado","has recomendado","ha recomendado","hemos recomendado","habéis recomendado","han recomendado","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have recommended","habré recomendado","habrás recomendado","habrá recomendado","habremos recomendado","habréis recomendado","habrán recomendado","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had recommended","había recomendado","habías recomendado","había recomendado","habíamos recomendado","habíais recomendado","habían recomendado","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had recommended","hube recomendado","hubiste recomendado","hubo recomendado","hubimos recomendado","hubisteis recomendado","hubieron recomendado","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have recommended","habría recomendado","habrías recomendado","habría recomendado","habríamos recomendado","habríais recomendado","habrían recomendado","recomendando","recommending","recomendado","recommended" +"recomendemos" +"recomendar","to recommend","Subjuntivo","Subjunctive","Presente","Present","I recommend, am recommending","recomiende","recomiendes","recomiende","recomendemos","recomendéis","recomienden","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I recommended, was recommending","recomendara","recomendaras","recomendara","recomendáramos","recomendarais","recomendaran","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Subjuntivo","Subjunctive","Futuro","Future","I will recommend","recomendare","recomendares","recomendare","recomendáremos","recomendareis","recomendaren","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have recommended, recommended","haya recomendado","hayas recomendado","haya recomendado","hayamos recomendado","hayáis recomendado","hayan recomendado","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have recommended","hubiere recomendado","hubieres recomendado","hubiere recomendado","hubiéremos recomendado","hubiereis recomendado","hubieren recomendado","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had recommended","hubiera recomendado","hubieras recomendado","hubiera recomendado","hubiéramos recomendado","hubierais recomendado","hubieran recomendado","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Recommend! Don't recommend!","","recomienda","recomiende","recomendemos","recomendad","recomienden","recomendando","recommending","recomendado","recommended" +"recomendar","to recommend","Imperativo Negativo","Imperative Negative","Presente","Present","Recommend! Don't recommend!","","no recomiendes","no recomiende","no recomendemos","no recomendéis","no recomienden","recomendando","recommending","recomendado","recommended" +"reconocer","to recognize","Indicativo","Indicative","Presente","Present","I recognize, am recognizing","reconozco","reconoces","reconoce","reconocemos","reconocéis","reconocen","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Futuro","Future","I will recognize","reconoceré","reconocerás","reconocerá","reconoceremos","reconoceréis","reconocerán","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Imperfecto","Imperfect","I was recognizing, used to recognize, recognized","reconocía","reconocías","reconocía","reconocíamos","reconocíais","reconocían","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Pretérito","Preterite","I recognized","reconocí","reconociste","reconoció","reconocimos","reconocisteis","reconocieron","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Condicional","Conditional","I would recognize","reconocería","reconocerías","reconocería","reconoceríamos","reconoceríais","reconocerían","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have recognized","he reconocido","has reconocido","ha reconocido","hemos reconocido","habéis reconocido","han reconocido","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have recognized","habré reconocido","habrás reconocido","habrá reconocido","habremos reconocido","habréis reconocido","habrán reconocido","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had recognized","había reconocido","habías reconocido","había reconocido","habíamos reconocido","habíais reconocido","habían reconocido","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had recognized","hube reconocido","hubiste reconocido","hubo reconocido","hubimos reconocido","hubisteis reconocido","hubieron reconocido","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have recognized","habría reconocido","habrías reconocido","habría reconocido","habríamos reconocido","habríais reconocido","habrían reconocido","reconociendo","recognizing","reconocido","recognized" +"reconozcamos" +"reconocer","to recognize","Subjuntivo","Subjunctive","Presente","Present","I recognize, am recognizing","reconozca","reconozcas","reconozca","reconozcamos","reconozcáis","reconozcan","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I recognized, was recognizing","reconociera","reconocieras","reconociera","reconociéramos","reconocierais","reconocieran","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Subjuntivo","Subjunctive","Futuro","Future","I will recognize","reconociere","reconocieres","reconociere","reconociéremos","reconociereis","reconocieren","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have recognized, recognized","haya reconocido","hayas reconocido","haya reconocido","hayamos reconocido","hayáis reconocido","hayan reconocido","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have recognized","hubiere reconocido","hubieres reconocido","hubiere reconocido","hubiéremos reconocido","hubiereis reconocido","hubieren reconocido","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had recognized","hubiera reconocido","hubieras reconocido","hubiera reconocido","hubiéramos reconocido","hubierais reconocido","hubieran reconocido","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Recognize! Don't recognize!","","reconoce","reconozca","reconozcamos","reconoced","reconozcan","reconociendo","recognizing","reconocido","recognized" +"reconocer","to recognize","Imperativo Negativo","Imperative Negative","Presente","Present","Recognize! Don't recognize!","","no reconozcas","no reconozca","no reconozcamos","no reconozcáis","no reconozcan","reconociendo","recognizing","reconocido","recognized" +"recordar","to remember, remind","Indicativo","Indicative","Presente","Present","I remember, am remembering","recuerdo","recuerdas","recuerda","recordamos","recordáis","recuerdan","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Futuro","Future","I will remember","recordaré","recordarás","recordará","recordaremos","recordaréis","recordarán","recordando","remembering","recordado","remembered" +"renovar","to renew; to renovate","Indicativo","Indicative","Presente","Present","I renew, am renewing","renuevo","renuevas","renueva","renovamos","renováis","renuevan","renovando","renewing","renovado","renewed" +"recordar","to remember, remind","Indicativo","Indicative","Imperfecto","Imperfect","I was remembering, used to remember, remembered","recordaba","recordabas","recordaba","recordábamos","recordabais","recordaban","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Pretérito","Preterite","I remembered","recordé","recordaste","recordó","recordamos","recordasteis","recordaron","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Condicional","Conditional","I would remember","recordaría","recordarías","recordaría","recordaríamos","recordaríais","recordarían","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Presente perfecto","Present Perfect","I have remembered","he recordado","has recordado","ha recordado","hemos recordado","habéis recordado","han recordado","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have remembered","habré recordado","habrás recordado","habrá recordado","habremos recordado","habréis recordado","habrán recordado","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had remembered","había recordado","habías recordado","había recordado","habíamos recordado","habíais recordado","habían recordado","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had remembered","hube recordado","hubiste recordado","hubo recordado","hubimos recordado","hubisteis recordado","hubieron recordado","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have remembered","habría recordado","habrías recordado","habría recordado","habríamos recordado","habríais recordado","habrían recordado","recordando","remembering","recordado","remembered" +"recordemos" +"recordar","to remember, remind","Subjuntivo","Subjunctive","Presente","Present","I remember, am remembering","recuerde","recuerdes","recuerde","recordemos","recordéis","recuerden","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I remembered, was remembering","recordara","recordaras","recordara","recordáramos","recordarais","recordaran","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Subjuntivo","Subjunctive","Futuro","Future","I will remember","recordare","recordares","recordare","recordáremos","recordareis","recordaren","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have remembered, remembered","haya recordado","hayas recordado","haya recordado","hayamos recordado","hayáis recordado","hayan recordado","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have remembered","hubiere recordado","hubieres recordado","hubiere recordado","hubiéremos recordado","hubiereis recordado","hubieren recordado","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had remembered","hubiera recordado","hubieras recordado","hubiera recordado","hubiéramos recordado","hubierais recordado","hubieran recordado","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Remember! Don't remember!","","recuerda","recuerde","recordemos","recordad","recuerden","recordando","remembering","recordado","remembered" +"recordar","to remember, remind","Imperativo Negativo","Imperative Negative","Presente","Present","Remember! Don't remember!","","no recuerdes","no recuerde","no recordemos","no recordéis","no recuerden","recordando","remembering","recordado","remembered" +"reducir","to reduce","Indicativo","Indicative","Presente","Present","I reduce, am reducing","reduzco","reduces","reduce","reducimos","reducís","reducen","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Futuro","Future","I will reduce","reduciré","reducirás","reducirá","reduciremos","reduciréis","reducirán","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Imperfecto","Imperfect","I was reducing, used to reduce, reduced","reducía","reducías","reducía","reducíamos","reducíais","reducían","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Pretérito","Preterite","I reduced","reduje","redujiste","redujo","redujimos","redujisteis","redujeron","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Condicional","Conditional","I would reduce","reduciría","reducirías","reduciría","reduciríamos","reduciríais","reducirían","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have reduced","he reducido","has reducido","ha reducido","hemos reducido","habéis reducido","han reducido","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have reduced","habré reducido","habrás reducido","habrá reducido","habremos reducido","habréis reducido","habrán reducido","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had reduced","había reducido","habías reducido","había reducido","habíamos reducido","habíais reducido","habían reducido","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had reduced","hube reducido","hubiste reducido","hubo reducido","hubimos reducido","hubisteis reducido","hubieron reducido","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have reduced","habría reducido","habrías reducido","habría reducido","habríamos reducido","habríais reducido","habrían reducido","reduciendo","reducing","reducido","reduced" +"reduzcamos" +"reducir","to reduce","Subjuntivo","Subjunctive","Presente","Present","I reduce, am reducing","reduzca","reduzcas","reduzca","reduzcamos","reduzcáis","reduzcan","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I reduced, was reducing","redujera","redujeras","redujera","redujéramos","redujerais","redujeran","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Subjuntivo","Subjunctive","Futuro","Future","I will reduce","redujere","redujeres","redujere","redujéremos","redujereis","redujeren","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have reduced, reduced","haya reducido","hayas reducido","haya reducido","hayamos reducido","hayáis reducido","hayan reducido","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have reduced","hubiere reducido","hubieres reducido","hubiere reducido","hubiéremos reducido","hubiereis reducido","hubieren reducido","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had reduced","hubiera reducido","hubieras reducido","hubiera reducido","hubiéramos reducido","hubierais reducido","hubieran reducido","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Reduce! Don't reduce!","","reduce","reduzca","reduzcamos","reducid","reduzcan","reduciendo","reducing","reducido","reduced" +"reducir","to reduce","Imperativo Negativo","Imperative Negative","Presente","Present","Reduce! Don't reduce!","","no reduzcas","no reduzca","no reduzcamos","no reduzcáis","no reduzcan","reduciendo","reducing","reducido","reduced" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Presente","Present","I give, am giving","regalo","regalas","regala","regalamos","regaláis","regalan","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Futuro","Future","I will give","regalaré","regalarás","regalará","regalaremos","regalaréis","regalarán","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Imperfecto","Imperfect","I was giving, used to give, gave","regalaba","regalabas","regalaba","regalábamos","regalabais","regalaban","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Pretérito","Preterite","I gave","regalé","regalaste","regaló","regalamos","regalasteis","regalaron","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Condicional","Conditional","I would give","regalaría","regalarías","regalaría","regalaríamos","regalaríais","regalarían","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Presente perfecto","Present Perfect","I have given","he regalado","has regalado","ha regalado","hemos regalado","habéis regalado","han regalado","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have given","habré regalado","habrás regalado","habrá regalado","habremos regalado","habréis regalado","habrán regalado","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had given","había regalado","habías regalado","había regalado","habíamos regalado","habíais regalado","habían regalado","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had given","hube regalado","hubiste regalado","hubo regalado","hubimos regalado","hubisteis regalado","hubieron regalado","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have given","habría regalado","habrías regalado","habría regalado","habríamos regalado","habríais regalado","habrían regalado","regalando","giving","regalado","given" +"regalemos" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Subjuntivo","Subjunctive","Presente","Present","I give, am giving","regale","regales","regale","regalemos","regaléis","regalen","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I gave, was giving","regalara","regalaras","regalara","regaláramos","regalarais","regalaran","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Subjuntivo","Subjunctive","Futuro","Future","I will give","regalare","regalares","regalare","regaláremos","regalareis","regalaren","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have given, gave","haya regalado","hayas regalado","haya regalado","hayamos regalado","hayáis regalado","hayan regalado","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have given","hubiere regalado","hubieres regalado","hubiere regalado","hubiéremos regalado","hubiereis regalado","hubieren regalado","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had given","hubiera regalado","hubieras regalado","hubiera regalado","hubiéramos regalado","hubierais regalado","hubieran regalado","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Give! Don't give!","","regala","regale","regalemos","regalad","regalen","regalando","giving","regalado","given" +"regalar","to give [as a gift]; to present; to give away; to treat royally, pamper","Imperativo Negativo","Imperative Negative","Presente","Present","Give! Don't give!","","no regales","no regale","no regalemos","no regaléis","no regalen","regalando","giving","regalado","given" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Presente","Present","I water, am watering","riego","riegas","riega","regamos","regáis","riegan","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Futuro","Future","I will water","regaré","regarás","regará","regaremos","regaréis","regarán","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Imperfecto","Imperfect","I was watering, used to water, watered","regaba","regabas","regaba","regábamos","regabais","regaban","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Pretérito","Preterite","I watered","regué","regaste","regó","regamos","regasteis","regaron","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Condicional","Conditional","I would water","regaría","regarías","regaría","regaríamos","regaríais","regarían","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Presente perfecto","Present Perfect","I have watered","he regado","has regado","ha regado","hemos regado","habéis regado","han regado","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have watered","habré regado","habrás regado","habrá regado","habremos regado","habréis regado","habrán regado","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had watered","había regado","habías regado","había regado","habíamos regado","habíais regado","habían regado","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had watered","hube regado","hubiste regado","hubo regado","hubimos regado","hubisteis regado","hubieron regado","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have watered","habría regado","habrías regado","habría regado","habríamos regado","habríais regado","habrían regado","regando","watering","regado","watered" +"reguemos" +"regar","to water, irrigate, wash, sprinkle, spray","Subjuntivo","Subjunctive","Presente","Present","I water, am watering","riegue","riegues","riegue","reguemos","reguéis","rieguen","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I water, was watering","regara","regaras","regara","regáramos","regarais","regaran","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Subjuntivo","Subjunctive","Futuro","Future","I will water","regare","regares","regare","regáremos","regareis","regaren","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have watered, watered","haya regado","hayas regado","haya regado","hayamos regado","hayáis regado","hayan regado","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have watered","hubiere regado","hubieres regado","hubiere regado","hubiéremos regado","hubiereis regado","hubieren regado","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had watered","hubiera regado","hubieras regado","hubiera regado","hubiéramos regado","hubierais regado","hubieran regado","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Water! Don't water!","","riega","riegue","reguemos","regad","rieguen","regando","watering","regado","watered" +"regar","to water, irrigate, wash, sprinkle, spray","Imperativo Negativo","Imperative Negative","Presente","Present","Water! Don't water!","","no riegues","no riegue","no reguemos","no reguéis","no rieguen","regando","watering","regado","watered" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Presente","Present","I haggle, am haggling","regateo","regateas","regatea","regateamos","regateáis","regatean","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Futuro","Future","I will haggle","regatearé","regatearás","regateará","regatearemos","regatearéis","regatearán","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Imperfecto","Imperfect","I was haggling, used to haggle, haggled","regateaba","regateabas","regateaba","regateábamos","regateabais","regateaban","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Pretérito","Preterite","I haggled","regateé","regateaste","regateó","regateamos","regateasteis","regatearon","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Condicional","Conditional","I would haggle","regatearía","regatearías","regatearía","regatearíamos","regatearíais","regatearían","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Presente perfecto","Present Perfect","I have haggled","he regateado","has regateado","ha regateado","hemos regateado","habéis regateado","han regateado","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have haggled","habré regateado","habrás regateado","habrá regateado","habremos regateado","habréis regateado","habrán regateado","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had haggled","había regateado","habías regateado","había regateado","habíamos regateado","habíais regateado","habían regateado","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had haggled","hube regateado","hubiste regateado","hubo regateado","hubimos regateado","hubisteis regateado","hubieron regateado","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have haggled","habría regateado","habrías regateado","habría regateado","habríamos regateado","habríais regateado","habrían regateado","regateando","haggling","regateado","haggled" +"regateemos" +"regatear","to haggle (over), bargain (over)","Subjuntivo","Subjunctive","Presente","Present","I haggle, am haggling","regatee","regatees","regatee","regateemos","regateéis","regateen","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I haggled, was haggling","regateara","regatearas","regateara","regateáramos","regatearais","regatearan","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Subjuntivo","Subjunctive","Futuro","Future","I will haggle","regateare","regateares","regateare","regateáremos","regateareis","regatearen","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have haggled, haggled","haya regateado","hayas regateado","haya regateado","hayamos regateado","hayáis regateado","hayan regateado","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have haggled","hubiere regateado","hubieres regateado","hubiere regateado","hubiéremos regateado","hubiereis regateado","hubieren regateado","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had haggled","hubiera regateado","hubieras regateado","hubiera regateado","hubiéramos regateado","hubierais regateado","hubieran regateado","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Haggle! Don't haggle!","","regatea","regatee","regateemos","regatead","regateen","regateando","haggling","regateado","haggled" +"regatear","to haggle (over), bargain (over)","Imperativo Negativo","Imperative Negative","Presente","Present","Haggle! Don't haggle!","","no regatees","no regatee","no regateemos","no regateéis","no regateen","regateando","haggling","regateado","haggled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Presente","Present","I rule, am ruling","rijo","riges","rige","regimos","regís","rigen","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Futuro","Future","I will rule","regiré","regirás","regirá","regiremos","regiréis","regirán","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Imperfecto","Imperfect","I was ruling, used to rule, ruled","regía","regías","regía","regíamos","regíais","regían","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Pretérito","Preterite","I ruled","regí","registe","rigió","regimos","registeis","rigieron","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Condicional","Conditional","I would rule","regiría","regirías","regiría","regiríamos","regiríais","regirían","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Presente perfecto","Present Perfect","I have ruled","he regido","has regido","ha regido","hemos regido","habéis regido","han regido","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have ruled","habré regido","habrás regido","habrá regido","habremos regido","habréis regido","habrán regido","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had ruled","había regido","habías regido","había regido","habíamos regido","habíais regido","habían regido","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had ruled","hube regido","hubiste regido","hubo regido","hubimos regido","hubisteis regido","hubieron regido","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have ruled","habría regido","habrías regido","habría regido","habríamos regido","habríais regido","habrían regido","rigiendo","ruling","regido","ruled" +"rijamos" +"regir","to rule, govern, be in charge of, be at the head of","Subjuntivo","Subjunctive","Presente","Present","I rule, am ruling","rija","rijas","rija","rijamos","rijáis","rijan","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I ruled, was ruling","rigiera","rigieras","rigiera","rigiéramos","rigierais","rigieran","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Subjuntivo","Subjunctive","Futuro","Future","I will rule","rigiere","rigieres","rigiere","rigiéremos","rigiereis","rigieren","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have ruled, ruled","haya regido","hayas regido","haya regido","hayamos regido","hayáis regido","hayan regido","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have ruled","hubiere regido","hubieres regido","hubiere regido","hubiéremos regido","hubiereis regido","hubieren regido","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had ruled","hubiera regido","hubieras regido","hubiera regido","hubiéramos regido","hubierais regido","hubieran regido","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Rule! Don't rule!","","rige","rija","rijamos","regid","rijan","rigiendo","ruling","regido","ruled" +"regir","to rule, govern, be in charge of, be at the head of","Imperativo Negativo","Imperative Negative","Presente","Present","Rule! Don't rule!","","no rijas","no rija","no rijamos","no rijáis","no rijan","rigiendo","ruling","regido","ruled" +"registrar","to register, record; to search","Indicativo","Indicative","Presente","Present","I register, am registering","registro","registras","registra","registramos","registráis","registran","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Futuro","Future","I will register","registraré","registrarás","registrará","registraremos","registraréis","registrarán","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Imperfecto","Imperfect","I was registering, used to register, registered","registraba","registrabas","registraba","registrábamos","registrabais","registraban","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Pretérito","Preterite","I registered","registré","registraste","registró","registramos","registrasteis","registraron","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Condicional","Conditional","I would register","registraría","registrarías","registraría","registraríamos","registraríais","registrarían","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Presente perfecto","Present Perfect","I have registered","he registrado","has registrado","ha registrado","hemos registrado","habéis registrado","han registrado","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have registered","habré registrado","habrás registrado","habrá registrado","habremos registrado","habréis registrado","habrán registrado","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had registered","había registrado","habías registrado","había registrado","habíamos registrado","habíais registrado","habían registrado","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had registered","hube registrado","hubiste registrado","hubo registrado","hubimos registrado","hubisteis registrado","hubieron registrado","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have registered","habría registrado","habrías registrado","habría registrado","habríamos registrado","habríais registrado","habrían registrado","registrando","registering","registrado","registered" +"registremos" +"registrar","to register, record; to search","Subjuntivo","Subjunctive","Presente","Present","I register, am registering","registre","registres","registre","registremos","registréis","registren","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I registered, was registering","registrara","registraras","registrara","registráramos","registrarais","registraran","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Subjuntivo","Subjunctive","Futuro","Future","I will register","registrare","registrares","registrare","registráremos","registrareis","registraren","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have registered, registered","haya registrado","hayas registrado","haya registrado","hayamos registrado","hayáis registrado","hayan registrado","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have registered","hubiere registrado","hubieres registrado","hubiere registrado","hubiéremos registrado","hubiereis registrado","hubieren registrado","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had registered","hubiera registrado","hubieras registrado","hubiera registrado","hubiéramos registrado","hubierais registrado","hubieran registrado","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Register! Don't register!","","registra","registre","registremos","registrad","registren","registrando","registering","registrado","registered" +"registrar","to register, record; to search","Imperativo Negativo","Imperative Negative","Presente","Present","Register! Don't register!","","no registres","no registre","no registremos","no registréis","no registren","registrando","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Presente","Present","I register, am registering","me registro","te registras","se registra","nos registramos","os registráis","se registran","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Futuro","Future","I will register","me registraré","te registrarás","se registrará","nos registraremos","os registraréis","se registrarán","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Imperfecto","Imperfect","I was registering, used to register, registered","me registraba","te registrabas","se registraba","nos registrábamos","os registrabais","se registraban","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Pretérito","Preterite","I registered","me registré","te registraste","se registró","nos registramos","os registrasteis","se registraron","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Condicional","Conditional","I would register","me registraría","te registrarías","se registraría","nos registraríamos","os registraríais","se registrarían","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have registered","me he registrado","te has registrado","se ha registrado","nos hemos registrado","os habéis registrado","se han registrado","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have registered","me habré registrado","te habrás registrado","se habrá registrado","nos habremos registrado","os habréis registrado","se habrán registrado","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had registered","me había registrado","te habías registrado","se había registrado","nos habíamos registrado","os habíais registrado","se habían registrado","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had registered","me hube registrado","te hubiste registrado","se hubo registrado","nos hubimos registrado","os hubisteis registrado","se hubieron registrado","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have registered","me habría registrado","te habrías registrado","se habría registrado","nos habríamos registrado","os habríais registrado","se habrían registrado","registrándose","registering","registrado","registered" +"nos registremos" +"registrarse","to register [oneself]","Subjuntivo","Subjunctive","Presente","Present","I register, am registering","me registre","te registres","se registre","nos registremos","os registréis","se registren","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I registered, was registering","me registrara","te registraras","se registrara","nos registráramos","os registrarais","se registraran","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Subjuntivo","Subjunctive","Futuro","Future","I will register","me registrare","te registrares","se registrare","nos registráremos","os registrareis","se registraren","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have registered, registered","me haya registrado","te hayas registrado","se haya registrado","nos hayamos registrado","os hayáis registrado","se hayan registrado","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have registered","me hubiere registrado","te hubieres registrado","se hubiere registrado","nos hubiéremos registrado","os hubiereis registrado","se hubieren registrado","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had registered","me hubiera registrado","te hubieras registrado","se hubiera registrado","nos hubiéramos registrado","os hubierais registrado","se hubieran registrado","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Register! Don't register!","","regístrate","regístrese","nos registremos","registraos","regístrense","registrándose","registering","registrado","registered" +"registrarse","to register [oneself]","Imperativo Negativo","Imperative Negative","Presente","Present","Register! Don't register!","","no te registres","no se registre","no nos registremos","no os registréis","no se registren","registrándose","registering","registrado","registered" +"regresar","to return, go back","Indicativo","Indicative","Presente","Present","I return, am returning","regreso","regresas","regresa","regresamos","regresáis","regresan","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Futuro","Future","I will return","regresaré","regresarás","regresará","regresaremos","regresaréis","regresarán","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Imperfecto","Imperfect","I was returning, used to return, returned","regresaba","regresabas","regresaba","regresábamos","regresabais","regresaban","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Pretérito","Preterite","I returned","regresé","regresaste","regresó","regresamos","regresasteis","regresaron","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Condicional","Conditional","I would return","regresaría","regresarías","regresaría","regresaríamos","regresaríais","regresarían","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Presente perfecto","Present Perfect","I have returned","he regresado","has regresado","ha regresado","hemos regresado","habéis regresado","han regresado","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have returned","habré regresado","habrás regresado","habrá regresado","habremos regresado","habréis regresado","habrán regresado","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had returned","había regresado","habías regresado","había regresado","habíamos regresado","habíais regresado","habían regresado","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had returned","hube regresado","hubiste regresado","hubo regresado","hubimos regresado","hubisteis regresado","hubieron regresado","regresando","returning","regresado","returned" +"regresar","to return, go back","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have returned","habría regresado","habrías regresado","habría regresado","habríamos regresado","habríais regresado","habrían regresado","regresando","returning","regresado","returned" +"regresemos" +"regresar","to return, go back","Subjuntivo","Subjunctive","Presente","Present","I return, am returning","regrese","regreses","regrese","regresemos","regreséis","regresen","regresando","returning","regresado","returned" +"regresar","to return, go back","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I returned, was returning","regresara","regresaras","regresara","regresáramos","regresarais","regresaran","regresando","returning","regresado","returned" +"regresar","to return, go back","Subjuntivo","Subjunctive","Futuro","Future","I will return","regresare","regresares","regresare","regresáremos","regresareis","regresaren","regresando","returning","regresado","returned" +"regresar","to return, go back","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have returned, returned","haya regresado","hayas regresado","haya regresado","hayamos regresado","hayáis regresado","hayan regresado","regresando","returning","regresado","returned" +"regresar","to return, go back","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have returned","hubiere regresado","hubieres regresado","hubiere regresado","hubiéremos regresado","hubiereis regresado","hubieren regresado","regresando","returning","regresado","returned" +"regresar","to return, go back","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had returned","hubiera regresado","hubieras regresado","hubiera regresado","hubiéramos regresado","hubierais regresado","hubieran regresado","regresando","returning","regresado","returned" +"regresar","to return, go back","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Return! Don't return!","","regresa","regrese","regresemos","regresad","regresen","regresando","returning","regresado","returned" +"regresar","to return, go back","Imperativo Negativo","Imperative Negative","Presente","Present","Return! Don't return!","","no regreses","no regrese","no regresemos","no regreséis","no regresen","regresando","returning","regresado","returned" +"regular","to regulate, adjust, control","Indicativo","Indicative","Presente","Present","I regulate, am regulating","regulo","regulas","regula","regulamos","reguláis","regulan","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Futuro","Future","I will regulate","regularé","regularás","regulará","regularemos","regularéis","regularán","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Imperfecto","Imperfect","I was regulating, used to regulate, regulated","regulaba","regulabas","regulaba","regulábamos","regulabais","regulaban","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Pretérito","Preterite","I regulated","regulé","regulaste","reguló","regulamos","regulasteis","regularon","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Condicional","Conditional","I would regulate","regularía","regularías","regularía","regularíamos","regularíais","regularían","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Presente perfecto","Present Perfect","I have regulated","he regulado","has regulado","ha regulado","hemos regulado","habéis regulado","han regulado","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have regulated","habré regulado","habrás regulado","habrá regulado","habremos regulado","habréis regulado","habrán regulado","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had regulated","había regulado","habías regulado","había regulado","habíamos regulado","habíais regulado","habían regulado","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had regulated","hube regulado","hubiste regulado","hubo regulado","hubimos regulado","hubisteis regulado","hubieron regulado","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have regulated","habría regulado","habrías regulado","habría regulado","habríamos regulado","habríais regulado","habrían regulado","regulando","regulating","regulado","regulated" +"regulemos" +"regular","to regulate, adjust, control","Subjuntivo","Subjunctive","Presente","Present","I regulate, am regulating","regule","regules","regule","regulemos","reguléis","regulen","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I regulated, was regulating","regulara","regularas","regulara","reguláramos","regularais","regularan","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Subjuntivo","Subjunctive","Futuro","Future","I will regulate","regulare","regulares","regulare","reguláremos","regulareis","regularen","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have regulated, regulated","haya regulado","hayas regulado","haya regulado","hayamos regulado","hayáis regulado","hayan regulado","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have regulated","hubiere regulado","hubieres regulado","hubiere regulado","hubiéremos regulado","hubiereis regulado","hubieren regulado","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had regulated","hubiera regulado","hubieras regulado","hubiera regulado","hubiéramos regulado","hubierais regulado","hubieran regulado","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Regulate! Don't regulate!","","regula","regule","regulemos","regulad","regulen","regulando","regulating","regulado","regulated" +"regular","to regulate, adjust, control","Imperativo Negativo","Imperative Negative","Presente","Present","Regulate! Don't regulate!","","no regules","no regule","no regulemos","no reguléis","no regulen","regulando","regulating","regulado","regulated" +"rehusar","to refuse","Indicativo","Indicative","Presente","Present","I refuse, am refusing","rehúso","rehúsas","rehúsa","rehusamos","rehusáis","rehúsan","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Futuro","Future","I will refuse","rehusaré","rehusarás","rehusará","rehusaremos","rehusaréis","rehusarán","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Imperfecto","Imperfect","I was refusing, used to refused, refused","rehusaba","rehusabas","rehusaba","rehusábamos","rehusabais","rehusaban","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Pretérito","Preterite","I refused","rehusé","rehusaste","rehusó","rehusamos","rehusasteis","rehusaron","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Condicional","Conditional","I would refuse","rehusaría","rehusarías","rehusaría","rehusaríamos","rehusaríais","rehusarían","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Presente perfecto","Present Perfect","I have refused","he rehusado","has rehusado","ha rehusado","hemos rehusado","habéis rehusado","han rehusado","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have refused","habré rehusado","habrás rehusado","habrá rehusado","habremos rehusado","habréis rehusado","habrán rehusado","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had refused","había rehusado","habías rehusado","había rehusado","habíamos rehusado","habíais rehusado","habían rehusado","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had refused","hube rehusado","hubiste rehusado","hubo rehusado","hubimos rehusado","hubisteis rehusado","hubieron rehusado","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have refused","habría rehusado","habrías rehusado","habría rehusado","habríamos rehusado","habríais rehusado","habrían rehusado","rehusando","refusing","rehusado","refused" +"rehusemos" +"rehusar","to refuse","Subjuntivo","Subjunctive","Presente","Present","I refuse, am refusing","rehúse","rehúses","rehúse","rehusemos","rehuséis","rehúsen","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I refused, was refusing","rehusara","rehusaras","rehusara","rehusáramos","rehusarais","rehusaran","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Subjuntivo","Subjunctive","Futuro","Future","I will refuse","rehusare","rehusares","rehusare","rehusáremos","rehusareis","rehusaren","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have refused, refused","haya rehusado","hayas rehusado","haya rehusado","hayamos rehusado","hayáis rehusado","hayan rehusado","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have refused","hubiere rehusado","hubieres rehusado","hubiere rehusado","hubiéremos rehusado","hubiereis rehusado","hubieren rehusado","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had refused","hubiera rehusado","hubieras rehusado","hubiera rehusado","hubiéramos rehusado","hubierais rehusado","hubieran rehusado","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Refuse! Don't refuse!","","rehúsa","rehúse","rehusemos","rehusad","rehúsen","rehusando","refusing","rehusado","refused" +"rehusar","to refuse","Imperativo Negativo","Imperative Negative","Presente","Present","Refuse! Don't refuse!","","no rehúses","no rehúse","no rehusemos","no rehuséis","no rehúsen","rehusando","refusing","rehusado","refused" +"reinar","to reign, rule","Indicativo","Indicative","Imperfecto","Imperfect","I was reigning, used to reign, reigned","reinaba","reinabas","reinaba","reinábamos","reinabais","reinaban","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Indicativo","Indicative","Pretérito","Preterite","I reigned","reiné","reinaste","reinó","reinamos","reinasteis","reinaron","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Indicativo","Indicative","Condicional","Conditional","I would reign","reinaría","reinarías","reinaría","reinaríamos","reinaríais","reinarían","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Indicativo","Indicative","Presente perfecto","Present Perfect","I have reigned","he reinado","has reinado","ha reinado","hemos reinado","habéis reinado","han reinado","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have reigned","habré reinado","habrás reinado","habrá reinado","habremos reinado","habréis reinado","habrán reinado","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had reigned","había reinado","habías reinado","había reinado","habíamos reinado","habíais reinado","habían reinado","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had reigned","hube reinado","hubiste reinado","hubo reinado","hubimos reinado","hubisteis reinado","hubieron reinado","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have reigned","habría reinado","habrías reinado","habría reinado","habríamos reinado","habríais reinado","habrían reinado","reinando","reigning","reinado","reigned" +"reinemos" +"reinar","to reign, rule","Subjuntivo","Subjunctive","Presente","Present","I reign, am reigning","reine","reines","reine","reinemos","reinéis","reinen","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I reigned, was reigning","reinara","reinaras","reinara","reináramos","reinarais","reinaran","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Subjuntivo","Subjunctive","Futuro","Future","I will reign","reinare","reinares","reinare","reináremos","reinareis","reinaren","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have reigned, reigned","haya reinado","hayas reinado","haya reinado","hayamos reinado","hayáis reinado","hayan reinado","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have reigned","hubiere reinado","hubieres reinado","hubiere reinado","hubiéremos reinado","hubiereis reinado","hubieren reinado","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had reigned","hubiera reinado","hubieras reinado","hubiera reinado","hubiéramos reinado","hubierais reinado","hubieran reinado","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Reign! Don't reign!","","reina","reine","reinemos","reinad","reinen","reinando","reigning","reinado","reigned" +"reinar","to reign, rule","Imperativo Negativo","Imperative Negative","Presente","Present","Reign! Don't reign!","","no reines","no reine","no reinemos","no reinéis","no reinen","reinando","reigning","reinado","reigned" +"reír","to laugh","Indicativo","Indicative","Presente","Present","I laugh, am laughing","río","ríes","ríe","reímos","reís","ríen","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Futuro","Future","I will laugh","reiré","reirás","reirá","reiremos","reiréis","reirán","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Imperfecto","Imperfect","I was laughing, used to laugh, laughed","reía","reías","reía","reíamos","reíais","reían","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Pretérito","Preterite","I laughed","reí","reíste","rio","reímos","reísteis","rieron","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Condicional","Conditional","I would laugh","reiría","reirías","reiría","reiríamos","reiríais","reirían","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Presente perfecto","Present Perfect","I have laughed","he reído","has reído","ha reído","hemos reído","habéis reído","han reído","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have laughed","habré reído","habrás reído","habrá reído","habremos reído","habréis reído","habrán reído","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had laughed","había reído","habías reído","había reído","habíamos reído","habíais reído","habían reído","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had laughed","hube reído","hubiste reído","hubo reído","hubimos reído","hubisteis reído","hubieron reído","riendo","laughing","reído","laughed" +"reír","to laugh","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have laughed","habría reído","habrías reído","habría reído","habríamos reído","habríais reído","habrían reído","riendo","laughing","reído","laughed" +"riamos" +"reír","to laugh","Subjuntivo","Subjunctive","Presente","Present","I laugh, am laughing","ría","rías","ría","riamos","riáis","rían","riendo","laughing","reído","laughed" +"reír","to laugh","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I laughed, was laughing","riera","rieras","riera","riéramos","rierais","rieran","riendo","laughing","reído","laughed" +"reír","to laugh","Subjuntivo","Subjunctive","Futuro","Future","I will laugh","riere","rieres","riere","riéremos","riereis","rieren","riendo","laughing","reído","laughed" +"reír","to laugh","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have laughed, laughed","haya reído","hayas reído","haya reído","hayamos reído","hayáis reído","hayan reído","riendo","laughing","reído","laughed" +"reír","to laugh","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have laughed","hubiere reído","hubieres reído","hubiere reído","hubiéremos reído","hubiereis reído","hubieren reído","riendo","laughing","reído","laughed" +"reír","to laugh","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had laughed","hubiera reído","hubieras reído","hubiera reído","hubiéramos reído","hubierais reído","hubieran reído","riendo","laughing","reído","laughed" +"reír","to laugh","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Laugh! Don't laugh!","","ríe","ría","riamos","reíd","rían","riendo","laughing","reído","laughed" +"reír","to laugh","Imperativo Negativo","Imperative Negative","Presente","Present","Laugh! Don't laugh!","","no rías","no ría","no riamos","no riais","no rían","riendo","laughing","reído","laughed" +"renacer","to be reborn","Indicativo","Indicative","Presente","Present","I am reborn, am being reborn","renazco","renaces","renace","renacemos","renacéis","renacen","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Futuro","Future","I will be reborn","renaceré","renacerás","renacerá","renaceremos","renaceréis","renacerán","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Imperfecto","Imperfect","I was being reborn, used to be reborn, was reborn","renacía","renacías","renacía","renacíamos","renacíais","renacían","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Pretérito","Preterite","I was reborn","renací","renaciste","renació","renacimos","renacisteis","renacieron","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Condicional","Conditional","I would be reborn","renacería","renacerías","renacería","renaceríamos","renaceríais","renacerían","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been reborn","he renacido","has renacido","ha renacido","hemos renacido","habéis renacido","han renacido","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been reborn","habré renacido","habrás renacido","habrá renacido","habremos renacido","habréis renacido","habrán renacido","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been reborn","había renacido","habías renacido","había renacido","habíamos renacido","habíais renacido","habían renacido","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been reborn","hube renacido","hubiste renacido","hubo renacido","hubimos renacido","hubisteis renacido","hubieron renacido","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been reborn","habría renacido","habrías renacido","habría renacido","habríamos renacido","habríais renacido","habrían renacido","renaciendo","being reborn","renacido","(been) reborn" +"renazcamos" +"renacer","to be reborn","Subjuntivo","Subjunctive","Presente","Present","I am reborn, am being reborn","renazca","renazcas","renazca","renazcamos","renazcáis","renazcan","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was reborn, was being reborn","renaciera","renacieras","renaciera","renaciéramos","renacierais","renacieran","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Subjuntivo","Subjunctive","Futuro","Future","I will be reborn","renaciere","renacieres","renaciere","renaciéremos","renaciereis","renacieren","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been reborn, was reborn","haya renacido","hayas renacido","haya renacido","hayamos renacido","hayáis renacido","hayan renacido","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been reborn","hubiere renacido","hubieres renacido","hubiere renacido","hubiéremos renacido","hubiereis renacido","hubieren renacido","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been reborn","hubiera renacido","hubieras renacido","hubiera renacido","hubiéramos renacido","hubierais renacido","hubieran renacido","renaciendo","being reborn","renacido","(been) reborn" +"renacer","to be reborn","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be reborn! Don't be reborn!","","renace","renazca","renazcamos","renaced","renazcan","renaciendo","being reborn","renacido","(been) reborn", +"renacer","to be reborn","Imperativo Negativo","Imperative Negative","Presente","Present","Be reborn! Don't be reborn!","","no renazcas","no renazca","no renazcamos","no renazcáis","no renazcan","renaciendo","being reborn","renacido","(been) reborn", +"renovar","to renew; to renovate","Indicativo","Indicative","Futuro","Future","I will renew","renovaré","renovarás","renovará","renovaremos","renovaréis","renovarán","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Imperfecto","Imperfect","I was renewing, used to renew, renewed","renovaba","renovabas","renovaba","renovábamos","renovabais","renovaban","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Pretérito","Preterite","I renewed","renové","renovaste","renovó","renovamos","renovasteis","renovaron","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Condicional","Conditional","I would renew","renovaría","renovarías","renovaría","renovaríamos","renovaríais","renovarían","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have renewed","he renovado","has renovado","ha renovado","hemos renovado","habéis renovado","han renovado","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have renewed","habré renovado","habrás renovado","habrá renovado","habremos renovado","habréis renovado","habrán renovado","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had renewed","había renovado","habías renovado","había renovado","habíamos renovado","habíais renovado","habían renovado","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had renewed","hube renovado","hubiste renovado","hubo renovado","hubimos renovado","hubisteis renovado","hubieron renovado","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have renewed","habría renovado","habrías renovado","habría renovado","habríamos renovado","habríais renovado","habrían renovado","renovando","renewing","renovado","renewed" +"renovemos" +"renovar","to renew; to renovate","Subjuntivo","Subjunctive","Presente","Present","I renew, am renewing","renueve","renueves","renueve","renovemos","renovéis","renueven","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I renew, was renewing","renovara","renovaras","renovara","renováramos","renovarais","renovaran","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Subjuntivo","Subjunctive","Futuro","Future","I will renew","renovare","renovares","renovare","renováremos","renovareis","renovaren","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have renewed, renewed","haya renovado","hayas renovado","haya renovado","hayamos renovado","hayáis renovado","hayan renovado","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have renewed","hubiere renovado","hubieres renovado","hubiere renovado","hubiéremos renovado","hubiereis renovado","hubieren renovado","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had renewed","hubiera renovado","hubieras renovado","hubiera renovado","hubiéramos renovado","hubierais renovado","hubieran renovado","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Renew! Don't renew!","","renueva","renueve","renovemos","renovad","renueven","renovando","renewing","renovado","renewed" +"renovar","to renew; to renovate","Imperativo Negativo","Imperative Negative","Presente","Present","Renew! Don't renew!","","no renueves","no renueve","no renovemos","no renovéis","no renueven","renovando","renewing","renovado","renewed" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Presente","Present","I renounce, am renouncing","renuncio","renuncias","renuncia","renunciamos","renunciáis","renuncian","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Futuro","Future","I will renounce","renunciaré","renunciarás","renunciará","renunciaremos","renunciaréis","renunciarán","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Imperfecto","Imperfect","I was renouncing, used to renounce, renounced","renunciaba","renunciabas","renunciaba","renunciábamos","renunciabais","renunciaban","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Pretérito","Preterite","I renounced","renuncié","renunciaste","renunció","renunciamos","renunciasteis","renunciaron","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Condicional","Conditional","I would renounce","renunciaría","renunciarías","renunciaría","renunciaríamos","renunciaríais","renunciarían","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Presente perfecto","Present Perfect","I have renounced","he renunciado","has renunciado","ha renunciado","hemos renunciado","habéis renunciado","han renunciado","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have renounced","habré renunciado","habrás renunciado","habrá renunciado","habremos renunciado","habréis renunciado","habrán renunciado","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had renounced","había renunciado","habías renunciado","había renunciado","habíamos renunciado","habíais renunciado","habían renunciado","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had renounced","hube renunciado","hubiste renunciado","hubo renunciado","hubimos renunciado","hubisteis renunciado","hubieron renunciado","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have renounced","habría renunciado","habrías renunciado","habría renunciado","habríamos renunciado","habríais renunciado","habrían renunciado","renunciando","renouncing","renunciado","renounced" +"renunciemos" +"renunciar","to renounce, surrender, resign","Subjuntivo","Subjunctive","Presente","Present","I renounce, am renouncing","renuncie","renuncies","renuncie","renunciemos","renunciéis","renuncien","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I renounced, was renouncing","renunciara","renunciaras","renunciara","renunciáramos","renunciarais","renunciaran","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Subjuntivo","Subjunctive","Futuro","Future","I will renounce","renunciare","renunciares","renunciare","renunciáremos","renunciareis","renunciaren","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have renounced, renounced","haya renunciado","hayas renunciado","haya renunciado","hayamos renunciado","hayáis renunciado","hayan renunciado","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have renounced","hubiere renunciado","hubieres renunciado","hubiere renunciado","hubiéremos renunciado","hubiereis renunciado","hubieren renunciado","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had renounced","hubiera renunciado","hubieras renunciado","hubiera renunciado","hubiéramos renunciado","hubierais renunciado","hubieran renunciado","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Renounce! Don't renounce!","","renuncia","renuncie","renunciemos","renunciad","renuncien","renunciando","renouncing","renunciado","renounced" +"renunciar","to renounce, surrender, resign","Imperativo Negativo","Imperative Negative","Presente","Present","Renounce! Don't renounce!","","no renuncies","no renuncie","no renunciemos","no renunciéis","no renuncien","renunciando","renouncing","renunciado","renounced" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Presente","Present","I quarrel, am quarreling","riño","riñes","riñe","reñimos","reñís","riñen","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Futuro","Future","I will quarrel","reñiré","reñirás","reñirá","reñiremos","reñiréis","reñirán","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Imperfecto","Imperfect","I was quarreling, used to quarrel, quarreled","reñía","reñías","reñía","reñíamos","reñíais","reñían","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Pretérito","Preterite","I quarreled","reñí","reñiste","riñó","reñimos","reñisteis","riñeron","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Condicional","Conditional","I would quarrel","reñiría","reñirías","reñiría","reñiríamos","reñiríais","reñirían","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Presente perfecto","Present Perfect","I have quarreled","he reñido","has reñido","ha reñido","hemos reñido","habéis reñido","han reñido","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have quarreled","habré reñido","habrás reñido","habrá reñido","habremos reñido","habréis reñido","habrán reñido","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had quarreled","había reñido","habías reñido","había reñido","habíamos reñido","habíais reñido","habían reñido","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had quarreled","hube reñido","hubiste reñido","hubo reñido","hubimos reñido","hubisteis reñido","hubieron reñido","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have quarreled","habría reñido","habrías reñido","habría reñido","habríamos reñido","habríais reñido","habrían reñido","riñendo","quarreling","reñido","quarreled" +"riñamos" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Subjuntivo","Subjunctive","Presente","Present","I quarrel, am quarreling","riña","riñas","riña","riñamos","riñáis","riñan","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I quarreled, was quarreling","riñera","riñeras","riñera","riñéramos","riñerais","riñeran","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Subjuntivo","Subjunctive","Futuro","Future","I will quarrel","riñere","riñeres","riñere","riñéremos","riñereis","riñeren","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have quarreled, quarreled","haya reñido","hayas reñido","haya reñido","hayamos reñido","hayáis reñido","hayan reñido","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have quarreled","hubiere reñido","hubieres reñido","hubiere reñido","hubiéremos reñido","hubiereis reñido","hubieren reñido","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had quarreled","hubiera reñido","hubieras reñido","hubiera reñido","hubiéramos reñido","hubierais reñido","hubieran reñido","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Quarrel! Don't quarrel!","","riñe","riña","riñamos","reñid","riñan","riñendo","quarreling","reñido","quarreled" +"reñir","to quarrel, fight; to scold, tell off, reprimand","Imperativo Negativo","Imperative Negative","Presente","Present","Quarrel! Don't quarrel!","","no riñas","no riña","no riñamos","no riñáis","no riñan","riñendo","quarreling","reñido","quarreled" +"reparar","to repair, mend, restore","Indicativo","Indicative","Presente","Present","I repair, am repairing","reparo","reparas","repara","reparamos","reparáis","reparan","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Futuro","Future","I will repair","repararé","repararás","reparará","repararemos","repararéis","repararán","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Imperfecto","Imperfect","I was repairing, used to repair, repaired","reparaba","reparabas","reparaba","reparábamos","reparabais","reparaban","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Pretérito","Preterite","I repaired","reparé","reparaste","reparó","reparamos","reparasteis","repararon","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Condicional","Conditional","I would repair","repararía","repararías","repararía","repararíamos","repararíais","repararían","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Presente perfecto","Present Perfect","I have repaired","he reparado","has reparado","ha reparado","hemos reparado","habéis reparado","han reparado","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have repaired","habré reparado","habrás reparado","habrá reparado","habremos reparado","habréis reparado","habrán reparado","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had repaired","había reparado","habías reparado","había reparado","habíamos reparado","habíais reparado","habían reparado","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had repaired","hube reparado","hubiste reparado","hubo reparado","hubimos reparado","hubisteis reparado","hubieron reparado","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have repaired","habría reparado","habrías reparado","habría reparado","habríamos reparado","habríais reparado","habrían reparado","reparando","repairing","reparado","repaired" +"reparemos" +"reparar","to repair, mend, restore","Subjuntivo","Subjunctive","Presente","Present","I repair, am repairing","repare","repares","repare","reparemos","reparéis","reparen","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I repaired, was repairing","reparara","repararas","reparara","reparáramos","repararais","repararan","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Subjuntivo","Subjunctive","Futuro","Future","I will repair","reparare","reparares","reparare","reparáremos","reparareis","repararen","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have repaired, repaired","haya reparado","hayas reparado","haya reparado","hayamos reparado","hayáis reparado","hayan reparado","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have repaired","hubiere reparado","hubieres reparado","hubiere reparado","hubiéremos reparado","hubiereis reparado","hubieren reparado","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had repaired","hubiera reparado","hubieras reparado","hubiera reparado","hubiéramos reparado","hubierais reparado","hubieran reparado","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Repair! Don't repair!","","repara","repare","reparemos","reparad","reparen","reparando","repairing","reparado","repaired" +"reparar","to repair, mend, restore","Imperativo Negativo","Imperative Negative","Presente","Present","Repair! Don't repair!","","no repares","no repare","no reparemos","no reparéis","no reparen","reparando","repairing","reparado","repaired" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Presente","Present","I review, am reviewing","repaso","repasas","repasa","repasamos","repasáis","repasan","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Futuro","Future","I will review","repasaré","repasarás","repasará","repasaremos","repasaréis","repasarán","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Imperfecto","Imperfect","I was reviewing, used to review, reviewed","repasaba","repasabas","repasaba","repasábamos","repasabais","repasaban","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Pretérito","Preterite","I reviewed","repasé","repasaste","repasó","repasamos","repasasteis","repasaron","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Condicional","Conditional","I would review","repasaría","repasarías","repasaría","repasaríamos","repasaríais","repasarían","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Presente perfecto","Present Perfect","I have reviewed","he repasado","has repasado","ha repasado","hemos repasado","habéis repasado","han repasado","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have reviewed","habré repasado","habrás repasado","habrá repasado","habremos repasado","habréis repasado","habrán repasado","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had reviewed","había repasado","habías repasado","había repasado","habíamos repasado","habíais repasado","habían repasado","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had reviewed","hube repasado","hubiste repasado","hubo repasado","hubimos repasado","hubisteis repasado","hubieron repasado","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have reviewed","habría repasado","habrías repasado","habría repasado","habríamos repasado","habríais repasado","habrían repasado","repasando","reviewing","repasado","reviewed" +"repasemos" +"repasar","to review, go over again; to do again","Subjuntivo","Subjunctive","Presente","Present","I review, am reviewing","repase","repases","repase","repasemos","repaséis","repasen","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I reviewed, was reviewing","repasara","repasaras","repasara","repasáramos","repasarais","repasaran","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Subjuntivo","Subjunctive","Futuro","Future","I will review","repasare","repasares","repasare","repasáremos","repasareis","repasaren","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have reviewed, reviewed","haya repasado","hayas repasado","haya repasado","hayamos repasado","hayáis repasado","hayan repasado","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have reviewed","hubiere repasado","hubieres repasado","hubiere repasado","hubiéremos repasado","hubiereis repasado","hubieren repasado","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had reviewed","hubiera repasado","hubieras repasado","hubiera repasado","hubiéramos repasado","hubierais repasado","hubieran repasado","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Review! Don't review!","","repasa","repase","repasemos","repasad","repasen","repasando","reviewing","repasado","reviewed" +"repasar","to review, go over again; to do again","Imperativo Negativo","Imperative Negative","Presente","Present","Review! Don't review!","","no repases","no repase","no repasemos","no repaséis","no repasen","repasando","reviewing","repasado","reviewed" +"repetir","to repeat","Indicativo","Indicative","Presente","Present","I repeat, am repeating","repito","repites","repite","repetimos","repetís","repiten","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Futuro","Future","I will repeat","repetiré","repetirás","repetirá","repetiremos","repetiréis","repetirán","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Imperfecto","Imperfect","I was repeating, used to repeat, repeated","repetía","repetías","repetía","repetíamos","repetíais","repetían","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Pretérito","Preterite","I repeated","repetí","repetiste","repitió","repetimos","repetisteis","repitieron","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Condicional","Conditional","I would repeat","repetiría","repetirías","repetiría","repetiríamos","repetiríais","repetirían","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Presente perfecto","Present Perfect","I have repeated","he repetido","has repetido","ha repetido","hemos repetido","habéis repetido","han repetido","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have repeated","habré repetido","habrás repetido","habrá repetido","habremos repetido","habréis repetido","habrán repetido","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had repeated","había repetido","habías repetido","había repetido","habíamos repetido","habíais repetido","habían repetido","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had repeated","hube repetido","hubiste repetido","hubo repetido","hubimos repetido","hubisteis repetido","hubieron repetido","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have repeated","habría repetido","habrías repetido","habría repetido","habríamos repetido","habríais repetido","habrían repetido","repitiendo","repeating","repetido","repeated" +"repitamos" +"repetir","to repeat","Subjuntivo","Subjunctive","Presente","Present","I repeat, am repeating","repita","repitas","repita","repitamos","repitáis","repitan","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I repeated, was repeating","repitiera","repitieras","repitiera","repitiéramos","repitierais","repitieran","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Subjuntivo","Subjunctive","Futuro","Future","I will repeat","repitiere","repitieres","repitiere","repitiéremos","repitiereis","repitieren","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have repeated, repeated","haya repetido","hayas repetido","haya repetido","hayamos repetido","hayáis repetido","hayan repetido","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have repeated","hubiere repetido","hubieres repetido","hubiere repetido","hubiéremos repetido","hubiereis repetido","hubieren repetido","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had repeated","hubiera repetido","hubieras repetido","hubiera repetido","hubiéramos repetido","hubierais repetido","hubieran repetido","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Repeat! Don't repeat!","","repite","repita","repitamos","repetid","repitan","repitiendo","repeating","repetido","repeated" +"repetir","to repeat","Imperativo Negativo","Imperative Negative","Presente","Present","Repeat! Don't repeat!","","no repitas","no repita","no repitamos","no repitáis","no repitan","repitiendo","repeating","repetido","repeated" +"replicar","to reply, answer back","Indicativo","Indicative","Presente","Present","I reply, am replying","replico","replicas","replica","replicamos","replicáis","replican","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Futuro","Future","I will reply","replicaré","replicarás","replicará","replicaremos","replicaréis","replicarán","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Imperfecto","Imperfect","I was replying, used to reply, replied","replicaba","replicabas","replicaba","replicábamos","replicabais","replicaban","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Pretérito","Preterite","I replied","repliqué","replicaste","replicó","replicamos","replicasteis","replicaron","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Condicional","Conditional","I would reply","replicaría","replicarías","replicaría","replicaríamos","replicaríais","replicarían","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Presente perfecto","Present Perfect","I have replied","he replicado","has replicado","ha replicado","hemos replicado","habéis replicado","han replicado","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have replied","habré replicado","habrás replicado","habrá replicado","habremos replicado","habréis replicado","habrán replicado","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had replied","había replicado","habías replicado","había replicado","habíamos replicado","habíais replicado","habían replicado","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had replied","hube replicado","hubiste replicado","hubo replicado","hubimos replicado","hubisteis replicado","hubieron replicado","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have replied","habría replicado","habrías replicado","habría replicado","habríamos replicado","habríais replicado","habrían replicado","replicando","replying","replicado","replied" +"repliquemos" +"replicar","to reply, answer back","Subjuntivo","Subjunctive","Presente","Present","I reply, am replying","replique","repliques","replique","repliquemos","repliquéis","repliquen","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I replied, was replying","replicara","replicaras","replicara","replicáramos","replicarais","replicaran","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Subjuntivo","Subjunctive","Futuro","Future","I will reply","replicare","replicares","replicare","replicáremos","replicareis","replicaren","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have replied, replied","haya replicado","hayas replicado","haya replicado","hayamos replicado","hayáis replicado","hayan replicado","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have replied","hubiere replicado","hubieres replicado","hubiere replicado","hubiéremos replicado","hubiereis replicado","hubieren replicado","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had replied","hubiera replicado","hubieras replicado","hubiera replicado","hubiéramos replicado","hubierais replicado","hubieran replicado","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Reply! Don't reply!","","replica","replique","repliquemos","replicad","repliquen","replicando","replying","replicado","replied" +"replicar","to reply, answer back","Imperativo Negativo","Imperative Negative","Presente","Present","Reply! Don't reply!","","no repliques","no replique","no repliquemos","no repliquéis","no repliquen","replicando","replying","replicado","replied" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Presente","Present","I bring, am bringing","reporto","reportas","reporta","reportamos","reportáis","reportan","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Futuro","Future","I will bring","reportaré","reportarás","reportará","reportaremos","reportaréis","reportarán","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Imperfecto","Imperfect","I was bringing, used to bring, brought","reportaba","reportabas","reportaba","reportábamos","reportabais","reportaban","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Pretérito","Preterite","I brought","reporté","reportaste","reportó","reportamos","reportasteis","reportaron","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Condicional","Conditional","I would bring","reportaría","reportarías","reportaría","reportaríamos","reportaríais","reportarían","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Presente perfecto","Present Perfect","I have brought","he reportado","has reportado","ha reportado","hemos reportado","habéis reportado","han reportado","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have brought","habré reportado","habrás reportado","habrá reportado","habremos reportado","habréis reportado","habrán reportado","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had brought","había reportado","habías reportado","había reportado","habíamos reportado","habíais reportado","habían reportado","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had brought","hube reportado","hubiste reportado","hubo reportado","hubimos reportado","hubisteis reportado","hubieron reportado","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have brought","habría reportado","habrías reportado","habría reportado","habríamos reportado","habríais reportado","habrían reportado","reportando","bringing","reportado","brought" +"reportemos" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Subjuntivo","Subjunctive","Presente","Present","I bring, am bringing","reporte","reportes","reporte","reportemos","reportéis","reporten","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I brought, was bringing","reportara","reportaras","reportara","reportáramos","reportarais","reportaran","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Subjuntivo","Subjunctive","Futuro","Future","I will bring","reportare","reportares","reportare","reportáremos","reportareis","reportaren","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have brought, brought","haya reportado","hayas reportado","haya reportado","hayamos reportado","hayáis reportado","hayan reportado","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have brought","hubiere reportado","hubieres reportado","hubiere reportado","hubiéremos reportado","hubiereis reportado","hubieren reportado","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had brought","hubiera reportado","hubieras reportado","hubiera reportado","hubiéramos reportado","hubierais reportado","hubieran reportado","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bring! Don't bring!","","reporta","reporte","reportemos","reportad","reporten","reportando","bringing","reportado","brought" +"reportar","to bring, carry; to obtain; to report, inform; to denounce, accuse","Imperativo Negativo","Imperative Negative","Presente","Present","Bring! Don't bring!","","no reportes","no reporte","no reportemos","no reportéis","no reporten","reportando","bringing","reportado","brought" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Presente","Present","I require, am requiring","requiero","requieres","requiere","requerimos","requerís","requieren","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Futuro","Future","I will require","requeriré","requerirás","requerirá","requeriremos","requeriréis","requerirán","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Imperfecto","Imperfect","I was requiring, used to require, required","requería","requerías","requería","requeríamos","requeríais","requerían","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Pretérito","Preterite","I required","requerí","requeriste","requirió","requerimos","requeristeis","requirieron","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Condicional","Conditional","I would require","requeriría","requerirías","requeriría","requeriríamos","requeriríais","requerirían","requiriendo","requiring","requerido","required" +"soler","to be accustomed to, be accustomed to","Subjuntivo","Subjunctive","Futuro","Future","I will be accustomed to","soliere","solieres","soliere","soliéremos","soliereis","solieren","soliendo","being accustomed to","solido","accustomed to" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have required","he requerido","has requerido","ha requerido","hemos requerido","habéis requerido","han requerido","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have required","habré requerido","habrás requerido","habrá requerido","habremos requerido","habréis requerido","habrán requerido","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had required","había requerido","habías requerido","había requerido","habíamos requerido","habíais requerido","habían requerido","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had required","hube requerido","hubiste requerido","hubo requerido","hubimos requerido","hubisteis requerido","hubieron requerido","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have required","habría requerido","habrías requerido","habría requerido","habríamos requerido","habríais requerido","habrían requerido","requiriendo","requiring","requerido","required" +"requiramos" +"requerir","to require, need; to request, ask; to send for, call for","Subjuntivo","Subjunctive","Presente","Present","I require, am requiring","requiera","requieras","requiera","requiramos","requiráis","requieran","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I required, was requiring","requiriera","requirieras","requiriera","requiriéramos","requirierais","requirieran","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Subjuntivo","Subjunctive","Futuro","Future","I will require","requiriere","requirieres","requiriere","requiriéremos","requiriereis","requirieren","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have required, required","haya requerido","hayas requerido","haya requerido","hayamos requerido","hayáis requerido","hayan requerido","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have required","hubiere requerido","hubieres requerido","hubiere requerido","hubiéremos requerido","hubiereis requerido","hubieren requerido","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had required","hubiera requerido","hubieras requerido","hubiera requerido","hubiéramos requerido","hubierais requerido","hubieran requerido","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Require! Don't require!","","requiere","requiera","requiramos","requerid","requieran","requiriendo","requiring","requerido","required" +"requerir","to require, need; to request, ask; to send for, call for","Imperativo Negativo","Imperative Negative","Presente","Present","Require! Don't require!","","no requieras","no requiera","no requiramos","no requiráis","no requieran","requiriendo","requiring","requerido","required" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Presente","Present","I reserve, am reserving","reservo","reservas","reserva","reservamos","reserváis","reservan","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Futuro","Future","I will reserve","reservaré","reservarás","reservará","reservaremos","reservaréis","reservarán","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Imperfecto","Imperfect","I was reserving, used to reserve, reserved","reservaba","reservabas","reservaba","reservábamos","reservabais","reservaban","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Pretérito","Preterite","I reserved","reservé","reservaste","reservó","reservamos","reservasteis","reservaron","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Condicional","Conditional","I would reserve","reservaría","reservarías","reservaría","reservaríamos","reservaríais","reservarían","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Presente perfecto","Present Perfect","I have reserved","he reservado","has reservado","ha reservado","hemos reservado","habéis reservado","han reservado","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have reserved","habré reservado","habrás reservado","habrá reservado","habremos reservado","habréis reservado","habrán reservado","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had reserved","había reservado","habías reservado","había reservado","habíamos reservado","habíais reservado","habían reservado","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had reserved","hube reservado","hubiste reservado","hubo reservado","hubimos reservado","hubisteis reservado","hubieron reservado","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have reserved","habría reservado","habrías reservado","habría reservado","habríamos reservado","habríais reservado","habrían reservado","reservando","reserving","reservado","reserved" +"reservemos" +"reservar","to reserve; to keep, keep in reserve","Subjuntivo","Subjunctive","Presente","Present","I reserve, am reserving","reserve","reserves","reserve","reservemos","reservéis","reserven","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I reserved, was reserving","reservara","reservaras","reservara","reserváramos","reservarais","reservaran","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Subjuntivo","Subjunctive","Futuro","Future","I will reserve","reservare","reservares","reservare","reserváremos","reservareis","reservaren","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have reserved, reserved","haya reservado","hayas reservado","haya reservado","hayamos reservado","hayáis reservado","hayan reservado","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have reserved","hubiere reservado","hubieres reservado","hubiere reservado","hubiéremos reservado","hubiereis reservado","hubieren reservado","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had reserved","hubiera reservado","hubieras reservado","hubiera reservado","hubiéramos reservado","hubierais reservado","hubieran reservado","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Reserve! Don't reserve!","","reserva","reserve","reservemos","reservad","reserven","reservando","reserving","reservado","reserved" +"reservar","to reserve; to keep, keep in reserve","Imperativo Negativo","Imperative Negative","Presente","Present","Reserve! Don't reserve!","","no reserves","no reserve","no reservemos","no reservéis","no reserven","reservando","reserving","reservado","reserved" +"resolver","to solve, resolve","Indicativo","Indicative","Presente","Present","I solve, am solving","resuelvo","resuelves","resuelve","resolvemos","resolvéis","resuelven","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Futuro","Future","I will solve","resolveré","resolverás","resolverá","resolveremos","resolveréis","resolverán","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Imperfecto","Imperfect","I was solving, used to solve, solved","resolvía","resolvías","resolvía","resolvíamos","resolvíais","resolvían","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Pretérito","Preterite","I solved","resolví","resolviste","resolvió","resolvimos","resolvisteis","resolvieron","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Condicional","Conditional","I would solve","resolvería","resolverías","resolvería","resolveríamos","resolveríais","resolverían","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Presente perfecto","Present Perfect","I have solved","he resuelto","has resuelto","ha resuelto","hemos resuelto","habéis resuelto","han resuelto","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have solved","habré resuelto","habrás resuelto","habrá resuelto","habremos resuelto","habréis resuelto","habrán resuelto","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had solved","había resuelto","habías resuelto","había resuelto","habíamos resuelto","habíais resuelto","habían resuelto","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had solved","hube resuelto","hubiste resuelto","hubo resuelto","hubimos resuelto","hubisteis resuelto","hubieron resuelto","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have solved","habría resuelto","habrías resuelto","habría resuelto","habríamos resuelto","habríais resuelto","habrían resuelto","resolviendo","solving","resuelto","solved" +"resolvamos" +"resolver","to solve, resolve","Subjuntivo","Subjunctive","Presente","Present","I solve, am solving","resuelva","resuelvas","resuelva","resolvamos","resolváis","resuelvan","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I solved, was solving","resolviera","resolvieras","resolviera","resolviéramos","resolvierais","resolvieran","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Subjuntivo","Subjunctive","Futuro","Future","I will solve","resolviere","resolvieres","resolviere","resolviéremos","resolviereis","resolvieren","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have solved, solved","haya resuelto","hayas resuelto","haya resuelto","hayamos resuelto","hayáis resuelto","hayan resuelto","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have solved","hubiere resuelto","hubieres resuelto","hubiere resuelto","hubiéremos resuelto","hubiereis resuelto","hubieren resuelto","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had solved","hubiera resuelto","hubieras resuelto","hubiera resuelto","hubiéramos resuelto","hubierais resuelto","hubieran resuelto","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Solve! Don't solve!","","resuelve","resuelva","resolvamos","resolved","resuelvan","resolviendo","solving","resuelto","solved" +"resolver","to solve, resolve","Imperativo Negativo","Imperative Negative","Presente","Present","Solve! Don't solve!","","no resuelvas","no resuelva","no resolvamos","no resolváis","no resuelvan","resolviendo","solving","resuelto","solved" +"respetar","to respect","Indicativo","Indicative","Presente","Present","I respect, am respecting","respeto","respetas","respeta","respetamos","respetáis","respetan","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Futuro","Future","I will respect","respetaré","respetarás","respetará","respetaremos","respetaréis","respetarán","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Imperfecto","Imperfect","I was respecting, used to respect, respected","respetaba","respetabas","respetaba","respetábamos","respetabais","respetaban","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Pretérito","Preterite","I respected","respeté","respetaste","respetó","respetamos","respetasteis","respetaron","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Condicional","Conditional","I would respect","respetaría","respetarías","respetaría","respetaríamos","respetaríais","respetarían","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Presente perfecto","Present Perfect","I have respected","he respetado","has respetado","ha respetado","hemos respetado","habéis respetado","han respetado","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have respected","habré respetado","habrás respetado","habrá respetado","habremos respetado","habréis respetado","habrán respetado","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had respected","había respetado","habías respetado","había respetado","habíamos respetado","habíais respetado","habían respetado","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had respected","hube respetado","hubiste respetado","hubo respetado","hubimos respetado","hubisteis respetado","hubieron respetado","respetando","respecting","respetado","respected" +"respetar","to respect","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have respected","habría respetado","habrías respetado","habría respetado","habríamos respetado","habríais respetado","habrían respetado","respetando","respecting","respetado","respected" +"respetemos" +"respetar","to respect","Subjuntivo","Subjunctive","Presente","Present","I respect, am respecting","respete","respetes","respete","respetemos","respetéis","respeten","respetando","respecting","respetado","respected" +"respetar","to respect","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I respected, was respecting","respetara","respetaras","respetara","respetáramos","respetarais","respetaran","respetando","respecting","respetado","respected" +"respetar","to respect","Subjuntivo","Subjunctive","Futuro","Future","I will respect","respetare","respetares","respetare","respetáremos","respetareis","respetaren","respetando","respecting","respetado","respected" +"respetar","to respect","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have respected, respected","haya respetado","hayas respetado","haya respetado","hayamos respetado","hayáis respetado","hayan respetado","respetando","respecting","respetado","respected" +"respetar","to respect","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have respected","hubiere respetado","hubieres respetado","hubiere respetado","hubiéremos respetado","hubiereis respetado","hubieren respetado","respetando","respecting","respetado","respected" +"respetar","to respect","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had respected","hubiera respetado","hubieras respetado","hubiera respetado","hubiéramos respetado","hubierais respetado","hubieran respetado","respetando","respecting","respetado","respected" +"respetar","to respect","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Respect! Don't respect!","","respeta","respete","respetemos","respetad","respeten","respetando","respecting","respetado","respected" +"respetar","to respect","Imperativo Negativo","Imperative Negative","Presente","Present","Respect! Don't respect!","","no respetes","no respete","no respetemos","no respetéis","no respeten","respetando","respecting","respetado","respected" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Presente","Present","I breathe, am breathing","respiro","respiras","respira","respiramos","respiráis","respiran","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Futuro","Future","I will breathe","respiraré","respirarás","respirará","respiraremos","respiraréis","respirarán","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Imperfecto","Imperfect","I was breathing, used to breathe, breathed","respiraba","respirabas","respiraba","respirábamos","respirabais","respiraban","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Pretérito","Preterite","I breathed","respiré","respiraste","respiró","respiramos","respirasteis","respiraron","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Condicional","Conditional","I would breathe","respiraría","respirarías","respiraría","respiraríamos","respiraríais","respirarían","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Presente perfecto","Present Perfect","I have breathed","he respirado","has respirado","ha respirado","hemos respirado","habéis respirado","han respirado","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have breathed","habré respirado","habrás respirado","habrá respirado","habremos respirado","habréis respirado","habrán respirado","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had breathed","había respirado","habías respirado","había respirado","habíamos respirado","habíais respirado","habían respirado","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had breathed","hube respirado","hubiste respirado","hubo respirado","hubimos respirado","hubisteis respirado","hubieron respirado","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have breathed","habría respirado","habrías respirado","habría respirado","habríamos respirado","habríais respirado","habrían respirado","respirando","breathing","respirado","breathed" +"respiremos" +"respirar","to breathe, breathe in, inhale","Subjuntivo","Subjunctive","Presente","Present","I breathe, am breathing","respire","respires","respire","respiremos","respiréis","respiren","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I breathed, was breathing","respirara","respiraras","respirara","respiráramos","respirarais","respiraran","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Subjuntivo","Subjunctive","Futuro","Future","I will breathe","respirare","respirares","respirare","respiráremos","respirareis","respiraren","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have breathed, breathed","haya respirado","hayas respirado","haya respirado","hayamos respirado","hayáis respirado","hayan respirado","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have breathed","hubiere respirado","hubieres respirado","hubiere respirado","hubiéremos respirado","hubiereis respirado","hubieren respirado","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had breathed","hubiera respirado","hubieras respirado","hubiera respirado","hubiéramos respirado","hubierais respirado","hubieran respirado","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Breathe! Don't breathe!","","respira","respire","respiremos","respirad","respiren","respirando","breathing","respirado","breathed" +"respirar","to breathe, breathe in, inhale","Imperativo Negativo","Imperative Negative","Presente","Present","Breathe! Don't breathe!","","no respires","no respire","no respiremos","no respiréis","no respiren","respirando","breathing","respirado","breathed" +"responder","to respond, answer, reply to","Indicativo","Indicative","Presente","Present","I respond, am responding","respondo","respondes","responde","respondemos","respondéis","responden","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Futuro","Future","I will respond","responderé","responderás","responderá","responderemos","responderéis","responderán","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Imperfecto","Imperfect","I was responding, used to respond, responded","respondía","respondías","respondía","respondíamos","respondíais","respondían","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Pretérito","Preterite","I responded","respondí","respondiste","respondió","respondimos","respondisteis","respondieron","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Condicional","Conditional","I would respond","respondería","responderías","respondería","responderíamos","responderíais","responderían","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have responded","he respondido","has respondido","ha respondido","hemos respondido","habéis respondido","han respondido","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have responded","habré respondido","habrás respondido","habrá respondido","habremos respondido","habréis respondido","habrán respondido","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had responded","había respondido","habías respondido","había respondido","habíamos respondido","habíais respondido","habían respondido","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had responded","hube respondido","hubiste respondido","hubo respondido","hubimos respondido","hubisteis respondido","hubieron respondido","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have responded","habría respondido","habrías respondido","habría respondido","habríamos respondido","habríais respondido","habrían respondido","respondiendo","responding","respondido","responded" +"respondamos" +"responder","to respond, answer, reply to","Subjuntivo","Subjunctive","Presente","Present","I respond, am responding","responda","respondas","responda","respondamos","respondáis","respondan","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I responded, was responding","respondiera","respondieras","respondiera","respondiéramos","respondierais","respondieran","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Subjuntivo","Subjunctive","Futuro","Future","I will respond","respondiere","respondieres","respondiere","respondiéremos","respondiereis","respondieren","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have responded, responded","haya respondido","hayas respondido","haya respondido","hayamos respondido","hayáis respondido","hayan respondido","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have responded","hubiere respondido","hubieres respondido","hubiere respondido","hubiéremos respondido","hubiereis respondido","hubieren respondido","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had responded","hubiera respondido","hubieras respondido","hubiera respondido","hubiéramos respondido","hubierais respondido","hubieran respondido","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Respond! Don't respond!","","responde","responda","respondamos","responded","respondan","respondiendo","responding","respondido","responded" +"responder","to respond, answer, reply to","Imperativo Negativo","Imperative Negative","Presente","Present","Respond! Don't respond!","","no respondas","no responda","no respondamos","no respondáis","no respondan","respondiendo","responding","respondido","responded" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Presente","Present","I turn out, am turning out","resulto","resultas","resulta","resultamos","resultáis","resultan","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Futuro","Future","I will turn out","resultaré","resultarás","resultará","resultaremos","resultaréis","resultarán","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Imperfecto","Imperfect","I was turning out, used to turn out, turned out","resultaba","resultabas","resultaba","resultábamos","resultabais","resultaban","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Pretérito","Preterite","I turned out","resulté","resultaste","resultó","resultamos","resultasteis","resultaron","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Condicional","Conditional","I would turn out","resultaría","resultarías","resultaría","resultaríamos","resultaríais","resultarían","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Presente perfecto","Present Perfect","I have turned out","he resultado","has resultado","ha resultado","hemos resultado","habéis resultado","han resultado","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have turned out","habré resultado","habrás resultado","habrá resultado","habremos resultado","habréis resultado","habrán resultado","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had turned out","había resultado","habías resultado","había resultado","habíamos resultado","habíais resultado","habían resultado","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had turned out","hube resultado","hubiste resultado","hubo resultado","hubimos resultado","hubisteis resultado","hubieron resultado","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have turned out","habría resultado","habrías resultado","habría resultado","habríamos resultado","habríais resultado","habrían resultado","resultando","turning out","resultado","turned out" +"resultemos" +"resultar","to turn out (to be), prove [to be], ensue","Subjuntivo","Subjunctive","Presente","Present","I turn out, am turning out","resulte","resultes","resulte","resultemos","resultéis","resulten","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I turned out, was turning out","resultara","resultaras","resultara","resultáramos","resultarais","resultaran","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Subjuntivo","Subjunctive","Futuro","Future","I will turn out","resultare","resultares","resultare","resultáremos","resultareis","resultaren","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have turned out, turned out","haya resultado","hayas resultado","haya resultado","hayamos resultado","hayáis resultado","hayan resultado","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have turned out","hubiere resultado","hubieres resultado","hubiere resultado","hubiéremos resultado","hubiereis resultado","hubieren resultado","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had turned out","hubiera resultado","hubieras resultado","hubiera resultado","hubiéramos resultado","hubierais resultado","hubieran resultado","resultando","turning out","resultado","turned out" +"resultar","to turn out (to be), prove [to be], ensue","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Yurn out! Don't turn out!","","resulta","resulte","resultemos","resultad","resulten","resultando","turning out","resultado","turned out", +"resultar","to turn out (to be), prove [to be], ensue","Imperativo Negativo","Imperative Negative","Presente","Present","Yurn out! Don't turn out!","","no resultes","no resulte","no resultemos","no resultéis","no resulten","resultando","turning out","resultado","turned out", +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Presente","Present","I reveal, am revealing","revelo","revelas","revela","revelamos","reveláis","revelan","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Futuro","Future","I will reveal","revelaré","revelarás","revelará","revelaremos","revelaréis","revelarán","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Imperfecto","Imperfect","I was revealing, used to reveal, revealed","revelaba","revelabas","revelaba","revelábamos","revelabais","revelaban","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Pretérito","Preterite","I revealed","revelé","revelaste","reveló","revelamos","revelasteis","revelaron","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Condicional","Conditional","I would reveal","revelaría","revelarías","revelaría","revelaríamos","revelaríais","revelarían","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have revealed","he revelado","has revelado","ha revelado","hemos revelado","habéis revelado","han revelado","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have revealed","habré revelado","habrás revelado","habrá revelado","habremos revelado","habréis revelado","habrán revelado","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had revealed","había revelado","habías revelado","había revelado","habíamos revelado","habíais revelado","habían revelado","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had revealed","hube revelado","hubiste revelado","hubo revelado","hubimos revelado","hubisteis revelado","hubieron revelado","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have revealed","habría revelado","habrías revelado","habría revelado","habríamos revelado","habríais revelado","habrían revelado","revelando","revealing","revelado","revealed" +"revelemos" +"revelar","to reveal, disclose; to develop [film]","Subjuntivo","Subjunctive","Presente","Present","I reveal, am revealing","revele","reveles","revele","revelemos","reveléis","revelen","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I revealed, was revealing","revelara","revelaras","revelara","reveláramos","revelarais","revelaran","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Subjuntivo","Subjunctive","Futuro","Future","I will reveal","revelare","revelares","revelare","reveláremos","revelareis","revelaren","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have revealed, revealed","haya revelado","hayas revelado","haya revelado","hayamos revelado","hayáis revelado","hayan revelado","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have revealed","hubiere revelado","hubieres revelado","hubiere revelado","hubiéremos revelado","hubiereis revelado","hubieren revelado","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had revealed","hubiera revelado","hubieras revelado","hubiera revelado","hubiéramos revelado","hubierais revelado","hubieran revelado","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Reveal! Don't reveal!","","revela","revele","revelemos","revelad","revelen","revelando","revealing","revelado","revealed" +"revelar","to reveal, disclose; to develop [film]","Imperativo Negativo","Imperative Negative","Presente","Present","Reveal! Don't reveal!","","no reveles","no revele","no revelemos","no reveléis","no revelen","revelando","revealing","revelado","revealed" +"rezar","to pray","Indicativo","Indicative","Presente","Present","I pray, am praying","rezo","rezas","reza","rezamos","rezáis","rezan","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Futuro","Future","I will pray","rezaré","rezarás","rezará","rezaremos","rezaréis","rezarán","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Imperfecto","Imperfect","I was praying, used to pray, prayed","rezaba","rezabas","rezaba","rezábamos","rezabais","rezaban","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Pretérito","Preterite","I prayed","recé","rezaste","rezó","rezamos","rezasteis","rezaron","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Condicional","Conditional","I would pray","rezaría","rezarías","rezaría","rezaríamos","rezaríais","rezarían","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Presente perfecto","Present Perfect","I have prayed","he rezado","has rezado","ha rezado","hemos rezado","habéis rezado","han rezado","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have prayed","habré rezado","habrás rezado","habrá rezado","habremos rezado","habréis rezado","habrán rezado","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had prayed","había rezado","habías rezado","había rezado","habíamos rezado","habíais rezado","habían rezado","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had prayed","hube rezado","hubiste rezado","hubo rezado","hubimos rezado","hubisteis rezado","hubieron rezado","rezando","praying","rezado","prayed" +"rezar","to pray","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have prayed","habría rezado","habrías rezado","habría rezado","habríamos rezado","habríais rezado","habrían rezado","rezando","praying","rezado","prayed" +"recemos" +"rezar","to pray","Subjuntivo","Subjunctive","Presente","Present","I pray, am praying","rece","reces","rece","recemos","recéis","recen","rezando","praying","rezado","prayed" +"rezar","to pray","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I prayed, was praying","rezara","rezaras","rezara","rezáramos","rezarais","rezaran","rezando","praying","rezado","prayed" +"rezar","to pray","Subjuntivo","Subjunctive","Futuro","Future","I will pray","rezare","rezares","rezare","rezáremos","rezareis","rezaren","rezando","praying","rezado","prayed" +"rezar","to pray","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have prayed, prayed","haya rezado","hayas rezado","haya rezado","hayamos rezado","hayáis rezado","hayan rezado","rezando","praying","rezado","prayed" +"rezar","to pray","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have prayed","hubiere rezado","hubieres rezado","hubiere rezado","hubiéremos rezado","hubiereis rezado","hubieren rezado","rezando","praying","rezado","prayed" +"rezar","to pray","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had prayed","hubiera rezado","hubieras rezado","hubiera rezado","hubiéramos rezado","hubierais rezado","hubieran rezado","rezando","praying","rezado","prayed" +"rezar","to pray","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Pray! Don't pray!","","reza","rece","recemos","rezad","recen","rezando","praying","rezado","prayed" +"rezar","to pray","Imperativo Negativo","Imperative Negative","Presente","Present","Pray! Don't pray!","","no reces","no rece","no recemos","no recéis","no recen","rezando","praying","rezado","prayed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Presente","Present","I rob, am robbing","robo","robas","roba","robamos","robáis","roban","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Futuro","Future","I will rob","robaré","robarás","robará","robaremos","robaréis","robarán","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Imperfecto","Imperfect","I was robbing, used to rob, robbed","robaba","robabas","robaba","robábamos","robabais","robaban","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Pretérito","Preterite","I robbed","robé","robaste","robó","robamos","robasteis","robaron","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Condicional","Conditional","I would rob","robaría","robarías","robaría","robaríamos","robaríais","robarían","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Presente perfecto","Present Perfect","I have robbed","he robado","has robado","ha robado","hemos robado","habéis robado","han robado","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have robbed","habré robado","habrás robado","habrá robado","habremos robado","habréis robado","habrán robado","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had robbed","había robado","habías robado","había robado","habíamos robado","habíais robado","habían robado","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had robbed","hube robado","hubiste robado","hubo robado","hubimos robado","hubisteis robado","hubieron robado","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have robbed","habría robado","habrías robado","habría robado","habríamos robado","habríais robado","habrían robado","robando","robbing","robado","robbed" +"robemos" +"robar","to rob, steal, burgle, break into","Subjuntivo","Subjunctive","Presente","Present","I rob, am robbing","robe","robes","robe","robemos","robéis","roben","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I robbed, was robbing","robara","robaras","robara","robáramos","robarais","robaran","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Subjuntivo","Subjunctive","Futuro","Future","I will rob","robare","robares","robare","robáremos","robareis","robaren","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have robbed, robbed","haya robado","hayas robado","haya robado","hayamos robado","hayáis robado","hayan robado","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have robbed","hubiere robado","hubieres robado","hubiere robado","hubiéremos robado","hubiereis robado","hubieren robado","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had robbed","hubiera robado","hubieras robado","hubiera robado","hubiéramos robado","hubierais robado","hubieran robado","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Rob! Don't rob!","","roba","robe","robemos","robad","roben","robando","robbing","robado","robbed" +"robar","to rob, steal, burgle, break into","Imperativo Negativo","Imperative Negative","Presente","Present","Rob! Don't rob!","","no robes","no robe","no robemos","no robéis","no roben","robando","robbing","robado","robbed" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Presente","Present","I plead, am pleading","ruego","ruegas","ruega","rogamos","rogáis","ruegan","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Futuro","Future","I will plead","rogaré","rogarás","rogará","rogaremos","rogaréis","rogarán","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Imperfecto","Imperfect","I was pleading, used to plead, pleaded","rogaba","rogabas","rogaba","rogábamos","rogabais","rogaban","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Pretérito","Preterite","I pleaded","rogué","rogaste","rogó","rogamos","rogasteis","rogaron","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Condicional","Conditional","I would plead","rogaría","rogarías","rogaría","rogaríamos","rogaríais","rogarían","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have pleaded","he rogado","has rogado","ha rogado","hemos rogado","habéis rogado","han rogado","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have pleaded","habré rogado","habrás rogado","habrá rogado","habremos rogado","habréis rogado","habrán rogado","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had pleaded","había rogado","habías rogado","había rogado","habíamos rogado","habíais rogado","habían rogado","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had pleaded","hube rogado","hubiste rogado","hubo rogado","hubimos rogado","hubisteis rogado","hubieron rogado","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have pleaded","habría rogado","habrías rogado","habría rogado","habríamos rogado","habríais rogado","habrían rogado","rogando","pleading","rogado","pleaded" +"roguemos" +"rogar","to plead, beg, ask for","Subjuntivo","Subjunctive","Presente","Present","I plead, am pleading","ruegue","ruegues","ruegue","roguemos","roguéis","rueguen","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I pleaded, was pleading","rogara","rogaras","rogara","rogáramos","rogarais","rogaran","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Subjuntivo","Subjunctive","Futuro","Future","I will plead","rogare","rogares","rogare","rogáremos","rogareis","rogaren","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have pleaded, pleaded","haya rogado","hayas rogado","haya rogado","hayamos rogado","hayáis rogado","hayan rogado","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have pleaded","hubiere rogado","hubieres rogado","hubiere rogado","hubiéremos rogado","hubiereis rogado","hubieren rogado","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had pleaded","hubiera rogado","hubieras rogado","hubiera rogado","hubiéramos rogado","hubierais rogado","hubieran rogado","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Plead! Don't plead!","","ruega","ruegue","roguemos","rogad","rueguen","rogando","pleading","rogado","pleaded" +"rogar","to plead, beg, ask for","Imperativo Negativo","Imperative Negative","Presente","Present","Plead! Don't plead!","","no ruegues","no ruegue","no roguemos","no roguéis","no rueguen","rogando","pleading","rogado","pleaded" +"romper","to break","Indicativo","Indicative","Presente","Present","I break, am breaking","rompo","rompes","rompe","rompemos","rompéis","rompen","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Futuro","Future","I will break","romperé","romperás","romperá","romperemos","romperéis","romperán","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Imperfecto","Imperfect","I was breaking, used to break, broke","rompía","rompías","rompía","rompíamos","rompíais","rompían","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Pretérito","Preterite","I broke","rompí","rompiste","rompió","rompimos","rompisteis","rompieron","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Condicional","Conditional","I would break","rompería","romperías","rompería","romperíamos","romperíais","romperían","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Presente perfecto","Present Perfect","I have broken","he roto","has roto","ha roto","hemos roto","habéis roto","han roto","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have broken","habré roto","habrás roto","habrá roto","habremos roto","habréis roto","habrán roto","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had broken","había roto","habías roto","había roto","habíamos roto","habíais roto","habían roto","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had broken","hube roto","hubiste roto","hubo roto","hubimos roto","hubisteis roto","hubieron roto","rompiendo","breaking","roto","broken" +"romper","to break","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have broken","habría roto","habrías roto","habría roto","habríamos roto","habríais roto","habrían roto","rompiendo","breaking","roto","broken" +"rompamos" +"romper","to break","Subjuntivo","Subjunctive","Presente","Present","I break, am breaking","rompa","rompas","rompa","rompamos","rompáis","rompan","rompiendo","breaking","roto","broken" +"romper","to break","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I broke, was breaking","rompiera","rompieras","rompiera","rompiéramos","rompierais","rompieran","rompiendo","breaking","roto","broken" +"romper","to break","Subjuntivo","Subjunctive","Futuro","Future","I will break","rompiere","rompieres","rompiere","rompiéremos","rompiereis","rompieren","rompiendo","breaking","roto","broken" +"romper","to break","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have broken, broke","haya roto","hayas roto","haya roto","hayamos roto","hayáis roto","hayan roto","rompiendo","breaking","roto","broken" +"romper","to break","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have broken","hubiere roto","hubieres roto","hubiere roto","hubiéremos roto","hubiereis roto","hubieren roto","rompiendo","breaking","roto","broken" +"romper","to break","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had broken","hubiera roto","hubieras roto","hubiera roto","hubiéramos roto","hubierais roto","hubieran roto","rompiendo","breaking","roto","broken" +"romper","to break","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Break! Don't break!","","rompe","rompa","rompamos","romped","rompan","rompiendo","breaking","roto","broken" +"romper","to break","Imperativo Negativo","Imperative Negative","Presente","Present","Break! Don't break!","","no rompas","no rompa","no rompamos","no rompáis","no rompan","rompiendo","breaking","roto","broken" +"saber","to know","Indicativo","Indicative","Presente","Present","I know","sé","sabes","sabe","sabemos","sabéis","saben","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Futuro","Future","I will know","sabré","sabrás","sabrá","sabremos","sabréis","sabrán","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Imperfecto","Imperfect","I used to know, knew","sabía","sabías","sabía","sabíamos","sabíais","sabían","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Pretérito","Preterite","I knew","supe","supiste","supo","supimos","supisteis","supieron","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Condicional","Conditional","I would know","sabría","sabrías","sabría","sabríamos","sabríais","sabrían","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Presente perfecto","Present Perfect","I have known","he sabido","has sabido","ha sabido","hemos sabido","habéis sabido","han sabido","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have known","habré sabido","habrás sabido","habrá sabido","habremos sabido","habréis sabido","habrán sabido","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had known","había sabido","habías sabido","había sabido","habíamos sabido","habíais sabido","habían sabido","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had known","hube sabido","hubiste sabido","hubo sabido","hubimos sabido","hubisteis sabido","hubieron sabido","sabiendo","knowing","sabido","known" +"saber","to know","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have known","habría sabido","habrías sabido","habría sabido","habríamos sabido","habríais sabido","habrían sabido","sabiendo","knowing","sabido","known" +"sepamos" +"saber","to know","Subjuntivo","Subjunctive","Presente","Present","I know","sepa","sepas","sepa","sepamos","sepáis","sepan","sabiendo","knowing","sabido","known" +"saber","to know","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I knew","supiera","supieras","supiera","supiéramos","supierais","supieran","sabiendo","knowing","sabido","known" +"saber","to know","Subjuntivo","Subjunctive","Futuro","Future","I will know","supiere","supieres","supiere","supiéremos","supiereis","supieren","sabiendo","knowing","sabido","known" +"saber","to know","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have known, knew","haya sabido","hayas sabido","haya sabido","hayamos sabido","hayáis sabido","hayan sabido","sabiendo","knowing","sabido","known" +"saber","to know","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have known","hubiere sabido","hubieres sabido","hubiere sabido","hubiéremos sabido","hubiereis sabido","hubieren sabido","sabiendo","knowing","sabido","known" +"saber","to know","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had known","hubiera sabido","hubieras sabido","hubiera sabido","hubiéramos sabido","hubierais sabido","hubieran sabido","sabiendo","knowing","sabido","known" +"saber","to know","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Know! Don't know!","","sabe","sepa","sepamos","sabed","sepan","sabiendo","knowing","sabido","known" +"saber","to know","Imperativo Negativo","Imperative Negative","Presente","Present","Know! Don't know!","","no sepas","no sepa","no sepamos","no sepáis","no sepan","sabiendo","knowing","sabido","known" +"sacar","to take out, stick out","Indicativo","Indicative","Presente","Present","I take out, am taking out","saco","sacas","saca","sacamos","sacáis","sacan","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Futuro","Future","I will take out","sacaré","sacarás","sacará","sacaremos","sacaréis","sacarán","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Imperfecto","Imperfect","I was taking out, used to take out, took out","sacaba","sacabas","sacaba","sacábamos","sacabais","sacaban","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Pretérito","Preterite","I took out","saqué","sacaste","sacó","sacamos","sacasteis","sacaron","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Condicional","Conditional","I would take out","sacaría","sacarías","sacaría","sacaríamos","sacaríais","sacarían","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have taken out","he sacado","has sacado","ha sacado","hemos sacado","habéis sacado","han sacado","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have taken out","habré sacado","habrás sacado","habrá sacado","habremos sacado","habréis sacado","habrán sacado","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had taken out","había sacado","habías sacado","había sacado","habíamos sacado","habíais sacado","habían sacado","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had taken out","hube sacado","hubiste sacado","hubo sacado","hubimos sacado","hubisteis sacado","hubieron sacado","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have taken out","habría sacado","habrías sacado","habría sacado","habríamos sacado","habríais sacado","habrían sacado","sacando","taking out","sacado","taken out" +"saquemos" +"sacar","to take out, stick out","Subjuntivo","Subjunctive","Presente","Present","I take out, am taking out","saque","saques","saque","saquemos","saquéis","saquen","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I took out, was taking out","sacara","sacaras","sacara","sacáramos","sacarais","sacaran","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Subjuntivo","Subjunctive","Futuro","Future","I will take out","sacare","sacares","sacare","sacáremos","sacareis","sacaren","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have taken out, took out","haya sacado","hayas sacado","haya sacado","hayamos sacado","hayáis sacado","hayan sacado","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have taken out","hubiere sacado","hubieres sacado","hubiere sacado","hubiéremos sacado","hubiereis sacado","hubieren sacado","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had taken out","hubiera sacado","hubieras sacado","hubiera sacado","hubiéramos sacado","hubierais sacado","hubieran sacado","sacando","taking out","sacado","taken out" +"sacar","to take out, stick out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Take out! Don't take out!","","saca","saque","saquemos","sacad","saquen","sacando","taking out","sacado","taken out", +"sacar","to take out, stick out","Imperativo Negativo","Imperative Negative","Presente","Present","Take out! Don't take out!","","no saques","no saque","no saquemos","no saquéis","no saquen","sacando","taking out","sacado","taken out", +"sacrificar","to sacrifice","Indicativo","Indicative","Presente","Present","I sacrifice, am sacrificing","sacrifico","sacrificas","sacrifica","sacrificamos","sacrificáis","sacrifican","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Futuro","Future","I will sacrifice","sacrificaré","sacrificarás","sacrificará","sacrificaremos","sacrificaréis","sacrificarán","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Imperfecto","Imperfect","I was sacrificing, used to sacrifice, sacrificed","sacrificaba","sacrificabas","sacrificaba","sacrificábamos","sacrificabais","sacrificaban","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Pretérito","Preterite","I sacrificed","sacrifiqué","sacrificaste","sacrificó","sacrificamos","sacrificasteis","sacrificaron","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Condicional","Conditional","I would sacrifice","sacrificaría","sacrificarías","sacrificaría","sacrificaríamos","sacrificaríais","sacrificarían","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sacrificed","he sacrificado","has sacrificado","ha sacrificado","hemos sacrificado","habéis sacrificado","han sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sacrificed","habré sacrificado","habrás sacrificado","habrá sacrificado","habremos sacrificado","habréis sacrificado","habrán sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sacrificed","había sacrificado","habías sacrificado","había sacrificado","habíamos sacrificado","habíais sacrificado","habían sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sacrificed","hube sacrificado","hubiste sacrificado","hubo sacrificado","hubimos sacrificado","hubisteis sacrificado","hubieron sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sacrificed","habría sacrificado","habrías sacrificado","habría sacrificado","habríamos sacrificado","habríais sacrificado","habrían sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrifiquemos" +"sacrificar","to sacrifice","Subjuntivo","Subjunctive","Presente","Present","I sacrifice, am sacrificing","sacrifique","sacrifiques","sacrifique","sacrifiquemos","sacrifiquéis","sacrifiquen","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I sacrificed, was sacrificing","sacrificara","sacrificaras","sacrificara","sacrificáramos","sacrificarais","sacrificaran","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Subjuntivo","Subjunctive","Futuro","Future","I will sacrifice","sacrificare","sacrificares","sacrificare","sacrificáremos","sacrificareis","sacrificaren","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sacrificed, sacrificed","haya sacrificado","hayas sacrificado","haya sacrificado","hayamos sacrificado","hayáis sacrificado","hayan sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sacrificed","hubiere sacrificado","hubieres sacrificado","hubiere sacrificado","hubiéremos sacrificado","hubiereis sacrificado","hubieren sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sacrificed","hubiera sacrificado","hubieras sacrificado","hubiera sacrificado","hubiéramos sacrificado","hubierais sacrificado","hubieran sacrificado","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sacrifice! Don't sacrifice!","","sacrifica","sacrifique","sacrifiquemos","sacrificad","sacrifiquen","sacrificando","sacrificing","sacrificado","sacrificed" +"sacrificar","to sacrifice","Imperativo Negativo","Imperative Negative","Presente","Present","Sacrifice! Don't sacrifice!","","no sacrifiques","no sacrifique","no sacrifiquemos","no sacrifiquéis","no sacrifiquen","sacrificando","sacrificing","sacrificado","sacrificed" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Presente","Present","I shake, am shaking","sacudo","sacudes","sacude","sacudimos","sacudís","sacuden","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Futuro","Future","I will shake","sacudiré","sacudirás","sacudirá","sacudiremos","sacudiréis","sacudirán","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Imperfecto","Imperfect","I was shaking, used to shake, shook","sacudía","sacudías","sacudía","sacudíamos","sacudíais","sacudían","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Pretérito","Preterite","I shook","sacudí","sacudiste","sacudió","sacudimos","sacudisteis","sacudieron","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Condicional","Conditional","I would shake","sacudiría","sacudirías","sacudiría","sacudiríamos","sacudiríais","sacudirían","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Presente perfecto","Present Perfect","I have shaken","he sacudido","has sacudido","ha sacudido","hemos sacudido","habéis sacudido","han sacudido","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have shaken","habré sacudido","habrás sacudido","habrá sacudido","habremos sacudido","habréis sacudido","habrán sacudido","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had shaken","había sacudido","habías sacudido","había sacudido","habíamos sacudido","habíais sacudido","habían sacudido","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had shaken","hube sacudido","hubiste sacudido","hubo sacudido","hubimos sacudido","hubisteis sacudido","hubieron sacudido","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have shaken","habría sacudido","habrías sacudido","habría sacudido","habríamos sacudido","habríais sacudido","habrían sacudido","sacudiendo","shaking","sacudido","shook" +"sacudamos" +"sacudir","to shake, beat, flap","Subjuntivo","Subjunctive","Presente","Present","I shake, am shaking","sacuda","sacudas","sacuda","sacudamos","sacudáis","sacudan","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I shook, was shaking","sacudiera","sacudieras","sacudiera","sacudiéramos","sacudierais","sacudieran","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Subjuntivo","Subjunctive","Futuro","Future","I will shake","sacudiere","sacudieres","sacudiere","sacudiéremos","sacudiereis","sacudieren","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have shaken, shook","haya sacudido","hayas sacudido","haya sacudido","hayamos sacudido","hayáis sacudido","hayan sacudido","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have shaken","hubiere sacudido","hubieres sacudido","hubiere sacudido","hubiéremos sacudido","hubiereis sacudido","hubieren sacudido","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had shaken","hubiera sacudido","hubieras sacudido","hubiera sacudido","hubiéramos sacudido","hubierais sacudido","hubieran sacudido","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Shake! Don't shake!","","sacude","sacuda","sacudamos","sacudid","sacudan","sacudiendo","shaking","sacudido","shook" +"sacudir","to shake, beat, flap","Imperativo Negativo","Imperative Negative","Presente","Present","Shake! Don't shake!","","no sacudas","no sacuda","no sacudamos","no sacudáis","no sacudan","sacudiendo","shaking","sacudido","shook" +"salir","to leave, go out","Indicativo","Indicative","Presente","Present","I leave, am leaving","salgo","sales","sale","salimos","salís","salen","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Futuro","Future","I will leave","saldré","saldrás","saldrá","saldremos","saldréis","saldrán","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Imperfecto","Imperfect","I was leaving, used to leave, left","salía","salías","salía","salíamos","salíais","salían","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Pretérito","Preterite","I left","salí","saliste","salió","salimos","salisteis","salieron","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Condicional","Conditional","I would leave","saldría","saldrías","saldría","saldríamos","saldríais","saldrían","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have left, left","he salido","has salido","ha salido","hemos salido","habéis salido","han salido","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have left","habré salido","habrás salido","habrá salido","habremos salido","habréis salido","habrán salido","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had left","había salido","habías salido","había salido","habíamos salido","habíais salido","habían salido","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had left","hube salido","hubiste salido","hubo salido","hubimos salido","hubisteis salido","hubieron salido","saliendo","leaving","salido","left" +"salir","to leave, go out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have left","habría salido","habrías salido","habría salido","habríamos salido","habríais salido","habrían salido","saliendo","leaving","salido","left" +"salgamos" +"salir","to leave, go out","Subjuntivo","Subjunctive","Presente","Present","I leave, am leaving","salga","salgas","salga","salgamos","salgáis","salgan","saliendo","leaving","salido","left" +"salir","to leave, go out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I left, was leaving","saliera","salieras","saliera","saliéramos","salierais","salieran","saliendo","leaving","salido","left" +"salir","to leave, go out","Subjuntivo","Subjunctive","Futuro","Future","I will leave","saliere","salieres","saliere","saliéremos","saliereis","salieren","saliendo","leaving","salido","left" +"salir","to leave, go out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have left, left","haya salido","hayas salido","haya salido","hayamos salido","hayáis salido","hayan salido","saliendo","leaving","salido","left" +"salir","to leave, go out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have left","hubiere salido","hubieres salido","hubiere salido","hubiéremos salido","hubiereis salido","hubieren salido","saliendo","leaving","salido","left" +"salir","to leave, go out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had left","hubiera salido","hubieras salido","hubiera salido","hubiéramos salido","hubierais salido","hubieran salido","saliendo","leaving","salido","left" +"salir","to leave, go out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Leave! Don't leave!","","sal","salga","salgamos","salid","salgan","saliendo","leaving","salido","left" +"salir","to leave, go out","Imperativo Negativo","Imperative Negative","Presente","Present","Leave! Don't leave!","","no salgas","no salga","no salgamos","no salgáis","no salgan","saliendo","leaving","salido","left" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Presente","Present","I jump, am jumping","salto","saltas","salta","saltamos","saltáis","saltan","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Futuro","Future","I will jump","saltaré","saltarás","saltará","saltaremos","saltaréis","saltarán","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Imperfecto","Imperfect","I was jumping, used to jump, jumped","saltaba","saltabas","saltaba","saltábamos","saltabais","saltaban","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Pretérito","Preterite","I jumped","salté","saltaste","saltó","saltamos","saltasteis","saltaron","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Condicional","Conditional","I would jump","saltaría","saltarías","saltaría","saltaríamos","saltaríais","saltarían","saltando","jumping","saltado","jumped" +"sugerir","to suggest","Indicativo","Indicative","Pretérito","Preterite","I suggested","sugerí","sugeriste","sugirió","sugerimos","sugeristeis","sugirieron","sugiriendo","suggesting","sugerido","suggested" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Presente perfecto","Present Perfect","I have jumped","he saltado","has saltado","ha saltado","hemos saltado","habéis saltado","han saltado","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have jumped","habré saltado","habrás saltado","habrá saltado","habremos saltado","habréis saltado","habrán saltado","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had jumped","había saltado","habías saltado","había saltado","habíamos saltado","habíais saltado","habían saltado","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had jumped","hube saltado","hubiste saltado","hubo saltado","hubimos saltado","hubisteis saltado","hubieron saltado","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have jumped","habría saltado","habrías saltado","habría saltado","habríamos saltado","habríais saltado","habrían saltado","saltando","jumping","saltado","jumped" +"saltemos" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Subjuntivo","Subjunctive","Presente","Present","I jump, am jumping","salte","saltes","salte","saltemos","saltéis","salten","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I jumped, was jumping","saltara","saltaras","saltara","saltáramos","saltarais","saltaran","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Subjuntivo","Subjunctive","Futuro","Future","I will jump","saltare","saltares","saltare","saltáremos","saltareis","saltaren","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have jumped, jumped","haya saltado","hayas saltado","haya saltado","hayamos saltado","hayáis saltado","hayan saltado","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have jumped","hubiere saltado","hubieres saltado","hubiere saltado","hubiéremos saltado","hubiereis saltado","hubieren saltado","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had jumped","hubiera saltado","hubieras saltado","hubiera saltado","hubiéramos saltado","hubierais saltado","hubieran saltado","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Jump! Don't jump!","","salta","salte","saltemos","saltad","salten","saltando","jumping","saltado","jumped" +"saltar","to jump, leap; to jump over, leap over; to omit, skip, leave out","Imperativo Negativo","Imperative Negative","Presente","Present","Jump! Don't jump!","","no saltes","no salte","no saltemos","no saltéis","no salten","saltando","jumping","saltado","jumped" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Presente","Present","I greet, am greeting","saludo","saludas","saluda","saludamos","saludáis","saludan","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Futuro","Future","I will greet","saludaré","saludarás","saludará","saludaremos","saludaréis","saludarán","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Imperfecto","Imperfect","I was greeting, used to greet, greeted","saludaba","saludabas","saludaba","saludábamos","saludabais","saludaban","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Pretérito","Preterite","I greeted","saludé","saludaste","saludó","saludamos","saludasteis","saludaron","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Condicional","Conditional","I would greet","saludaría","saludarías","saludaría","saludaríamos","saludaríais","saludarían","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Presente perfecto","Present Perfect","I have greeted","he saludado","has saludado","ha saludado","hemos saludado","habéis saludado","han saludado","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have greeted","habré saludado","habrás saludado","habrá saludado","habremos saludado","habréis saludado","habrán saludado","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had greeted","había saludado","habías saludado","había saludado","habíamos saludado","habíais saludado","habían saludado","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had greeted","hube saludado","hubiste saludado","hubo saludado","hubimos saludado","hubisteis saludado","hubieron saludado","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have greeted","habría saludado","habrías saludado","habría saludado","habríamos saludado","habríais saludado","habrían saludado","saludando","greeting","saludado","greeted" +"saludemos" +"saludar","to greet, salute, hail, welcome","Subjuntivo","Subjunctive","Presente","Present","I greet, am greeting","salude","saludes","salude","saludemos","saludéis","saluden","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I greeted, was greeting","saludara","saludaras","saludara","saludáramos","saludarais","saludaran","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Subjuntivo","Subjunctive","Futuro","Future","I will greet","saludare","saludares","saludare","saludáremos","saludareis","saludaren","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have greeted, greeted","haya saludado","hayas saludado","haya saludado","hayamos saludado","hayáis saludado","hayan saludado","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have greeted","hubiere saludado","hubieres saludado","hubiere saludado","hubiéremos saludado","hubiereis saludado","hubieren saludado","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had greeted","hubiera saludado","hubieras saludado","hubiera saludado","hubiéramos saludado","hubierais saludado","hubieran saludado","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Greet! Don't greet!","","saluda","salude","saludemos","saludad","saluden","saludando","greeting","saludado","greeted" +"saludar","to greet, salute, hail, welcome","Imperativo Negativo","Imperative Negative","Presente","Present","Greet! Don't greet!","","no saludes","no salude","no saludemos","no saludéis","no saluden","saludando","greeting","saludado","greeted" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Presente","Present","I save, am saving","salvo","salvas","salva","salvamos","salváis","salvan","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Futuro","Future","I will save","salvaré","salvarás","salvará","salvaremos","salvaréis","salvarán","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Imperfecto","Imperfect","I was saving, used to save, saved","salvaba","salvabas","salvaba","salvábamos","salvabais","salvaban","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Pretérito","Preterite","I saved","salvé","salvaste","salvó","salvamos","salvasteis","salvaron","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Condicional","Conditional","I would save","salvaría","salvarías","salvaría","salvaríamos","salvaríais","salvarían","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Presente perfecto","Present Perfect","I have saved","he salvado","has salvado","ha salvado","hemos salvado","habéis salvado","han salvado","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have saved","habré salvado","habrás salvado","habrá salvado","habremos salvado","habréis salvado","habrán salvado","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had saved","había salvado","habías salvado","había salvado","habíamos salvado","habíais salvado","habían salvado","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had saved","hube salvado","hubiste salvado","hubo salvado","hubimos salvado","hubisteis salvado","hubieron salvado","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have saved","habría salvado","habrías salvado","habría salvado","habríamos salvado","habríais salvado","habrían salvado","salvando","saving","salvado","saved" +"salvemos" +"salvar","to save, rescue; to except, exclude","Subjuntivo","Subjunctive","Presente","Present","I save, am saving","salve","salves","salve","salvemos","salvéis","salven","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I saved, was saving","salvara","salvaras","salvara","salváramos","salvarais","salvaran","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Subjuntivo","Subjunctive","Futuro","Future","I will save","salvare","salvares","salvare","salváremos","salvareis","salvaren","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have saved, saved","haya salvado","hayas salvado","haya salvado","hayamos salvado","hayáis salvado","hayan salvado","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have saved","hubiere salvado","hubieres salvado","hubiere salvado","hubiéremos salvado","hubiereis salvado","hubieren salvado","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had saved","hubiera salvado","hubieras salvado","hubiera salvado","hubiéramos salvado","hubierais salvado","hubieran salvado","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Save! Don't save!","","salva","salve","salvemos","salvad","salven","salvando","saving","salvado","saved" +"salvar","to save, rescue; to except, exclude","Imperativo Negativo","Imperative Negative","Presente","Present","Save! Don't save!","","no salves","no salve","no salvemos","no salvéis","no salven","salvando","saving","salvado","saved" +"satisfacer","to satisfy","Indicativo","Indicative","Presente","Present","I satisfy, am satisfying","satisfago","satisfaces","satisface","satisfacemos","satisfacéis","satisfacen","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Futuro","Future","I will satisfy","satisfaré","satisfarás","satisfará","satisfaremos","satisfaréis","satisfarán","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Imperfecto","Imperfect","I was satisfying, used to satisfy, satisfied","satisfacía","satisfacías","satisfacía","satisfacíamos","satisfacíais","satisfacían","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Pretérito","Preterite","I satisfied","satisfice","satisficiste","satisfizo","satisficimos","satisficisteis","satisficieron","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Condicional","Conditional","I would satisfy","satisfaría","satisfarías","satisfaría","satisfaríamos","satisfaríais","satisfarían","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Presente perfecto","Present Perfect","I have satisfied","he satisfecho","has satisfecho","ha satisfecho","hemos satisfecho","habéis satisfecho","han satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have satisfied","habré satisfecho","habrás satisfecho","habrá satisfecho","habremos satisfecho","habréis satisfecho","habrán satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had satisfied","había satisfecho","habías satisfecho","había satisfecho","habíamos satisfecho","habíais satisfecho","habían satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had satisfied","hube satisfecho","hubiste satisfecho","hubo satisfecho","hubimos satisfecho","hubisteis satisfecho","hubieron satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have satisfied","habría satisfecho","habrías satisfecho","habría satisfecho","habríamos satisfecho","habríais satisfecho","habrían satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfagamos" +"satisfacer","to satisfy","Subjuntivo","Subjunctive","Presente","Present","I satisfy, am satisfying","satisfaga","satisfagas","satisfaga","satisfagamos","satisfagáis","satisfagan","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I satisfied, was satisfying","satisficiera","satisficieras","satisficiera","satisficiéramos","satisficierais","satisficieran","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Subjuntivo","Subjunctive","Futuro","Future","I will satisfy","satisficiere","satisficieres","satisficiere","satisficiéremos","satisficiereis","satisficieren","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have satisfied, satisfied","haya satisfecho","hayas satisfecho","haya satisfecho","hayamos satisfecho","hayáis satisfecho","hayan satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have satisfied","hubiere satisfecho","hubieres satisfecho","hubiere satisfecho","hubiéremos satisfecho","hubiereis satisfecho","hubieren satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had satisfied","hubiera satisfecho","hubieras satisfecho","hubiera satisfecho","hubiéramos satisfecho","hubierais satisfecho","hubieran satisfecho","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Satisfy! Don't satisfy!","","satisfaz","satisfaga","satisfagamos","satisfaced","satisfagan","satisfaciendo","satisfying","satisfecho","satisfied" +"satisfacer","to satisfy","Imperativo Negativo","Imperative Negative","Presente","Present","Satisfy! Don't satisfy!","","no satisfagas","no satisfaga","no satisfagamos","no satisfagáis","no satisfagan","satisfaciendo","satisfying","satisfecho","satisfied" +"satirizar","to satirize","Indicativo","Indicative","Presente","Present","I satirize, am satirizing","satirizo","satirizas","satiriza","satirizamos","satirizáis","satirizan","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Futuro","Future","I will satirize","satirizaré","satirizarás","satirizará","satirizaremos","satirizaréis","satirizarán","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Imperfecto","Imperfect","I was satirizing, used to satirize, satirized","satirizaba","satirizabas","satirizaba","satirizábamos","satirizabais","satirizaban","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Pretérito","Preterite","I satirized","satiricé","satirizaste","satirizó","satirizamos","satirizasteis","satirizaron","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Condicional","Conditional","I would satirize","satirizaría","satirizarías","satirizaría","satirizaríamos","satirizaríais","satirizarían","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have satirized, satirized","he satirizado","has satirizado","ha satirizado","hemos satirizado","habéis satirizado","han satirizado","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have satirized","habré satirizado","habrás satirizado","habrá satirizado","habremos satirizado","habréis satirizado","habrán satirizado","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had satirized","había satirizado","habías satirizado","había satirizado","habíamos satirizado","habíais satirizado","habían satirizado","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had satirized","hube satirizado","hubiste satirizado","hubo satirizado","hubimos satirizado","hubisteis satirizado","hubieron satirizado","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have satirized","habría satirizado","habrías satirizado","habría satirizado","habríamos satirizado","habríais satirizado","habrían satirizado","satirizando","satirizing","satirizado","satirized" +"satiricemos" +"satirizar","to satirize","Subjuntivo","Subjunctive","Presente","Present","I satirize, am satirizing","satirice","satirices","satirice","satiricemos","satiricéis","satiricen","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I satirized, was satirizing","satirizara","satirizaras","satirizara","satirizáramos","satirizarais","satirizaran","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Subjuntivo","Subjunctive","Futuro","Future","I will satirize","satirizare","satirizares","satirizare","satirizáremos","satirizareis","satirizaren","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have satirized, satirized","haya satirizado","hayas satirizado","haya satirizado","hayamos satirizado","hayáis satirizado","hayan satirizado","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have satirized","hubiere satirizado","hubieres satirizado","hubiere satirizado","hubiéremos satirizado","hubiereis satirizado","hubieren satirizado","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had satirized","hubiera satirizado","hubieras satirizado","hubiera satirizado","hubiéramos satirizado","hubierais satirizado","hubieran satirizado","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Satirize! Don't satirize!","","satiriza","satirice","satiricemos","satirizad","satiricen","satirizando","satirizing","satirizado","satirized" +"satirizar","to satirize","Imperativo Negativo","Imperative Negative","Presente","Present","Satirize! Don't satirize!","","no satirices","no satirice","no satiricemos","no satiricéis","no satiricen","satirizando","satirizing","satirizado","satirized" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Presente","Present","I dry, am drying","seco","secas","seca","secamos","secáis","secan","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Futuro","Future","I will dry","secaré","secarás","secará","secaremos","secaréis","secarán","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Imperfecto","Imperfect","I was drying, used to dry, dried","secaba","secabas","secaba","secábamos","secabais","secaban","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Pretérito","Preterite","I dried","sequé","secaste","secó","secamos","secasteis","secaron","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Condicional","Conditional","I would dry","secaría","secarías","secaría","secaríamos","secaríais","secarían","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dried","he secado","has secado","ha secado","hemos secado","habéis secado","han secado","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dried","habré secado","habrás secado","habrá secado","habremos secado","habréis secado","habrán secado","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dried","había secado","habías secado","había secado","habíamos secado","habíais secado","habían secado","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dried","hube secado","hubiste secado","hubo secado","hubimos secado","hubisteis secado","hubieron secado","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dried","habría secado","habrías secado","habría secado","habríamos secado","habríais secado","habrían secado","secando","drying","secado","dried" +"sequemos" +"secar","to dry, dry up, dry off, wipe dry","Subjuntivo","Subjunctive","Presente","Present","I dry, am drying","seque","seques","seque","sequemos","sequéis","sequen","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dried, was drying","secara","secaras","secara","secáramos","secarais","secaran","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Subjuntivo","Subjunctive","Futuro","Future","I will dry","secare","secares","secare","secáremos","secareis","secaren","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dried, dried","haya secado","hayas secado","haya secado","hayamos secado","hayáis secado","hayan secado","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dried","hubiere secado","hubieres secado","hubiere secado","hubiéremos secado","hubiereis secado","hubieren secado","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dried","hubiera secado","hubieras secado","hubiera secado","hubiéramos secado","hubierais secado","hubieran secado","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dry! Don't dry!","","seca","seque","sequemos","secad","sequen","secando","drying","secado","dried" +"secar","to dry, dry up, dry off, wipe dry","Imperativo Negativo","Imperative Negative","Presente","Present","Dry! Don't dry!","","no seques","no seque","no sequemos","no sequéis","no sequen","secando","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Presente","Present","I dry, am drying","me seco","te secas","se seca","nos secamos","os secáis","se secan","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Futuro","Future","I will dry","me secaré","te secarás","se secará","nos secaremos","os secaréis","se secarán","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Imperfecto","Imperfect","I was drying, used to dry, dried","me secaba","te secabas","se secaba","nos secábamos","os secabais","se secaban","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Pretérito","Preterite","I dried","me sequé","te secaste","se secó","nos secamos","secasteis","se secaron","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Condicional","Conditional","I would dry","me secaría","te secarías","se secaría","nos secaríamos","os secaríais","se secarían","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dried","me he secado","te has secado","se ha secado","nos hemos secado","os habéis secado","se han secado","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dried","me habré secado","te habrás secado","se habrá secado","nos habremos secado","os habréis secado","se habrán secado","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dried","me había secado","te habías secado","se había secado","nos habíamos secado","os habíais secado","se habían secado","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dried","me hube secado","te hubiste secado","se hubo secado","nos hubimos secado","os hubisteis secado","se hubieron secado","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dried","me habría secado","te habrías secado","se habría secado","nos habríamos secado","os habríais secado","se habrían secado","secándose","drying","secado","dried" +"nos sequemos" +"secarse","to dry, dry off, dry up","Subjuntivo","Subjunctive","Presente","Present","I dry, am drying","me seque","te seques","se seque","nos sequemos","os sequéis","se sequen","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dried, was drying","me secara","te secaras","se secara","nos secáramos","os secarais","se secaran","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Subjuntivo","Subjunctive","Futuro","Future","I will dry","me secare","te secares","se secare","nos secáremos","os secareis","se secaren","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dried, dried","me haya secado","te hayas secado","se haya secado","nos hayamos secado","os hayáis secado","se hayan secado","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dried","me hubiere secado","te hubieres secado","se hubiere secado","nos hubiéremos secado","os hubiereis secado","se hubieren secado","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dried","me hubiera secado","te hubieras secado","se hubiera secado","nos hubiéramos secado","os hubierais secado","se hubieran secado","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dry! Don't dry!","","equivócate","equivóquese","nos sequemos","secaos","equivóquense","secándose","drying","secado","dried" +"secarse","to dry, dry off, dry up","Imperativo Negativo","Imperative Negative","Presente","Present","Dry! Don't dry!","","no te seques","no se seque","no nos sequemos","no os sequéis","no se sequen","secándose","drying","secado","dried" +"seguir","to follow, continue","Indicativo","Indicative","Presente","Present","I follow, am following","sigo","sigues","sigue","seguimos","seguís","siguen","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Futuro","Future","I will follow","seguiré","seguirás","seguirá","seguiremos","seguiréis","seguirán","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Imperfecto","Imperfect","I was following, used to follow, followed","seguía","seguías","seguía","seguíamos","seguíais","seguían","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Pretérito","Preterite","I followed","seguí","seguiste","siguió","seguimos","seguisteis","siguieron","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Condicional","Conditional","I would follow","seguiría","seguirías","seguiría","seguiríamos","seguiríais","seguirían","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Presente perfecto","Present Perfect","I have followed","he seguido","has seguido","ha seguido","hemos seguido","habéis seguido","han seguido","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have followed","habré seguido","habrás seguido","habrá seguido","habremos seguido","habréis seguido","habrán seguido","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had followed","había seguido","habías seguido","había seguido","habíamos seguido","habíais seguido","habían seguido","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had followed","hube seguido","hubiste seguido","hubo seguido","hubimos seguido","hubisteis seguido","hubieron seguido","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have followed","habría seguido","habrías seguido","habría seguido","habríamos seguido","habríais seguido","habrían seguido","siguiendo","following","seguido","followed" +"sigamos" +"seguir","to follow, continue","Subjuntivo","Subjunctive","Presente","Present","I follow, am following","siga","sigas","siga","sigamos","sigáis","sigan","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I followed, was following","siguiera","siguieras","siguiera","siguiéramos","siguierais","siguieran","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Subjuntivo","Subjunctive","Futuro","Future","I will follow","siguiere","siguieres","siguiere","siguiéremos","siguiereis","siguieren","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have followed, followed","haya seguido","hayas seguido","haya seguido","hayamos seguido","hayáis seguido","hayan seguido","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have followed","hubiere seguido","hubieres seguido","hubiere seguido","hubiéremos seguido","hubiereis seguido","hubieren seguido","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had followed","hubiera seguido","hubieras seguido","hubiera seguido","hubiéramos seguido","hubierais seguido","hubieran seguido","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Follow! Don't follow!","","sigue","siga","sigamos","seguid","sigan","siguiendo","following","seguido","followed" +"seguir","to follow, continue","Imperativo Negativo","Imperative Negative","Presente","Present","Follow! Don't follow!","","no sigas","no siga","no sigamos","no sigáis","no sigan","siguiendo","following","seguido","followed" +"sentar","to seat, sit","Indicativo","Indicative","Presente","Present","I seat, am seating","siento","sientas","sienta","sentamos","sentáis","sientan","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Futuro","Future","I will seat","sentaré","sentarás","sentará","sentaremos","sentaréis","sentarán","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Imperfecto","Imperfect","I was seating, used to seat, seat","sentaba","sentabas","sentaba","sentábamos","sentabais","sentaban","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Pretérito","Preterite","I seat","senté","sentaste","sentó","sentamos","sentasteis","sentaron","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Condicional","Conditional","I would seat","sentaría","sentarías","sentaría","sentaríamos","sentaríais","sentarían","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Presente perfecto","Present Perfect","I have seated","he sentado","has sentado","ha sentado","hemos sentado","habéis sentado","han sentado","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have seated","habré sentado","habrás sentado","habrá sentado","habremos sentado","habréis sentado","habrán sentado","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had seated","había sentado","habías sentado","había sentado","habíamos sentado","habíais sentado","habían sentado","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had seated","hube sentado","hubiste sentado","hubo sentado","hubimos sentado","hubisteis sentado","hubieron sentado","sentando","seating","sentado","seated" +"sentar","to seat, sit","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have seated","habría sentado","habrías sentado","habría sentado","habríamos sentado","habríais sentado","habrían sentado","sentando","seating","sentado","seated" +"sentemos" +"sentar","to seat, sit","Subjuntivo","Subjunctive","Presente","Present","I seat, am seating","siente","sientes","siente","sentemos","sentéis","sienten","sentando","seating","sentado","seated" +"sentar","to seat, sit","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I seat, was seating","sentara","sentaras","sentara","sentáramos","sentarais","sentaran","sentando","seating","sentado","seated" +"sentar","to seat, sit","Subjuntivo","Subjunctive","Futuro","Future","I will seat","sentare","sentares","sentare","sentáremos","sentareis","sentaren","sentando","seating","sentado","seated" +"sentar","to seat, sit","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have seated, seated","haya sentado","hayas sentado","haya sentado","hayamos sentado","hayáis sentado","hayan sentado","sentando","seating","sentado","seated" +"sentar","to seat, sit","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have seated","hubiere sentado","hubieres sentado","hubiere sentado","hubiéremos sentado","hubiereis sentado","hubieren sentado","sentando","seating","sentado","seated" +"sentar","to seat, sit","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had seated","hubiera sentado","hubieras sentado","hubiera sentado","hubiéramos sentado","hubierais sentado","hubieran sentado","sentando","seating","sentado","seated" +"sentar","to seat, sit","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Seat! Don't seat!","","sienta","siente","sentemos","sentad","sienten","sentando","seating","sentado","seated" +"sentar","to seat, sit","Imperativo Negativo","Imperative Negative","Presente","Present","Seat! Don't seat!","","no sientes","no siente","no sentemos","no sentéis","no sienten","sentando","seating","sentado","seated" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Presente","Present","I sit down, am sitting down","me siento","te sientas","se sienta","nos sentamos","os sentáis","se sientan","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Futuro","Future","I will sit down","me sentaré","te sentarás","se sentará","nos sentaremos","os sentaréis","se sentarán","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Imperfecto","Imperfect","I was sitting down, used to sit down, sat down","me sentaba","te sentabas","se sentaba","nos sentábamos","os sentabais","se sentaban","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Pretérito","Preterite","I sat down","me senté","te sentaste","se sentó","nos sentamos","os sentasteis","se sentaron","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Condicional","Conditional","I would sit down","me sentaría","te sentarías","se sentaría","nos sentaríamos","os sentaríais","se sentarían","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sat down","me he sentado","te has sentado","se ha sentado","nos hemos sentado","os habéis sentado","se han sentado","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sat down","me habré sentado","te habrás sentado","se habrá sentado","nos habremos sentado","os habréis sentado","se habrán sentado","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sat down","me había sentado","te habías sentado","se había sentado","nos habíamos sentado","os habíais sentado","se habían sentado","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sat down","me hube sentado","te hubiste sentado","se hubo sentado","nos hubimos sentado","os hubisteis sentado","se hubieron sentado","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sat down","me habría sentado","te habrías sentado","se habría sentado","nos habríamos sentado","os habríais sentado","se habrían sentado","sentándose","sitting down","sentado","seated, sat down" +"nos sentemos" +"sentarse","to sit down, seat oneself","Subjuntivo","Subjunctive","Presente","Present","I sit down, am sitting down","me siente","te sientes","se siente","nos sentemos","os sentéis","se sienten","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I sat down, was sitting down","me sentara","te sentaras","se sentara","nos sentáramos","os sentarais","se sentaran","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Subjuntivo","Subjunctive","Futuro","Future","I will sit down","me sentare","te sentares","se sentare","nos sentáremos","os sentareis","se sentaren","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sat down, sat down","me haya sentado","te hayas sentado","se haya sentado","nos hayamos sentado","os hayáis sentado","se hayan sentado","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sat down","me hubiere sentado","te hubieres sentado","se hubiere sentado","nos hubiéremos sentado","os hubiereis sentado","se hubieren sentado","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sat down","me hubiera sentado","te hubieras sentado","se hubiera sentado","nos hubiéramos sentado","os hubierais sentado","se hubieran sentado","sentándose","sitting down","sentado","seated, sat down" +"sentarse","to sit down, seat oneself","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sit down! Don't sit down!","","siéntate","siéntese","nos sentemos","sentaos","siéntense","sentándose","sitting down","sentado","seated, sat down", +"sentarse","to sit down, seat oneself","Imperativo Negativo","Imperative Negative","Presente","Present","Sit down! Don't sit down!","","no te sientes","no se siente","no nos sentemos","no os sentéis","no se sienten","sentándose","sitting down","sentado","seated, sat down", +"sentir","to feel, regret","Indicativo","Indicative","Presente","Present","I feel, am feeling","siento","sientes","siente","sentimos","sentís","sienten","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Futuro","Future","I will feel","sentiré","sentirás","sentirá","sentiremos","sentiréis","sentirán","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Imperfecto","Imperfect","I was feeling, used to feel, felt","sentía","sentías","sentía","sentíamos","sentíais","sentían","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Pretérito","Preterite","I felt","sentí","sentiste","sintió","sentimos","sentisteis","sintieron","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Condicional","Conditional","I would feel","sentiría","sentirías","sentiría","sentiríamos","sentiríais","sentirían","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Presente perfecto","Present Perfect","I have felt","he sentido","has sentido","ha sentido","hemos sentido","habéis sentido","han sentido","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have felt","habré sentido","habrás sentido","habrá sentido","habremos sentido","habréis sentido","habrán sentido","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had felt","había sentido","habías sentido","había sentido","habíamos sentido","habíais sentido","habían sentido","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had felt","hube sentido","hubiste sentido","hubo sentido","hubimos sentido","hubisteis sentido","hubieron sentido","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have felt","habría sentido","habrías sentido","habría sentido","habríamos sentido","habríais sentido","habrían sentido","sintiendo","feeling","sentido","felt" +"sintamos" +"sentir","to feel, regret","Subjuntivo","Subjunctive","Presente","Present","I feel, am feeling","sienta","sientas","sienta","sintamos","sintáis","sientan","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I felt, was feeling","sintiera","sintieras","sintiera","sintiéramos","sintierais","sintieran","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Subjuntivo","Subjunctive","Futuro","Future","I will feel","sintiere","sintieres","sintiere","sintiéremos","sintiereis","sintieren","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have felt, felt","haya sentido","hayas sentido","haya sentido","hayamos sentido","hayáis sentido","hayan sentido","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have felt","hubiere sentido","hubieres sentido","hubiere sentido","hubiéremos sentido","hubiereis sentido","hubieren sentido","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had felt","hubiera sentido","hubieras sentido","hubiera sentido","hubiéramos sentido","hubierais sentido","hubieran sentido","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Feel! Don't feel!","","siente","sienta","sintamos","sentid","sientan","sintiendo","feeling","sentido","felt" +"sentir","to feel, regret","Imperativo Negativo","Imperative Negative","Presente","Present","Feel! Don't feel!","","no sientas","no sienta","no sintamos","no sintáis","no sientan","sintiendo","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Presente","Present","I feel, am feeling","me siento","te sientes","se siente","nos sentimos","os sentís","se sienten","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Futuro","Future","I will feel","me sentiré","te sentirás","se sentirá","nos sentiremos","os sentiréis","se sentirán","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Imperfecto","Imperfect","I was feeling, used to feel, felt","me sentía","te sentías","se sentía","nos sentíamos","os sentíais","se sentían","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Pretérito","Preterite","I felt","me sentí","te sentiste","se sintió","nos sentimos","os sentisteis","se sintieron","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Condicional","Conditional","I would feel","me sentiría","te sentirías","se sentiría","nos sentiríamos","os sentiríais","se sentirían","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Presente perfecto","Present Perfect","I have felt","me he sentido","te has sentido","se ha sentido","nos hemos sentido","os habéis sentido","se han sentido","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have felt","me habré sentido","te habrás sentido","se habrá sentido","nos habremos sentido","os habréis sentido","se habrán sentido","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had felt","me había sentido","te habías sentido","se había sentido","nos habíamos sentido","os habíais sentido","se habían sentido","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had felt","me hube sentido","te hubiste sentido","se hubo sentido","nos hubimos sentido","os hubisteis sentido","se hubieron sentido","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have felt","me habría sentido","te habrías sentido","se habría sentido","nos habríamos sentido","os habríais sentido","se habrían sentido","sintiéndose","feeling","sentido","felt" +"nos sintamos" +"sentirse","to feel","Subjuntivo","Subjunctive","Presente","Present","I feel, am feeling","me sienta","te sientas","se sienta","nos sintamos","os sintáis","se sientan","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I felt, was feeling","me sintiera","te sintieras","se sintiera","nos sintiéramos","os sintierais","se sintieran","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Subjuntivo","Subjunctive","Futuro","Future","I will feel","me sintiere","te sintieres","se sintiere","nos sintiéremos","os sintiereis","se sintieren","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have felt, felt","me haya sentido","te hayas sentido","se haya sentido","nos hayamos sentido","os hayáis sentido","se hayan sentido","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have felt","me hubiere sentido","te hubieres sentido","se hubiere sentido","nos hubiéremos sentido","os hubiereis sentido","se hubieren sentido","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had felt","me hubiera sentido","te hubieras sentido","se hubiera sentido","nos hubiéramos sentido","os hubierais sentido","se hubieran sentido","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Feel! Don't feel!","","siéntete","siéntase","sintámonos","sentíos","siéntanse","sintiéndose","feeling","sentido","felt" +"sentirse","to feel","Imperativo Negativo","Imperative Negative","Presente","Present","Feel! Don't feel!","","no te sientas","no se sienta","no nos sintamos","no os sentáis","no se sientan","sintiéndose","feeling","sentido","felt" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Presente","Present","I point out, am pointing out","señalo","señalas","señala","señalamos","señaláis","señalan","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Futuro","Future","I will point out","señalaré","señalarás","señalará","señalaremos","señalaréis","señalarán","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Imperfecto","Imperfect","I was pointing out, used to point out, pointed out","señalaba","señalabas","señalaba","señalábamos","señalabais","señalaban","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Pretérito","Preterite","I pointed out","señalé","señalaste","señaló","señalamos","señalasteis","señalaron","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Condicional","Conditional","I would point out","señalaría","señalarías","señalaría","señalaríamos","señalaríais","señalarían","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Presente perfecto","Present Perfect","I have pointed out","he señalado","has señalado","ha señalado","hemos señalado","habéis señalado","han señalado","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have pointed out","habré señalado","habrás señalado","habrá señalado","habremos señalado","habréis señalado","habrán señalado","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had pointed out","había señalado","habías señalado","había señalado","habíamos señalado","habíais señalado","habían señalado","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had pointed out","hube señalado","hubiste señalado","hubo señalado","hubimos señalado","hubisteis señalado","hubieron señalado","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have pointed out","habría señalado","habrías señalado","habría señalado","habríamos señalado","habríais señalado","habrían señalado","señalando","pointing out","señalado","pointed out" +"señalemos" +"señalar","to point out, point to, indicate; to signal; to mark","Subjuntivo","Subjunctive","Presente","Present","I point out, am pointing out","señale","señales","señale","señalemos","señaléis","señalen","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I pointed out, was pointing out","señalara","señalaras","señalara","señaláramos","señalarais","señalaran","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Subjuntivo","Subjunctive","Futuro","Future","I will point out","señalare","señalares","señalare","señaláremos","señalareis","señalaren","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have pointed out, pointed out","haya señalado","hayas señalado","haya señalado","hayamos señalado","hayáis señalado","hayan señalado","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have pointed out","hubiere señalado","hubieres señalado","hubiere señalado","hubiéremos señalado","hubiereis señalado","hubieren señalado","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had pointed out","hubiera señalado","hubieras señalado","hubiera señalado","hubiéramos señalado","hubierais señalado","hubieran señalado","señalando","pointing out","señalado","pointed out" +"señalar","to point out, point to, indicate; to signal; to mark","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Point out! Don't point out!","","señala","señale","señalemos","señalad","señalen","señalando","pointing out","señalado","pointed out", +"señalar","to point out, point to, indicate; to signal; to mark","Imperativo Negativo","Imperative Negative","Presente","Present","Point out! Don't point out!","","no señales","no señale","no señalemos","no señaléis","no señalen","señalando","pointing out","señalado","pointed out", +"ser","to be","Indicativo","Indicative","Presente","Present","I am","soy","eres","es","somos","sois","son","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Futuro","Future","I will be","seré","serás","será","seremos","seréis","serán","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Imperfecto","Imperfect","I used to be, was","era","eras","era","éramos","erais","eran","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Pretérito","Preterite","I was","fui","fuiste","fue","fuimos","fuisteis","fueron","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Condicional","Conditional","I would be","sería","serías","sería","seríamos","seríais","serían","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been","he sido","has sido","ha sido","hemos sido","habéis sido","han sido","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been","habré sido","habrás sido","habrá sido","habremos sido","habréis sido","habrán sido","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been","había sido","habías sido","había sido","habíamos sido","habíais sido","habían sido","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been","hube sido","hubiste sido","hubo sido","hubimos sido","hubisteis sido","hubieron sido","siendo","being","sido","been" +"ser","to be","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been","habría sido","habrías sido","habría sido","habríamos sido","habríais sido","habrían sido","siendo","being","sido","been" +"seamos" +"ser","to be","Subjuntivo","Subjunctive","Presente","Present","I am","sea","seas","sea","seamos","seáis","sean","siendo","being","sido","been" +"ser","to be","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was, was being, were","fuera","fueras","fuera","fuéramos","fuerais","fueran","siendo","being","sido","been" +"ser","to be","Subjuntivo","Subjunctive","Futuro","Future","I will be","fuere","fueres","fuere","fuéremos","fuereis","fueren","siendo","being","sido","been" +"ser","to be","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been, was","haya sido","hayas sido","haya sido","hayamos sido","hayáis sido","hayan sido","siendo","being","sido","been" +"ser","to be","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been","hubiere sido","hubieres sido","hubiere sido","hubiéremos sido","hubiereis sido","hubieren sido","siendo","being","sido","been" +"ser","to be","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been","hubiera sido","hubieras sido","hubiera sido","hubiéramos sido","hubierais sido","hubieran sido","siendo","being","sido","been" +"ser","to be","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be! Don't be!","","sé","sea","seamos","sed","sean","siendo","being","sido","been" +"ser","to be","Imperativo Negativo","Imperative Negative","Presente","Present","Be! Don't be!","","no seas","no sea","no seamos","no seais","no sean","siendo","being","sido","been" +"servir","to serve","Indicativo","Indicative","Presente","Present","I serve, am serving","sirvo","sirves","sirve","servimos","servís","sirven","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Futuro","Future","I will serve","serviré","servirás","servirá","serviremos","serviréis","servirán","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Imperfecto","Imperfect","I was serving, used to serve, served","servía","servías","servía","servíamos","servíais","servían","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Pretérito","Preterite","I served","serví","serviste","sirvió","servimos","servisteis","sirvieron","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Condicional","Conditional","I would serve","serviría","servirías","serviría","serviríamos","serviríais","servirían","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Presente perfecto","Present Perfect","I have served","he servido","has servido","ha servido","hemos servido","habéis servido","han servido","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have served","habré servido","habrás servido","habrá servido","habremos servido","habréis servido","habrán servido","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had served","había servido","habías servido","había servido","habíamos servido","habíais servido","habían servido","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had served","hube servido","hubiste servido","hubo servido","hubimos servido","hubisteis servido","hubieron servido","sirviendo","serving","servido","served" +"servir","to serve","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have served","habría servido","habrías servido","habría servido","habríamos servido","habríais servido","habrían servido","sirviendo","serving","servido","served" +"sirvamos" +"servir","to serve","Subjuntivo","Subjunctive","Presente","Present","I serve, am serving","sirva","sirvas","sirva","sirvamos","sirváis","sirvan","sirviendo","serving","servido","served" +"servir","to serve","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I served, was serving","sirviera","sirvieras","sirviera","sirviéramos","sirvierais","sirvieran","sirviendo","serving","servido","served" +"servir","to serve","Subjuntivo","Subjunctive","Futuro","Future","I will serve","sirviere","sirvieres","sirviere","sirviéremos","sirviereis","sirvieren","sirviendo","serving","servido","served" +"servir","to serve","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have served, served","haya servido","hayas servido","haya servido","hayamos servido","hayáis servido","hayan servido","sirviendo","serving","servido","served" +"servir","to serve","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have served","hubiere servido","hubieres servido","hubiere servido","hubiéremos servido","hubiereis servido","hubieren servido","sirviendo","serving","servido","served" +"servir","to serve","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had served","hubiera servido","hubieras servido","hubiera servido","hubiéramos servido","hubierais servido","hubieran servido","sirviendo","serving","servido","served" +"servir","to serve","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Serve! Don't serve!","","sirve","sirva","sirvamos","servid","sirvan","sirviendo","serving","servido","served" +"servir","to serve","Imperativo Negativo","Imperative Negative","Presente","Present","Serve! Don't serve!","","no sirvas","no sirva","no sirvamos","no sirváis","no sirvan","sirviendo","serving","servido","served" +"significar","to signify, mean","Indicativo","Indicative","Presente","Present","I signify, am signifying","significo","significas","significa","significamos","significáis","significan","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Futuro","Future","I will signify","significaré","significarás","significará","significaremos","significaréis","significarán","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Imperfecto","Imperfect","I was signifying, used to signify, signified","significaba","significabas","significaba","significábamos","significabais","significaban","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Pretérito","Preterite","I signified","signifiqué","significaste","significó","significamos","significasteis","significaron","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Condicional","Conditional","I would signify","significaría","significarías","significaría","significaríamos","significaríais","significarían","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Presente perfecto","Present Perfect","I have signified","he significado","has significado","ha significado","hemos significado","habéis significado","han significado","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have signified","habré significado","habrás significado","habrá significado","habremos significado","habréis significado","habrán significado","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had signified","había significado","habías significado","había significado","habíamos significado","habíais significado","habían significado","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had signified","hube significado","hubiste significado","hubo significado","hubimos significado","hubisteis significado","hubieron significado","significando","signifying","significado","signified" +"significar","to signify, mean","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have signified","habría significado","habrías significado","habría significado","habríamos significado","habríais significado","habrían significado","significando","signifying","significado","signified" +"signifiquemos" +"significar","to signify, mean","Subjuntivo","Subjunctive","Presente","Present","I signify, am signifying","signifique","signifiques","signifique","signifiquemos","signifiquéis","signifiquen","significando","signifying","significado","signified" +"significar","to signify, mean","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I signified, was signifying","significara","significaras","significara","significáramos","significarais","significaran","significando","signifying","significado","signified" +"significar","to signify, mean","Subjuntivo","Subjunctive","Futuro","Future","I will signify","significare","significares","significare","significáremos","significareis","significaren","significando","signifying","significado","signified" +"significar","to signify, mean","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have signified, signified","haya significado","hayas significado","haya significado","hayamos significado","hayáis significado","hayan significado","significando","signifying","significado","signified" +"significar","to signify, mean","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have signified","hubiere significado","hubieres significado","hubiere significado","hubiéremos significado","hubiereis significado","hubieren significado","significando","signifying","significado","signified" +"significar","to signify, mean","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had signified","hubiera significado","hubieras significado","hubiera significado","hubiéramos significado","hubierais significado","hubieran significado","significando","signifying","significado","signified" +"significar","to signify, mean","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Signify! Don't signify!","","significa","signifique","signifiquemos","significad","signifiquen","significando","signifying","significado","signified" +"significar","to signify, mean","Imperativo Negativo","Imperative Negative","Presente","Present","Signify! Don't signify!","","no signifiques","no signifique","no signifiquemos","no signifiquéis","no signifiquen","significando","signifying","significado","signified" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Presente","Present","I symbolize, am symbolizing","simbolizo","simbolizas","simboliza","simbolizamos","simbolizáis","simbolizan","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Futuro","Future","I will symbolize","simbolizaré","simbolizarás","simbolizará","simbolizaremos","simbolizaréis","simbolizarán","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Imperfecto","Imperfect","I was symbolizing, used to symbolize, symbolized","simbolizaba","simbolizabas","simbolizaba","simbolizábamos","simbolizabais","simbolizaban","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Pretérito","Preterite","I symbolized","simbolicé","simbolizaste","simbolizó","simbolizamos","simbolizasteis","simbolizaron","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Condicional","Conditional","I would symbolize","simbolizaría","simbolizarías","simbolizaría","simbolizaríamos","simbolizaríais","simbolizarían","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Presente perfecto","Present Perfect","I have symbolized","he simbolizado","has simbolizado","ha simbolizado","hemos simbolizado","habéis simbolizado","han simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have symbolized","habré simbolizado","habrás simbolizado","habrá simbolizado","habremos simbolizado","habréis simbolizado","habrán simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had symbolized","había simbolizado","habías simbolizado","había simbolizado","habíamos simbolizado","habíais simbolizado","habían simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had symbolized","hube simbolizado","hubiste simbolizado","hubo simbolizado","hubimos simbolizado","hubisteis simbolizado","hubieron simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have symbolized","habría simbolizado","habrías simbolizado","habría simbolizado","habríamos simbolizado","habríais simbolizado","habrían simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolicemos" +"simbolizar","to symbolize, represent, stand for","Subjuntivo","Subjunctive","Presente","Present","I symbolize, am symbolizing","simbolice","simbolices","simbolice","simbolicemos","simbolicéis","simbolicen","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I symbolized, was symbolizing","simbolizara","simbolizaras","simbolizara","simbolizáramos","simbolizarais","simbolizaran","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Subjuntivo","Subjunctive","Futuro","Future","I will symbolize","simbolizare","simbolizares","simbolizare","simbolizáremos","simbolizareis","simbolizaren","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have symbolized, symbolized","haya simbolizado","hayas simbolizado","haya simbolizado","hayamos simbolizado","hayáis simbolizado","hayan simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have symbolized","hubiere simbolizado","hubieres simbolizado","hubiere simbolizado","hubiéremos simbolizado","hubiereis simbolizado","hubieren simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had symbolized","hubiera simbolizado","hubieras simbolizado","hubiera simbolizado","hubiéramos simbolizado","hubierais simbolizado","hubieran simbolizado","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Symbolize! Don't symbolize!","","simboliza","simbolice","simbolicemos","simbolizad","simbolicen","simbolizando","symbolizing","simbolizado","symbolized" +"simbolizar","to symbolize, represent, stand for","Imperativo Negativo","Imperative Negative","Presente","Present","Symbolize! Don't symbolize!","","no simbolices","no simbolice","no simbolicemos","no simbolicéis","no simbolicen","simbolizando","symbolizing","simbolizado","symbolized" +"situar","to place, put, situate","Indicativo","Indicative","Presente","Present","I place, am placing","sitúo","sitúas","sitúa","situamos","situáis","sitúan","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Futuro","Future","I will place","situaré","situarás","situará","situaremos","situaréis","situarán","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Imperfecto","Imperfect","I was placing, used to place, placed","situaba","situabas","situaba","situábamos","situabais","situaban","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Pretérito","Preterite","I placed","situé","situaste","situó","situamos","situasteis","situaron","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Condicional","Conditional","I would place","situaría","situarías","situaría","situaríamos","situaríais","situarían","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have placed","he situado","has situado","ha situado","hemos situado","habéis situado","han situado","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have placed","habré situado","habrás situado","habrá situado","habremos situado","habréis situado","habrán situado","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had placed","había situado","habías situado","había situado","habíamos situado","habíais situado","habían situado","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had placed","hube situado","hubiste situado","hubo situado","hubimos situado","hubisteis situado","hubieron situado","situando","placing","situado","placed" +"situar","to place, put, situate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have placed","habría situado","habrías situado","habría situado","habríamos situado","habríais situado","habrían situado","situando","placing","situado","placed" +"situemos" +"situar","to place, put, situate","Subjuntivo","Subjunctive","Presente","Present","I place, am placing","sitúe","sitúes","sitúe","situemos","situéis","sitúen","situando","placing","situado","placed" +"situar","to place, put, situate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I placed, was placing","situara","situaras","situara","situáramos","situarais","situaran","situando","placing","situado","placed" +"situar","to place, put, situate","Subjuntivo","Subjunctive","Futuro","Future","I will place","situare","situares","situare","situáremos","situareis","situaren","situando","placing","situado","placed" +"situar","to place, put, situate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have placed, placed","haya situado","hayas situado","haya situado","hayamos situado","hayáis situado","hayan situado","situando","placing","situado","placed" +"situar","to place, put, situate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have placed","hubiere situado","hubieres situado","hubiere situado","hubiéremos situado","hubiereis situado","hubieren situado","situando","placing","situado","placed" +"situar","to place, put, situate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had placed","hubiera situado","hubieras situado","hubiera situado","hubiéramos situado","hubierais situado","hubieran situado","situando","placing","situado","placed" +"situar","to place, put, situate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Place! Don't place!","","sitúa","sitúe","situemos","situad","sitúen","situando","placing","situado","placed" +"situar","to place, put, situate","Imperativo Negativo","Imperative Negative","Presente","Present","Place! Don't place!","","no sitúes","no sitúe","no situemos","no situéis","no sitúen","situando","placing","situado","placed" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Presente","Present","I survive, am surviving","sobrevivo","sobrevives","sobrevive","sobrevivimos","sobrevivís","sobreviven","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Futuro","Future","I will survive","sobreviviré","sobrevivirás","sobrevivirá","sobreviviremos","sobreviviréis","sobrevivirán","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Imperfecto","Imperfect","I was surviving, used to survive, survived","sobrevivía","sobrevivías","sobrevivía","sobrevivíamos","sobrevivíais","sobrevivían","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Pretérito","Preterite","I survived","sobreviví","sobreviviste","sobrevivió","sobrevivimos","sobrevivisteis","sobrevivieron","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Condicional","Conditional","I would survive","sobreviviría","sobrevivirías","sobreviviría","sobreviviríamos","sobreviviríais","sobrevivirían","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Presente perfecto","Present Perfect","I have survived","he sobrevivido","has sobrevivido","ha sobrevivido","hemos sobrevivido","habéis sobrevivido","han sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have survived","habré sobrevivido","habrás sobrevivido","habrá sobrevivido","habremos sobrevivido","habréis sobrevivido","habrán sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had survived","había sobrevivido","habías sobrevivido","había sobrevivido","habíamos sobrevivido","habíais sobrevivido","habían sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had survived","hube sobrevivido","hubiste sobrevivido","hubo sobrevivido","hubimos sobrevivido","hubisteis sobrevivido","hubieron sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have survived","habría sobrevivido","habrías sobrevivido","habría sobrevivido","habríamos sobrevivido","habríais sobrevivido","habrían sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivamos" +"sobrevivir","to survive, outlive, outlast","Subjuntivo","Subjunctive","Presente","Present","I survive, am surviving","sobreviva","sobrevivas","sobreviva","sobrevivamos","sobreviváis","sobrevivan","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I survived, was surviving","sobreviviera","sobrevivieras","sobreviviera","sobreviviéramos","sobrevivierais","sobrevivieran","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Subjuntivo","Subjunctive","Futuro","Future","I will survive","sobreviviere","sobrevivieres","sobreviviere","sobreviviéremos","sobreviviereis","sobrevivieren","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have survived, survived","haya sobrevivido","hayas sobrevivido","haya sobrevivido","hayamos sobrevivido","hayáis sobrevivido","hayan sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have survived","hubiere sobrevivido","hubieres sobrevivido","hubiere sobrevivido","hubiéremos sobrevivido","hubiereis sobrevivido","hubieren sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had survived","hubiera sobrevivido","hubieras sobrevivido","hubiera sobrevivido","hubiéramos sobrevivido","hubierais sobrevivido","hubieran sobrevivido","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Survive! Don't survive!","","sobrevive","sobreviva","sobrevivamos","sobrevivid","sobrevivan","sobreviviendo","surviving","sobrevivido","survived" +"sobrevivir","to survive, outlive, outlast","Imperativo Negativo","Imperative Negative","Presente","Present","Survive! Don't survive!","","no sobrevivas","no sobreviva","no sobrevivamos","no sobreviváis","no sobrevivan","sobreviviendo","surviving","sobrevivido","survived" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Presente","Present","I am accustomed to","suelo","sueles","suele","solemos","soléis","suelen","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Futuro","Future","I will be accustomed to","soleré","solerás","solerá","soleremos","soleréis","solerán","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Imperfecto","Imperfect","I was accustomed to","solía","solías","solía","solíamos","solíais","solían","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Pretérito","Preterite","I was accustomed to","solí","soliste","solió","solimos","solisteis","solieron","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Condicional","Conditional","I would be accustomed to","solería","solerías","solería","soleríamos","soleríais","solerían","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been accustomed to","he solido","has solido","ha solido","hemos solido","habéis solido","han solido","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been accustomed to","habré solido","habrás solido","habrá solido","habremos solido","habréis solido","habrán solido","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been accustomed to","había solido","habías solido","había solido","habíamos solido","habíais solido","habían solido","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been accustomed to","hube solido","hubiste solido","hubo solido","hubimos solido","hubisteis solido","hubieron solido","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been accustomed to","habría solido","habrías solido","habría solido","habríamos solido","habríais solido","habrían solido","soliendo","being accustomed to","solido","accustomed to" +"solamos" +"soler","to be accustomed to, be accustomed to","Subjuntivo","Subjunctive","Presente","Present","I am accustomed to","suela","suelas","suela","solamos","soláis","suelan","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was accustomed to","soliera","solieras","soliera","soliéramos","solierais","solieran","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been accustomed to, was accustomed to","haya solido","hayas solido","haya solido","hayamos solido","hayáis solido","hayan solido","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been accustomed to","hubiere solido","hubieres solido","hubiere solido","hubiéremos solido","hubiereis solido","hubieren solido","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been accustomed to","hubiera solido","hubieras solido","hubiera solido","hubiéramos solido","hubierais solido","hubieran solido","soliendo","being accustomed to","solido","accustomed to" +"soler","to be accustomed to, be accustomed to","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be accustomed to! Don't be accustomed to!","","suele","suela","solamos","soled","suelan","soliendo","being accustomed to","solido","accustomed to", +"soler","to be accustomed to, be accustomed to","Imperativo Negativo","Imperative Negative","Presente","Present","Be accustomed to! Don't be accustomed to!","","no suelas","no suela","no solamos","no soláis","no suelan","soliendo","being accustomed to","solido","accustomed to", +"sonar","to sound; to ring","Indicativo","Indicative","Presente","Present","I sound, am sounding","sueno","suenas","suena","sonamos","sonáis","suenan","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Futuro","Future","I will sound","sonaré","sonarás","sonará","sonaremos","sonaréis","sonarán","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Imperfecto","Imperfect","I was sounding, used to sound, sounded","sonaba","sonabas","sonaba","sonábamos","sonabais","sonaban","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Pretérito","Preterite","I sounded","soné","sonaste","sonó","sonamos","sonasteis","sonaron","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Condicional","Conditional","I would sound","sonaría","sonarías","sonaría","sonaríamos","sonaríais","sonarían","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sounded","he sonado","has sonado","ha sonado","hemos sonado","habéis sonado","han sonado","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sounded","habré sonado","habrás sonado","habrá sonado","habremos sonado","habréis sonado","habrán sonado","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sounded","había sonado","habías sonado","había sonado","habíamos sonado","habíais sonado","habían sonado","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sounded","hube sonado","hubiste sonado","hubo sonado","hubimos sonado","hubisteis sonado","hubieron sonado","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sounded","habría sonado","habrías sonado","habría sonado","habríamos sonado","habríais sonado","habrían sonado","sonando","sounding","sonado","sounded" +"sonemos" +"sonar","to sound; to ring","Subjuntivo","Subjunctive","Presente","Present","I sound, am sounding","suene","suenes","suene","sonemos","sonéis","suenen","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I sounded, was sounding","sonara","sonaras","sonara","sonáramos","sonarais","sonaran","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Subjuntivo","Subjunctive","Futuro","Future","I will sound","sonare","sonares","sonare","sonáremos","sonareis","sonaren","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sounded, sounded","haya sonado","hayas sonado","haya sonado","hayamos sonado","hayáis sonado","hayan sonado","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sounded","hubiere sonado","hubieres sonado","hubiere sonado","hubiéremos sonado","hubiereis sonado","hubieren sonado","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sounded","hubiera sonado","hubieras sonado","hubiera sonado","hubiéramos sonado","hubierais sonado","hubieran sonado","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sound! Don't sound!","","suena","suene","sonemos","sonad","suenen","sonando","sounding","sonado","sounded" +"sonar","to sound; to ring","Imperativo Negativo","Imperative Negative","Presente","Present","Sound! Don't sound!","","no suenes","no suene","no sonemos","no sonéis","no suenen","sonando","sounding","sonado","sounded" +"soñar","to dream","Indicativo","Indicative","Presente","Present","I dream, am dreaming","sueño","sueñas","sueña","soñamos","soñáis","sueñan","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Futuro","Future","I will dream","soñaré","soñarás","soñará","soñaremos","soñaréis","soñarán","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Imperfecto","Imperfect","I was dreaming, used to dream, dreamed","soñaba","soñabas","soñaba","soñábamos","soñabais","soñaban","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Pretérito","Preterite","I dreamed","soñé","soñaste","soñó","soñamos","soñasteis","soñaron","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Condicional","Conditional","I would dream","soñaría","soñarías","soñaría","soñaríamos","soñaríais","soñarían","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dreamed","he soñado","has soñado","ha soñado","hemos soñado","habéis soñado","han soñado","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dreamed","habré soñado","habrás soñado","habrá soñado","habremos soñado","habréis soñado","habrán soñado","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dreamed","había soñado","habías soñado","había soñado","habíamos soñado","habíais soñado","habían soñado","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dreamed","hube soñado","hubiste soñado","hubo soñado","hubimos soñado","hubisteis soñado","hubieron soñado","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dreamed","habría soñado","habrías soñado","habría soñado","habríamos soñado","habríais soñado","habrían soñado","soñando","dreaming","soñado","dreamed" +"soñemos" +"soñar","to dream","Subjuntivo","Subjunctive","Presente","Present","I dream, am dreaming","sueñe","sueñes","sueñe","soñemos","soñéis","sueñen","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dreamed, was dreaming","soñara","soñaras","soñara","soñáramos","soñarais","soñaran","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Subjuntivo","Subjunctive","Futuro","Future","I will dream","soñare","soñares","soñare","soñáremos","soñareis","soñaren","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dreamed, dreamed","haya soñado","hayas soñado","haya soñado","hayamos soñado","hayáis soñado","hayan soñado","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dreamed","hubiere soñado","hubieres soñado","hubiere soñado","hubiéremos soñado","hubiereis soñado","hubieren soñado","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dreamed","hubiera soñado","hubieras soñado","hubiera soñado","hubiéramos soñado","hubierais soñado","hubieran soñado","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dream! Don't dream!","","sueña","sueñe","soñemos","soñad","sueñen","soñando","dreaming","soñado","dreamed" +"soñar","to dream","Imperativo Negativo","Imperative Negative","Presente","Present","Dream! Don't dream!","","no sueñes","no sueñe","no soñemos","no soñéis","no sueñen","soñando","dreaming","soñado","dreamed" +"sonreír","to smile","Indicativo","Indicative","Presente","Present","I smile, am smiling","sonrío","sonríes","sonríe","sonreímos","sonreís","sonríen","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Futuro","Future","I will smile","sonreiré","sonreirás","sonreirá","sonreiremos","sonreiréis","sonreirán","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Imperfecto","Imperfect","I was smiling, used to smile, smiled","sonreía","sonreías","sonreía","sonreíamos","sonreíais","sonreían","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Pretérito","Preterite","I smiled","sonreí","sonreíste","sonrió","sonreímos","sonreísteis","sonrieron","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Condicional","Conditional","I would smile","sonreiría","sonreirías","sonreiría","sonreiríamos","sonreiríais","sonreirían","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Presente perfecto","Present Perfect","I have smiled","he sonreído","has sonreído","ha sonreído","hemos sonreído","habéis sonreído","han sonreído","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have smiled","habré sonreído","habrás sonreído","habrá sonreído","habremos sonreído","habréis sonreído","habrán sonreído","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had smiled","había sonreído","habías sonreído","había sonreído","habíamos sonreído","habíais sonreído","habían sonreído","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had smiled","hube sonreído","hubiste sonreído","hubo sonreído","hubimos sonreído","hubisteis sonreído","hubieron sonreído","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have smiled","habría sonreído","habrías sonreído","habría sonreído","habríamos sonreído","habríais sonreído","habrían sonreído","sonriendo","smiling","sonreído","smiled" +"sonriamos" +"sonreír","to smile","Subjuntivo","Subjunctive","Presente","Present","I smile, am smiling","sonría","sonrías","sonría","sonriamos","sonriáis","sonrían","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I smiled, was smiling","sonriera","sonrieras","sonriera","sonriéramos","sonrierais","sonrieran","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Subjuntivo","Subjunctive","Futuro","Future","I will smile","sonriere","sonrieres","sonriere","sonriéremos","sonriereis","sonrieren","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have smiled, smiled","haya sonreído","hayas sonreído","haya sonreído","hayamos sonreído","hayáis sonreído","hayan sonreído","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have smiled","hubiere sonreído","hubieres sonreído","hubiere sonreído","hubiéremos sonreído","hubiereis sonreído","hubieren sonreído","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had smiled","hubiera sonreído","hubieras sonreído","hubiera sonreído","hubiéramos sonreído","hubierais sonreído","hubieran sonreído","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Smile! Don't smile!","","sonríe","sonría","sonriamos","sonreíd","sonrían","sonriendo","smiling","sonreído","smiled" +"sonreír","to smile","Imperativo Negativo","Imperative Negative","Presente","Present","Smile! Don't smile!","","no sonrías","no sonría","no sonriamos","no sonriáis","no sonrían","sonriendo","smiling","sonreído","smiled" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Presente","Present","I support, am supporting","soporto","soportas","soporta","soportamos","soportáis","soportan","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Futuro","Future","I will support","soportaré","soportarás","soportará","soportaremos","soportaréis","soportarán","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Imperfecto","Imperfect","I was supporting, used to support, supported","soportaba","soportabas","soportaba","soportábamos","soportabais","soportaban","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Pretérito","Preterite","I supported","soporté","soportaste","soportó","soportamos","soportasteis","soportaron","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Condicional","Conditional","I would support","soportaría","soportarías","soportaría","soportaríamos","soportaríais","soportarían","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have supported","he soportado","has soportado","ha soportado","hemos soportado","habéis soportado","han soportado","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have supported","habré soportado","habrás soportado","habrá soportado","habremos soportado","habréis soportado","habrán soportado","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had supported","había soportado","habías soportado","había soportado","habíamos soportado","habíais soportado","habían soportado","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had supported","hube soportado","hubiste soportado","hubo soportado","hubimos soportado","hubisteis soportado","hubieron soportado","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have supported","habría soportado","habrías soportado","habría soportado","habríamos soportado","habríais soportado","habrían soportado","soportando","supporting","soportado","supported" +"soportemos" +"soportar","to support, hold up, bear; to put up with, tolerate","Subjuntivo","Subjunctive","Presente","Present","I support, am supporting","soporte","soportes","soporte","soportemos","soportéis","soporten","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I supported, was supporting","soportara","soportaras","soportara","soportáramos","soportarais","soportaran","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Subjuntivo","Subjunctive","Futuro","Future","I will support","soportare","soportares","soportare","soportáremos","soportareis","soportaren","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have supported, supported","haya soportado","hayas soportado","haya soportado","hayamos soportado","hayáis soportado","hayan soportado","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have supported","hubiere soportado","hubieres soportado","hubiere soportado","hubiéremos soportado","hubiereis soportado","hubieren soportado","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had supported","hubiera soportado","hubieras soportado","hubiera soportado","hubiéramos soportado","hubierais soportado","hubieran soportado","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Support! Don't support!","","soporta","soporte","soportemos","soportad","soporten","soportando","supporting","soportado","supported" +"soportar","to support, hold up, bear; to put up with, tolerate","Imperativo Negativo","Imperative Negative","Presente","Present","Support! Don't support!","","no soportes","no soporte","no soportemos","no soportéis","no soporten","soportando","supporting","soportado","supported" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Presente","Present","I surprise, am surprising","sorprendo","sorprendes","sorprende","sorprendemos","sorprendéis","sorprenden","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Futuro","Future","I will surprise","sorprenderé","sorprenderás","sorprenderá","sorprenderemos","sorprenderéis","sorprenderán","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Imperfecto","Imperfect","I was surprising, used to surprise, surprised","sorprendía","sorprendías","sorprendía","sorprendíamos","sorprendíais","sorprendían","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Pretérito","Preterite","I surprised","sorprendí","sorprendiste","sorprendió","sorprendimos","sorprendisteis","sorprendieron","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Condicional","Conditional","I would surprise","sorprendería","sorprenderías","sorprendería","sorprenderíamos","sorprenderíais","sorprenderían","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Presente perfecto","Present Perfect","I have surprised","he sorprendido","has sorprendido","ha sorprendido","hemos sorprendido","habéis sorprendido","han sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have surprised","habré sorprendido","habrás sorprendido","habrá sorprendido","habremos sorprendido","habréis sorprendido","habrán sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had surprised","había sorprendido","habías sorprendido","había sorprendido","habíamos sorprendido","habíais sorprendido","habían sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had surprised","hube sorprendido","hubiste sorprendido","hubo sorprendido","hubimos sorprendido","hubisteis sorprendido","hubieron sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have surprised","habría sorprendido","habrías sorprendido","habría sorprendido","habríamos sorprendido","habríais sorprendido","habrían sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprendamos" +"sorprender","to surprise, take by surprise, startle, amaze","Subjuntivo","Subjunctive","Presente","Present","I surprise, am surprising","sorprenda","sorprendas","sorprenda","sorprendamos","sorprendáis","sorprendan","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I surprised, was surprising","sorprendiera","sorprendieras","sorprendiera","sorprendiéramos","sorprendierais","sorprendieran","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Subjuntivo","Subjunctive","Futuro","Future","I will surprise","sorprendiere","sorprendieres","sorprendiere","sorprendiéremos","sorprendiereis","sorprendieren","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have surprised, surprised","haya sorprendido","hayas sorprendido","haya sorprendido","hayamos sorprendido","hayáis sorprendido","hayan sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have surprised","hubiere sorprendido","hubieres sorprendido","hubiere sorprendido","hubiéremos sorprendido","hubiereis sorprendido","hubieren sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had surprised","hubiera sorprendido","hubieras sorprendido","hubiera sorprendido","hubiéramos sorprendido","hubierais sorprendido","hubieran sorprendido","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Surprise! Don't surprise!","","sorprende","sorprenda","sorprendamos","sorprended","sorprendan","sorprendiendo","surprising","sorprendido","surprised" +"sorprender","to surprise, take by surprise, startle, amaze","Imperativo Negativo","Imperative Negative","Presente","Present","Surprise! Don't surprise!","","no sorprendas","no sorprenda","no sorprendamos","no sorprendáis","no sorprendan","sorprendiendo","surprising","sorprendido","surprised" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Presente","Present","I go up, am going up","subo","subes","sube","subimos","subís","suben","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Futuro","Future","I will go up","subiré","subirás","subirá","subiremos","subiréis","subirán","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Imperfecto","Imperfect","I was going up, used to go up, went up","subía","subías","subía","subíamos","subíais","subían","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Pretérito","Preterite","I went up","subí","subiste","subió","subimos","subisteis","subieron","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Condicional","Conditional","I would go up","subiría","subirías","subiría","subiríamos","subiríais","subirían","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gone up","he subido","has subido","ha subido","hemos subido","habéis subido","han subido","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gone up","habré subido","habrás subido","habrá subido","habremos subido","habréis subido","habrán subido","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gone up","había subido","habías subido","había subido","habíamos subido","habíais subido","habían subido","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gone up","hube subido","hubiste subido","hubo subido","hubimos subido","hubisteis subido","hubieron subido","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gone up","habría subido","habrías subido","habría subido","habríamos subido","habríais subido","habrían subido","subiendo","going up","subido","went up" +"subamos" +"subir","to go up, rise, move up, climb; to lift up, raise up","Subjuntivo","Subjunctive","Presente","Present","I go up, am going up","suba","subas","suba","subamos","subáis","suban","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I went up, was going up","subiera","subieras","subiera","subiéramos","subierais","subieran","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Subjuntivo","Subjunctive","Futuro","Future","I will go up","subiere","subieres","subiere","subiéremos","subiereis","subieren","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gone up, went up","haya subido","hayas subido","haya subido","hayamos subido","hayáis subido","hayan subido","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gone up","hubiere subido","hubieres subido","hubiere subido","hubiéremos subido","hubiereis subido","hubieren subido","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gone up","hubiera subido","hubieras subido","hubiera subido","hubiéramos subido","hubierais subido","hubieran subido","subiendo","going up","subido","went up" +"subir","to go up, rise, move up, climb; to lift up, raise up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Go up! Don't go up!","","sube","suba","subamos","subid","suban","subiendo","going up","subido","went up", +"subir","to go up, rise, move up, climb; to lift up, raise up","Imperativo Negativo","Imperative Negative","Presente","Present","Go up! Don't go up!","","no subas","no suba","no subamos","no subáis","no suban","subiendo","going up","subido","went up", +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Presente","Present","I happen, am happening","sucedo","sucedes","sucede","sucedemos","sucedéis","suceden","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Futuro","Future","I will happen","sucederé","sucederás","sucederá","sucederemos","sucederéis","sucederán","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Imperfecto","Imperfect","I was happening, used to happen, happened","sucedía","sucedías","sucedía","sucedíamos","sucedíais","sucedían","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Pretérito","Preterite","I happened","sucedí","sucediste","sucedió","sucedimos","sucedisteis","sucedieron","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Condicional","Conditional","I would happen","sucedería","sucederías","sucedería","sucederíamos","sucederíais","sucederían","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Presente perfecto","Present Perfect","I have happened","he sucedido","has sucedido","ha sucedido","hemos sucedido","habéis sucedido","han sucedido","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have happened","habré sucedido","habrás sucedido","habrá sucedido","habremos sucedido","habréis sucedido","habrán sucedido","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had happened","había sucedido","habías sucedido","había sucedido","habíamos sucedido","habíais sucedido","habían sucedido","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had happened","hube sucedido","hubiste sucedido","hubo sucedido","hubimos sucedido","hubisteis sucedido","hubieron sucedido","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have happened","habría sucedido","habrías sucedido","habría sucedido","habríamos sucedido","habríais sucedido","habrían sucedido","sucediendo","happening","sucedido","happened" +"sucedamos" +"suceder","to happen; to succeed, follow","Subjuntivo","Subjunctive","Presente","Present","I happen, am happening","suceda","sucedas","suceda","sucedamos","sucedáis","sucedan","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I happened, was happening","sucediera","sucedieras","sucediera","sucediéramos","sucedierais","sucedieran","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Subjuntivo","Subjunctive","Futuro","Future","I will happen","sucediere","sucedieres","sucediere","sucediéremos","sucediereis","sucedieren","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have happened, happened","haya sucedido","hayas sucedido","haya sucedido","hayamos sucedido","hayáis sucedido","hayan sucedido","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have happened","hubiere sucedido","hubieres sucedido","hubiere sucedido","hubiéremos sucedido","hubiereis sucedido","hubieren sucedido","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had happened","hubiera sucedido","hubieras sucedido","hubiera sucedido","hubiéramos sucedido","hubierais sucedido","hubieran sucedido","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Happen! Don't happen!","","sucede","suceda","sucedamos","suceded","sucedan","sucediendo","happening","sucedido","happened" +"suceder","to happen; to succeed, follow","Imperativo Negativo","Imperative Negative","Presente","Present","Happen! Don't happen!","","no sucedas","no suceda","no sucedamos","no sucedáis","no sucedan","sucediendo","happening","sucedido","happened" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Presente","Present","I suffer, am suffering","sufro","sufres","sufre","sufrimos","sufrís","sufren","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Futuro","Future","I will suffer","sufriré","sufrirás","sufrirá","sufriremos","sufriréis","sufrirán","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Imperfecto","Imperfect","I was suffering, used to suffer, suffered","sufría","sufrías","sufría","sufríamos","sufríais","sufrían","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Pretérito","Preterite","I suffered","sufrí","sufriste","sufrió","sufrimos","sufristeis","sufrieron","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Condicional","Conditional","I would suffer","sufriría","sufrirías","sufriría","sufriríamos","sufriríais","sufrirían","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Presente perfecto","Present Perfect","I have suffered","he sufrido","has sufrido","ha sufrido","hemos sufrido","habéis sufrido","han sufrido","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have suffered","habré sufrido","habrás sufrido","habrá sufrido","habremos sufrido","habréis sufrido","habrán sufrido","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had suffered","había sufrido","habías sufrido","había sufrido","habíamos sufrido","habíais sufrido","habían sufrido","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had suffered","hube sufrido","hubiste sufrido","hubo sufrido","hubimos sufrido","hubisteis sufrido","hubieron sufrido","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have suffered","habría sufrido","habrías sufrido","habría sufrido","habríamos sufrido","habríais sufrido","habrían sufrido","sufriendo","suffering","sufrido","suffered" +"suframos" +"sufrir","to suffer; to undergo, experience, put up with","Subjuntivo","Subjunctive","Presente","Present","I suffer, am suffering","sufra","sufras","sufra","suframos","sufráis","sufran","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I suffered, was suffering","sufriera","sufrieras","sufriera","sufriéramos","sufrierais","sufrieran","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Subjuntivo","Subjunctive","Futuro","Future","I will suffer","sufriere","sufrieres","sufriere","sufriéremos","sufriereis","sufrieren","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have suffered, suffered","haya sufrido","hayas sufrido","haya sufrido","hayamos sufrido","hayáis sufrido","hayan sufrido","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have suffered","hubiere sufrido","hubieres sufrido","hubiere sufrido","hubiéremos sufrido","hubiereis sufrido","hubieren sufrido","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had suffered","hubiera sufrido","hubieras sufrido","hubiera sufrido","hubiéramos sufrido","hubierais sufrido","hubieran sufrido","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Suffer! Don't suffer!","","sufre","sufra","suframos","sufrid","sufran","sufriendo","suffering","sufrido","suffered" +"sufrir","to suffer; to undergo, experience, put up with","Imperativo Negativo","Imperative Negative","Presente","Present","Suffer! Don't suffer!","","no sufras","no sufra","no suframos","no sufráis","no sufran","sufriendo","suffering","sufrido","suffered" +"sugerir","to suggest","Indicativo","Indicative","Presente","Present","I suggest, am suggesting","sugiero","sugieres","sugiere","sugerimos","sugerís","sugieren","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Futuro","Future","I will suggest","sugeriré","sugerirás","sugerirá","sugeriremos","sugeriréis","sugerirán","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Imperfecto","Imperfect","I was suggesting, used to suggest, suggested","sugería","sugerías","sugería","sugeríamos","sugeríais","sugerían","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Condicional","Conditional","I would suggest","sugeriría","sugerirías","sugeriría","sugeriríamos","sugeriríais","sugerirían","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Presente perfecto","Present Perfect","I have suggested","he sugerido","has sugerido","ha sugerido","hemos sugerido","habéis sugerido","han sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have suggested","habré sugerido","habrás sugerido","habrá sugerido","habremos sugerido","habréis sugerido","habrán sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had suggested","había sugerido","habías sugerido","había sugerido","habíamos sugerido","habíais sugerido","habían sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had suggested","hube sugerido","hubiste sugerido","hubo sugerido","hubimos sugerido","hubisteis sugerido","hubieron sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have suggested","habría sugerido","habrías sugerido","habría sugerido","habríamos sugerido","habríais sugerido","habrían sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugiramos" +"sugerir","to suggest","Subjuntivo","Subjunctive","Presente","Present","I suggest, am suggesting","sugiera","sugieras","sugiera","sugiramos","sugiráis","sugieran","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I suggested, was suggesting","sugiriera","sugirieras","sugiriera","sugiriéramos","sugirierais","sugirieran","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Subjuntivo","Subjunctive","Futuro","Future","I will suggest","sugiriere","sugirieres","sugiriere","sugiriéremos","sugiriereis","sugirieren","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have suggested, suggested","haya sugerido","hayas sugerido","haya sugerido","hayamos sugerido","hayáis sugerido","hayan sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have suggested","hubiere sugerido","hubieres sugerido","hubiere sugerido","hubiéremos sugerido","hubiereis sugerido","hubieren sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had suggested","hubiera sugerido","hubieras sugerido","hubiera sugerido","hubiéramos sugerido","hubierais sugerido","hubieran sugerido","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Suggest! Don't suggest!","","sugiere","sugiera","sugiramos","sugerid","sugieran","sugiriendo","suggesting","sugerido","suggested" +"sugerir","to suggest","Imperativo Negativo","Imperative Negative","Presente","Present","Suggest! Don't suggest!","","no sugieras","no sugiera","no sugiramos","no sugiráis","no sugieran","sugiriendo","suggesting","sugerido","suggested" +"suponer","to suppose","Indicativo","Indicative","Presente","Present","I suppose, am supposing","supongo","supones","supone","suponemos","suponéis","suponen","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Futuro","Future","I will suppose","supondré","supondrás","supondrá","supondremos","supondréis","supondrán","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Imperfecto","Imperfect","I was supposing, used to suppose, supposed","suponía","suponías","suponía","suponíamos","suponíais","suponían","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Pretérito","Preterite","I supposed","supuse","supusiste","supuso","supusimos","supusisteis","supusieron","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Condicional","Conditional","I would suppose","supondría","supondrías","supondría","supondríamos","supondríais","supondrían","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Presente perfecto","Present Perfect","I have supposed","he supuesto","has supuesto","ha supuesto","hemos supuesto","habéis supuesto","han supuesto","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have supposed","habré supuesto","habrás supuesto","habrá supuesto","habremos supuesto","habréis supuesto","habrán supuesto","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had supposed","había supuesto","habías supuesto","había supuesto","habíamos supuesto","habíais supuesto","habían supuesto","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had supposed","hube supuesto","hubiste supuesto","hubo supuesto","hubimos supuesto","hubisteis supuesto","hubieron supuesto","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have supposed","habría supuesto","habrías supuesto","habría supuesto","habríamos supuesto","habríais supuesto","habrían supuesto","suponiendo","supposing","supuesto","supposed" +"supongamos" +"suponer","to suppose","Subjuntivo","Subjunctive","Presente","Present","I suppose, am supposing","suponga","supongas","suponga","supongamos","supongáis","supongan","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I supposed, was supposing","supusiera","supusieras","supusiera","supusiéramos","supusierais","supusieran","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Subjuntivo","Subjunctive","Futuro","Future","I will suppose","supusiere","supusieres","supusiere","supusiéremos","supusiereis","supusieren","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have supposed, supposed","haya supuesto","hayas supuesto","haya supuesto","hayamos supuesto","hayáis supuesto","hayan supuesto","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have supposed","hubiere supuesto","hubieres supuesto","hubiere supuesto","hubiéremos supuesto","hubiereis supuesto","hubieren supuesto","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had supposed","hubiera supuesto","hubieras supuesto","hubiera supuesto","hubiéramos supuesto","hubierais supuesto","hubieran supuesto","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Suppose! Don't suppose!","","supón","suponga","supongamos","suponed","supongan","suponiendo","supposing","supuesto","supposed" +"suponer","to suppose","Imperativo Negativo","Imperative Negative","Presente","Present","Suppose! Don't suppose!","","no supongas","no suponga","no supongamos","no supongáis","no supongan","suponiendo","supposing","supuesto","supposed" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Presente","Present","I arise, am arising","surjo","surges","surge","surgimos","surgís","surgen","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Futuro","Future","I will arise","surgiré","surgirás","surgirá","surgiremos","surgiréis","surgirán","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Imperfecto","Imperfect","I was arising, used to arise, arose","surgía","surgías","surgía","surgíamos","surgíais","surgían","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Pretérito","Preterite","I arose","surgí","surgiste","surgió","surgimos","surgisteis","surgieron","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Condicional","Conditional","I would arise","surgiría","surgirías","surgiría","surgiríamos","surgiríais","surgirían","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have arisen","he surgido","has surgido","ha surgido","hemos surgido","habéis surgido","han surgido","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have arisen","habré surgido","habrás surgido","habrá surgido","habremos surgido","habréis surgido","habrán surgido","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had arisen","había surgido","habías surgido","había surgido","habíamos surgido","habíais surgido","habían surgido","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had arisen","hube surgido","hubiste surgido","hubo surgido","hubimos surgido","hubisteis surgido","hubieron surgido","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have arisen","habría surgido","habrías surgido","habría surgido","habríamos surgido","habríais surgido","habrían surgido","surgiendo","arising","surgido","arisen" +"surjamos" +"surgir","to arise, emerge, spring up, come out, appear","Subjuntivo","Subjunctive","Presente","Present","I arise, am arising","surja","surjas","surja","surjamos","surjáis","surjan","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I arose, was arising","surgiera","surgieras","surgiera","surgiéramos","surgierais","surgieran","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Subjuntivo","Subjunctive","Futuro","Future","I will arise","surgiere","surgieres","surgiere","surgiéremos","surgiereis","surgieren","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have arisen, arose","haya surgido","hayas surgido","haya surgido","hayamos surgido","hayáis surgido","hayan surgido","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have arisen","hubiere surgido","hubieres surgido","hubiere surgido","hubiéremos surgido","hubiereis surgido","hubieren surgido","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had arisen","hubiera surgido","hubieras surgido","hubiera surgido","hubiéramos surgido","hubierais surgido","hubieran surgido","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Arise! Don't arise!","","surge","surja","surjamos","surgid","surjan","surgiendo","arising","surgido","arisen" +"surgir","to arise, emerge, spring up, come out, appear","Imperativo Negativo","Imperative Negative","Presente","Present","Arise! Don't arise!","","no surjas","no surja","no surjamos","no surjáis","no surjan","surgiendo","arising","surgido","arisen" +"suspirar","to sigh","Indicativo","Indicative","Presente","Present","I sigh, am sighing","suspiro","suspiras","suspira","suspiramos","suspiráis","suspiran","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Futuro","Future","I will sigh","suspiraré","suspirarás","suspirará","suspiraremos","suspiraréis","suspirarán","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Imperfecto","Imperfect","I was sighing, used to sigh, sighed","suspiraba","suspirabas","suspiraba","suspirábamos","suspirabais","suspiraban","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Pretérito","Preterite","I sighed","suspiré","suspiraste","suspiró","suspiramos","suspirasteis","suspiraron","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Condicional","Conditional","I would sigh","suspiraría","suspirarías","suspiraría","suspiraríamos","suspiraríais","suspirarían","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sighed","he suspirado","has suspirado","ha suspirado","hemos suspirado","habéis suspirado","han suspirado","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sighed","habré suspirado","habrás suspirado","habrá suspirado","habremos suspirado","habréis suspirado","habrán suspirado","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sighed","había suspirado","habías suspirado","había suspirado","habíamos suspirado","habíais suspirado","habían suspirado","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sighed","hube suspirado","hubiste suspirado","hubo suspirado","hubimos suspirado","hubisteis suspirado","hubieron suspirado","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sighed","habría suspirado","habrías suspirado","habría suspirado","habríamos suspirado","habríais suspirado","habrían suspirado","suspirando","sighing","suspirado","sighed" +"suspiremos" +"suspirar","to sigh","Subjuntivo","Subjunctive","Presente","Present","I sigh, am sighing","suspire","suspires","suspire","suspiremos","suspiréis","suspiren","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I sighed, was sighing","suspirara","suspiraras","suspirara","suspiráramos","suspirarais","suspiraran","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Subjuntivo","Subjunctive","Futuro","Future","I will sigh","suspirare","suspirares","suspirare","suspiráremos","suspirareis","suspiraren","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sighed, sighed","haya suspirado","hayas suspirado","haya suspirado","hayamos suspirado","hayáis suspirado","hayan suspirado","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sighed","hubiere suspirado","hubieres suspirado","hubiere suspirado","hubiéremos suspirado","hubiereis suspirado","hubieren suspirado","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sighed","hubiera suspirado","hubieras suspirado","hubiera suspirado","hubiéramos suspirado","hubierais suspirado","hubieran suspirado","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sigh! Don't sigh!","","suspira","suspire","suspiremos","suspirad","suspiren","suspirando","sighing","suspirado","sighed" +"suspirar","to sigh","Imperativo Negativo","Imperative Negative","Presente","Present","Sigh! Don't sigh!","","no suspires","no suspire","no suspiremos","no suspiréis","no suspiren","suspirando","sighing","suspirado","sighed" +"sustituir","to substitute, replace","Indicativo","Indicative","Presente","Present","I substitute, am substituting","sustituyo","sustituyes","sustituye","sustituimos","sustituís","sustituyen","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Futuro","Future","I will substitute","sustituiré","sustituirás","sustituirá","sustituiremos","sustituiréis","sustituirán","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Imperfecto","Imperfect","I was substituting, used to substitute, substituted","sustituía","sustituías","sustituía","sustituíamos","sustituíais","sustituían","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Pretérito","Preterite","I substituted","sustituí","sustituiste","sustituyó","sustituimos","sustituisteis","sustituyeron","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Condicional","Conditional","I would substitute","sustituiría","sustituirías","sustituiría","sustituiríamos","sustituiríais","sustituirían","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Presente perfecto","Present Perfect","I have substituted","he sustituido","has sustituido","ha sustituido","hemos sustituido","habéis sustituido","han sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have substituted","habré sustituido","habrás sustituido","habrá sustituido","habremos sustituido","habréis sustituido","habrán sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had substituted","había sustituido","habías sustituido","había sustituido","habíamos sustituido","habíais sustituido","habían sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had substituted","hube sustituido","hubiste sustituido","hubo sustituido","hubimos sustituido","hubisteis sustituido","hubieron sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have substituted","habría sustituido","habrías sustituido","habría sustituido","habríamos sustituido","habríais sustituido","habrían sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituyamos" +"sustituir","to substitute, replace","Subjuntivo","Subjunctive","Presente","Present","I substitute, am substituting","sustituya","sustituyas","sustituya","sustituyamos","sustituyáis","sustituyan","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I substituted, was substituting","sustituyera","sustituyeras","sustituyera","sustituyéramos","sustituyerais","sustituyeran","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Subjuntivo","Subjunctive","Futuro","Future","I will substitute","sustituyere","sustituyeres","sustituyere","sustituyéremos","sustituyereis","sustituyeren","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have substituted, substituted","haya sustituido","hayas sustituido","haya sustituido","hayamos sustituido","hayáis sustituido","hayan sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have substituted","hubiere sustituido","hubieres sustituido","hubiere sustituido","hubiéremos sustituido","hubiereis sustituido","hubieren sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had substituted","hubiera sustituido","hubieras sustituido","hubiera sustituido","hubiéramos sustituido","hubierais sustituido","hubieran sustituido","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Substitute! Don't substitute!","","sustituye","sustituya","sustituyamos","sustituid","sustituyan","sustituyendo","substituting","sustituido","substituted" +"sustituir","to substitute, replace","Imperativo Negativo","Imperative Negative","Presente","Present","Substitute! Don't substitute!","","no sustituyas","no sustituya","no sustituyamos","no sustituyáis","no sustituyan","sustituyendo","substituting","sustituido","substituted" +"tañer","to play","Indicativo","Indicative","Presente","Present","I play, am playing","taño","tañes","tañe","tañemos","tañéis","tañen","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Futuro","Future","I will play","tañeré","tañerás","tañerá","tañeremos","tañeréis","tañerán","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Imperfecto","Imperfect","I was playing, used to play, played","tañía","tañías","tañía","tañíamos","tañíais","tañían","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Pretérito","Preterite","I played","tañí","tañiste","tañó","tañimos","tañisteis","tañeron","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Condicional","Conditional","I would play","tañería","tañerías","tañería","tañeríamos","tañeríais","tañerían","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Presente perfecto","Present Perfect","I have played","he tañido","has tañido","ha tañido","hemos tañido","habéis tañido","han tañido","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have played","habré tañido","habrás tañido","habrá tañido","habremos tañido","habréis tañido","habrán tañido","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had played","había tañido","habías tañido","había tañido","habíamos tañido","habíais tañido","habían tañido","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had played","hube tañido","hubiste tañido","hubo tañido","hubimos tañido","hubisteis tañido","hubieron tañido","tañendo","playing","tañido","played" +"tañer","to play","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have played","habría tañido","habrías tañido","habría tañido","habríamos tañido","habríais tañido","habrían tañido","tañendo","playing","tañido","played" +"tañamos" +"tañer","to play","Subjuntivo","Subjunctive","Presente","Present","I play, am playing","taña","tañas","taña","tañamos","tañáis","tañan","tañendo","playing","tañido","played" +"tañer","to play","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I played, was playing","tañera","tañeras","tañera","tañéramos","tañerais","tañeran","tañendo","playing","tañido","played" +"tañer","to play","Subjuntivo","Subjunctive","Futuro","Future","I will play","tañere","tañeres","tañere","tañéremos","tañereis","tañeren","tañendo","playing","tañido","played" +"tañer","to play","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have played, played","haya tañido","hayas tañido","haya tañido","hayamos tañido","hayáis tañido","hayan tañido","tañendo","playing","tañido","played" +"tañer","to play","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have played","hubiere tañido","hubieres tañido","hubiere tañido","hubiéremos tañido","hubiereis tañido","hubieren tañido","tañendo","playing","tañido","played" +"tañer","to play","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had played","hubiera tañido","hubieras tañido","hubiera tañido","hubiéramos tañido","hubierais tañido","hubieran tañido","tañendo","playing","tañido","played" +"tañer","to play","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Play! Don't play!","","tañe","taña","tañamos","tañed","tañan","tañendo","playing","tañido","played" +"tañer","to play","Imperativo Negativo","Imperative Negative","Presente","Present","Play! Don't play!","","no tañas","no taña","no tañamos","no tañáis","no tañan","tañendo","playing","tañido","played" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Presente","Present","I cover, am covering","tapo","tapas","tapa","tapamos","tapáis","tapan","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Futuro","Future","I will cover","taparé","taparás","tapará","taparemos","taparéis","taparán","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Imperfecto","Imperfect","I was covering, used to cover, covered","tapaba","tapabas","tapaba","tapábamos","tapabais","tapaban","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Pretérito","Preterite","I covered","tapé","tapaste","tapó","tapamos","tapasteis","taparon","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Condicional","Conditional","I would cover","taparía","taparías","taparía","taparíamos","taparíais","taparían","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Presente perfecto","Present Perfect","I have covered","he tapado","has tapado","ha tapado","hemos tapado","habéis tapado","han tapado","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have covered","habré tapado","habrás tapado","habrá tapado","habremos tapado","habréis tapado","habrán tapado","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had covered","había tapado","habías tapado","había tapado","habíamos tapado","habíais tapado","habían tapado","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had covered","hube tapado","hubiste tapado","hubo tapado","hubimos tapado","hubisteis tapado","hubieron tapado","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have covered","habría tapado","habrías tapado","habría tapado","habríamos tapado","habríais tapado","habrían tapado","tapando","covering","tapado","covered" +"tapemos" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Subjuntivo","Subjunctive","Presente","Present","I cover, am covering","tape","tapes","tape","tapemos","tapéis","tapen","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I covered, was covering","tapara","taparas","tapara","tapáramos","taparais","taparan","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Subjuntivo","Subjunctive","Futuro","Future","I will cover","tapare","tapares","tapare","tapáremos","tapareis","taparen","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have covered, covered","haya tapado","hayas tapado","haya tapado","hayamos tapado","hayáis tapado","hayan tapado","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have covered","hubiere tapado","hubieres tapado","hubiere tapado","hubiéremos tapado","hubiereis tapado","hubieren tapado","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had covered","hubiera tapado","hubieras tapado","hubiera tapado","hubiéramos tapado","hubierais tapado","hubieran tapado","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cover! Don't cover!","","tapa","tape","tapemos","tapad","tapen","tapando","covering","tapado","covered" +"tapar","to cover; to put the lid on, put the cap on, put the stopper in","Imperativo Negativo","Imperative Negative","Presente","Present","Cover! Don't cover!","","no tapes","no tape","no tapemos","no tapéis","no tapen","tapando","covering","tapado","covered" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Presente","Present","I delay, am delaying","tardo","tardas","tarda","tardamos","tardáis","tardan","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Futuro","Future","I will delay","tardaré","tardarás","tardará","tardaremos","tardaréis","tardarán","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Imperfecto","Imperfect","I was delaying, used to delay, delayed","tardaba","tardabas","tardaba","tardábamos","tardabais","tardaban","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Pretérito","Preterite","I delayed","tardé","tardaste","tardó","tardamos","tardasteis","tardaron","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Condicional","Conditional","I would delay","tardaría","tardarías","tardaría","tardaríamos","tardaríais","tardarían","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have delayed","he tardado","has tardado","ha tardado","hemos tardado","habéis tardado","han tardado","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have delayed","habré tardado","habrás tardado","habrá tardado","habremos tardado","habréis tardado","habrán tardado","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had delayed","había tardado","habías tardado","había tardado","habíamos tardado","habíais tardado","habían tardado","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had delayed","hube tardado","hubiste tardado","hubo tardado","hubimos tardado","hubisteis tardado","hubieron tardado","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have delayed","habría tardado","habrías tardado","habría tardado","habríamos tardado","habríais tardado","habrían tardado","tardando","delaying","tardado","delayed" +"tardemos" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Subjuntivo","Subjunctive","Presente","Present","I delay, am delaying","tarde","tardes","tarde","tardemos","tardéis","tarden","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I delayed, was delaying","tardara","tardaras","tardara","tardáramos","tardarais","tardaran","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Subjuntivo","Subjunctive","Futuro","Future","I will delay","tardare","tardares","tardare","tardáremos","tardareis","tardaren","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have delayed, delayed","haya tardado","hayas tardado","haya tardado","hayamos tardado","hayáis tardado","hayan tardado","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have delayed","hubiere tardado","hubieres tardado","hubiere tardado","hubiéremos tardado","hubiereis tardado","hubieren tardado","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had delayed","hubiera tardado","hubieras tardado","hubiera tardado","hubiéramos tardado","hubierais tardado","hubieran tardado","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Delay! Don't delay!","","tarda","tarde","tardemos","tardad","tarden","tardando","delaying","tardado","delayed" +"tardar","to delay, take a long time, be long, be slow [in doing something]","Imperativo Negativo","Imperative Negative","Presente","Present","Delay! Don't delay!","","no tardes","no tarde","no tardemos","no tardéis","no tarden","tardando","delaying","tardado","delayed" +"temer","to fear","Indicativo","Indicative","Presente","Present","I fear, am fearing","temo","temes","teme","tememos","teméis","temen","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Futuro","Future","I will fear","temeré","temerás","temerá","temeremos","temeréis","temerán","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Imperfecto","Imperfect","I was fearing, used to fear, feared","temía","temías","temía","temíamos","temíais","temían","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Pretérito","Preterite","I feared","temí","temiste","temió","temimos","temisteis","temieron","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Condicional","Conditional","I would fear","temería","temerías","temería","temeríamos","temeríais","temerían","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Presente perfecto","Present Perfect","I have feared","he temido","has temido","ha temido","hemos temido","habéis temido","han temido","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have feared","habré temido","habrás temido","habrá temido","habremos temido","habréis temido","habrán temido","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had feared","había temido","habías temido","había temido","habíamos temido","habíais temido","habían temido","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had feared","hube temido","hubiste temido","hubo temido","hubimos temido","hubisteis temido","hubieron temido","temiendo","fearing","temido","feared" +"temer","to fear","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have feared","habría temido","habrías temido","habría temido","habríamos temido","habríais temido","habrían temido","temiendo","fearing","temido","feared" +"temamos" +"temer","to fear","Subjuntivo","Subjunctive","Presente","Present","I fear, am fearing","tema","temas","tema","temamos","temáis","teman","temiendo","fearing","temido","feared" +"temer","to fear","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I feared, was fearing","temiera","temieras","temiera","temiéramos","temierais","temieran","temiendo","fearing","temido","feared" +"temer","to fear","Subjuntivo","Subjunctive","Futuro","Future","I will fear","temiere","temieres","temiere","temiéremos","temiereis","temieren","temiendo","fearing","temido","feared" +"temer","to fear","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have feared, feared","haya temido","hayas temido","haya temido","hayamos temido","hayáis temido","hayan temido","temiendo","fearing","temido","feared" +"temer","to fear","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have feared","hubiere temido","hubieres temido","hubiere temido","hubiéremos temido","hubiereis temido","hubieren temido","temiendo","fearing","temido","feared" +"temer","to fear","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had feared","hubiera temido","hubieras temido","hubiera temido","hubiéramos temido","hubierais temido","hubieran temido","temiendo","fearing","temido","feared" +"temer","to fear","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fear! Don't fear!","","teme","tema","temamos","temed","teman","temiendo","fearing","temido","feared" +"temer","to fear","Imperativo Negativo","Imperative Negative","Presente","Present","Fear! Don't fear!","","no temas","no tema","no temamos","no temáis","no teman","temiendo","fearing","temido","feared" +"tener","to have","Indicativo","Indicative","Presente","Present","I have, am having","tengo","tienes","tiene","tenemos","tenéis","tienen","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Futuro","Future","I will have","tendré","tendrás","tendrá","tendremos","tendréis","tendrán","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Imperfecto","Imperfect","I was having, used to have, had","tenía","tenías","tenía","teníamos","teníais","tenían","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Pretérito","Preterite","I had","tuve","tuviste","tuvo","tuvimos","tuvisteis","tuvieron","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Condicional","Conditional","I would have","tendría","tendrías","tendría","tendríamos","tendríais","tendrían","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Presente perfecto","Present Perfect","I have had","he tenido","has tenido","ha tenido","hemos tenido","habéis tenido","han tenido","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have had","habré tenido","habrás tenido","habrá tenido","habremos tenido","habréis tenido","habrán tenido","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had had","había tenido","habías tenido","había tenido","habíamos tenido","habíais tenido","habían tenido","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had had","hube tenido","hubiste tenido","hubo tenido","hubimos tenido","hubisteis tenido","hubieron tenido","teniendo","having","tenido","had" +"tener","to have","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have had","habría tenido","habrías tenido","habría tenido","habríamos tenido","habríais tenido","habrían tenido","teniendo","having","tenido","had" +"tengamos" +"tener","to have","Subjuntivo","Subjunctive","Presente","Present","I have, am having","tenga","tengas","tenga","tengamos","tengáis","tengan","teniendo","having","tenido","had" +"tener","to have","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I had, was having","tuviera","tuvieras","tuviera","tuviéramos","tuvierais","tuvieran","teniendo","having","tenido","had" +"tener","to have","Subjuntivo","Subjunctive","Futuro","Future","I will have","tuviere","tuvieres","tuviere","tuviéremos","tuviereis","tuvieren","teniendo","having","tenido","had" +"tener","to have","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have had, had","haya tenido","hayas tenido","haya tenido","hayamos tenido","hayáis tenido","hayan tenido","teniendo","having","tenido","had" +"tener","to have","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have had","hubiere tenido","hubieres tenido","hubiere tenido","hubiéremos tenido","hubiereis tenido","hubieren tenido","teniendo","having","tenido","had" +"tener","to have","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had had","hubiera tenido","hubieras tenido","hubiera tenido","hubiéramos tenido","hubierais tenido","hubieran tenido","teniendo","having","tenido","had" +"tener","to have","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Have! Don't have!","","ten","tenga","tengamos","tened","tengan","teniendo","having","tenido","had" +"tener","to have","Imperativo Negativo","Imperative Negative","Presente","Present","Have! Don't have!","","no tengas","no tenga","no tengamos","no tengáis","no tengan","teniendo","having","tenido","had" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Presente","Present","I dye, am dyeing","tiño","tiñes","tiñe","teñimos","teñís","tiñen","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Futuro","Future","I will dye","teñiré","teñirás","teñirá","teñiremos","teñiréis","teñirán","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Imperfecto","Imperfect","I was dyeing, used to dye, dyed","teñía","teñías","teñía","teñíamos","teñíais","teñían","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Pretérito","Preterite","I dyed","teñí","teñiste","tiñó","teñimos","teñisteis","tiñeron","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Condicional","Conditional","I would dye","teñiría","teñirías","teñiría","teñiríamos","teñiríais","teñirían","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dyed","he teñido","has teñido","ha teñido","hemos teñido","habéis teñido","han teñido","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dyed","habré teñido","habrás teñido","habrá teñido","habremos teñido","habréis teñido","habrán teñido","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dyed","había teñido","habías teñido","había teñido","habíamos teñido","habíais teñido","habían teñido","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dyed","hube teñido","hubiste teñido","hubo teñido","hubimos teñido","hubisteis teñido","hubieron teñido","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dyed","habría teñido","habrías teñido","habría teñido","habríamos teñido","habríais teñido","habrían teñido","tiñendo","dyeing","teñido","dyed" +"tiñamos" +"teñir","to dye, tint, tinge, color, stain","Subjuntivo","Subjunctive","Presente","Present","I dye, am dyeing","tiña","tiñas","tiña","tiñamos","tiñáis","tiñan","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dyed, was dyeing","tiñera","tiñeras","tiñera","tiñéramos","tiñerais","tiñeran","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Subjuntivo","Subjunctive","Futuro","Future","I will dye","tiñere","tiñeres","tiñere","tiñéremos","tiñereis","tiñeren","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dyed, dyed","haya teñido","hayas teñido","haya teñido","hayamos teñido","hayáis teñido","hayan teñido","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dyed","hubiere teñido","hubieres teñido","hubiere teñido","hubiéremos teñido","hubiereis teñido","hubieren teñido","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dyed","hubiera teñido","hubieras teñido","hubiera teñido","hubiéramos teñido","hubierais teñido","hubieran teñido","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dye! Don't dye!","","tiñe","tiña","tiñamos","teñid","tiñan","tiñendo","dyeing","teñido","dyed" +"teñir","to dye, tint, tinge, color, stain","Imperativo Negativo","Imperative Negative","Presente","Present","Dye! Don't dye!","","no tiñas","no tiña","no tiñamos","no tiñáis","no tiñan","tiñendo","dyeing","teñido","dyed" +"terminar","to finish, end","Indicativo","Indicative","Presente","Present","I finish, am finishing","termino","terminas","termina","terminamos","termináis","terminan","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Futuro","Future","I will finish","terminaré","terminarás","terminará","terminaremos","terminaréis","terminarán","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Imperfecto","Imperfect","I was finishing, used to finish, finished","terminaba","terminabas","terminaba","terminábamos","terminabais","terminaban","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Pretérito","Preterite","I finished","terminé","terminaste","terminó","terminamos","terminasteis","terminaron","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Condicional","Conditional","I would finish","terminaría","terminarías","terminaría","terminaríamos","terminaríais","terminarían","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Presente perfecto","Present Perfect","I have finished","he terminado","has terminado","ha terminado","hemos terminado","habéis terminado","han terminado","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have finished","habré terminado","habrás terminado","habrá terminado","habremos terminado","habréis terminado","habrán terminado","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had finished","había terminado","habías terminado","había terminado","habíamos terminado","habíais terminado","habían terminado","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had finished","hube terminado","hubiste terminado","hubo terminado","hubimos terminado","hubisteis terminado","hubieron terminado","terminando","finishing","terminado","finished" +"terminar","to finish, end","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have finished","habría terminado","habrías terminado","habría terminado","habríamos terminado","habríais terminado","habrían terminado","terminando","finishing","terminado","finished" +"terminemos" +"terminar","to finish, end","Subjuntivo","Subjunctive","Presente","Present","I finish, am finishing","termine","termines","termine","terminemos","terminéis","terminen","terminando","finishing","terminado","finished" +"terminar","to finish, end","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I finished, was finishing","terminara","terminaras","terminara","termináramos","terminarais","terminaran","terminando","finishing","terminado","finished" +"terminar","to finish, end","Subjuntivo","Subjunctive","Futuro","Future","I will finish","terminare","terminares","terminare","termináremos","terminareis","terminaren","terminando","finishing","terminado","finished" +"terminar","to finish, end","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have finished, finished","haya terminado","hayas terminado","haya terminado","hayamos terminado","hayáis terminado","hayan terminado","terminando","finishing","terminado","finished" +"terminar","to finish, end","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have finished","hubiere terminado","hubieres terminado","hubiere terminado","hubiéremos terminado","hubiereis terminado","hubieren terminado","terminando","finishing","terminado","finished" +"terminar","to finish, end","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had finished","hubiera terminado","hubieras terminado","hubiera terminado","hubiéramos terminado","hubierais terminado","hubieran terminado","terminando","finishing","terminado","finished" +"terminar","to finish, end","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Finish! Don't finish!","","termina","termine","terminemos","terminad","terminen","terminando","finishing","terminado","finished" +"terminar","to finish, end","Imperativo Negativo","Imperative Negative","Presente","Present","Finish! Don't finish!","","no termines","no termine","no terminemos","no terminéis","no terminen","terminando","finishing","terminado","finished" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Presente","Present","I throw, am throwing","tiro","tiras","tira","tiramos","tiráis","tiran","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Futuro","Future","I will throw","tiraré","tirarás","tirará","tiraremos","tiraréis","tirarán","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Imperfecto","Imperfect","I was throwing, used to throw, threw","tiraba","tirabas","tiraba","tirábamos","tirabais","tiraban","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Pretérito","Preterite","I threw","tiré","tiraste","tiró","tiramos","tirasteis","tiraron","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Condicional","Conditional","I would throw","tiraría","tirarías","tiraría","tiraríamos","tiraríais","tirarían","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Presente perfecto","Present Perfect","I have thrown","he tirado","has tirado","ha tirado","hemos tirado","habéis tirado","han tirado","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have thrown","habré tirado","habrás tirado","habrá tirado","habremos tirado","habréis tirado","habrán tirado","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had thrown","había tirado","habías tirado","había tirado","habíamos tirado","habíais tirado","habían tirado","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had thrown","hube tirado","hubiste tirado","hubo tirado","hubimos tirado","hubisteis tirado","hubieron tirado","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have thrown","habría tirado","habrías tirado","habría tirado","habríamos tirado","habríais tirado","habrían tirado","tirando","throwing","tirado","thrown" +"tiremos" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Subjuntivo","Subjunctive","Presente","Present","I throw, am throwing","tire","tires","tire","tiremos","tiréis","tiren","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I threw, was throwing","tirara","tiraras","tirara","tiráramos","tirarais","tiraran","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Subjuntivo","Subjunctive","Futuro","Future","I will throw","tirare","tirares","tirare","tiráremos","tirareis","tiraren","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have thrown, threw","haya tirado","hayas tirado","haya tirado","hayamos tirado","hayáis tirado","hayan tirado","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have thrown","hubiere tirado","hubieres tirado","hubiere tirado","hubiéremos tirado","hubiereis tirado","hubieren tirado","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had thrown","hubiera tirado","hubieras tirado","hubiera tirado","hubiéramos tirado","hubierais tirado","hubieran tirado","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Throw! Don't throw!","","tira","tire","tiremos","tirad","tiren","tirando","throwing","tirado","thrown" +"tirar","to throw, hurl; to shoot, fire; to throw away; to pull [out]","Imperativo Negativo","Imperative Negative","Presente","Present","Throw! Don't throw!","","no tires","no tire","no tiremos","no tiréis","no tiren","tirando","throwing","tirado","thrown" +"tocar","to touch; to play","Indicativo","Indicative","Presente","Present","I touch, am touching","toco","tocas","toca","tocamos","tocáis","tocan","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Futuro","Future","I will touch","tocaré","tocarás","tocará","tocaremos","tocaréis","tocarán","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Imperfecto","Imperfect","I was touching, used to touch, touched","tocaba","tocabas","tocaba","tocábamos","tocabais","tocaban","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Pretérito","Preterite","I touched","toqué","tocaste","tocó","tocamos","tocasteis","tocaron","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Condicional","Conditional","I would touch","tocaría","tocarías","tocaría","tocaríamos","tocaríais","tocarían","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Presente perfecto","Present Perfect","I have touched","he tocado","has tocado","ha tocado","hemos tocado","habéis tocado","han tocado","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have touched","habré tocado","habrás tocado","habrá tocado","habremos tocado","habréis tocado","habrán tocado","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had touched","había tocado","habías tocado","había tocado","habíamos tocado","habíais tocado","habían tocado","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had touched","hube tocado","hubiste tocado","hubo tocado","hubimos tocado","hubisteis tocado","hubieron tocado","tocando","touching","tocado","touched" +"tocar","to touch; to play","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have touched","habría tocado","habrías tocado","habría tocado","habríamos tocado","habríais tocado","habrían tocado","tocando","touching","tocado","touched" +"toquemos" +"tocar","to touch; to play","Subjuntivo","Subjunctive","Presente","Present","I touch, am touching","toque","toques","toque","toquemos","toquéis","toquen","tocando","touching","tocado","touched" +"tocar","to touch; to play","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I touched, was touching","tocara","tocaras","tocara","tocáramos","tocarais","tocaran","tocando","touching","tocado","touched" +"tocar","to touch; to play","Subjuntivo","Subjunctive","Futuro","Future","I will touch","tocare","tocares","tocare","tocáremos","tocareis","tocaren","tocando","touching","tocado","touched" +"tocar","to touch; to play","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have touched, touched","haya tocado","hayas tocado","haya tocado","hayamos tocado","hayáis tocado","hayan tocado","tocando","touching","tocado","touched" +"tocar","to touch; to play","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have touched","hubiere tocado","hubieres tocado","hubiere tocado","hubiéremos tocado","hubiereis tocado","hubieren tocado","tocando","touching","tocado","touched" +"tocar","to touch; to play","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had touched","hubiera tocado","hubieras tocado","hubiera tocado","hubiéramos tocado","hubierais tocado","hubieran tocado","tocando","touching","tocado","touched" +"tocar","to touch; to play","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Touch! Don't touch!","","toca","toque","toquemos","tocad","toquen","tocando","touching","tocado","touched" +"tocar","to touch; to play","Imperativo Negativo","Imperative Negative","Presente","Present","Touch! Don't touch!","","no toques","no toque","no toquemos","no toquéis","no toquen","tocando","touching","tocado","touched" +"tomar","to take, drink","Indicativo","Indicative","Presente","Present","I take, am taking","tomo","tomas","toma","tomamos","tomáis","toman","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Futuro","Future","I will take","tomaré","tomarás","tomará","tomaremos","tomaréis","tomarán","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Imperfecto","Imperfect","I was taking, used to take, took","tomaba","tomabas","tomaba","tomábamos","tomabais","tomaban","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Pretérito","Preterite","I took","tomé","tomaste","tomó","tomamos","tomasteis","tomaron","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Condicional","Conditional","I would take","tomaría","tomarías","tomaría","tomaríamos","tomaríais","tomarían","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Presente perfecto","Present Perfect","I have taken","he tomado","has tomado","ha tomado","hemos tomado","habéis tomado","han tomado","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have taken","habré tomado","habrás tomado","habrá tomado","habremos tomado","habréis tomado","habrán tomado","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had taken","había tomado","habías tomado","había tomado","habíamos tomado","habíais tomado","habían tomado","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had taken","hube tomado","hubiste tomado","hubo tomado","hubimos tomado","hubisteis tomado","hubieron tomado","tomando","taking","tomado","taken" +"tomar","to take, drink","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have taken","habría tomado","habrías tomado","habría tomado","habríamos tomado","habríais tomado","habrían tomado","tomando","taking","tomado","taken" +"tomemos" +"tomar","to take, drink","Subjuntivo","Subjunctive","Presente","Present","I take, am taking","tome","tomes","tome","tomemos","toméis","tomen","tomando","taking","tomado","taken" +"tomar","to take, drink","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I took, was taking","tomara","tomaras","tomara","tomáramos","tomarais","tomaran","tomando","taking","tomado","taken" +"tomar","to take, drink","Subjuntivo","Subjunctive","Futuro","Future","I will take","tomare","tomares","tomare","tomáremos","tomareis","tomaren","tomando","taking","tomado","taken" +"tomar","to take, drink","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have taken, took","haya tomado","hayas tomado","haya tomado","hayamos tomado","hayáis tomado","hayan tomado","tomando","taking","tomado","taken" +"tomar","to take, drink","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have taken","hubiere tomado","hubieres tomado","hubiere tomado","hubiéremos tomado","hubiereis tomado","hubieren tomado","tomando","taking","tomado","taken" +"tomar","to take, drink","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had taken","hubiera tomado","hubieras tomado","hubiera tomado","hubiéramos tomado","hubierais tomado","hubieran tomado","tomando","taking","tomado","taken" +"tomar","to take, drink","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Take! Don't take!","","toma","tome","tomemos","tomad","tomen","tomando","taking","tomado","taken" +"tomar","to take, drink","Imperativo Negativo","Imperative Negative","Presente","Present","Take! Don't take!","","no tomes","no tome","no tomemos","no toméis","no tomen","tomando","taking","tomado","taken" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Presente","Present","I twist, am twisting","tuerzo","tuerces","tuerce","torcemos","torcéis","tuercen","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Futuro","Future","I will twist","torceré","torcerás","torcerá","torceremos","torceréis","torcerán","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Imperfecto","Imperfect","I was twisting, used to twist, twisted","torcía","torcías","torcía","torcíamos","torcíais","torcían","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Pretérito","Preterite","I twisted","torcí","torciste","torció","torcimos","torcisteis","torcieron","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Condicional","Conditional","I would twist","torcería","torcerías","torcería","torceríamos","torceríais","torcerían","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Presente perfecto","Present Perfect","I have twisted","he torcido","has torcido","ha torcido","hemos torcido","habéis torcido","han torcido","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have twisted","habré torcido","habrás torcido","habrá torcido","habremos torcido","habréis torcido","habrán torcido","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had twisted","había torcido","habías torcido","había torcido","habíamos torcido","habíais torcido","habían torcido","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had twisted","hube torcido","hubiste torcido","hubo torcido","hubimos torcido","hubisteis torcido","hubieron torcido","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have twisted","habría torcido","habrías torcido","habría torcido","habríamos torcido","habríais torcido","habrían torcido","torciendo","twisting","torcido","twisted" +"torzamos" +"torcer","to twist, bend, warp, wring, sprain","Subjuntivo","Subjunctive","Presente","Present","I twist, am twisting","tuerza","tuerzas","tuerza","torzamos","torzáis","tuerzan","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I twisted, was twisting","torciera","torcieras","torciera","torciéramos","torcierais","torcieran","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Subjuntivo","Subjunctive","Futuro","Future","I will twist","torciere","torcieres","torciere","torciéremos","torciereis","torcieren","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have twisted, twisted","haya torcido","hayas torcido","haya torcido","hayamos torcido","hayáis torcido","hayan torcido","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have twisted","hubiere torcido","hubieres torcido","hubiere torcido","hubiéremos torcido","hubiereis torcido","hubieren torcido","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had twisted","hubiera torcido","hubieras torcido","hubiera torcido","hubiéramos torcido","hubierais torcido","hubieran torcido","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Twist! Don't twist!","","tuerce","tuerza","torzamos","torced","tuerzan","torciendo","twisting","torcido","twisted" +"torcer","to twist, bend, warp, wring, sprain","Imperativo Negativo","Imperative Negative","Presente","Present","Twist! Don't twist!","","no tuerzas","no tuerza","no torzamos","no torzáis","no tuerzan","torciendo","twisting","torcido","twisted" +"toser","to cough","Indicativo","Indicative","Presente","Present","I cough, am coughing","toso","toses","tose","tosemos","toséis","tosen","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Futuro","Future","I will cough","toseré","toserás","toserá","toseremos","toseréis","toserán","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Imperfecto","Imperfect","I was coughing, used to cough, coughed","tosía","tosías","tosía","tosíamos","tosíais","tosían","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Pretérito","Preterite","I coughed","tosí","tosiste","tosió","tosimos","tosisteis","tosieron","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Condicional","Conditional","I would cough","tosería","toserías","tosería","toseríamos","toseríais","toserían","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Presente perfecto","Present Perfect","I have coughed","he tosido","has tosido","ha tosido","hemos tosido","habéis tosido","han tosido","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have coughed","habré tosido","habrás tosido","habrá tosido","habremos tosido","habréis tosido","habrán tosido","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had coughed","había tosido","habías tosido","había tosido","habíamos tosido","habíais tosido","habían tosido","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had coughed","hube tosido","hubiste tosido","hubo tosido","hubimos tosido","hubisteis tosido","hubieron tosido","tosiendo","coughing","tosido","coughed" +"toser","to cough","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have coughed","habría tosido","habrías tosido","habría tosido","habríamos tosido","habríais tosido","habrían tosido","tosiendo","coughing","tosido","coughed" +"tosamos" +"toser","to cough","Subjuntivo","Subjunctive","Presente","Present","I cough, am coughing","tosa","tosas","tosa","tosamos","tosáis","tosan","tosiendo","coughing","tosido","coughed" +"toser","to cough","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I coughed, was coughing","tosiera","tosieras","tosiera","tosiéramos","tosierais","tosieran","tosiendo","coughing","tosido","coughed" +"toser","to cough","Subjuntivo","Subjunctive","Futuro","Future","I will cough","tosiere","tosieres","tosiere","tosiéremos","tosiereis","tosieren","tosiendo","coughing","tosido","coughed" +"toser","to cough","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have coughed, coughed","haya tosido","hayas tosido","haya tosido","hayamos tosido","hayáis tosido","hayan tosido","tosiendo","coughing","tosido","coughed" +"toser","to cough","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have coughed","hubiere tosido","hubieres tosido","hubiere tosido","hubiéremos tosido","hubiereis tosido","hubieren tosido","tosiendo","coughing","tosido","coughed" +"toser","to cough","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had coughed","hubiera tosido","hubieras tosido","hubiera tosido","hubiéramos tosido","hubierais tosido","hubieran tosido","tosiendo","coughing","tosido","coughed" +"toser","to cough","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Cough! Don't cough!","","tose","tosa","tosamos","tosed","tosan","tosiendo","coughing","tosido","coughed" +"toser","to cough","Imperativo Negativo","Imperative Negative","Presente","Present","Cough! Don't cough!","","no tosas","no tosa","no tosamos","no tosáis","no tosan","tosiendo","coughing","tosido","coughed" +"trabajar","to work","Indicativo","Indicative","Presente","Present","I work, am working","trabajo","trabajas","trabaja","trabajamos","trabajáis","trabajan","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Futuro","Future","I will work","trabajaré","trabajarás","trabajará","trabajaremos","trabajaréis","trabajarán","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Imperfecto","Imperfect","I was working, used to work, worked","trabajaba","trabajabas","trabajaba","trabajábamos","trabajabais","trabajaban","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Pretérito","Preterite","I worked","trabajé","trabajaste","trabajó","trabajamos","trabajasteis","trabajaron","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Condicional","Conditional","I would work","trabajaría","trabajarías","trabajaría","trabajaríamos","trabajaríais","trabajarían","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Presente perfecto","Present Perfect","I have worked","he trabajado","has trabajado","ha trabajado","hemos trabajado","habéis trabajado","han trabajado","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have worked","habré trabajado","habrás trabajado","habrá trabajado","habremos trabajado","habréis trabajado","habrán trabajado","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had worked","había trabajado","habías trabajado","había trabajado","habíamos trabajado","habíais trabajado","habían trabajado","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had worked","hube trabajado","hubiste trabajado","hubo trabajado","hubimos trabajado","hubisteis trabajado","hubieron trabajado","trabajando","working","trabajado","worked" +"trabajar","to work","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have worked","habría trabajado","habrías trabajado","habría trabajado","habríamos trabajado","habríais trabajado","habrían trabajado","trabajando","working","trabajado","worked" +"trabajemos" +"trabajar","to work","Subjuntivo","Subjunctive","Presente","Present","I work, am working","trabaje","trabajes","trabaje","trabajemos","trabajéis","trabajen","trabajando","working","trabajado","worked" +"trabajar","to work","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I worked, was working","trabajara","trabajaras","trabajara","trabajáramos","trabajarais","trabajaran","trabajando","working","trabajado","worked" +"trabajar","to work","Subjuntivo","Subjunctive","Futuro","Future","I will work","trabajare","trabajares","trabajare","trabajáremos","trabajareis","trabajaren","trabajando","working","trabajado","worked" +"trabajar","to work","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have worked, worked","haya trabajado","hayas trabajado","haya trabajado","hayamos trabajado","hayáis trabajado","hayan trabajado","trabajando","working","trabajado","worked" +"trabajar","to work","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have worked","hubiere trabajado","hubieres trabajado","hubiere trabajado","hubiéremos trabajado","hubiereis trabajado","hubieren trabajado","trabajando","working","trabajado","worked" +"trabajar","to work","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had worked","hubiera trabajado","hubieras trabajado","hubiera trabajado","hubiéramos trabajado","hubierais trabajado","hubieran trabajado","trabajando","working","trabajado","worked" +"trabajar","to work","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Work! Don't work!","","trabaja","trabaje","trabajemos","trabajad","trabajen","trabajando","working","trabajado","worked" +"trabajar","to work","Imperativo Negativo","Imperative Negative","Presente","Present","Work! Don't work!","","no trabajes","no trabaje","no trabajemos","no trabajéis","no trabajen","trabajando","working","trabajado","worked" +"traducir","to translate","Indicativo","Indicative","Presente","Present","I translate, am translating","traduzco","traduces","traduce","traducimos","traducís","traducen","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Futuro","Future","I will translate","traduciré","traducirás","traducirá","traduciremos","traduciréis","traducirán","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Imperfecto","Imperfect","I was translating, used to translate, translated","traducía","traducías","traducía","traducíamos","traducíais","traducían","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Pretérito","Preterite","I translated","traduje","tradujiste","tradujo","tradujimos","tradujisteis","tradujeron","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Condicional","Conditional","I would translate","traduciría","traducirías","traduciría","traduciríamos","traduciríais","traducirían","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Presente perfecto","Present Perfect","I have translated","he traducido","has traducido","ha traducido","hemos traducido","habéis traducido","han traducido","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have translated","habré traducido","habrás traducido","habrá traducido","habremos traducido","habréis traducido","habrán traducido","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had translated","había traducido","habías traducido","había traducido","habíamos traducido","habíais traducido","habían traducido","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had translated","hube traducido","hubiste traducido","hubo traducido","hubimos traducido","hubisteis traducido","hubieron traducido","traduciendo","translating","traducido","translated" +"traducir","to translate","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have translated","habría traducido","habrías traducido","habría traducido","habríamos traducido","habríais traducido","habrían traducido","traduciendo","translating","traducido","translated" +"traduzcamos" +"traducir","to translate","Subjuntivo","Subjunctive","Presente","Present","I translate, am translating","traduzca","traduzcas","traduzca","traduzcamos","traduzcáis","traduzcan","traduciendo","translating","traducido","translated" +"traducir","to translate","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was translating, translated","tradujera","tradujeras","tradujera","tradujéramos","tradujerais","tradujeran","traduciendo","translating","traducido","translated" +"traducir","to translate","Subjuntivo","Subjunctive","Futuro","Future","I will translate","tradujere","tradujeres","tradujere","tradujéremos","tradujereis","tradujeren","traduciendo","translating","traducido","translated" +"traducir","to translate","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have translated, translated","haya traducido","hayas traducido","haya traducido","hayamos traducido","hayáis traducido","hayan traducido","traduciendo","translating","traducido","translated" +"traducir","to translate","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have translated","hubiere traducido","hubieres traducido","hubiere traducido","hubiéremos traducido","hubiereis traducido","hubieren traducido","traduciendo","translating","traducido","translated" +"traducir","to translate","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had translated","hubiera traducido","hubieras traducido","hubiera traducido","hubiéramos traducido","hubierais traducido","hubieran traducido","traduciendo","translating","traducido","translated" +"traducir","to translate","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Translate!, Don't translate!","","traduce","traduzca","traduzcamos","traducid","traduzcan","traduciendo","translating","traducido","translated" +"traducir","to translate","Imperativo Negativo","Imperative Negative","Presente","Present","Translate!, Don't translate!","","no traduzcas","no traduzca","no traduzcamos","no traduzcáis","no traduzcan","traduciendo","translating","traducido","translated" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Presente","Present","I bring, am bringing","traigo","traes","trae","traemos","traéis","traen","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Futuro","Future","I will bring","traeré","traerás","traerá","traeremos","traeréis","traerán","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Imperfecto","Imperfect","I was bringing, used to bring, brought","traía","traías","traía","traíamos","traíais","traían","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Pretérito","Preterite","I brought","traje","trajiste","trajo","trajimos","trajisteis","trajeron","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Condicional","Conditional","I would bring","traería","traerías","traería","traeríamos","traeríais","traerían","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Presente perfecto","Present Perfect","I have brought","he traído","has traído","ha traído","hemos traído","habéis traído","han traído","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have brought","habré traído","habrás traído","habrá traído","habremos traído","habréis traído","habrán traído","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had brought","había traído","habías traído","había traído","habíamos traído","habíais traído","habían traído","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had brought","hube traído","hubiste traído","hubo traído","hubimos traído","hubisteis traído","hubieron traído","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have brought","habría traído","habrías traído","habría traído","habríamos traído","habríais traído","habrían traído","trayendo","bringing","traído","brought" +"traigamos" +"traer","to bring; to get, fetch; to carry","Subjuntivo","Subjunctive","Presente","Present","I bring, am bringing","traiga","traigas","traiga","traigamos","traigáis","traigan","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was bringing, brought","trajera","trajeras","trajera","trajéramos","trajerais","trajeran","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Subjuntivo","Subjunctive","Futuro","Future","I will bring","trajere","trajeres","trajere","trajéremos","trajereis","trajeren","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have brought, brought","haya traído","hayas traído","haya traído","hayamos traído","hayáis traído","hayan traído","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have brought","hubiere traído","hubieres traído","hubiere traído","hubiéremos traído","hubiereis traído","hubieren traído","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had brought","hubiera traído","hubieras traído","hubiera traído","hubiéramos traído","hubierais traído","hubieran traído","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Bring!, Don't bring!","","trae","traiga","traigamos","traed","traigan","trayendo","bringing","traído","brought" +"traer","to bring; to get, fetch; to carry","Imperativo Negativo","Imperative Negative","Presente","Present","Bring!, Don't bring!","","no traigas","no traiga","no traigamos","no traigáis","no traigan","trayendo","bringing","traído","brought" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Presente","Present","I swallow, am swallowing","trago","tragas","traga","tragamos","tragáis","tragan","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Futuro","Future","I will swallow","tragaré","tragarás","tragará","tragaremos","tragaréis","tragarán","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Imperfecto","Imperfect","I was swallowing, used to swallow, swallowed","tragaba","tragabas","tragaba","tragábamos","tragabais","tragaban","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Pretérito","Preterite","I swallowed","tragué","tragaste","tragó","tragamos","tragasteis","tragaron","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Condicional","Conditional","I would swallow","tragaría","tragarías","tragaría","tragaríamos","tragaríais","tragarían","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Presente perfecto","Present Perfect","I have swallowed","he tragado","has tragado","ha tragado","hemos tragado","habéis tragado","han tragado","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have swallowed","habré tragado","habrás tragado","habrá tragado","habremos tragado","habréis tragado","habrán tragado","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had swallowed","había tragado","habías tragado","había tragado","habíamos tragado","habíais tragado","habían tragado","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had swallowed","hube tragado","hubiste tragado","hubo tragado","hubimos tragado","hubisteis tragado","hubieron tragado","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have swallowed","habría tragado","habrías tragado","habría tragado","habríamos tragado","habríais tragado","habrían tragado","tragando","swallowing","tragado","swallowed" +"traguemos" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Subjuntivo","Subjunctive","Presente","Present","I swallow, am swallowing","trague","tragues","trague","traguemos","traguéis","traguen","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I swallowed, was swallowing","tragara","tragaras","tragara","tragáramos","tragarais","tragaran","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Subjuntivo","Subjunctive","Futuro","Future","I will swallow","tragare","tragares","tragare","tragáremos","tragareis","tragaren","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have swallowed, swallowed","haya tragado","hayas tragado","haya tragado","hayamos tragado","hayáis tragado","hayan tragado","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have swallowed","hubiere tragado","hubieres tragado","hubiere tragado","hubiéremos tragado","hubiereis tragado","hubieren tragado","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had swallowed","hubiera tragado","hubieras tragado","hubiera tragado","hubiéramos tragado","hubierais tragado","hubieran tragado","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Swallow! Don't swallow!","","traga","trague","traguemos","tragad","traguen","tragando","swallowing","tragado","swallowed" +"tragar","to swallow, drink up, gulp down; to absorb, soak up; to put up with","Imperativo Negativo","Imperative Negative","Presente","Present","Swallow! Don't swallow!","","no tragues","no trague","no traguemos","no traguéis","no traguen","tragando","swallowing","tragado","swallowed" +"tratar","to treat, handle","Indicativo","Indicative","Presente","Present","I treat, am treating","trato","tratas","trata","tratamos","tratáis","tratan","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Futuro","Future","I will treat","trataré","tratarás","tratará","trataremos","trataréis","tratarán","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Imperfecto","Imperfect","I was treating, used to treat, treated","trataba","tratabas","trataba","tratábamos","tratabais","trataban","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Pretérito","Preterite","I treated","traté","trataste","trató","tratamos","tratasteis","trataron","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Condicional","Conditional","I would treat","trataría","tratarías","trataría","trataríamos","trataríais","tratarían","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Presente perfecto","Present Perfect","I have treated","he tratado","has tratado","ha tratado","hemos tratado","habéis tratado","han tratado","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have treated","habré tratado","habrás tratado","habrá tratado","habremos tratado","habréis tratado","habrán tratado","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had treated","había tratado","habías tratado","había tratado","habíamos tratado","habíais tratado","habían tratado","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had treated","hube tratado","hubiste tratado","hubo tratado","hubimos tratado","hubisteis tratado","hubieron tratado","tratando","treating","tratado","treated" +"tratar","to treat, handle","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have treated","habría tratado","habrías tratado","habría tratado","habríamos tratado","habríais tratado","habrían tratado","tratando","treating","tratado","treated" +"tratemos" +"tratar","to treat, handle","Subjuntivo","Subjunctive","Presente","Present","I treat, am treating","trate","trates","trate","tratemos","tratéis","traten","tratando","treating","tratado","treated" +"tratar","to treat, handle","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I treated, was treating","tratara","trataras","tratara","tratáramos","tratarais","trataran","tratando","treating","tratado","treated" +"tratar","to treat, handle","Subjuntivo","Subjunctive","Futuro","Future","I will treat","tratare","tratares","tratare","tratáremos","tratareis","trataren","tratando","treating","tratado","treated" +"tratar","to treat, handle","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have treated, treated","haya tratado","hayas tratado","haya tratado","hayamos tratado","hayáis tratado","hayan tratado","tratando","treating","tratado","treated" +"tratar","to treat, handle","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have treated","hubiere tratado","hubieres tratado","hubiere tratado","hubiéremos tratado","hubiereis tratado","hubieren tratado","tratando","treating","tratado","treated" +"tratar","to treat, handle","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had treated","hubiera tratado","hubieras tratado","hubiera tratado","hubiéramos tratado","hubierais tratado","hubieran tratado","tratando","treating","tratado","treated" +"tratar","to treat, handle","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Treat! Don't treat!","","trata","trate","tratemos","tratad","traten","tratando","treating","tratado","treated" +"tratar","to treat, handle","Imperativo Negativo","Imperative Negative","Presente","Present","Treat! Don't treat!","","no trates","no trate","no tratemos","no tratéis","no traten","tratando","treating","tratado","treated" +"triunfar","to triumph, win","Indicativo","Indicative","Presente","Present","I triumph, am triumphing","triunfo","triunfas","triunfa","triunfamos","triunfáis","triunfan","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Futuro","Future","I will triumph","triunfaré","triunfarás","triunfará","triunfaremos","triunfaréis","triunfarán","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Imperfecto","Imperfect","I was triumphing, used to triumph, triumphed","triunfaba","triunfabas","triunfaba","triunfábamos","triunfabais","triunfaban","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Pretérito","Preterite","I triumphed","triunfé","triunfaste","triunfó","triunfamos","triunfasteis","triunfaron","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Condicional","Conditional","I would triumph","triunfaría","triunfarías","triunfaría","triunfaríamos","triunfaríais","triunfarían","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Presente perfecto","Present Perfect","I have triumphed","he triunfado","has triunfado","ha triunfado","hemos triunfado","habéis triunfado","han triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have triumphed","habré triunfado","habrás triunfado","habrá triunfado","habremos triunfado","habréis triunfado","habrán triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had triumphed","había triunfado","habías triunfado","había triunfado","habíamos triunfado","habíais triunfado","habían triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had triumphed","hube triunfado","hubiste triunfado","hubo triunfado","hubimos triunfado","hubisteis triunfado","hubieron triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have triumphed","habría triunfado","habrías triunfado","habría triunfado","habríamos triunfado","habríais triunfado","habrían triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfemos" +"triunfar","to triumph, win","Subjuntivo","Subjunctive","Presente","Present","I triumph, am triumphing","triunfe","triunfes","triunfe","triunfemos","triunféis","triunfen","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I triumphed, was triumphing","triunfara","triunfaras","triunfara","triunfáramos","triunfarais","triunfaran","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Subjuntivo","Subjunctive","Futuro","Future","I will triumph","triunfare","triunfares","triunfare","triunfáremos","triunfareis","triunfaren","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have triumphed, triumphed","haya triunfado","hayas triunfado","haya triunfado","hayamos triunfado","hayáis triunfado","hayan triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have triumphed","hubiere triunfado","hubieres triunfado","hubiere triunfado","hubiéremos triunfado","hubiereis triunfado","hubieren triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had triumphed","hubiera triunfado","hubieras triunfado","hubiera triunfado","hubiéramos triunfado","hubierais triunfado","hubieran triunfado","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Triumph! Don't triumph!","","triunfa","triunfe","triunfemos","triunfad","triunfen","triunfando","triumphing","triunfado","triumphed" +"triunfar","to triumph, win","Imperativo Negativo","Imperative Negative","Presente","Present","Triumph! Don't triumph!","","no triunfes","no triunfe","no triunfemos","no triunféis","no triunfen","triunfando","triumphing","triunfado","triumphed" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Presente","Present","I trip, am tripping","tropiezo","tropiezas","tropieza","tropezamos","tropezáis","tropiezan","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Futuro","Future","I will trip","tropezaré","tropezarás","tropezará","tropezaremos","tropezaréis","tropezarán","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Imperfecto","Imperfect","I was tripping, used to trip, tripped","tropezaba","tropezabas","tropezaba","tropezábamos","tropezabais","tropezaban","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Pretérito","Preterite","I tripped","tropecé","tropezaste","tropezó","tropezamos","tropezasteis","tropezaron","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Condicional","Conditional","I would trip","tropezaría","tropezarías","tropezaría","tropezaríamos","tropezaríais","tropezarían","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have tripped","he tropezado","has tropezado","ha tropezado","hemos tropezado","habéis tropezado","han tropezado","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have tripped","habré tropezado","habrás tropezado","habrá tropezado","habremos tropezado","habréis tropezado","habrán tropezado","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had tripped","había tropezado","habías tropezado","había tropezado","habíamos tropezado","habíais tropezado","habían tropezado","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had tripped","hube tropezado","hubiste tropezado","hubo tropezado","hubimos tropezado","hubisteis tropezado","hubieron tropezado","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have tripped","habría tropezado","habrías tropezado","habría tropezado","habríamos tropezado","habríais tropezado","habrían tropezado","tropezando","tripping","tropezado","tripped" +"tropecemos" +"tropezar","to trip, stumble, slip up","Subjuntivo","Subjunctive","Presente","Present","I trip, am tripping","tropiece","tropieces","tropiece","tropecemos","tropezéis","tropiecen","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I tripped, was tripping","tropezara","tropezaras","tropezara","tropezáramos","tropezarais","tropezaran","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Subjuntivo","Subjunctive","Futuro","Future","I will trip","tropezare","tropezares","tropezare","tropezáremos","tropezareis","tropezaren","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have tripped, tripped","haya tropezado","hayas tropezado","haya tropezado","hayamos tropezado","hayáis tropezado","hayan tropezado","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have tripped","hubiere tropezado","hubieres tropezado","hubiere tropezado","hubiéremos tropezado","hubiereis tropezado","hubieren tropezado","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had tripped","hubiera tropezado","hubieras tropezado","hubiera tropezado","hubiéramos tropezado","hubierais tropezado","hubieran tropezado","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Trip! Don't trip!","","tropieza","tropiece","tropecemos","tropezad","tropiecen","tropezando","tripping","tropezado","tripped" +"tropezar","to trip, stumble, slip up","Imperativo Negativo","Imperative Negative","Presente","Present","Trip! Don't trip!","","no tropieces","no tropiece","no tropecemos","no tropezéis","no tropiecen","tropezando","tripping","tropezado","tripped" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Presente","Present","I place, am placing","ubico","ubicas","ubica","ubicamos","ubicáis","ubican","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Futuro","Future","I will place","ubicaré","ubicarás","ubicará","ubicaremos","ubicaréis","ubicarán","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Imperfecto","Imperfect","I was placing, used to place, placed","ubicaba","ubicabas","ubicaba","ubicábamos","ubicabais","ubicaban","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Pretérito","Preterite","I placed","ubiqué","ubicaste","ubicó","ubicamos","ubicasteis","ubicaron","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Condicional","Conditional","I would place","ubicaría","ubicarías","ubicaría","ubicaríamos","ubicaríais","ubicarían","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Presente perfecto","Present Perfect","I have placed","he ubicado","has ubicado","ha ubicado","hemos ubicado","habéis ubicado","han ubicado","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have placed","habré ubicado","habrás ubicado","habrá ubicado","habremos ubicado","habréis ubicado","habrán ubicado","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had placed","había ubicado","habías ubicado","había ubicado","habíamos ubicado","habíais ubicado","habían ubicado","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had placed","hube ubicado","hubiste ubicado","hubo ubicado","hubimos ubicado","hubisteis ubicado","hubieron ubicado","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have placed","habría ubicado","habrías ubicado","habría ubicado","habríamos ubicado","habríais ubicado","habrían ubicado","ubicando","placing","ubicado","placed" +"ubiquemos" +"ubicar","to place, locate; to be located, be situated","Subjuntivo","Subjunctive","Presente","Present","I place, am placing","ubique","ubiques","ubique","ubiquemos","ubiquéis","ubiquen","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I placed, was placing","ubicara","ubicaras","ubicara","ubicáramos","ubicarais","ubicaran","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Subjuntivo","Subjunctive","Futuro","Future","I will place","ubicare","ubicares","ubicare","ubicáremos","ubicareis","ubicaren","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have placed, placed","haya ubicado","hayas ubicado","haya ubicado","hayamos ubicado","hayáis ubicado","hayan ubicado","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have placed","hubiere ubicado","hubieres ubicado","hubiere ubicado","hubiéremos ubicado","hubiereis ubicado","hubieren ubicado","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had placed","hubiera ubicado","hubieras ubicado","hubiera ubicado","hubiéramos ubicado","hubierais ubicado","hubieran ubicado","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Place! Don't place!","","ubica","ubique","ubiquemos","ubicad","ubiquen","ubicando","placing","ubicado","placed" +"ubicar","to place, locate; to be located, be situated","Imperativo Negativo","Imperative Negative","Presente","Present","Place! Don't place!","","no ubiques","no ubique","no ubiquemos","no ubiquéis","no ubiquen","ubicando","placing","ubicado","placed" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Presente","Present","I unite, am uniting","uno","unes","une","unimos","unís","unen","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Futuro","Future","I will unite","uniré","unirás","unirá","uniremos","uniréis","unirán","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Imperfecto","Imperfect","I was uniting, used to unite, united","unía","unías","unía","uníamos","uníais","unían","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Pretérito","Preterite","I united","uní","uniste","unió","unimos","unisteis","unieron","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Condicional","Conditional","I would unite","uniría","unirías","uniría","uniríamos","uniríais","unirían","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Presente perfecto","Present Perfect","I have united","he unido","has unido","ha unido","hemos unido","habéis unido","han unido","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have united","habré unido","habrás unido","habrá unido","habremos unido","habréis unido","habrán unido","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had united","había unido","habías unido","había unido","habíamos unido","habíais unido","habían unido","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had united","hube unido","hubiste unido","hubo unido","hubimos unido","hubisteis unido","hubieron unido","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have united","habría unido","habrías unido","habría unido","habríamos unido","habríais unido","habrían unido","uniendo","uniting","unido","united" +"unamos" +"unir","to unite, join; to tie together; to merge","Subjuntivo","Subjunctive","Presente","Present","I unite, am uniting","una","unas","una","unamos","unáis","unan","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I united, was uniting","uniera","unieras","uniera","uniéramos","unierais","unieran","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Subjuntivo","Subjunctive","Futuro","Future","I will unite","uniere","unieres","uniere","uniéremos","uniereis","unieren","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have united, united","haya unido","hayas unido","haya unido","hayamos unido","hayáis unido","hayan unido","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have united","hubiere unido","hubieres unido","hubiere unido","hubiéremos unido","hubiereis unido","hubieren unido","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had united","hubiera unido","hubieras unido","hubiera unido","hubiéramos unido","hubierais unido","hubieran unido","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Unite! Don't unite!","","une","una","unamos","unid","unan","uniendo","uniting","unido","united" +"unir","to unite, join; to tie together; to merge","Imperativo Negativo","Imperative Negative","Presente","Present","Unite! Don't unite!","","no unas","no una","no unamos","no unáis","no unan","uniendo","uniting","unido","united" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Presente","Present","I anoint, am anointing","unto","untas","unta","untamos","untáis","untan","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Futuro","Future","I will anoint","untaré","untarás","untará","untaremos","untaréis","untarán","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Imperfecto","Imperfect","I was anointing, used to anoint, anointed","untaba","untabas","untaba","untábamos","untabais","untaban","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Pretérito","Preterite","I anointed","unté","untaste","untó","untamos","untasteis","untaron","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Condicional","Conditional","I would anoint","untaría","untarías","untaría","untaríamos","untaríais","untarían","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Presente perfecto","Present Perfect","I have anointed","he untado","has untado","ha untado","hemos untado","habéis untado","han untado","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have anointed","habré untado","habrás untado","habrá untado","habremos untado","habréis untado","habrán untado","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had anointed","había untado","habías untado","había untado","habíamos untado","habíais untado","habían untado","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had anointed","hube untado","hubiste untado","hubo untado","hubimos untado","hubisteis untado","hubieron untado","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have anointed","habría untado","habrías untado","habría untado","habríamos untado","habríais untado","habrían untado","untando","anointing","untado","anointed" +"untemos" +"untar","to anoint; to smear, rub","Subjuntivo","Subjunctive","Presente","Present","I anoint, am anointing","unte","untes","unte","untemos","untéis","unten","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I anointed, was anointing","untara","untaras","untara","untáramos","untarais","untaran","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Subjuntivo","Subjunctive","Futuro","Future","I will anoint","untare","untares","untare","untáremos","untareis","untaren","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have anointed, anointed","haya untado","hayas untado","haya untado","hayamos untado","hayáis untado","hayan untado","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have anointed","hubiere untado","hubieres untado","hubiere untado","hubiéremos untado","hubiereis untado","hubieren untado","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had anointed","hubiera untado","hubieras untado","hubiera untado","hubiéramos untado","hubierais untado","hubieran untado","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Anoint! Don't anoint!","","unta","unte","untemos","untad","unten","untando","anointing","untado","anointed" +"untar","to anoint; to smear, rub","Imperativo Negativo","Imperative Negative","Presente","Present","Anoint! Don't anoint!","","no untes","no unte","no untemos","no untéis","no unten","untando","anointing","untado","anointed" +"usar","to use","Indicativo","Indicative","Presente","Present","I use, am using","uso","usas","usa","usamos","usáis","usan","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Futuro","Future","I will use","usaré","usarás","usará","usaremos","usaréis","usarán","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Imperfecto","Imperfect","I was using, used to use, used","usaba","usabas","usaba","usábamos","usabais","usaban","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Pretérito","Preterite","I used","usé","usaste","usó","usamos","usasteis","usaron","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Condicional","Conditional","I would use","usaría","usarías","usaría","usaríamos","usaríais","usarían","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Presente perfecto","Present Perfect","I have used","he usado","has usado","ha usado","hemos usado","habéis usado","han usado","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have used","habré usado","habrás usado","habrá usado","habremos usado","habréis usado","habrán usado","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had used","había usado","habías usado","había usado","habíamos usado","habíais usado","habían usado","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had used","hube usado","hubiste usado","hubo usado","hubimos usado","hubisteis usado","hubieron usado","usando","using","usado","used" +"usar","to use","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have used","habría usado","habrías usado","habría usado","habríamos usado","habríais usado","habrían usado","usando","using","usado","used" +"usemos" +"usar","to use","Subjuntivo","Subjunctive","Presente","Present","I use, am using","use","uses","use","usemos","uséis","usen","usando","using","usado","used" +"usar","to use","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I used, was using","usara","usaras","usara","usáramos","usarais","usaran","usando","using","usado","used" +"usar","to use","Subjuntivo","Subjunctive","Futuro","Future","I will use","usare","usares","usare","usáremos","usareis","usaren","usando","using","usado","used" +"usar","to use","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have used, used","haya usado","hayas usado","haya usado","hayamos usado","hayáis usado","hayan usado","usando","using","usado","used" +"usar","to use","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have used","hubiere usado","hubieres usado","hubiere usado","hubiéremos usado","hubiereis usado","hubieren usado","usando","using","usado","used" +"usar","to use","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had used","hubiera usado","hubieras usado","hubiera usado","hubiéramos usado","hubierais usado","hubieran usado","usando","using","usado","used" +"usar","to use","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Use! Don't use!","","usa","use","usemos","usad","usen","usando","using","usado","used" +"usar","to use","Imperativo Negativo","Imperative Negative","Presente","Present","Use! Don't use!","","no uses","no use","no usemos","no uséis","no usen","usando","using","usado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Presente","Present","I use, am using","utilizo","utilizas","utiliza","utilizamos","utilizáis","utilizan","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Futuro","Future","I will use","utilizaré","utilizarás","utilizará","utilizaremos","utilizaréis","utilizarán","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Imperfecto","Imperfect","I was using, used to use, used","utilizaba","utilizabas","utilizaba","utilizábamos","utilizabais","utilizaban","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Pretérito","Preterite","I used","utilicé","utilizaste","utilizó","utilizamos","utilizasteis","utilizaron","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Condicional","Conditional","I would use","utilizaría","utilizarías","utilizaría","utilizaríamos","utilizaríais","utilizarían","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Presente perfecto","Present Perfect","I have used","he utilizado","has utilizado","ha utilizado","hemos utilizado","habéis utilizado","han utilizado","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have used","habré utilizado","habrás utilizado","habrá utilizado","habremos utilizado","habréis utilizado","habrán utilizado","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had used","había utilizado","habías utilizado","había utilizado","habíamos utilizado","habíais utilizado","habían utilizado","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had used","hube utilizado","hubiste utilizado","hubo utilizado","hubimos utilizado","hubisteis utilizado","hubieron utilizado","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have used","habría utilizado","habrías utilizado","habría utilizado","habríamos utilizado","habríais utilizado","habrían utilizado","utilizando","using","utilizado","used" +"utilicemos" +"utilizar","to use, utilize","Subjuntivo","Subjunctive","Presente","Present","I use, am using","utilice","utilices","utilice","utilicemos","utilicéis","utilicen","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I used, was using","utilizara","utilizaras","utilizara","utilizáramos","utilizarais","utilizaran","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Subjuntivo","Subjunctive","Futuro","Future","I will use","utilizare","utilizares","utilizare","utilizáremos","utilizareis","utilizaren","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have used, used","haya utilizado","hayas utilizado","haya utilizado","hayamos utilizado","hayáis utilizado","hayan utilizado","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have used","hubiere utilizado","hubieres utilizado","hubiere utilizado","hubiéremos utilizado","hubiereis utilizado","hubieren utilizado","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had used","hubiera utilizado","hubieras utilizado","hubiera utilizado","hubiéramos utilizado","hubierais utilizado","hubieran utilizado","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Use! Don't use!","","utiliza","utilice","utilicemos","utilizad","utilicen","utilizando","using","utilizado","used" +"utilizar","to use, utilize","Imperativo Negativo","Imperative Negative","Presente","Present","Use! Don't use!","","no utilices","no utilice","no utilicemos","no utilicéis","no utilicen","utilizando","using","utilizado","used" +"vaciar","to empty","Indicativo","Indicative","Presente","Present","I empty, am emptying","vacío","vacías","vacía","vaciamos","vaciáis","vacían","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Futuro","Future","I will empty","vaciaré","vaciarás","vaciará","vaciaremos","vaciaréis","vaciarán","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Imperfecto","Imperfect","I was emptying, used to empty, emptied","vaciaba","vaciabas","vaciaba","vaciábamos","vaciabais","vaciaban","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Pretérito","Preterite","I emptied","vacié","vaciaste","vació","vaciamos","vaciasteis","vaciaron","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Condicional","Conditional","I would empty","vaciaría","vaciarías","vaciaría","vaciaríamos","vaciaríais","vaciarían","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Presente perfecto","Present Perfect","I have emptied","he vaciado","has vaciado","ha vaciado","hemos vaciado","habéis vaciado","han vaciado","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have emptied","habré vaciado","habrás vaciado","habrá vaciado","habremos vaciado","habréis vaciado","habrán vaciado","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had emptied","había vaciado","habías vaciado","había vaciado","habíamos vaciado","habíais vaciado","habían vaciado","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had emptied","hube vaciado","hubiste vaciado","hubo vaciado","hubimos vaciado","hubisteis vaciado","hubieron vaciado","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have emptied","habría vaciado","habrías vaciado","habría vaciado","habríamos vaciado","habríais vaciado","habrían vaciado","vaciando","emptying","vaciado","emptied" +"vaciemos" +"vaciar","to empty","Subjuntivo","Subjunctive","Presente","Present","I empty, am emptying","vacíe","vacíes","vacíe","vaciemos","vaciéis","vacíen","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I emptied, was emptying","vaciara","vaciaras","vaciara","vaciáramos","vaciarais","vaciaran","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Subjuntivo","Subjunctive","Futuro","Future","I will empty","vaciare","vaciares","vaciare","vaciáremos","vaciareis","vaciaren","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have emptied, emptied","haya vaciado","hayas vaciado","haya vaciado","hayamos vaciado","hayáis vaciado","hayan vaciado","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have emptied","hubiere vaciado","hubieres vaciado","hubiere vaciado","hubiéremos vaciado","hubiereis vaciado","hubieren vaciado","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had emptied","hubiera vaciado","hubieras vaciado","hubiera vaciado","hubiéramos vaciado","hubierais vaciado","hubieran vaciado","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Empty! Don't empty!","","vacía","vacíe","vaciemos","vaciad","vacíen","vaciando","emptying","vaciado","emptied" +"vaciar","to empty","Imperativo Negativo","Imperative Negative","Presente","Present","Empty! Don't empty!","","no vacíes","no vacíe","no vaciemos","no vaciéis","no vacíen","vaciando","emptying","vaciado","emptied" +"valer","to be worth","Indicativo","Indicative","Presente","Present","I am worth","valgo","vales","vale","valemos","valéis","valen","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Futuro","Future","I will be worth","valdré","valdrás","valdrá","valdremos","valdréis","valdrán","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Imperfecto","Imperfect","I used to be worth, was worth","valía","valías","valía","valíamos","valíais","valían","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Pretérito","Preterite","I was worth","valí","valiste","valió","valimos","valisteis","valieron","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Condicional","Conditional","I would be worth","valdría","valdrías","valdría","valdríamos","valdríais","valdrían","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Presente perfecto","Present Perfect","I have been worth","he valido","has valido","ha valido","hemos valido","habéis valido","han valido","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have been worth","habré valido","habrás valido","habrá valido","habremos valido","habréis valido","habrán valido","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had been worth","había valido","habías valido","había valido","habíamos valido","habíais valido","habían valido","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had been worth","hube valido","hubiste valido","hubo valido","hubimos valido","hubisteis valido","hubieron valido","valiendo","being worth","valido","been worth" +"valer","to be worth","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have been worth","habría valido","habrías valido","habría valido","habríamos valido","habríais valido","habrían valido","valiendo","being worth","valido","been worth" +"valgamos" +"valer","to be worth","Subjuntivo","Subjunctive","Presente","Present","I am worth","valga","valgas","valga","valgamos","valgáis","valgan","valiendo","being worth","valido","been worth" +"valer","to be worth","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I was worth","valiera","valieras","valiera","valiéramos","valierais","valieran","valiendo","being worth","valido","been worth" +"valer","to be worth","Subjuntivo","Subjunctive","Futuro","Future","I will be worth","valiere","valieres","valiere","valiéremos","valiereis","valieren","valiendo","being worth","valido","been worth" +"valer","to be worth","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have been worth, was worth","haya valido","hayas valido","haya valido","hayamos valido","hayáis valido","hayan valido","valiendo","being worth","valido","been worth" +"valer","to be worth","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have been worth","hubiere valido","hubieres valido","hubiere valido","hubiéremos valido","hubiereis valido","hubieren valido","valiendo","being worth","valido","been worth" +"valer","to be worth","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had been worth","hubiera valido","hubieras valido","hubiera valido","hubiéramos valido","hubierais valido","hubieran valido","valiendo","being worth","valido","been worth" +"valer","to be worth","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Be worth! Don't be worth!","","vale","valga","valgamos","valed","valgan","valiendo","being worth","valido","been worth", +"valer","to be worth","Imperativo Negativo","Imperative Negative","Presente","Present","Be worth! Don't be worth!","","no valgas","no valga","no valgamos","no valgáis","no valgan","valiendo","being worth","valido","been worth", +"variar","to vary","Indicativo","Indicative","Presente","Present","I vary, am varying","varío","varías","varía","variamos","variáis","varían","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Futuro","Future","I will vary","variaré","variarás","variará","variaremos","variaréis","variarán","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Imperfecto","Imperfect","I was varying, used to vary, varied","variaba","variabas","variaba","variábamos","variabais","variaban","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Pretérito","Preterite","I varied","varié","variaste","varió","variamos","variasteis","variaron","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Condicional","Conditional","I would vary","variaría","variarías","variaría","variaríamos","variaríais","variarían","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Presente perfecto","Present Perfect","I have varied","he variado","has variado","ha variado","hemos variado","habéis variado","han variado","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have varied","habré variado","habrás variado","habrá variado","habremos variado","habréis variado","habrán variado","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had varied","había variado","habías variado","había variado","habíamos variado","habíais variado","habían variado","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had varied","hube variado","hubiste variado","hubo variado","hubimos variado","hubisteis variado","hubieron variado","variando","varying","variado","varied" +"variar","to vary","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have varied","habría variado","habrías variado","habría variado","habríamos variado","habríais variado","habrían variado","variando","varying","variado","varied" +"variemos" +"variar","to vary","Subjuntivo","Subjunctive","Presente","Present","I vary, am varying","varíe","varíes","varíe","variemos","variéis","varíen","variando","varying","variado","varied" +"variar","to vary","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I varied, was varying","variara","variaras","variara","variáramos","variarais","variaran","variando","varying","variado","varied" +"variar","to vary","Subjuntivo","Subjunctive","Futuro","Future","I will vary","variare","variares","variare","variáremos","variareis","variaren","variando","varying","variado","varied" +"variar","to vary","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have varied, varied","haya variado","hayas variado","haya variado","hayamos variado","hayáis variado","hayan variado","variando","varying","variado","varied" +"variar","to vary","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have varied","hubiere variado","hubieres variado","hubiere variado","hubiéremos variado","hubiereis variado","hubieren variado","variando","varying","variado","varied" +"variar","to vary","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had varied","hubiera variado","hubieras variado","hubiera variado","hubiéramos variado","hubierais variado","hubieran variado","variando","varying","variado","varied" +"variar","to vary","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Vary! Don't vary!","","varía","varíe","variemos","variad","varíen","variando","varying","variado","varied" +"variar","to vary","Imperativo Negativo","Imperative Negative","Presente","Present","Vary! Don't vary!","","no varíes","no varíe","no variemos","no variéis","no varíen","variando","varying","variado","varied" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Presente","Present","I conquer, am conquering","venzo","vences","vence","vencemos","vencéis","vencen","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Futuro","Future","I will conquer","venceré","vencerás","vencerá","venceremos","venceréis","vencerán","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Imperfecto","Imperfect","I was conquering, used to conquer, conquered","vencía","vencías","vencía","vencíamos","vencíais","vencían","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Pretérito","Preterite","I conquered","vencí","venciste","venció","vencimos","vencisteis","vencieron","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Condicional","Conditional","I would conquer","vencería","vencerías","vencería","venceríamos","venceríais","vencerían","venciendo","conquering","vencido","conquered" +"violar","to violate; to rape","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Violate! Don't violate!","","viola","viole","variemos","violad","violen","violando","violating","violado","violated" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Presente perfecto","Present Perfect","I have conquered","he vencido","has vencido","ha vencido","hemos vencido","habéis vencido","han vencido","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have conquered","habré vencido","habrás vencido","habrá vencido","habremos vencido","habréis vencido","habrán vencido","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had conquered","había vencido","habías vencido","había vencido","habíamos vencido","habíais vencido","habían vencido","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had conquered","hube vencido","hubiste vencido","hubo vencido","hubimos vencido","hubisteis vencido","hubieron vencido","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have conquered","habría vencido","habrías vencido","habría vencido","habríamos vencido","habríais vencido","habrían vencido","venciendo","conquering","vencido","conquered" +"venzamos" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Subjuntivo","Subjunctive","Presente","Present","I conquer, am conquering","venza","venzas","venza","venzamos","venzáis","venzan","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I conquered, was conquering","venciera","vencieras","venciera","venciéramos","vencierais","vencieran","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Subjuntivo","Subjunctive","Futuro","Future","I will conquer","venciere","vencieres","venciere","venciéremos","venciereis","vencieren","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have conquered, conquered","haya vencido","hayas vencido","haya vencido","hayamos vencido","hayáis vencido","hayan vencido","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have conquered","hubiere vencido","hubieres vencido","hubiere vencido","hubiéremos vencido","hubiereis vencido","hubieren vencido","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had conquered","hubiera vencido","hubieras vencido","hubiera vencido","hubiéramos vencido","hubierais vencido","hubieran vencido","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Conquer! Don't conquer!","","vence","venza","venzamos","venced","venzan","venciendo","conquering","vencido","conquered" +"vencer","to conquer, defeat, beat, overcome, win; to expire, cease to apply","Imperativo Negativo","Imperative Negative","Presente","Present","Conquer! Don't conquer!","","no venzas","no venza","no venzamos","no venzáis","no venzan","venciendo","conquering","vencido","conquered" +"vender","to sell","Indicativo","Indicative","Presente","Present","I sell, am selling","vendo","vendes","vende","vendemos","vendéis","venden","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Futuro","Future","I will sell","venderé","venderás","venderá","venderemos","venderéis","venderán","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Imperfecto","Imperfect","I was selling, used to sell, sold","vendía","vendías","vendía","vendíamos","vendíais","vendían","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Pretérito","Preterite","I sold","vendí","vendiste","vendió","vendimos","vendisteis","vendieron","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Condicional","Conditional","I would sell","vendería","venderías","vendería","venderíamos","venderíais","venderían","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Presente perfecto","Present Perfect","I have sold","he vendido","has vendido","ha vendido","hemos vendido","habéis vendido","han vendido","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have sold","habré vendido","habrás vendido","habrá vendido","habremos vendido","habréis vendido","habrán vendido","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had sold","había vendido","habías vendido","había vendido","habíamos vendido","habíais vendido","habían vendido","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had sold","hube vendido","hubiste vendido","hubo vendido","hubimos vendido","hubisteis vendido","hubieron vendido","vendiendo","selling","vendido","sold" +"vender","to sell","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have sold","habría vendido","habrías vendido","habría vendido","habríamos vendido","habríais vendido","habrían vendido","vendiendo","selling","vendido","sold" +"vendamos" +"vender","to sell","Subjuntivo","Subjunctive","Presente","Present","I sell, am selling","venda","vendas","venda","vendamos","vendáis","vendan","vendiendo","selling","vendido","sold" +"vender","to sell","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I sold, was selling","vendiera","vendieras","vendiera","vendiéramos","vendierais","vendieran","vendiendo","selling","vendido","sold" +"vender","to sell","Subjuntivo","Subjunctive","Futuro","Future","I will sell","vendiere","vendieres","vendiere","vendiéremos","vendiereis","vendieren","vendiendo","selling","vendido","sold" +"vender","to sell","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have sold, sold","haya vendido","hayas vendido","haya vendido","hayamos vendido","hayáis vendido","hayan vendido","vendiendo","selling","vendido","sold" +"vender","to sell","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have sold","hubiere vendido","hubieres vendido","hubiere vendido","hubiéremos vendido","hubiereis vendido","hubieren vendido","vendiendo","selling","vendido","sold" +"vender","to sell","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had sold","hubiera vendido","hubieras vendido","hubiera vendido","hubiéramos vendido","hubierais vendido","hubieran vendido","vendiendo","selling","vendido","sold" +"vender","to sell","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Sell! Don't sell!","","vende","venda","vendamos","vended","vendan","vendiendo","selling","vendido","sold" +"vender","to sell","Imperativo Negativo","Imperative Negative","Presente","Present","Sell! Don't sell!","","no vendas","no venda","no vendamos","no vendáis","no vendan","vendiendo","selling","vendido","sold" +"venir","to come","Indicativo","Indicative","Presente","Present","I come, am coming","vengo","vienes","viene","venimos","venís","vienen","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Futuro","Future","I will come","vendré","vendrás","vendrá","vendremos","vendréis","vendrán","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Imperfecto","Imperfect","I was coming, used to come, came","venía","venías","venía","veníamos","veníais","venían","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Pretérito","Preterite","I came","vine","viniste","vino","vinimos","vinisteis","vinieron","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Condicional","Conditional","I would come","vendría","vendrías","vendría","vendríamos","vendríais","vendrían","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Presente perfecto","Present Perfect","I have come","he venido","has venido","ha venido","hemos venido","habéis venido","han venido","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have come","habré venido","habrás venido","habrá venido","habremos venido","habréis venido","habrán venido","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had come","había venido","habías venido","había venido","habíamos venido","habíais venido","habían venido","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had come","hube venido","hubiste venido","hubo venido","hubimos venido","hubisteis venido","hubieron venido","viniendo","coming","venido","come" +"venir","to come","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have come","habría venido","habrías venido","habría venido","habríamos venido","habríais venido","habrían venido","viniendo","coming","venido","come" +"vengamos" +"venir","to come","Subjuntivo","Subjunctive","Presente","Present","I come, am coming","venga","vengas","venga","vengamos","vengáis","vengan","viniendo","coming","venido","come" +"venir","to come","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I came, was coming","viniera","vinieras","viniera","viniéramos","vinierais","vinieran","viniendo","coming","venido","come" +"venir","to come","Subjuntivo","Subjunctive","Futuro","Future","I will come","viniere","vinieres","viniere","viniéremos","viniereis","vinieren","viniendo","coming","venido","come" +"venir","to come","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have come, came","haya venido","hayas venido","haya venido","hayamos venido","hayáis venido","hayan venido","viniendo","coming","venido","come" +"venir","to come","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have come","hubiere venido","hubieres venido","hubiere venido","hubiéremos venido","hubiereis venido","hubieren venido","viniendo","coming","venido","come" +"venir","to come","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had come","hubiera venido","hubieras venido","hubiera venido","hubiéramos venido","hubierais venido","hubieran venido","viniendo","coming","venido","come" +"venir","to come","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Come! Don't come!","","ven","venga","vengamos","venid","vengan","viniendo","coming","venido","come" +"venir","to come","Imperativo Negativo","Imperative Negative","Presente","Present","Come! Don't come!","","no vengas","no venga","no vengamos","no vengáis","no vengan","viniendo","coming","venido","come" +"ver","to see","Indicativo","Indicative","Presente","Present","I see, am seeing","veo","ves","ve","vemos","veis","ven","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Futuro","Future","I will see","veré","verás","verá","veremos","veréis","verán","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Imperfecto","Imperfect","I was seeing, used to see, saw","veía","veías","veía","veíamos","veíais","veían","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Pretérito","Preterite","I saw","vi","viste","vio","vimos","visteis","vieron","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Condicional","Conditional","I would see","vería","verías","vería","veríamos","veríais","verían","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Presente perfecto","Present Perfect","I have seen","he visto","has visto","ha visto","hemos visto","habéis visto","han visto","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have seen","habré visto","habrás visto","habrá visto","habremos visto","habréis visto","habrán visto","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had seen","había visto","habías visto","había visto","habíamos visto","habíais visto","habían visto","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had seen","hube visto","hubiste visto","hubo visto","hubimos visto","hubisteis visto","hubieron visto","viendo","seeing","visto","seen" +"ver","to see","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have seen","habría visto","habrías visto","habría visto","habríamos visto","habríais visto","habrían visto","viendo","seeing","visto","seen" +"veamos" +"ver","to see","Subjuntivo","Subjunctive","Presente","Present","I see, am seeing","vea","veas","vea","veamos","veáis","vean","viendo","seeing","visto","seen" +"ver","to see","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I saw, was seeing","viera","vieras","viera","viéramos","vierais","vieran","viendo","seeing","visto","seen" +"ver","to see","Subjuntivo","Subjunctive","Futuro","Future","I will see","viere","vieres","viere","viéremos","viereis","vieren","viendo","seeing","visto","seen" +"ver","to see","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have seen, saw","haya visto","hayas visto","haya visto","hayamos visto","hayáis visto","hayan visto","viendo","seeing","visto","seen" +"ver","to see","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have seen","hubiere visto","hubieres visto","hubiere visto","hubiéremos visto","hubiereis visto","hubieren visto","viendo","seeing","visto","seen" +"ver","to see","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had seen","hubiera visto","hubieras visto","hubiera visto","hubiéramos visto","hubierais visto","hubieran visto","viendo","seeing","visto","seen" +"ver","to see","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","See! Don't see!","","ve","vea","veamos","ved","vean","viendo","seeing","visto","seen" +"ver","to see","Imperativo Negativo","Imperative Negative","Presente","Present","See! Don't see!","","no veas","no vea","no veamos","no veáis","no vean","viendo","seeing","visto","seen" +"verificar","to verify, check, inspect","Indicativo","Indicative","Presente","Present","I verify, am verifying","verifico","verificas","verifica","verificamos","verificáis","verifican","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Futuro","Future","I will verify","verificaré","verificarás","verificará","verificaremos","verificaréis","verificarán","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Imperfecto","Imperfect","I was verifying, used to verify, verified","verificaba","verificabas","verificaba","verificábamos","verificabais","verificaban","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Pretérito","Preterite","I verified","verifiqué","verificaste","verificó","verificamos","verificasteis","verificaron","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Condicional","Conditional","I would verify","verificaría","verificarías","verificaría","verificaríamos","verificaríais","verificarían","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Presente perfecto","Present Perfect","I have verified","he verificado","has verificado","ha verificado","hemos verificado","habéis verificado","han verificado","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have verified","habré verificado","habrás verificado","habrá verificado","habremos verificado","habréis verificado","habrán verificado","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had verified","había verificado","habías verificado","había verificado","habíamos verificado","habíais verificado","habían verificado","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had verified","hube verificado","hubiste verificado","hubo verificado","hubimos verificado","hubisteis verificado","hubieron verificado","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have verified","habría verificado","habrías verificado","habría verificado","habríamos verificado","habríais verificado","habrían verificado","verificando","verifying","verificado","verified" +"verifiquemos" +"verificar","to verify, check, inspect","Subjuntivo","Subjunctive","Presente","Present","I verify, am verifying","verifique","verifiques","verifique","verifiquemos","verifiquéis","verifiquen","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I verified, was verifying","verificara","verificaras","verificara","verificáramos","verificarais","verificaran","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Subjuntivo","Subjunctive","Futuro","Future","I will verify","verificare","verificares","verificare","verificáremos","verificareis","verificaren","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have verified, verified","haya verificado","hayas verificado","haya verificado","hayamos verificado","hayáis verificado","hayan verificado","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have verified","hubiere verificado","hubieres verificado","hubiere verificado","hubiéremos verificado","hubiereis verificado","hubieren verificado","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had verified","hubiera verificado","hubieras verificado","hubiera verificado","hubiéramos verificado","hubierais verificado","hubieran verificado","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Verify! Don't verify!","","verifica","verifique","verifiquemos","verificad","verifiquen","verificando","verifying","verificado","verified" +"verificar","to verify, check, inspect","Imperativo Negativo","Imperative Negative","Presente","Present","Verify! Don't verify!","","no verifiques","no verifique","no verifiquemos","no verifiquéis","no verifiquen","verificando","verifying","verificado","verified" +"vestir","to dress","Indicativo","Indicative","Presente","Present","I dress, am dressing","visto","vistes","viste","vestimos","vestís","visten","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Futuro","Future","I will dress","vestiré","vestirás","vestirá","vestiremos","vestiréis","vestirán","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Imperfecto","Imperfect","I was dressing, used to dress, dressed","vestía","vestías","vestía","vestíamos","vestíais","vestían","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Pretérito","Preterite","I dressed","vestí","vestiste","vistió","vestimos","vestisteis","vistieron","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Condicional","Conditional","I would dress","vestiría","vestirías","vestiría","vestiríamos","vestiríais","vestirían","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dressed","he vestido","has vestido","ha vestido","hemos vestido","habéis vestido","han vestido","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dressed","habré vestido","habrás vestido","habrá vestido","habremos vestido","habréis vestido","habrán vestido","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dressed","había vestido","habías vestido","había vestido","habíamos vestido","habíais vestido","habían vestido","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dressed","hube vestido","hubiste vestido","hubo vestido","hubimos vestido","hubisteis vestido","hubieron vestido","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dressed","habría vestido","habrías vestido","habría vestido","habríamos vestido","habríais vestido","habrían vestido","vistiendo","dressing","vestido","dressed" +"vistamos" +"vestir","to dress","Subjuntivo","Subjunctive","Presente","Present","I dress, am dressing","vista","vistas","vista","vistamos","vistáis","vistan","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dressed, was dressing","vistiera","vistieras","vistiera","vistiéramos","vistierais","vistieran","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Subjuntivo","Subjunctive","Futuro","Future","I will dress","vistiere","vistieres","vistiere","vistiéremos","vistiereis","vistieren","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dressed, dressed","haya vestido","hayas vestido","haya vestido","hayamos vestido","hayáis vestido","hayan vestido","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dressed","hubiere vestido","hubieres vestido","hubiere vestido","hubiéremos vestido","hubiereis vestido","hubieren vestido","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dressed","hubiera vestido","hubieras vestido","hubiera vestido","hubiéramos vestido","hubierais vestido","hubieran vestido","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dress! Don't dress!","","viste","vista","vistamos","vestid","vistan","vistiendo","dressing","vestido","dressed" +"vestir","to dress","Imperativo Negativo","Imperative Negative","Presente","Present","Dress! Don't dress!","","no vistas","no vista","no vistamos","no vistáis","no vistan","vistiendo","dressing","vestido","dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Presente","Present","I get dressed, am getting dressed","me visto","te vistes","se viste","nos vestimos","os vestís","se visten","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Futuro","Future","I will get dressed","me vestiré","te vestirás","se vestirá","nos vestiremos","os vestiréis","se vestirán","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Imperfecto","Imperfect","I was getting dressed, used to get dressed, got dressed","me vestía","te vestías","se vestía","nos vestíamos","os vestíais","se vestían","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Pretérito","Preterite","I got dressed","me vestí","te vestiste","se vistió","nos vestimos","os vestisteis","se vistieron","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Condicional","Conditional","I would get dressed","me vestiría","te vestirías","se vestiría","nos vestiríamos","os vestiríais","se vestirían","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Presente perfecto","Present Perfect","I have gotten dressed","me he vestido","te has vestido","se ha vestido","nos hemos vestido","os habéis vestido","se han vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have gotten dressed","me habré vestido","te habrás vestido","se habrá vestido","nos habremos vestido","os habréis vestido","se habrán vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had gotten dressed","me había vestido","te habías vestido","se había vestido","nos habíamos vestido","os habíais vestido","se habían vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had gotten dressed","me hube vestido","te hubiste vestido","se hubo vestido","nos hubimos vestido","os hubisteis vestido","se hubieron vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have gotten dressed","me habría vestido","te habrías vestido","se habría vestido","nos habríamos vestido","os habríais vestido","se habrían vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"nos vistamos" +"vestirse","to get dressed, dress","Subjuntivo","Subjunctive","Presente","Present","I get dressed, am getting dressed","me vista","te vistas","se vista","nos vistamos","os vistáis","se vistan","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I got dressed, was getting dressed","me vistiera","te vistieras","se vistiera","nos vistiéramos","os vistierais","se vistieran","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Subjuntivo","Subjunctive","Futuro","Future","I will get dressed","me vistiere","te vistieres","se vistiere","nos vistiéremos","os vistiereis","se vistieren","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have gotten dressed, gotten dressed","me haya vestido","te hayas vestido","se haya vestido","nos hayamos vestido","os hayáis vestido","se hayan vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have gotten dressed","me hubiere vestido","te hubieres vestido","se hubiere vestido","nos hubiéremos vestido","os hubiereis vestido","se hubieren vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had gotten dressed","me hubiera vestido","te hubieras vestido","se hubiera vestido","nos hubiéramos vestido","os hubierais vestido","se hubieran vestido","vistiéndose","getting dressed","vestido","dressed, gotten dressed" +"vestirse","to get dressed, dress","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Get dressed! Don't get dressed!","","vístete","vístase","vistámonos","vestíos","vístanse","vistiéndose","getting dressed","vestido","dressed, gotten dressed", +"vestirse","to get dressed, dress","Imperativo Negativo","Imperative Negative","Presente","Present","Get dressed! Don't get dressed!","","no te vistas","no se vista","no nos vistamos","no os vestáis","no se vistan","vistiéndose","getting dressed","vestido","dressed, gotten dressed", +"viajar","to travel, journey","Indicativo","Indicative","Presente","Present","I travel, am traveling","viajo","viajas","viaja","viajamos","viajáis","viajan","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Futuro","Future","I will travel","viajaré","viajarás","viajará","viajaremos","viajaréis","viajarán","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Imperfecto","Imperfect","I was traveling, used to travel, traveled","viajaba","viajabas","viajaba","viajábamos","viajabais","viajaban","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Pretérito","Preterite","I traveled","viajé","viajaste","viajó","viajamos","viajasteis","viajaron","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Condicional","Conditional","I would travel","viajaría","viajarías","viajaría","viajaríamos","viajaríais","viajarían","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Presente perfecto","Present Perfect","I have traveled","he viajado","has viajado","ha viajado","hemos viajado","habéis viajado","han viajado","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have traveled","habré viajado","habrás viajado","habrá viajado","habremos viajado","habréis viajado","habrán viajado","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had traveled","había viajado","habías viajado","había viajado","habíamos viajado","habíais viajado","habían viajado","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had traveled","hube viajado","hubiste viajado","hubo viajado","hubimos viajado","hubisteis viajado","hubieron viajado","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have traveled","habría viajado","habrías viajado","habría viajado","habríamos viajado","habríais viajado","habrían viajado","viajando","traveling","viajado","traveled" +"viajemos" +"viajar","to travel, journey","Subjuntivo","Subjunctive","Presente","Present","I travel, am traveling","viaje","viajes","viaje","viajemos","viajéis","viajen","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I traveled, was traveling","viajara","viajaras","viajara","viajáramos","viajarais","viajaran","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Subjuntivo","Subjunctive","Futuro","Future","I will travel","viajare","viajares","viajare","viajáremos","viajareis","viajaren","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have traveled, traveled","haya viajado","hayas viajado","haya viajado","hayamos viajado","hayáis viajado","hayan viajado","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have traveled","hubiere viajado","hubieres viajado","hubiere viajado","hubiéremos viajado","hubiereis viajado","hubieren viajado","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had traveled","hubiera viajado","hubieras viajado","hubiera viajado","hubiéramos viajado","hubierais viajado","hubieran viajado","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Travel! Don't travel!","","viaja","viaje","viajemos","viajad","viajen","viajando","traveling","viajado","traveled" +"viajar","to travel, journey","Imperativo Negativo","Imperative Negative","Presente","Present","Travel! Don't travel!","","no viajes","no viaje","no viajemos","no viajéis","no viajen","viajando","traveling","viajado","traveled" +"violar","to violate; to rape","Indicativo","Indicative","Presente","Present","I violate, am violating","violo","violas","viola","violamos","violáis","violan","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Futuro","Future","I will violate","violaré","violarás","violará","violaremos","violaréis","violarán","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Imperfecto","Imperfect","I was violating, used to violate, violated","violaba","violabas","violaba","violábamos","violabais","violaban","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Pretérito","Preterite","I violated","violé","violaste","violó","violamos","violasteis","violaron","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Condicional","Conditional","I would violate","violaría","violarías","violaría","violaríamos","violaríais","violarían","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Presente perfecto","Present Perfect","I have violated","he violado","has violado","ha violado","hemos violado","habéis violado","han violado","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have violated","habré violado","habrás violado","habrá violado","habremos violado","habréis violado","habrán violado","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had violated","había violado","habías violado","había violado","habíamos violado","habíais violado","habían violado","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had violated","hube violado","hubiste violado","hubo violado","hubimos violado","hubisteis violado","hubieron violado","violando","violating","violado","violated" +"violar","to violate; to rape","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have violated","habría violado","habrías violado","habría violado","habríamos violado","habríais violado","habrían violado","violando","violating","violado","violated" +"violemos" +"violar","to violate; to rape","Subjuntivo","Subjunctive","Presente","Present","I violate, am violating","viole","violes","viole","violemos","violéis","violen","violando","violating","violado","violated" +"violar","to violate; to rape","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I violated, was violating","violara","violaras","violara","violáramos","violarais","violaran","violando","violating","violado","violated" +"violar","to violate; to rape","Subjuntivo","Subjunctive","Futuro","Future","I will violate","violare","violares","violare","violáremos","violareis","violaren","violando","violating","violado","violated" +"violar","to violate; to rape","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have violated, violated","haya violado","hayas violado","haya violado","hayamos violado","hayáis violado","hayan violado","violando","violating","violado","violated" +"violar","to violate; to rape","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have violated","hubiere violado","hubieres violado","hubiere violado","hubiéremos violado","hubiereis violado","hubieren violado","violando","violating","violado","violated" +"violar","to violate; to rape","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had violated","hubiera violado","hubieras violado","hubiera violado","hubiéramos violado","hubierais violado","hubieran violado","violando","violating","violado","violated" +"violar","to violate; to rape","Imperativo Negativo","Imperative Negative","Presente","Present","Violate! Don't violate!","","no violes","no viole","no violemos","no violéis","no violen","violando","violating","violado","violated" +"visitar","to visit","Indicativo","Indicative","Presente","Present","I visit, am visiting","visito","visitas","visita","visitamos","visitáis","visitan","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Futuro","Future","I will visit","visitaré","visitarás","visitará","visitaremos","visitaréis","visitarán","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Imperfecto","Imperfect","I was visiting, used to visit, visited","visitaba","visitabas","visitaba","visitábamos","visitabais","visitaban","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Pretérito","Preterite","I visited","visité","visitaste","visitó","visitamos","visitasteis","visitaron","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Condicional","Conditional","I would visit","visitaría","visitarías","visitaría","visitaríamos","visitaríais","visitarían","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Presente perfecto","Present Perfect","I have visited","he visitado","has visitado","ha visitado","hemos visitado","habéis visitado","han visitado","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have visited","habré visitado","habrás visitado","habrá visitado","habremos visitado","habréis visitado","habrán visitado","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had visited","había visitado","habías visitado","había visitado","habíamos visitado","habíais visitado","habían visitado","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had visited","hube visitado","hubiste visitado","hubo visitado","hubimos visitado","hubisteis visitado","hubieron visitado","visitando","visiting","visitado","visited" +"visitar","to visit","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have visited","habría visitado","habrías visitado","habría visitado","habríamos visitado","habríais visitado","habrían visitado","visitando","visiting","visitado","visited" +"visitemos" +"visitar","to visit","Subjuntivo","Subjunctive","Presente","Present","I visit, am visiting","visite","visites","visite","visitemos","visitéis","visiten","visitando","visiting","visitado","visited" +"visitar","to visit","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I visited, was visiting","visitara","visitaras","visitara","visitáramos","visitarais","visitaran","visitando","visiting","visitado","visited" +"visitar","to visit","Subjuntivo","Subjunctive","Futuro","Future","I will visit","visitare","visitares","visitare","visitáremos","visitareis","visitaren","visitando","visiting","visitado","visited" +"visitar","to visit","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have visited, visited","haya visitado","hayas visitado","haya visitado","hayamos visitado","hayáis visitado","hayan visitado","visitando","visiting","visitado","visited" +"visitar","to visit","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have visited","hubiere visitado","hubieres visitado","hubiere visitado","hubiéremos visitado","hubiereis visitado","hubieren visitado","visitando","visiting","visitado","visited" +"visitar","to visit","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had visited","hubiera visitado","hubieras visitado","hubiera visitado","hubiéramos visitado","hubierais visitado","hubieran visitado","visitando","visiting","visitado","visited" +"visitar","to visit","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Visit! Don't visit!","","visita","visite","visitemos","visitad","visiten","visitando","visiting","visitado","visited" +"visitar","to visit","Imperativo Negativo","Imperative Negative","Presente","Present","Visit! Don't visit!","","no visites","no visite","no visitemos","no visitéis","no visiten","visitando","visiting","visitado","visited" +"vivir","to live","Indicativo","Indicative","Presente","Present","I live, am living","vivo","vives","vive","vivimos","vivís","viven","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Futuro","Future","I will live","viviré","vivirás","vivirá","viviremos","viviréis","vivirán","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Imperfecto","Imperfect","I was living, used to live, lived","vivía","vivías","vivía","vivíamos","vivíais","vivían","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Pretérito","Preterite","I lived","viví","viviste","vivió","vivimos","vivisteis","vivieron","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Condicional","Conditional","I would live","viviría","vivirías","viviría","viviríamos","viviríais","vivirían","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lived","he vivido","has vivido","ha vivido","hemos vivido","habéis vivido","han vivido","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lived","habré vivido","habrás vivido","habrá vivido","habremos vivido","habréis vivido","habrán vivido","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lived","había vivido","habías vivido","había vivido","habíamos vivido","habíais vivido","habían vivido","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lived","hube vivido","hubiste vivido","hubo vivido","hubimos vivido","hubisteis vivido","hubieron vivido","viviendo","living","vivido","lived" +"vivir","to live","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lived","habría vivido","habrías vivido","habría vivido","habríamos vivido","habríais vivido","habrían vivido","viviendo","living","vivido","lived" +"vivamos" +"vivir","to live","Subjuntivo","Subjunctive","Presente","Present","I live, am living","viva","vivas","viva","vivamos","viváis","vivan","viviendo","living","vivido","lived" +"vivir","to live","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lived, was living","viviera","vivieras","viviera","viviéramos","vivierais","vivieran","viviendo","living","vivido","lived" +"vivir","to live","Subjuntivo","Subjunctive","Futuro","Future","I will live","viviere","vivieres","viviere","viviéremos","viviereis","vivieren","viviendo","living","vivido","lived" +"vivir","to live","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lived, lived","haya vivido","hayas vivido","haya vivido","hayamos vivido","hayáis vivido","hayan vivido","viviendo","living","vivido","lived" +"vivir","to live","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lived","hubiere vivido","hubieres vivido","hubiere vivido","hubiéremos vivido","hubiereis vivido","hubieren vivido","viviendo","living","vivido","lived" +"vivir","to live","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lived","hubiera vivido","hubieras vivido","hubiera vivido","hubiéramos vivido","hubierais vivido","hubieran vivido","viviendo","living","vivido","lived" +"vivir","to live","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Live! Don't live!","","vive","viva","vivamos","vivid","vivan","viviendo","living","vivido","lived" +"vivir","to live","Imperativo Negativo","Imperative Negative","Presente","Present","Live! Don't live!","","no vivas","no viva","no vivamos","no viváis","no vivan","viviendo","living","vivido","lived" +"volar","to fly","Indicativo","Indicative","Presente","Present","I fly, am flying","vuelo","vuelas","vuela","volamos","voláis","vuelan","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Futuro","Future","I will fly","volaré","volarás","volará","volaremos","volaréis","volarán","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Imperfecto","Imperfect","I was flying, used to fly, flew","volaba","volabas","volaba","volábamos","volabais","volaban","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Pretérito","Preterite","I flew","volé","volaste","voló","volamos","volasteis","volaron","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Condicional","Conditional","I would fly","volaría","volarías","volaría","volaríamos","volaríais","volarían","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Presente perfecto","Present Perfect","I have flown","he volado","has volado","ha volado","hemos volado","habéis volado","han volado","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have flown","habré volado","habrás volado","habrá volado","habremos volado","habréis volado","habrán volado","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had flown","había volado","habías volado","había volado","habíamos volado","habíais volado","habían volado","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had flown","hube volado","hubiste volado","hubo volado","hubimos volado","hubisteis volado","hubieron volado","volando","flying","volado","flown" +"volar","to fly","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have flown","habría volado","habrías volado","habría volado","habríamos volado","habríais volado","habrían volado","volando","flying","volado","flown" +"volemos" +"volar","to fly","Subjuntivo","Subjunctive","Presente","Present","I fly, am flying","vuele","vueles","vuele","volemos","voléis","vuelen","volando","flying","volado","flown" +"volar","to fly","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I flew, was flying","volara","volaras","volara","voláramos","volarais","volaran","volando","flying","volado","flown" +"volar","to fly","Subjuntivo","Subjunctive","Futuro","Future","I will fly","volare","volares","volare","voláremos","volareis","volaren","volando","flying","volado","flown" +"volar","to fly","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have flown, flew","haya volado","hayas volado","haya volado","hayamos volado","hayáis volado","hayan volado","volando","flying","volado","flown" +"volar","to fly","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have flown","hubiere volado","hubieres volado","hubiere volado","hubiéremos volado","hubiereis volado","hubieren volado","volando","flying","volado","flown" +"volar","to fly","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had flown","hubiera volado","hubieras volado","hubiera volado","hubiéramos volado","hubierais volado","hubieran volado","volando","flying","volado","flown" +"volar","to fly","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Fly! Don't fly!","","vuela","vuele","volemos","volad","vuelen","volando","flying","volado","flown" +"volar","to fly","Imperativo Negativo","Imperative Negative","Presente","Present","Fly! Don't fly!","","no vueles","no vuele","no volemos","no voléis","no vuelen","volando","flying","volado","flown" +"volver","to return, go back","Indicativo","Indicative","Presente","Present","I return, am returning","vuelvo","vuelves","vuelve","volvemos","volvéis","vuelven","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Futuro","Future","I will return","volveré","volverás","volverá","volveremos","volveréis","volverán","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Imperfecto","Imperfect","I was returning, used to return, returned","volvía","volvías","volvía","volvíamos","volvíais","volvían","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Pretérito","Preterite","I returned","volví","volviste","volvió","volvimos","volvisteis","volvieron","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Condicional","Conditional","I would return","volvería","volverías","volvería","volveríamos","volveríais","volverían","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Presente perfecto","Present Perfect","I have returned","he vuelto","has vuelto","ha vuelto","hemos vuelto","habéis vuelto","han vuelto","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have returned","habré vuelto","habrás vuelto","habrá vuelto","habremos vuelto","habréis vuelto","habrán vuelto","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had returned","había vuelto","habías vuelto","había vuelto","habíamos vuelto","habíais vuelto","habían vuelto","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had returned","hube vuelto","hubiste vuelto","hubo vuelto","hubimos vuelto","hubisteis vuelto","hubieron vuelto","volviendo","returning","vuelto","returned" +"volver","to return, go back","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have returned","habría vuelto","habrías vuelto","habría vuelto","habríamos vuelto","habríais vuelto","habrían vuelto","volviendo","returning","vuelto","returned" +"volvamos" +"volver","to return, go back","Subjuntivo","Subjunctive","Presente","Present","I return, am returning","vuelva","vuelvas","vuelva","volvamos","volváis","vuelvan","volviendo","returning","vuelto","returned" +"volver","to return, go back","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I returned, was returning","volviera","volvieras","volviera","volviéramos","volvierais","volvieran","volviendo","returning","vuelto","returned" +"volver","to return, go back","Subjuntivo","Subjunctive","Futuro","Future","I will return","volviere","volvieres","volviere","volviéremos","volviereis","volvieren","volviendo","returning","vuelto","returned" +"volver","to return, go back","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have returned, returned","haya vuelto","hayas vuelto","haya vuelto","hayamos vuelto","hayáis vuelto","hayan vuelto","volviendo","returning","vuelto","returned" +"volver","to return, go back","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have returned","hubiere vuelto","hubieres vuelto","hubiere vuelto","hubiéremos vuelto","hubiereis vuelto","hubieren vuelto","volviendo","returning","vuelto","returned" +"volver","to return, go back","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had returned","hubiera vuelto","hubieras vuelto","hubiera vuelto","hubiéramos vuelto","hubierais vuelto","hubieran vuelto","volviendo","returning","vuelto","returned" +"volver","to return, go back","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Return! Don't return!","","vuelve","vuelva","volvamos","volved","vuelvan","volviendo","returning","vuelto","returned" +"volver","to return, go back","Imperativo Negativo","Imperative Negative","Presente","Present","Return! Don't return!","","no vuelvas","no vuelva","no volvamos","no volváis","no vuelvan","volviendo","returning","vuelto","returned" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Presente","Present","I vomit, am vomiting","vomito","vomitas","vomita","vomitamos","vomitáis","vomitan","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Futuro","Future","I will vomit","vomitaré","vomitarás","vomitará","vomitaremos","vomitaréis","vomitarán","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Imperfecto","Imperfect","I was vomiting, used to vomit, vomited","vomitaba","vomitabas","vomitaba","vomitábamos","vomitabais","vomitaban","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Pretérito","Preterite","I vomited","vomité","vomitaste","vomitó","vomitamos","vomitasteis","vomitaron","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Condicional","Conditional","I would vomit","vomitaría","vomitarías","vomitaría","vomitaríamos","vomitaríais","vomitarían","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Presente perfecto","Present Perfect","I have vomited","he vomitado","has vomitado","ha vomitado","hemos vomitado","habéis vomitado","han vomitado","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have vomited","habré vomitado","habrás vomitado","habrá vomitado","habremos vomitado","habréis vomitado","habrán vomitado","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had vomited","había vomitado","habías vomitado","había vomitado","habíamos vomitado","habíais vomitado","habían vomitado","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had vomited","hube vomitado","hubiste vomitado","hubo vomitado","hubimos vomitado","hubisteis vomitado","hubieron vomitado","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have vomited","habría vomitado","habrías vomitado","habría vomitado","habríamos vomitado","habríais vomitado","habrían vomitado","vomitando","vomiting","vomitado","vomited" +"vomitemos" +"vomitar","to vomit, throw up, bring up","Subjuntivo","Subjunctive","Presente","Present","I vomit, am vomiting","vomite","vomites","vomite","vomitemos","vomitéis","vomiten","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I vomited, was vomiting","vomitara","vomitaras","vomitara","vomitáramos","vomitarais","vomitaran","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Subjuntivo","Subjunctive","Futuro","Future","I will vomit","vomitare","vomitares","vomitare","vomitáremos","vomitareis","vomitaren","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have vomited, vomited","haya vomitado","hayas vomitado","haya vomitado","hayamos vomitado","hayáis vomitado","hayan vomitado","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have vomited","hubiere vomitado","hubieres vomitado","hubiere vomitado","hubiéremos vomitado","hubiereis vomitado","hubieren vomitado","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had vomited","hubiera vomitado","hubieras vomitado","hubiera vomitado","hubiéramos vomitado","hubierais vomitado","hubieran vomitado","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Vomit! Don't vomit!","","vomita","vomite","vomitemos","vomitad","vomiten","vomitando","vomiting","vomitado","vomited" +"vomitar","to vomit, throw up, bring up","Imperativo Negativo","Imperative Negative","Presente","Present","Vomit! Don't vomit!","","no vomites","no vomite","no vomitemos","no vomitéis","no vomiten","vomitando","vomiting","vomitado","vomited" +"votar","to vote","Indicativo","Indicative","Presente","Present","I vote, am voting","voto","votas","vota","votamos","votáis","votan","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Futuro","Future","I will vote","votaré","votarás","votará","votaremos","votaréis","votarán","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Imperfecto","Imperfect","I was voting, used to vote, voted","votaba","votabas","votaba","votábamos","votabais","votaban","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Pretérito","Preterite","I voted","voté","votaste","votó","votamos","votasteis","votaron","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Condicional","Conditional","I would vote","votaría","votarías","votaría","votaríamos","votaríais","votarían","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Presente perfecto","Present Perfect","I have voted","he votado","has votado","ha votado","hemos votado","habéis votado","han votado","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have voted","habré votado","habrás votado","habrá votado","habremos votado","habréis votado","habrán votado","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had voted","había votado","habías votado","había votado","habíamos votado","habíais votado","habían votado","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had voted","hube votado","hubiste votado","hubo votado","hubimos votado","hubisteis votado","hubieron votado","votando","voting","votado","voted" +"votar","to vote","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have voted","habría votado","habrías votado","habría votado","habríamos votado","habríais votado","habrían votado","votando","voting","votado","voted" +"votemos" +"votar","to vote","Subjuntivo","Subjunctive","Presente","Present","I vote, am voting","vote","votes","vote","votemos","votéis","voten","votando","voting","votado","voted" +"votar","to vote","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I voted, was voting","votara","votaras","votara","votáramos","votarais","votaran","votando","voting","votado","voted" +"votar","to vote","Subjuntivo","Subjunctive","Futuro","Future","I will vote","votare","votares","votare","votáremos","votareis","votaren","votando","voting","votado","voted" +"votar","to vote","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have voted, voted","haya votado","hayas votado","haya votado","hayamos votado","hayáis votado","hayan votado","votando","voting","votado","voted" +"votar","to vote","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have voted","hubiere votado","hubieres votado","hubiere votado","hubiéremos votado","hubiereis votado","hubieren votado","votando","voting","votado","voted" +"votar","to vote","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had voted","hubiera votado","hubieras votado","hubiera votado","hubiéramos votado","hubierais votado","hubieran votado","votando","voting","votado","voted" +"votar","to vote","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Vote! Don't vote!","","vota","vote","votemos","votad","voten","votando","voting","votado","voted" +"votar","to vote","Imperativo Negativo","Imperative Negative","Presente","Present","Vote! Don't vote!","","no votes","no vote","no votemos","no votéis","no voten","votando","voting","votado","voted" +"yacer","to lie","Indicativo","Indicative","Presente","Present","I lie, am lying","yazco","yaces","yace","yacemos","yacéis","yacen","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Futuro","Future","I will lie","yaceré","yacerás","yacerá","yaceremos","yaceréis","yacerán","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Imperfecto","Imperfect","I was lying, used to lie, lay/laid","yacía","yacías","yacía","yacíamos","yacíais","yacían","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Pretérito","Preterite","I lay/laid","yací","yaciste","yació","yacimos","yacisteis","yacieron","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Condicional","Conditional","I would lie","yacería","yacerías","yacería","yaceríamos","yaceríais","yacerían","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Presente perfecto","Present Perfect","I have lain","he yacido","has yacido","ha yacido","hemos yacido","habéis yacido","han yacido","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have lain","habré yacido","habrás yacido","habrá yacido","habremos yacido","habréis yacido","habrán yacido","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had lain","había yacido","habías yacido","había yacido","habíamos yacido","habíais yacido","habían yacido","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had lain","hube yacido","hubiste yacido","hubo yacido","hubimos yacido","hubisteis yacido","hubieron yacido","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have lain","habría yacido","habrías yacido","habría yacido","habríamos yacido","habríais yacido","habrían yacido","yaciendo","lying","yacido","lain/laid" +"yazcamos" +"yacer","to lie","Subjuntivo","Subjunctive","Presente","Present","I lie, am lying","yazca","yazcas","yazca","yazcamos","yazcáis","yazcan","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I lay/laid, was lying","yaciera","yacieras","yaciera","yaciéramos","yacierais","yacieran","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Subjuntivo","Subjunctive","Futuro","Future","I will lie","yaciere","yacieres","yaciere","yaciéremos","yaciereis","yacieren","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have lain, lay/laid","haya yacido","hayas yacido","haya yacido","hayamos yacido","hayáis yacido","hayan yacido","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have lain","hubiere yacido","hubieres yacido","hubiere yacido","hubiéremos yacido","hubiereis yacido","hubieren yacido","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had lain","hubiera yacido","hubieras yacido","hubiera yacido","hubiéramos yacido","hubierais yacido","hubieran yacido","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Lie! Don't lie!","","yace","yazca","yazcamos","yaced","yazcan","yaciendo","lying","yacido","lain/laid" +"yacer","to lie","Imperativo Negativo","Imperative Negative","Presente","Present","Lie! Don't lie!","","no yazcas","no yazca","no yazcamos","no yazcáis","no yazcan","yaciendo","lying","yacido","lain/laid" +"zambullirse","to dive, plunge","Indicativo","Indicative","Presente","Present","I dive, am diving","me zambullo","te zambulles","se zambulle","nos zambullimos","os zambullís","se zambullen","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Futuro","Future","I will dive","me zambulliré","te zambullirás","se zambullirá","nos zambulliremos","os zambulliréis","se zambullirán","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Imperfecto","Imperfect","I was diving, used to dive, dove","me zambullía","te zambullías","se zambullía","nos zambullíamos","os zambullíais","se zambullían","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Pretérito","Preterite","I dove","me zambullí","te zambulliste","se zambulló","nos zambullimos","os zambullisteis","se zambulleron","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Condicional","Conditional","I would dive","me zambulliría","te zambullirías","se zambulliría","nos zambulliríamos","os zambulliríais","se zambullirían","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Presente perfecto","Present Perfect","I have dived","me he zambullido","te has zambullido","se ha zambullido","nos hemos zambullido","os habéis zambullido","se han zambullido","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have dived","me habré zambullido","te habrás zambullido","se habrá zambullido","nos habremos zambullido","os habréis zambullido","se habrán zambullido","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had dived","me había zambullido","te habías zambullido","se había zambullido","nos habíamos zambullido","os habíais zambullido","se habían zambullido","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had dived","me hube zambullido","te hubiste zambullido","se hubo zambullido","nos hubimos zambullido","os hubisteis zambullido","se hubieron zambullido","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have dived","me habría zambullido","te habrías zambullido","se habría zambullido","nos habríamos zambullido","os habríais zambullido","se habrían zambullido","zambulléndose","diving","zambullido","dove" +"nos zambullamos" +"zambullirse","to dive, plunge","Subjuntivo","Subjunctive","Presente","Present","I dive, am diving","me zambulla","te zambullas","se zambulla","nos zambullamos","os zambulláis","se zambullan","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I dove, was diving","me zambullera","te zambulleras","se zambullera","nos zambulléramos","os zambullerais","se zambulleran","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Subjuntivo","Subjunctive","Futuro","Future","I will dive","me zambullere","te zambulleres","se zambullere","nos zambulléremos","os zambullereis","se zambulleren","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have dived, dove","me haya zambullido","te hayas zambullido","se haya zambullido","nos hayamos zambullido","os hayáis zambullido","se hayan zambullido","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have dived","me hubiere zambullido","te hubieres zambullido","se hubiere zambullido","nos hubiéremos zambullido","os hubiereis zambullido","se hubieren zambullido","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had dived","me hubiera zambullido","te hubieras zambullido","se hubiera zambullido","nos hubiéramos zambullido","os hubierais zambullido","se hubieran zambullido","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dive! Don't dive!","","zambúllete","zambúllase","zambullámonos","zambullíos","zambúllanse","zambulléndose","diving","zambullido","dove" +"zambullirse","to dive, plunge","Imperativo Negativo","Imperative Negative","Presente","Present","Dive! Don't dive!","","no te zambullas","no se zambulla","no nos zambullamos","no os zambulláis","no se zambullan","zambulléndose","diving","zambullido","dove" +"besar","to kiss","Indicativo","Indicative","Presente","Present","I kiss, am kissing","beso","besas","besa","besamos","besáis","besan","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Futuro","Future","I will kiss","besaré","besarás","besará","besaremos","besaréis","besarán","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Imperfecto","Imperfect","I was kissing, used to kiss, kissed","besaba","besabas","besaba","besábamos","besabais","besaban","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Pretérito","Preterite","I kissed","besé","besaste","besó","besamos","besasteis","besaron","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Condicional","Conditional","I would kiss","besaría","besarías","besaría","besaríamos","besaríais","besarían","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Presente perfecto","Present Perfect","I have kissed","he besado","has besado","ha besado","hemos besado","habéis besado","han besado","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have kissed","habré besado","habrás besado","habrá besado","habremos besado","habréis besado","habrán besado","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had kissed","había besado","habías besado","había besado","habíamos besado","habíais besado","habían besado","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had kissed","hube besado","hubiste besado","hubo besado","hubimos besado","hubisteis besado","hubieron besado","besando","kissing","besado","kissed" +"besar","to kiss","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have kissed","habría besado","habrías besado","habría besado","habríamos besado","habríais besado","habrían besado","besando","kissing","besado","kissed" +"besemos" +"besar","to kiss","Subjuntivo","Subjunctive","Presente","Present","I kiss, am kissing","bese","beses","bese","besemos","beséis","besen","besando","kissing","besado","kissed" +"besar","to kiss","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I kissed, was kissing","besara","besaras","besara","besáramos","besarais","besaran","besando","kissing","besado","kissed" +"besar","to kiss","Subjuntivo","Subjunctive","Futuro","Future","I will kiss","besare","besares","besare","besáremos","besareis","besaren","besando","kissing","besado","kissed" +"besar","to kiss","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have kissed, kissed","haya besado","hayas besado","haya besado","hayamos besado","hayáis besado","hayan besado","besando","kissing","besado","kissed" +"besar","to kiss","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have kissed","hubiere besado","hubieres besado","hubiere besado","hubiéremos besado","hubiereis besado","hubieren besado","besando","kissing","besado","kissed" +"besar","to kiss","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had kissed","hubiera besado","hubieras besado","hubiera besado","hubiéramos besado","hubierais besado","hubieran besado","besando","kissing","besado","kissed" +"besar","to kiss","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Kiss! Don't kiss!","","besa","bese","besemos","besad","besen","besando","kissing","besado","kissed" +"besar","to kiss","Imperativo Negativo","Imperative Negative","Presente","Present","Kiss! Don't kiss!","","no beses","no bese","no besemos","no beséis","no besen","besando","kissing","besado","kissed" +"bailar","to dance","Indicativo","Indicative","Presente","Present","I dance, am dancing","bailo","bailas","baila","bailamos","bailáis","bailan","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Futuro","Future","I will dance","bailaré","bailarás","bailará","bailaremos","bailaréis","bailarán","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Imperfecto","Imperfect","I was dancing, used to dance, danced","bailaba","bailabas","bailaba","bailábamos","bailabais","bailaban","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Pretérito","Preterite","I danced","bailé","bailaste","bailó","bailamos","bailasteis","bailaron","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Condicional","Conditional","I would dance","bailaría","bailarías","bailaría","bailaríamos","bailaríais","bailarían","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Presente perfecto","Present Perfect","I have danced","he bailado","has bailado","ha bailado","hemos bailado","habéis bailado","han bailado","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have danced","habré bailado","habrás bailado","habrá bailado","habremos bailado","habréis bailado","habrán bailado","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had danced","había bailado","habías bailado","había bailado","habíamos bailado","habíais bailado","habían bailado","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had danced","hube bailado","hubiste bailado","hubo bailado","hubimos bailado","hubisteis bailado","hubieron bailado","bailando","dancing","bailado","danced" +"bailar","to dance","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have danced","habría bailado","habrías bailado","habría bailado","habríamos bailado","habríais bailado","habrían bailado","bailando","dancing","bailado","danced" +"bailemos" +"bailar","to dance","Subjuntivo","Subjunctive","Presente","Present","I dance, am dancing","baile","bailes","baile","bailemos","bailéis","bailen","bailando","dancing","bailado","danced" +"bailar","to dance","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I danced, was dancing","bailara","bailaras","bailara","bailáramos","bailarais","bailaran","bailando","dancing","bailado","danced" +"bailar","to dance","Subjuntivo","Subjunctive","Futuro","Future","I will dance","bailare","bailares","bailare","bailáremos","bailareis","bailaren","bailando","dancing","bailado","danced" +"bailar","to dance","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have danced, danced","haya bailado","hayas bailado","haya bailado","hayamos bailado","hayáis bailado","hayan bailado","bailando","dancing","bailado","danced" +"bailar","to dance","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have danced","hubiere bailado","hubieres bailado","hubiere bailado","hubiéremos bailado","hubiereis bailado","hubieren bailado","bailando","dancing","bailado","danced" +"bailar","to dance","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had danced","hubiera bailado","hubieras bailado","hubiera bailado","hubiéramos bailado","hubierais bailado","hubieran bailado","bailando","dancing","bailado","danced" +"bailar","to dance","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Dance! Don't dance!","","baila","baile","bailemos","bailad","bailen","bailando","dancing","bailado","danced" +"bailar","to dance","Imperativo Negativo","Imperative Negative","Presente","Present","Dance! Don't dance!","","no bailes","no baile","no bailemos","no bailéis","no bailen","bailando","dancing","bailado","danced" +"presentar","to introduce","Indicativo","Indicative","Presente","Present","I introduce, am introducing","presento","presentas","presenta","presentamos","presentáis","presentan","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Futuro","Future","I will introduce","presentaré","presentarás","presentará","presentaremos","presentaréis","presentarán","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Imperfecto","Imperfect","I was introducing, used to introduce, introduced","presentaba","presentabas","presentaba","presentábamos","presentabais","presentaban","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Pretérito","Preterite","I introduced","presenté","presentaste","presentó","presentamos","presentasteis","presentaron","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Condicional","Conditional","I would introduce","presentaría","presentarías","presentaría","presentaríamos","presentaríais","presentarían","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Presente perfecto","Present Perfect","I have introduced","he presentado","has presentado","ha presentado","hemos presentado","habéis presentado","han presentado","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have introduced","habré presentado","habrás presentado","habrá presentado","habremos presentado","habréis presentado","habrán presentado","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had introduced","había presentado","habías presentado","había presentado","habíamos presentado","habíais presentado","habían presentado","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had introduced","hube presentado","hubiste presentado","hubo presentado","hubimos presentado","hubisteis presentado","hubieron presentado","presentando","introducing","presentado","introduced" +"presentar","to introduce","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have introduced","habría presentado","habrías presentado","habría presentado","habríamos presentado","habríais presentado","habrían presentado","presentando","introducing","presentado","introduced" +"presentemos" +"presentar","to introduce","Subjuntivo","Subjunctive","Presente","Present","I introduce, am introducing","presente","presentes","presente","presentemos","presentéis","presenten","presentando","introducing","presentado","introduced" +"presentar","to introduce","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I introduced, was introducing","presentara","presentaras","presentara","presentáramos","presentarais","presentaran","presentando","introducing","presentado","introduced" +"presentar","to introduce","Subjuntivo","Subjunctive","Futuro","Future","I will introduce","presentare","presentares","presentare","presentáremos","presentareis","presentaren","presentando","introducing","presentado","introduced" +"presentar","to introduce","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have introduced, introduced","haya presentado","hayas presentado","haya presentado","hayamos presentado","hayáis presentado","hayan presentado","presentando","introducing","presentado","introduced" +"presentar","to introduce","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have introduced","hubiere presentado","hubieres presentado","hubiere presentado","hubiéremos presentado","hubiereis presentado","hubieren presentado","presentando","introducing","presentado","introduced" +"presentar","to introduce","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had introduced","hubiera presentado","hubieras presentado","hubiera presentado","hubiéramos presentado","hubierais presentado","hubieran presentado","presentando","introducing","presentado","introduced" +"presentar","to introduce","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Introduce! Don't introduce!","","presenta","presente","presentemos","presentad","presenten","presentando","introducing","presentado","introduced" +"presentar","to introduce","Imperativo Negativo","Imperative Negative","Presente","Present","Introduce! Don't introduce!","","no presentes","no presente","no presentemos","no presentéis","no presenten","presentando","introducing","presentado","introduced" +"esperar","to hope","Indicativo","Indicative","Presente","Present","I hope, am hoping","espero","esperas","espera","esperamos","esperáis","esperan","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Futuro","Future","I will hope","esperaré","esperarás","esperará","esperaremos","esperaréis","esperarán","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Imperfecto","Imperfect","I was hoping, used to hope, hoped","esperaba","esperabas","esperaba","esperábamos","esperabais","esperaban","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Pretérito","Preterite","I hoped","esperé","esperaste","esperó","esperamos","esperasteis","esperaron","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Condicional","Conditional","I would hope","esperaría","esperarías","esperaría","esperaríamos","esperaríais","esperarían","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Presente perfecto","Present Perfect","I have hoped","he esperado","has esperado","ha esperado","hemos esperado","habéis esperado","han esperado","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Futuro perfecto","Future Perfect","I will have hoped","habré esperado","habrás esperado","habrá esperado","habremos esperado","habréis esperado","habrán esperado","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Pluscuamperfecto","Past Perfect","I had hoped","había esperado","habías esperado","había esperado","habíamos esperado","habíais esperado","habían esperado","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Pretérito anterior","Preterite (Archaic)","I had hoped","hube esperado","hubiste esperado","hubo esperado","hubimos esperado","hubisteis esperado","hubieron esperado","esperando","hoping","esperado","hoped" +"esperar","to hope","Indicativo","Indicative","Condicional perfecto","Conditional Perfect","I would have hoped","habría esperado","habrías esperado","habría esperado","habríamos esperado","habríais esperado","habrían esperado","esperando","hoping","esperado","hoped" +"esperemos" +"esperar","to hope","Subjuntivo","Subjunctive","Presente","Present","I hope, am hoping","espere","esperes","espere","esperemos","esperéis","esperen","esperando","hoping","esperado","hoped" +"esperar","to hope","Subjuntivo","Subjunctive","Imperfecto","Imperfect","I hoped, was hoping","esperara","esperaras","esperara","esperáramos","esperarais","esperaran","esperando","hoping","esperado","hoped" +"esperar","to hope","Subjuntivo","Subjunctive","Futuro","Future","I will hope","esperare","esperares","esperare","esperáremos","esperareis","esperaren","esperando","hoping","esperado","hoped" +"esperar","to hope","Subjuntivo","Subjunctive","Presente perfecto","Present Perfect","I have hoped, hoped","haya esperado","hayas esperado","haya esperado","hayamos esperado","hayáis esperado","hayan esperado","esperando","hoping","esperado","hoped" +"esperar","to hope","Subjuntivo","Subjunctive","Futuro perfecto","Future Perfect","I will have hoped","hubiere esperado","hubieres esperado","hubiere esperado","hubiéremos esperado","hubiereis esperado","hubieren esperado","esperando","hoping","esperado","hoped" +"esperar","to hope","Subjuntivo","Subjunctive","Pluscuamperfecto","Past Perfect","I had hoped","hubiera esperado","hubieras esperado","hubiera esperado","hubiéramos esperado","hubierais esperado","hubieran esperado","esperando","hoping","esperado","hoped" +"esperar","to hope","Imperativo Afirmativo","Imperative Affirmative","Presente","Present","Hope! Don't hope!","","espera","espere","esperemos","esperad","esperen","esperando","hoping","esperado","hoped" +"esperar","to hope","Imperativo Negativo","Imperative Negative","Presente","Present","Hope! Don't hope!","","no esperes","no espere","no esperemos","no esperéis","no esperen","esperando","hoping","esperado","hoped"