From 3033123cf175fe950c8ec2314f9c8fd0dd4849c0 Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Wed, 28 Nov 2018 09:29:02 -0800 Subject: [PATCH 1/4] Error on array literals with types that are too complex to represent --- src/compiler/checker.ts | 61 ++++++++++++++++------------ src/compiler/diagnosticMessages.json | 4 ++ src/compiler/types.ts | 3 +- 3 files changed, 42 insertions(+), 26 deletions(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 5e2c5d8769033..78634746c0406 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -388,6 +388,7 @@ namespace ts { const autoType = createIntrinsicType(TypeFlags.Any, "any"); const wildcardType = createIntrinsicType(TypeFlags.Any, "any"); const errorType = createIntrinsicType(TypeFlags.Any, "error"); + const overflowErrorType = createIntrinsicType(TypeFlags.Any, "error"); const unknownType = createIntrinsicType(TypeFlags.Unknown, "unknown"); const undefinedType = createIntrinsicType(TypeFlags.Undefined, "undefined"); const undefinedWideningType = strictNullChecks ? undefinedType : createIntrinsicType(TypeFlags.Undefined | TypeFlags.ContainsWideningType, "undefined"); @@ -9024,18 +9025,6 @@ namespace ts { return includes; } - function isSubtypeOfAny(source: Type, targets: ReadonlyArray): boolean { - for (const target of targets) { - if (source !== target && isTypeSubtypeOf(source, target) && ( - !(getObjectFlags(getTargetType(source)) & ObjectFlags.Class) || - !(getObjectFlags(getTargetType(target)) & ObjectFlags.Class) || - isTypeDerivedFrom(source, target))) { - return true; - } - } - return false; - } - function isSetOfLiteralsFromSameEnum(types: ReadonlyArray): boolean { const first = types[0]; if (first.flags & TypeFlags.EnumLiteral) { @@ -9052,17 +9041,34 @@ namespace ts { return false; } - function removeSubtypes(types: Type[]) { + function removeSubtypes(types: Type[], checkOverflow: boolean): boolean { if (types.length === 0 || isSetOfLiteralsFromSameEnum(types)) { - return; + return true; } let i = types.length; - while (i > 0) { + let count = 0; + loop: while (i > 0) { i--; - if (isSubtypeOfAny(types[i], types)) { - orderedRemoveItemAt(types, i); + const source = types[i]; + for (const target of types) { + if (source !== target) { + if (isTypeSubtypeOf(source, target) && ( + !(getObjectFlags(getTargetType(source)) & ObjectFlags.Class) || + !(getObjectFlags(getTargetType(target)) & ObjectFlags.Class) || + isTypeDerivedFrom(source, target))) { + orderedRemoveItemAt(types, i); + continue loop; + } + count++; + if (checkOverflow && count >= 500000) { + // If we reach 500000 failed subtype checks, we deem the union type + // too complex to represent. We indicate this by returning false. + return false; + } + } } } + return true; } function removeRedundantLiteralTypes(types: Type[], includes: TypeFlags) { @@ -9109,7 +9115,10 @@ namespace ts { } break; case UnionReduction.Subtype: - removeSubtypes(typeSet); + case UnionReduction.SubtypeOrError: + if (!removeSubtypes(typeSet, /*checkOverflow*/ unionReduction === UnionReduction.SubtypeOrError)) { + return overflowErrorType; + }; break; } if (typeSet.length === 0) { @@ -17717,7 +17726,15 @@ namespace ts { return createTupleType(elementTypes, minLength, hasRestElement); } } - return getArrayLiteralType(elementTypes, UnionReduction.Subtype); + if (!elementTypes.length) { + return createArrayType(strictNullChecks ? implicitNeverType : undefinedWideningType); + } + const elementType = getUnionType(elementTypes, UnionReduction.SubtypeOrError); + if (elementType === overflowErrorType) { + error(node, Diagnostics.Array_literal_type_is_too_complex_to_represent); + return createArrayType(errorType); + } + return createArrayType(elementType); } function getArrayLiteralTupleTypeIfApplicable(elementTypes: Type[], contextualType: Type | undefined, hasRestElement: boolean, elementCount = elementTypes.length) { @@ -17746,12 +17763,6 @@ namespace ts { } } - function getArrayLiteralType(elementTypes: Type[], unionReduction = UnionReduction.Literal) { - return createArrayType(elementTypes.length ? - getUnionType(elementTypes, unionReduction) : - strictNullChecks ? implicitNeverType : undefinedWideningType); - } - function isNumericName(name: DeclarationName): boolean { switch (name.kind) { case SyntaxKind.ComputedPropertyName: diff --git a/src/compiler/diagnosticMessages.json b/src/compiler/diagnosticMessages.json index e3f8e1a7ad5a6..b96ee6a226110 100644 --- a/src/compiler/diagnosticMessages.json +++ b/src/compiler/diagnosticMessages.json @@ -2529,6 +2529,10 @@ "category": "Error", "code": 2742 }, + "Array literal type is too complex to represent.": { + "category": "Error", + "code": 2743 + }, "Import declaration '{0}' is using private name '{1}'.": { "category": "Error", diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 495465f70326c..6e1374f66505b 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -3230,7 +3230,8 @@ namespace ts { export const enum UnionReduction { None = 0, Literal, - Subtype + Subtype, + SubtypeOrError } // NOTE: If modifying this enum, must modify `TypeFormatFlags` too! From 744b4d21b8da9a687e3667448665e1b0090b4775 Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Wed, 28 Nov 2018 09:47:29 -0800 Subject: [PATCH 2/4] Add regression test --- .../cases/compiler/arrayLiteralTooComplex.ts | 1002 +++++++++++++++++ 1 file changed, 1002 insertions(+) create mode 100644 tests/cases/compiler/arrayLiteralTooComplex.ts diff --git a/tests/cases/compiler/arrayLiteralTooComplex.ts b/tests/cases/compiler/arrayLiteralTooComplex.ts new file mode 100644 index 0000000000000..89251bbb784a2 --- /dev/null +++ b/tests/cases/compiler/arrayLiteralTooComplex.ts @@ -0,0 +1,1002 @@ +let a = [ + {texto: ";)", sentimento: 1, ";)": 1}, + {texto: ";@", sentimento: -1, ";@": -1}, + {texto: ";*", sentimento: -1, ";*": -1}, + {texto: ";**", sentimento: -1, ";**": -1}, + {texto: ";~", sentimento: -1, ";~": -1}, + {texto: ";D", sentimento: -1, ";D": -1}, + {texto: ";P", sentimento: -1, ";P": -1}, + {texto: ";p", sentimento: -1, ";p": -1}, + {texto: ";x", sentimento: -1, ";x": -1}, + {texto: ";xx", sentimento: -1, ";xx": -1}, + {texto: ":'(", sentimento: -1, ":'(": -1}, + {texto: ":')", sentimento: -1, ":')": -1}, + {texto: ":(", sentimento: -1, ":(": -1}, + {texto: ":)", sentimento: 1, ":)": 1}, + {texto: ":)))", sentimento: 1, ":)))": 1}, + {texto: ":]", sentimento: -1, ":]": -1}, + {texto: ":@", sentimento: 0, ":@": 0}, + {texto: ":*", sentimento: -1, ":*": -1}, + {texto: ":<", sentimento: -1, ":<": -1}, + {texto: ":~", sentimento: -1, ":~": -1}, + {texto: ":$", sentimento: -1, ":$": -1}, + {texto: ":D", sentimento: 1, ":D": 1}, + {texto: ":p", sentimento: -1, ":p": -1}, + {texto: ":P", sentimento: 0, ":P": 0}, + {texto: ":x", sentimento: -1, ":x": -1}, + {texto: ":x)", sentimento: 1, ":x)": 1}, + {texto: "(:", sentimento: -1, "(:": -1}, + {texto: "(=", sentimento: 1, "(=": 1}, + {texto: "):", sentimento: -1, "):": -1}, + {texto: ")):", sentimento: -1, ")):": -1}, + {texto: "*:", sentimento: -1, "*:": -1}, + {texto: "#2", sentimento: -1, "#2": -1}, + {texto: "#2011", sentimento: -1, "#2011": -1}, + {texto: "#2014", sentimento: -1, "#2014": -1}, + {texto: "#4square", sentimento: -1, "#4square": -1}, + {texto: "#64bit", sentimento: 1, "#64bit": 1}, + {texto: "#adsl", sentimento: -1, "#adsl": -1}, + {texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1}, + {texto: "#afazenda", sentimento: -1, "#afazenda": -1}, + {texto: "#aff", sentimento: -1, "#aff": -1}, + {texto: "#again", sentimento: -1, "#again": -1}, + {texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1}, + {texto: "#agua", sentimento: 1, "#agua": 1}, + {texto: "#aimeucora", sentimento: -1, "#aimeucora": -1}, + {texto: "#alan", sentimento: -1, "#alan": -1}, + {texto: "#aline", sentimento: -1, "#aline": -1}, + {texto: "#amo", sentimento: 1, "#amo": 1}, + {texto: "#amodoro", sentimento: 1, "#amodoro": 1}, + {texto: "#amor", sentimento: -1, "#amor": -1}, + {texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1}, + {texto: "#an", sentimento: 1, "#an": 1}, + {texto: "#android", sentimento: 1, "#android": 1}, + {texto: "#animada", sentimento: -1, "#animada": -1}, + {texto: "#apagao", sentimento: -1, "#apagao": -1}, + {texto: "#apps", sentimento: -1, "#apps": -1}, + {texto: "#aqu", sentimento: 1, "#aqu": 1}, + {texto: "#ari", sentimento: -1, "#ari": -1}, + {texto: "#ariane", sentimento: -1, "#ariane": -1}, + {texto: "#bad", sentimento: -1, "#bad": -1}, + {texto: "#bakugan", sentimento: -1, "#bakugan": -1}, + {texto: "#bam", sentimento: 1, "#bam": 1}, + {texto: "#bandida", sentimento: -1, "#bandida": -1}, + {texto: "#bankonline", sentimento: 1, "#bankonline": 1}, + {texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1}, + {texto: "#beer", sentimento: 1, "#beer": 1}, + {texto: "#beijo", sentimento: 1, "#beijo": 1}, + {texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1}, + {texto: "#bigmistake", sentimento: -1, "#bigmistake": -1}, + {texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1}, + {texto: "#bio", sentimento: 1, "#bio": 1}, + {texto: "#biologia", sentimento: -1, "#biologia": -1}, + {texto: "#birdbrain", sentimento: -1, "#birdbrain": -1}, + {texto: "#blackberry", sentimento: -1, "#blackberry": -1}, + {texto: "#blackhat", sentimento: -1, "#blackhat": -1}, + {texto: "#blogprog", sentimento: -1, "#blogprog": -1}, + {texto: "#bodareal", sentimento: -1, "#bodareal": -1}, + {texto: "#bombando", sentimento: -1, "#bombando": -1}, + {texto: "#bomdia", sentimento: -1, "#bomdia": -1}, + {texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1}, + {texto: "#boobs", sentimento: 1, "#boobs": 1}, + {texto: "#boomsm", sentimento: 1, "#boomsm": 1}, + {texto: "#boss", sentimento: 1, "#boss": 1}, + {texto: "#brandsclub", sentimento: -1, "#brandsclub": -1}, + {texto: "#brasil", sentimento: -1, "#brasil": -1}, + {texto: "#brasilia", sentimento: -1, "#brasilia": -1}, + {texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1}, + {texto: "#brazilians", sentimento: -1, "#brazilians": -1}, + {texto: "#bsb", sentimento: -1, "#bsb": -1}, + {texto: "#bub", sentimento: -1, "#bub": -1}, + {texto: "#buongiorno", sentimento: -1, "#buongiorno": -1}, + {texto: "#burro", sentimento: -1, "#burro": -1}, + {texto: "#cad", sentimento: -1, "#cad": -1}, + {texto: "#caelum", sentimento: 1, "#caelum": 1}, + {texto: "#cafeina", sentimento: -1, "#cafeina": -1}, + {texto: "#caixa", sentimento: -1, "#caixa": -1}, + {texto: "#cal", sentimento: 1, "#cal": 1}, + {texto: "#camaradagem", sentimento: -1, "#camaradagem": -1}, + {texto: "#camel", sentimento: 1, "#camel": 1}, + {texto: "#capric", sentimento: -1, "#capric": -1}, + {texto: "#carol", sentimento: -1, "#carol": -1}, + {texto: "#carris", sentimento: -1, "#carris": -1}, + {texto: "#cartolafc", sentimento: -1, "#cartolafc": -1}, + {texto: "#catalao", sentimento: -1, "#catalao": -1}, + {texto: "#cdlr", sentimento: 1, "#cdlr": 1}, + {texto: "#cearasc", sentimento: -1, "#cearasc": -1}, + {texto: "#centauro", sentimento: -1, "#centauro": -1}, + {texto: "#certeza", sentimento: -1, "#certeza": -1}, + {texto: "#cet", sentimento: -1, "#cet": -1}, + {texto: "#charmeleon", sentimento: 1, "#charmeleon": 1}, + {texto: "#chelas", sentimento: 1, "#chelas": 1}, + {texto: "#chrome", sentimento: 1, "#chrome": 1}, + {texto: "#cielo", sentimento: -1, "#cielo": -1}, + {texto: "#cloaking", sentimento: -1, "#cloaking": -1}, + {texto: "#cmteam", sentimento: 1, "#cmteam": 1}, + {texto: "#comex", sentimento: -1, "#comex": -1}, + {texto: "#comofas", sentimento: -1, "#comofas": -1}, + {texto: "#compos", sentimento: -1, "#compos": -1}, + {texto: "#conspira", sentimento: -1, "#conspira": -1}, + {texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1}, + {texto: "#contribuir", sentimento: 1, "#contribuir": 1}, + {texto: "#conversos", sentimento: -1, "#conversos": -1}, + {texto: "#copa", sentimento: -1, "#copa": -1}, + {texto: "#corpoevida", sentimento: 1, "#corpoevida": 1}, + {texto: "#correios", sentimento: -1, "#correios": -1}, + {texto: "#cpco4", sentimento: 1, "#cpco4": 1}, + {texto: "#cpfl", sentimento: -1, "#cpfl": -1}, + {texto: "#cqc", sentimento: -1, "#cqc": -1}, + {texto: "#cqteste", sentimento: -1, "#cqteste": -1}, + {texto: "#cry", sentimento: -1, "#cry": -1}, + {texto: "#cs1", sentimento: 1, "#cs1": 1}, + {texto: "#csrio", sentimento: 1, "#csrio": 1}, + {texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1}, + {texto: "#curiosidades", sentimento: 1, "#curiosidades": 1}, + {texto: "#curso", sentimento: -1, "#curso": -1}, + {texto: "#d", sentimento: 1, "#d": 1}, + {texto: "#dailyformula", sentimento: 1, "#dailyformula": 1}, + {texto: "#datena", sentimento: -1, "#datena": -1}, + {texto: "#declara", sentimento: -1, "#declara": -1}, + {texto: "#defeito", sentimento: -1, "#defeito": -1}, + {texto: "#desconfiado", sentimento: 1, "#desconfiado": 1}, + {texto: "#desculpa", sentimento: -1, "#desculpa": -1}, + {texto: "#deus", sentimento: 1, "#deus": 1}, + {texto: "#di", sentimento: 1, "#di": 1}, + {texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1}, + {texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1}, + {texto: "#diegocaash", sentimento: -1, "#diegocaash": -1}, + {texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1}, + {texto: "#digimon", sentimento: -1, "#digimon": -1}, + {texto: "#digitalworld", sentimento: -1, "#digitalworld": -1}, + {texto: "#django1", sentimento: 1, "#django1": 1}, + {texto: "#dojorio", sentimento: 1, "#dojorio": 1}, + {texto: "#dorgas", sentimento: -1, "#dorgas": -1}, + {texto: "#dormir", sentimento: 1, "#dormir": 1}, + {texto: "#e3", sentimento: -1, "#e3": -1}, + {texto: "#e32011", sentimento: -1, "#e32011": -1}, + {texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1}, + {texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1}, + {texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1}, + {texto: "#ela", sentimento: -1, "#ela": -1}, + {texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1}, + {texto: "#elbotin", sentimento: 1, "#elbotin": 1}, + {texto: "#elcorner", sentimento: -1, "#elcorner": -1}, + {texto: "#ele", sentimento: -1, "#ele": -1}, + {texto: "#eletromate", sentimento: -1, "#eletromate": -1}, + {texto: "#emerson", sentimento: -1, "#emerson": -1}, + {texto: "#enem", sentimento: -1, "#enem": -1}, + {texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1}, + {texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1}, + {texto: "#epic", sentimento: -1, "#epic": -1}, + {texto: "#epicwin", sentimento: 0, "#epicwin": 0}, + {texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1}, + {texto: "#eressexypero", sentimento: 1, "#eressexypero": 1}, + {texto: "#errodotz", sentimento: -1, "#errodotz": -1}, + {texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1}, + {texto: "#escroto", sentimento: -1, "#escroto": -1}, + {texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1}, + {texto: "#estad", sentimento: -1, "#estad": -1}, + {texto: "#estudar", sentimento: -1, "#estudar": -1}, + {texto: "#etenildos", sentimento: -1, "#etenildos": -1}, + {texto: "#eu", sentimento: -1, "#eu": -1}, + {texto: "#eununca", sentimento: -1, "#eununca": -1}, + {texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1}, + {texto: "#evernote", sentimento: 1, "#evernote": 1}, + {texto: "#exalta", sentimento: -1, "#exalta": -1}, + {texto: "#expotch", sentimento: -1, "#expotch": -1}, + {texto: "#facebook", sentimento: 1, "#facebook": 1}, + {texto: "#fail", sentimento: -1, "#fail": -1}, + {texto: "#faiooo", sentimento: -1, "#faiooo": -1}, + {texto: "#fascinante", sentimento: 1, "#fascinante": 1}, + {texto: "#fashion", sentimento: -1, "#fashion": -1}, + {texto: "#fato", sentimento: -1, "#fato": -1}, + {texto: "#fb", sentimento: 1, "#fb": 1}, + {texto: "#feil", sentimento: -1, "#feil": -1}, + {texto: "#feio", sentimento: -1, "#feio": -1}, + {texto: "#fertagus", sentimento: 1, "#fertagus": 1}, + {texto: "#ff", sentimento: 1, "#ff": 1}, + {texto: "#fibra", sentimento: -1, "#fibra": -1}, + {texto: "#ficadica", sentimento: -1, "#ficadica": -1}, + {texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1}, + {texto: "#fifa11", sentimento: 1, "#fifa11": 1}, + {texto: "#fikdik", sentimento: -1, "#fikdik": -1}, + {texto: "#filha", sentimento: -1, "#filha": -1}, + {texto: "#finishh", sentimento: 1, "#finishh": 1}, + {texto: "#firefox", sentimento: 1, "#firefox": 1}, + {texto: "#fisl", sentimento: 1, "#fisl": 1}, + {texto: "#flash", sentimento: 1, "#flash": 1}, + {texto: "#flopou", sentimento: -1, "#flopou": -1}, + {texto: "#fodaa", sentimento: -1, "#fodaa": -1}, + {texto: "#fodao", sentimento: 1, "#fodao": 1}, + {texto: "#fome", sentimento: 1, "#fome": 1}, + {texto: "#foramicarla", sentimento: -1, "#foramicarla": -1}, + {texto: "#forever", sentimento: 1, "#forever": 1}, + {texto: "#foreveralone", sentimento: 1, "#foreveralone": 1}, + {texto: "#forevergordo", sentimento: 1, "#forevergordo": 1}, + {texto: "#fortaleza", sentimento: -1, "#fortaleza": -1}, + {texto: "#frontinrio", sentimento: 1, "#frontinrio": 1}, + {texto: "#fsoa", sentimento: 1, "#fsoa": 1}, + {texto: "#fuckboy", sentimento: -1, "#fuckboy": -1}, + {texto: "#fuckyea", sentimento: 1, "#fuckyea": 1}, + {texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1}, + {texto: "#funk", sentimento: -1, "#funk": -1}, + {texto: "#gaga", sentimento: -1, "#gaga": -1}, + {texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1}, + {texto: "#gatos", sentimento: 1, "#gatos": 1}, + {texto: "#generationteen", sentimento: -1, "#generationteen": -1}, + {texto: "#gente", sentimento: -1, "#gente": -1}, + {texto: "#genteque", sentimento: -1, "#genteque": -1}, + {texto: "#ger", sentimento: -1, "#ger": -1}, + {texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1}, + {texto: "#gof9", sentimento: -1, "#gof9": -1}, + {texto: "#gol", sentimento: 1, "#gol": 1}, + {texto: "#golazo", sentimento: 1, "#golazo": 1}, + {texto: "#google", sentimento: -1, "#google": -1}, + {texto: "#googledoodle", sentimento: -1, "#googledoodle": -1}, + {texto: "#gr", sentimento: -1, "#gr": -1}, + {texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1}, + {texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1}, + {texto: "#gremio", sentimento: -1, "#gremio": -1}, + {texto: "#guanabara", sentimento: 1, "#guanabara": 1}, + {texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1}, + {texto: "#guicostnn", sentimento: -1, "#guicostnn": -1}, + {texto: "#harrypobre", sentimento: 1, "#harrypobre": 1}, + {texto: "#hi5", sentimento: 1, "#hi5": 1}, + {texto: "#historia", sentimento: -1, "#historia": -1}, + {texto: "#horacerta", sentimento: -1, "#horacerta": -1}, + {texto: "#hotmail", sentimento: -1, "#hotmail": -1}, + {texto: "#html5", sentimento: 1, "#html5": 1}, + {texto: "#humornegro", sentimento: 1, "#humornegro": 1}, + {texto: "#icwd", sentimento: 1, "#icwd": 1}, + {texto: "#ie", sentimento: 1, "#ie": 1}, + {texto: "#ifce", sentimento: -1, "#ifce": -1}, + {texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1}, + {texto: "#imagens", sentimento: 1, "#imagens": 1}, + {texto: "#infancia", sentimento: 1, "#infancia": 1}, + {texto: "#infografia", sentimento: 1, "#infografia": 1}, + {texto: "#inlove", sentimento: 1, "#inlove": 1}, + {texto: "#insensatos2", sentimento: -1, "#insensatos2": -1}, + {texto: "#internetbanking", sentimento: -1, "#internetbanking": -1}, + {texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1}, + {texto: "#intersystem", sentimento: -1, "#intersystem": -1}, + {texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1}, + {texto: "#ios5", sentimento: 1, "#ios5": 1}, + {texto: "#itau", sentimento: -1, "#itau": -1}, + {texto: "#j", sentimento: -1, "#j": -1}, + {texto: "#jam", sentimento: -1, "#jam": -1}, + {texto: "#jantar", sentimento: 1, "#jantar": 1}, + {texto: "#jaspion", sentimento: 1, "#jaspion": 1}, + {texto: "#jesse", sentimento: 1, "#jesse": 1}, + {texto: "#jim", sentimento: 1, "#jim": 1}, + {texto: "#joomla", sentimento: -1, "#joomla": -1}, + {texto: "#josatan", sentimento: 1, "#josatan": 1}, + {texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1}, + {texto: "#jumbo", sentimento: 1, "#jumbo": 1}, + {texto: "#kevin", sentimento: -1, "#kevin": -1}, + {texto: "#lance", sentimento: 1, "#lance": 1}, + {texto: "#le", sentimento: 1, "#le": 1}, + {texto: "#leticia", sentimento: -1, "#leticia": -1}, + {texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1}, + {texto: "#lindo", sentimento: 1, "#lindo": 1}, + {texto: "#linux", sentimento: 1, "#linux": 1}, + {texto: "#lion", sentimento: 1, "#lion": 1}, + {texto: "#lixo", sentimento: -1, "#lixo": -1}, + {texto: "#lixofonica", sentimento: -1, "#lixofonica": -1}, + {texto: "#lol", sentimento: -1, "#lol": -1}, + {texto: "#looser", sentimento: 1, "#looser": 1}, + {texto: "#luansantana", sentimento: -1, "#luansantana": -1}, + {texto: "#lucasednir", sentimento: -1, "#lucasednir": -1}, + {texto: "#mac", sentimento: -1, "#mac": -1}, + {texto: "#maconha", sentimento: -1, "#maconha": -1}, + {texto: "#madvma", sentimento: -1, "#madvma": -1}, + {texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1}, + {texto: "#magnocentro", sentimento: -1, "#magnocentro": -1}, + {texto: "#malha", sentimento: -1, "#malha": -1}, + {texto: "#manaus", sentimento: 1, "#manaus": 1}, + {texto: "#mariabethania", sentimento: -1, "#mariabethania": -1}, + {texto: "#marisa", sentimento: -1, "#marisa": -1}, + {texto: "#may", sentimento: -1, "#may": -1}, + {texto: "#mecaga", sentimento: -1, "#mecaga": -1}, + {texto: "#megalagana", sentimento: 1, "#megalagana": 1}, + {texto: "#megasena", sentimento: 1, "#megasena": 1}, + {texto: "#melhores", sentimento: 1, "#melhores": 1}, + {texto: "#melissa", sentimento: -1, "#melissa": -1}, + {texto: "#melissahorn", sentimento: 1, "#melissahorn": 1}, + {texto: "#memolesta", sentimento: -1, "#memolesta": -1}, + {texto: "#metrosp", sentimento: -1, "#metrosp": -1}, + {texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1}, + {texto: "#meusonho", sentimento: -1, "#meusonho": -1}, + {texto: "#microsoft", sentimento: -1, "#microsoft": -1}, + {texto: "#mimimi", sentimento: 1, "#mimimi": 1}, + {texto: "#mobile", sentimento: -1, "#mobile": -1}, + {texto: "#mockery", sentimento: 1, "#mockery": 1}, + {texto: "#mockito", sentimento: 1, "#mockito": 1}, + {texto: "#monografia", sentimento: -1, "#monografia": -1}, + {texto: "#montanagrill", sentimento: 1, "#montanagrill": 1}, + {texto: "#monterrey", sentimento: -1, "#monterrey": -1}, + {texto: "#morto", sentimento: -1, "#morto": -1}, + {texto: "#motos", sentimento: -1, "#motos": -1}, + {texto: "#movies", sentimento: 1, "#movies": 1}, + {texto: "#msn", sentimento: -1, "#msn": -1}, + {texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1}, + {texto: "#myhero", sentimento: 1, "#myhero": 1}, + {texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1}, + {texto: "#naomais", sentimento: -1, "#naomais": -1}, + {texto: "#nata", sentimento: -1, "#nata": -1}, + {texto: "#nervoso", sentimento: 1, "#nervoso": 1}, + {texto: "#net", sentimento: -1, "#net": -1}, + {texto: "#netcombo", sentimento: -1, "#netcombo": -1}, + {texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1}, + {texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1}, + {texto: "#nomamar", sentimento: -1, "#nomamar": -1}, + {texto: "#not", sentimento: -1, "#not": -1}, + {texto: "#oclone", sentimento: -1, "#oclone": -1}, + {texto: "#oda", sentimento: -1, "#oda": -1}, + {texto: "#odeio", sentimento: -1, "#odeio": -1}, + {texto: "#oi", sentimento: -1, "#oi": -1}, + {texto: "#old", sentimento: 1, "#old": 1}, + {texto: "#omg", sentimento: -1, "#omg": -1}, + {texto: "#opera", sentimento: 1, "#opera": 1}, + {texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1}, + {texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1}, + {texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1}, + {texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1}, + {texto: "#pais", sentimento: -1, "#pais": -1}, + {texto: "#palmeiras", sentimento: 1, "#palmeiras": 1}, + {texto: "#palocci", sentimento: -1, "#palocci": -1}, + {texto: "#panama", sentimento: 1, "#panama": 1}, + {texto: "#panico", sentimento: 1, "#panico": 1}, + {texto: "#parti", sentimento: -1, "#parti": -1}, + {texto: "#partiu", sentimento: -1, "#partiu": -1}, + {texto: "#patadeperro", sentimento: 1, "#patadeperro": 1}, + {texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0}, + {texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1}, + {texto: "#photoshop", sentimento: -1, "#photoshop": -1}, + {texto: "#php", sentimento: 1, "#php": 1}, + {texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1}, + {texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1}, + {texto: "#planetmix", sentimento: -1, "#planetmix": -1}, + {texto: "#plc122", sentimento: -1, "#plc122": -1}, + {texto: "#plimplim", sentimento: -1, "#plimplim": -1}, + {texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1}, + {texto: "#poderir", sentimento: -1, "#poderir": -1}, + {texto: "#pokemon", sentimento: -1, "#pokemon": -1}, + {texto: "#polishop", sentimento: -1, "#polishop": -1}, + {texto: "#politicagem", sentimento: -1, "#politicagem": -1}, + {texto: "#polvilho", sentimento: -1, "#polvilho": -1}, + {texto: "#popular", sentimento: -1, "#popular": -1}, + {texto: "#poweroflove", sentimento: -1, "#poweroflove": -1}, + {texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1}, + {texto: "#pqp", sentimento: -1, "#pqp": -1}, + {texto: "#prequi", sentimento: -1, "#prequi": -1}, + {texto: "#profiss", sentimento: 1, "#profiss": 1}, + {texto: "#programadojo", sentimento: -1, "#programadojo": -1}, + {texto: "#promo", sentimento: -1, "#promo": -1}, + {texto: "#prova", sentimento: -1, "#prova": -1}, + {texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1}, + {texto: "#ptt", sentimento: -1, "#ptt": -1}, + {texto: "#pucrs", sentimento: -1, "#pucrs": -1}, + {texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1}, + {texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1}, + {texto: "#qbomne", sentimento: -1, "#qbomne": -1}, + {texto: "#qconsp", sentimento: 1, "#qconsp": 1}, + {texto: "#quefasehein", sentimento: -1, "#quefasehein": -1}, + {texto: "#quepena", sentimento: -1, "#quepena": -1}, + {texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1}, + {texto: "#quiz", sentimento: 1, "#quiz": 1}, + {texto: "#ramon", sentimento: -1, "#ramon": -1}, + {texto: "#receba", sentimento: -1, "#receba": -1}, + {texto: "#reclame", sentimento: 1, "#reclame": 1}, + {texto: "#redeglobo", sentimento: -1, "#redeglobo": -1}, + {texto: "#referendum", sentimento: -1, "#referendum": -1}, + {texto: "#referendum2011", sentimento: -1, "#referendum2011": -1}, + {texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1}, + {texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1}, + {texto: "#revendatim", sentimento: -1, "#revendatim": -1}, + {texto: "#reynosa", sentimento: -1, "#reynosa": -1}, + {texto: "#riovermelho", sentimento: -1, "#riovermelho": -1}, + {texto: "#riverplate", sentimento: 1, "#riverplate": 1}, + {texto: "#rockrio", sentimento: -1, "#rockrio": -1}, + {texto: "#s", sentimento: -1, "#s": -1}, + {texto: "#sabado", sentimento: 1, "#sabado": 1}, + {texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1}, + {texto: "#safari", sentimento: 1, "#safari": 1}, + {texto: "#samsung", sentimento: -1, "#samsung": -1}, + {texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1}, + {texto: "#santoantonio", sentimento: -1, "#santoantonio": -1}, + {texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1}, + {texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1}, + {texto: "#semata", sentimento: -1, "#semata": -1}, + {texto: "#seo", sentimento: 0, "#seo": 0}, + {texto: "#seomoz", sentimento: 1, "#seomoz": 1}, + {texto: "#ser", sentimento: -1, "#ser": -1}, + {texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1}, + {texto: "#sga", sentimento: -1, "#sga": -1}, + {texto: "#sic", sentimento: 1, "#sic": 1}, + {texto: "#sigam", sentimento: -1, "#sigam": -1}, + {texto: "#signos", sentimento: -1, "#signos": -1}, + {texto: "#signout", sentimento: -1, "#signout": -1}, + {texto: "#site", sentimento: -1, "#site": -1}, + {texto: "#smiles", sentimento: -1, "#smiles": -1}, + {texto: "#sms", sentimento: -1, "#sms": -1}, + {texto: "#sogra", sentimento: -1, "#sogra": -1}, + {texto: "#sono", sentimento: -1, "#sono": -1}, + {texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1}, + {texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1}, + {texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1}, + {texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1}, + {texto: "#soyadicto", sentimento: 1, "#soyadicto": 1}, + {texto: "#speed", sentimento: -1, "#speed": -1}, + {texto: "#speedy", sentimento: -1, "#speedy": -1}, + {texto: "#spotv", sentimento: -1, "#spotv": -1}, + {texto: "#submarino", sentimento: -1, "#submarino": -1}, + {texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1}, + {texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1}, + {texto: "#tcc", sentimento: 1, "#tcc": 1}, + {texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1}, + {texto: "#teamo", sentimento: -1, "#teamo": -1}, + {texto: "#tecnologia", sentimento: 1, "#tecnologia": 1}, + {texto: "#telaquente", sentimento: -1, "#telaquente": -1}, + {texto: "#telefoncia", sentimento: -1, "#telefoncia": -1}, + {texto: "#telefonica", sentimento: -1, "#telefonica": -1}, + {texto: "#tenso", sentimento: -1, "#tenso": -1}, + {texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1}, + {texto: "#ti", sentimento: -1, "#ti": -1}, + {texto: "#tim", sentimento: -1, "#tim": -1}, + {texto: "#time", sentimento: -1, "#time": -1}, + {texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1}, + {texto: "#todosadora", sentimento: -1, "#todosadora": -1}, + {texto: "#topfive", sentimento: -1, "#topfive": -1}, + {texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1}, + {texto: "#totalyfail", sentimento: -1, "#totalyfail": -1}, + {texto: "#tps", sentimento: -1, "#tps": -1}, + {texto: "#transitosp", sentimento: -1, "#transitosp": -1}, + {texto: "#travelmug", sentimento: 1, "#travelmug": 1}, + {texto: "#travelw", sentimento: -1, "#travelw": -1}, + {texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1}, + {texto: "#treinaweb", sentimento: -1, "#treinaweb": -1}, + {texto: "#trollar", sentimento: -1, "#trollar": -1}, + {texto: "#trote", sentimento: -1, "#trote": -1}, + {texto: "#true", sentimento: 1, "#true": 1}, + {texto: "#tvi", sentimento: 1, "#tvi": 1}, + {texto: "#twitcam", sentimento: -1, "#twitcam": -1}, + {texto: "#twittcam", sentimento: -1, "#twittcam": -1}, + {texto: "#twitter", sentimento: -1, "#twitter": -1}, + {texto: "#uenf", sentimento: 1, "#uenf": 1}, + {texto: "#unesp", sentimento: -1, "#unesp": -1}, + {texto: "#uni", sentimento: -1, "#uni": -1}, + {texto: "#unico", sentimento: -1, "#unico": -1}, + {texto: "#unip", sentimento: -1, "#unip": -1}, + {texto: "#v", sentimento: -1, "#v": -1}, + {texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1}, + {texto: "#valdir", sentimento: -1, "#valdir": -1}, + {texto: "#valetudo", sentimento: -1, "#valetudo": -1}, + {texto: "#valeurge", sentimento: -1, "#valeurge": -1}, + {texto: "#vamp", sentimento: -1, "#vamp": -1}, + {texto: "#vdm", sentimento: -1, "#vdm": -1}, + {texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1}, + {texto: "#verdade", sentimento: 0, "#verdade": 0}, + {texto: "#vergonha", sentimento: -1, "#vergonha": -1}, + {texto: "#viage", sentimento: -1, "#viage": -1}, + {texto: "#vida", sentimento: -1, "#vida": -1}, + {texto: "#viih", sentimento: -1, "#viih": -1}, + {texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1}, + {texto: "#vivo", sentimento: 0, "#vivo": 0}, + {texto: "#vmb", sentimento: -1, "#vmb": -1}, + {texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1}, + {texto: "#voetrip", sentimento: -1, "#voetrip": -1}, + {texto: "#volei", sentimento: -1, "#volei": -1}, + {texto: "#vtnc", sentimento: -1, "#vtnc": -1}, + {texto: "#vym", sentimento: -1, "#vym": -1}, + {texto: "#w00t", sentimento: 1, "#w00t": 1}, + {texto: "#win", sentimento: 1, "#win": 1}, + {texto: "#windows", sentimento: 1, "#windows": 1}, + {texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1}, + {texto: "#winning", sentimento: 1, "#winning": 1}, + {texto: "#wolfteam", sentimento: -1, "#wolfteam": -1}, + {texto: "#wp7", sentimento: 1, "#wp7": 1}, + {texto: "#x10", sentimento: -1, "#x10": -1}, + {texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1}, + {texto: "#youtube", sentimento: -1, "#youtube": -1}, + {texto: "#z", sentimento: -1, "#z": -1}, + {texto: "#zegotinha", sentimento: 1, "#zegotinha": 1}, + {texto: "#zon", sentimento: 0, "#zon": 0}, + {texto: "=[", sentimento: -1, "=[": -1}, + {texto: "=@", sentimento: -1, "=@": -1}, + {texto: "=D", sentimento: 1, "=D": 1}, + {texto: "=d", sentimento: 1, "=d": 1}, + {texto: "=P", sentimento: -1, "=P": -1}, + {texto: "=p", sentimento: -1, "=p": -1}, + {texto: "=x", sentimento: -1, "=x": -1}, + {texto: ">:(", sentimento: -1, ">:(": -1}, + {texto: "><", sentimento: -1, "><": -1}, + {texto: "¬¬''", sentimento: -1, "¬¬''": -1}, + {texto: "¬¬", sentimento: -1, "¬¬": -1}, + {texto: "a comemorar", sentimento: 3, "a comemorar": 3}, + {texto: "¬", sentimento: -1, "¬": -1}, + {texto: "ab-rogar", sentimento: -1, "ab-rogar": -1}, + {texto: "ababadar", sentimento: 0, "ababadar": 0}, + {texto: "ababelar-se", sentimento: 1, "ababelar-se": 1}, + {texto: "ababelar", sentimento: -1, "ababelar": -1}, + {texto: "abaçanar", sentimento: 1, "abaçanar": 1}, + {texto: "abacinar", sentimento: 1, "abacinar": 1}, + {texto: "abafada", sentimento: -1, "abafada": -1}, + {texto: "abafadas", sentimento: -1, "abafadas": -1}, + {texto: "abafado", sentimento: -1, "abafado": -1}, + {texto: "abafados", sentimento: -1, "abafados": -1}, + {texto: "abafante", sentimento: -1, "abafante": -1}, + {texto: "abafantes", sentimento: -1, "abafantes": -1}, + {texto: "abafar", sentimento: -1, "abafar": -1}, + {texto: "abafou", sentimento: -1, "abafou": -1}, + {texto: "abaixada", sentimento: -1, "abaixada": -1}, + {texto: "abaixadas", sentimento: -1, "abaixadas": -1}, + {texto: "abaixado", sentimento: -1, "abaixado": -1}, + {texto: "abaixados", sentimento: -1, "abaixados": -1}, + {texto: "abaixar-se", sentimento: 0, "abaixar-se": 0}, + {texto: "abaixar", sentimento: 0, "abaixar": 0}, + {texto: "abalada", sentimento: -1, "abalada": -1}, + {texto: "abaladas", sentimento: -1, "abaladas": -1}, + {texto: "abalado", sentimento: -1, "abalado": -1}, + {texto: "abalados", sentimento: -1, "abalados": -1}, + {texto: "abalançado", sentimento: 1, "abalançado": 1}, + {texto: "abalançar", sentimento: 1, "abalançar": 1}, + {texto: "abalar-se", sentimento: 0, "abalar-se": 0}, + {texto: "abalar", sentimento: 0, "abalar": 0}, + {texto: "abalizada", sentimento: 1, "abalizada": 1}, + {texto: "abalizadas", sentimento: 1, "abalizadas": 1}, + {texto: "abalizado", sentimento: 1, "abalizado": 1}, + {texto: "abalizados", sentimento: 1, "abalizados": 1}, + {texto: "abalizar", sentimento: 0, "abalizar": 0}, + {texto: "abalroar-se", sentimento: 1, "abalroar-se": 1}, + {texto: "abalroar", sentimento: 0, "abalroar": 0}, + {texto: "abanar", sentimento: 0, "abanar": 0}, + {texto: "abandalhada", sentimento: -1, "abandalhada": -1}, + {texto: "abandalhadas", sentimento: -1, "abandalhadas": -1}, + {texto: "abandalhado", sentimento: -1, "abandalhado": -1}, + {texto: "abandalhados", sentimento: -1, "abandalhados": -1}, + {texto: "abandalhar", sentimento: 1, "abandalhar": 1}, + {texto: "abandar", sentimento: -1, "abandar": -1}, + {texto: "abandonada", sentimento: -1, "abandonada": -1}, + {texto: "abandonadas", sentimento: -1, "abandonadas": -1}, + {texto: "abandonado", sentimento: -1, "abandonado": -1}, + {texto: "abandonado", sentimento: -2, "abandonado": -2}, + {texto: "abandonados", sentimento: -1, "abandonados": -1}, + {texto: "abandonar-se", sentimento: 0, "abandonar-se": 0}, + {texto: "abandonar", sentimento: -1, "abandonar": -1}, + {texto: "abandono", sentimento: -2, "abandono": -2}, + {texto: "abandonos", sentimento: -2, "abandonos": -2}, + {texto: "abarbar", sentimento: 1, "abarbar": 1}, + {texto: "abarbarado", sentimento: 1, "abarbarado": 1}, + {texto: "abarcante", sentimento: -1, "abarcante": -1}, + {texto: "abarcantes", sentimento: -1, "abarcantes": -1}, + {texto: "abarcar", sentimento: -1, "abarcar": -1}, + {texto: "abarrancar", sentimento: -1, "abarrancar": -1}, + {texto: "abarregar", sentimento: 1, "abarregar": 1}, + {texto: "abarreirar", sentimento: -1, "abarreirar": -1}, + {texto: "abarrocar", sentimento: -1, "abarrocar": -1}, + {texto: "abarrotada", sentimento: -1, "abarrotada": -1}, + {texto: "abarrotadas", sentimento: -1, "abarrotadas": -1}, + {texto: "abarrotado", sentimento: -1, "abarrotado": -1}, + {texto: "abarrotados", sentimento: -1, "abarrotados": -1}, + {texto: "abarrotar", sentimento: 0, "abarrotar": 0}, + {texto: "abasbacar", sentimento: 0, "abasbacar": 0}, + {texto: "abastada", sentimento: 1, "abastada": 1}, + {texto: "abastadas", sentimento: 1, "abastadas": 1}, + {texto: "abastadear", sentimento: 1, "abastadear": 1}, + {texto: "abastado", sentimento: 1, "abastado": 1}, + {texto: "abastados", sentimento: 1, "abastados": 1}, + {texto: "abastar", sentimento: -1, "abastar": -1}, + {texto: "abastardar-se", sentimento: 1, "abastardar-se": 1}, + {texto: "abastardar", sentimento: 1, "abastardar": 1}, + {texto: "abastardear-se", sentimento: 1, "abastardear-se": 1}, + {texto: "abastecer", sentimento: 1, "abastecer": 1}, + {texto: "abastecida", sentimento: 0, "abastecida": 0}, + {texto: "abastecidas", sentimento: 0, "abastecidas": 0}, + {texto: "abastecido", sentimento: 0, "abastecido": 0}, + {texto: "abastecidos", sentimento: 0, "abastecidos": 0}, + {texto: "abastoso", sentimento: 1, "abastoso": 1}, + {texto: "abater", sentimento: -1, "abater": -1}, + {texto: "abatida", sentimento: -1, "abatida": -1}, + {texto: "abatidas", sentimento: -1, "abatidas": -1}, + {texto: "abatido", sentimento: -1, "abatido": -1}, + {texto: "abatido", sentimento: -2, "abatido": -2}, + {texto: "abatidos", sentimento: -1, "abatidos": -1}, + {texto: "abatocar", sentimento: 1, "abatocar": 1}, + {texto: "abdicar", sentimento: -1, "abdicar": -1}, + {texto: "abdução", sentimento: -2, "abdução": -2}, + {texto: "abduzir-se", sentimento: 1, "abduzir-se": 1}, + {texto: "abduzir", sentimento: 0, "abduzir": 0}, + {texto: "abeberar", sentimento: 0, "abeberar": 0}, + {texto: "abeirar-se", sentimento: 1, "abeirar-se": 1}, + {texto: "abeirar", sentimento: 0, "abeirar": 0}, + {texto: "abelhuda", sentimento: -1, "abelhuda": -1}, + {texto: "abelhudar", sentimento: 0, "abelhudar": 0}, + {texto: "abelhudas", sentimento: -1, "abelhudas": -1}, + {texto: "abelhudo", sentimento: -1, "abelhudo": -1}, + {texto: "abelhudos", sentimento: -1, "abelhudos": -1}, + {texto: "abemolar", sentimento: 0, "abemolar": 0}, + {texto: "abençoa", sentimento: 2, "abençoa": 2}, + {texto: "abençoada", sentimento: 1, "abençoada": 1}, + {texto: "abençoadas", sentimento: 1, "abençoadas": 1}, + {texto: "abençoado", sentimento: 1, "abençoado": 1}, + {texto: "abençoados", sentimento: 1, "abençoados": 1}, + {texto: "abençoar", sentimento: 0, "abençoar": 0}, + {texto: "abençoar", sentimento: 2, "abençoar": 2}, + {texto: "aberrante", sentimento: -1, "aberrante": -1}, + {texto: "aberrantes", sentimento: -1, "aberrantes": -1}, + {texto: "aberrativa", sentimento: -1, "aberrativa": -1}, + {texto: "aberrativas", sentimento: -1, "aberrativas": -1}, + {texto: "aberrativo", sentimento: -1, "aberrativo": -1}, + {texto: "aberrativos", sentimento: -1, "aberrativos": -1}, + {texto: "aberratório", sentimento: 1, "aberratório": 1}, + {texto: "aberta", sentimento: 0, "aberta": 0}, + {texto: "abertão", sentimento: 1, "abertão": 1}, + {texto: "abertas", sentimento: 0, "abertas": 0}, + {texto: "aberto", sentimento: 0, "aberto": 0}, + {texto: "abertos", sentimento: 0, "abertos": 0}, + {texto: "abespinhada", sentimento: -1, "abespinhada": -1}, + {texto: "abespinhadas", sentimento: -1, "abespinhadas": -1}, + {texto: "abespinhado", sentimento: -1, "abespinhado": -1}, + {texto: "abespinhados", sentimento: -1, "abespinhados": -1}, + {texto: "abespinhar", sentimento: -1, "abespinhar": -1}, + {texto: "abestalhada", sentimento: -1, "abestalhada": -1}, + {texto: "abestalhadas", sentimento: -1, "abestalhadas": -1}, + {texto: "abestalhado", sentimento: -1, "abestalhado": -1}, + {texto: "abestalhados", sentimento: -1, "abestalhados": -1}, + {texto: "abetumado", sentimento: -1, "abetumado": -1}, + {texto: "abetumar", sentimento: 0, "abetumar": 0}, + {texto: "abicar", sentimento: 0, "abicar": 0}, + {texto: "abichar", sentimento: 0, "abichar": 0}, + {texto: "abilolada", sentimento: -1, "abilolada": -1}, + {texto: "abiloladas", sentimento: -1, "abiloladas": -1}, + {texto: "abilolado", sentimento: -1, "abilolado": -1}, + {texto: "abilolados", sentimento: -1, "abilolados": -1}, + {texto: "abiscoitar", sentimento: 0, "abiscoitar": 0}, + {texto: "abiselar", sentimento: 1, "abiselar": 1}, + {texto: "abismada", sentimento: -1, "abismada": -1}, + {texto: "abismadas", sentimento: -1, "abismadas": -1}, + {texto: "abismado", sentimento: -1, "abismado": -1}, + {texto: "abismados", sentimento: -1, "abismados": -1}, + {texto: "abismais", sentimento: -1, "abismais": -1}, + {texto: "abismal", sentimento: -1, "abismal": -1}, + {texto: "abismar", sentimento: 1, "abismar": 1}, + {texto: "abjecta", sentimento: -1, "abjecta": -1}, + {texto: "abjectas", sentimento: -1, "abjectas": -1}, + {texto: "abjecto", sentimento: -1, "abjecto": -1}, + {texto: "abjectos", sentimento: -1, "abjectos": -1}, + {texto: "abjeta", sentimento: -1, "abjeta": -1}, + {texto: "abjetas", sentimento: -1, "abjetas": -1}, + {texto: "abjeto", sentimento: -1, "abjeto": -1}, + {texto: "abjetos", sentimento: -1, "abjetos": -1}, + {texto: "abjugar-se", sentimento: 1, "abjugar-se": 1}, + {texto: "abjugar", sentimento: 0, "abjugar": 0}, + {texto: "abjurar", sentimento: 1, "abjurar": 1}, + {texto: "ablegar-se", sentimento: 1, "ablegar-se": 1}, + {texto: "ablegar", sentimento: 1, "ablegar": 1}, + {texto: "abluir", sentimento: 0, "abluir": 0}, + {texto: "abnegada", sentimento: 1, "abnegada": 1}, + {texto: "abnegadas", sentimento: 1, "abnegadas": 1}, + {texto: "abnegado", sentimento: 1, "abnegado": 1}, + {texto: "abnegados", sentimento: 1, "abnegados": 1}, + {texto: "abnegar", sentimento: 1, "abnegar": 1}, + {texto: "abnoitar", sentimento: 1, "abnoitar": 1}, + {texto: "abnormal", sentimento: 1, "abnormal": 1}, + {texto: "abnóxio", sentimento: 1, "abnóxio": 1}, + {texto: "abnuir", sentimento: 1, "abnuir": 1}, + {texto: "abobada", sentimento: -1, "abobada": -1}, + {texto: "abobadar", sentimento: 0, "abobadar": 0}, + {texto: "abobadas", sentimento: -1, "abobadas": -1}, + {texto: "abobado", sentimento: -1, "abobado": -1}, + {texto: "abobados", sentimento: -1, "abobados": -1}, + {texto: "abobalhada", sentimento: -1, "abobalhada": -1}, + {texto: "abobalhadas", sentimento: -1, "abobalhadas": -1}, + {texto: "abobalhado", sentimento: -1, "abobalhado": -1}, + {texto: "abobalhados", sentimento: -1, "abobalhados": -1}, + {texto: "abobalhar", sentimento: 1, "abobalhar": 1}, + {texto: "abocanhar", sentimento: -1, "abocanhar": -1}, + {texto: "abocar", sentimento: -1, "abocar": -1}, + {texto: "abodegado", sentimento: -1, "abodegado": -1}, + {texto: "abodegar", sentimento: -1, "abodegar": -1}, + {texto: "abolachar", sentimento: 0, "abolachar": 0}, + {texto: "abolar", sentimento: -1, "abolar": -1}, + {texto: "abolçar", sentimento: 0, "abolçar": 0}, + {texto: "aboleimar", sentimento: 0, "aboleimar": 0}, + {texto: "aboletar", sentimento: 0, "aboletar": 0}, + {texto: "abolicionista", sentimento: 0, "abolicionista": 0}, + {texto: "abolicionistas", sentimento: 0, "abolicionistas": 0}, + {texto: "abolida", sentimento: -1, "abolida": -1}, + {texto: "abolidas", sentimento: -1, "abolidas": -1}, + {texto: "abolido", sentimento: -1, "abolido": -1}, + {texto: "abolidos", sentimento: -1, "abolidos": -1}, + {texto: "abolir", sentimento: -1, "abolir": -1}, + {texto: "abolorecer", sentimento: 1, "abolorecer": 1}, + {texto: "abolorentar", sentimento: 1, "abolorentar": 1}, + {texto: "abolsar", sentimento: 1, "abolsar": 1}, + {texto: "abomina", sentimento: -3, "abomina": -3}, + {texto: "abominado", sentimento: -1, "abominado": -1}, + {texto: "abominador", sentimento: -1, "abominador": -1}, + {texto: "abominadora", sentimento: -1, "abominadora": -1}, + {texto: "abominadoras", sentimento: -1, "abominadoras": -1}, + {texto: "abominadores", sentimento: -1, "abominadores": -1}, + {texto: "abominanda", sentimento: -1, "abominanda": -1}, + {texto: "abominandas", sentimento: -1, "abominandas": -1}, + {texto: "abominando", sentimento: -1, "abominando": -1}, + {texto: "abominandos", sentimento: -1, "abominandos": -1}, + {texto: "abominar", sentimento: -3, "abominar": -3}, + {texto: "abomináveis", sentimento: -1, "abomináveis": -1}, + {texto: "abominável", sentimento: -1, "abominável": -1}, + {texto: "abominoso", sentimento: -1, "abominoso": -1}, + {texto: "abominou", sentimento: -3, "abominou": -3}, + {texto: "abonada", sentimento: 1, "abonada": 1}, + {texto: "abonadas", sentimento: 1, "abonadas": 1}, + {texto: "abonado", sentimento: 1, "abonado": 1}, + {texto: "abonados", sentimento: 1, "abonados": 1}, + {texto: "abonançar-se", sentimento: 1, "abonançar-se": 1}, + {texto: "abonançar", sentimento: 0, "abonançar": 0}, + {texto: "abonar", sentimento: 0, "abonar": 0}, + {texto: "abonatória", sentimento: 1, "abonatória": 1}, + {texto: "abonatórias", sentimento: 1, "abonatórias": 1}, + {texto: "abonatório", sentimento: 1, "abonatório": 1}, + {texto: "abonatórios", sentimento: 1, "abonatórios": 1}, + {texto: "abonecada", sentimento: 0, "abonecada": 0}, + {texto: "abonecadas", sentimento: 0, "abonecadas": 0}, + {texto: "abonecado", sentimento: 0, "abonecado": 0}, + {texto: "abonecados", sentimento: 0, "abonecados": 0}, + {texto: "aboquejar", sentimento: -1, "aboquejar": -1}, + {texto: "aborcar", sentimento: -1, "aborcar": -1}, + {texto: "abordar", sentimento: 0, "abordar": 0}, + {texto: "aborígene", sentimento: -1, "aborígene": -1}, + {texto: "aborígenes", sentimento: -1, "aborígenes": -1}, + {texto: "aborrecedor", sentimento: -1, "aborrecedor": -1}, + {texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1}, + {texto: "aborrecer", sentimento: -1, "aborrecer": -1}, + {texto: "aborrecida", sentimento: -1, "aborrecida": -1}, + {texto: "aborrecidas", sentimento: -1, "aborrecidas": -1}, + {texto: "aborrecido", sentimento: -1, "aborrecido": -1}, + {texto: "aborrecido", sentimento: -2, "aborrecido": -2}, + {texto: "aborrecidos", sentimento: -1, "aborrecidos": -1}, + {texto: "aborrecimento", sentimento: -2, "aborrecimento": -2}, + {texto: "aborrecível", sentimento: -1, "aborrecível": -1}, + {texto: "aborrido", sentimento: -1, "aborrido": -1}, + {texto: "aborrível", sentimento: -1, "aborrível": -1}, + {texto: "abortada", sentimento: -1, "abortada": -1}, + {texto: "abortadas", sentimento: -1, "abortadas": -1}, + {texto: "abortado", sentimento: -1, "abortado": -1}, + {texto: "abortados", sentimento: -1, "abortados": -1}, + {texto: "abortar", sentimento: -1, "abortar": -1}, + {texto: "abotoar", sentimento: 0, "abotoar": 0}, + {texto: "abraçada", sentimento: 1, "abraçada": 1}, + {texto: "abracadabrante", sentimento: 1, "abracadabrante": 1}, + {texto: "abracadábrico", sentimento: 1, "abracadábrico": 1}, + {texto: "abraçadas", sentimento: 1, "abraçadas": 1}, + {texto: "abraçado", sentimento: 1, "abraçado": 1}, + {texto: "abraçados", sentimento: 1, "abraçados": 1}, + {texto: "abraçar-se", sentimento: 1, "abraçar-se": 1}, + {texto: "abraçar", sentimento: 0, "abraçar": 0}, + {texto: "abraço", sentimento: 1, "abraço": 1}, + {texto: "abraço", sentimento: 2, "abraço": 2}, + {texto: "abraços", sentimento: 2, "abraços": 2}, + {texto: "abrancar", sentimento: 1, "abrancar": 1}, + {texto: "abrandar-se", sentimento: 1, "abrandar-se": 1}, + {texto: "abrandar", sentimento: 0, "abrandar": 0}, + {texto: "abrangente", sentimento: 1, "abrangente": 1}, + {texto: "abrangentes", sentimento: 1, "abrangentes": 1}, + {texto: "abranger", sentimento: 0, "abranger": 0}, + {texto: "abrangida", sentimento: -1, "abrangida": -1}, + {texto: "abrangidas", sentimento: -1, "abrangidas": -1}, + {texto: "abrangido", sentimento: -1, "abrangido": -1}, + {texto: "abrangidos", sentimento: -1, "abrangidos": -1}, + {texto: "abrasar-se", sentimento: 1, "abrasar-se": 1}, + {texto: "abrasar", sentimento: 0, "abrasar": 0}, + {texto: "abrasear", sentimento: -1, "abrasear": -1}, + {texto: "abrasileirada", sentimento: 0, "abrasileirada": 0}, + {texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0}, + {texto: "abrasileirado", sentimento: 0, "abrasileirado": 0}, + {texto: "abrasileirados", sentimento: 0, "abrasileirados": 0}, + {texto: "abrejar", sentimento: 1, "abrejar": 1}, + {texto: "abreviar", sentimento: 0, "abreviar": 0}, + {texto: "abrigada", sentimento: 0, "abrigada": 0}, + {texto: "abrigadas", sentimento: 0, "abrigadas": 0}, + {texto: "abrigado", sentimento: 0, "abrigado": 0}, + {texto: "abrigados", sentimento: 0, "abrigados": 0}, + {texto: "abrigar", sentimento: -1, "abrigar": -1}, + {texto: "abrilhantada", sentimento: 1, "abrilhantada": 1}, + {texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1}, + {texto: "abrilhantado", sentimento: 1, "abrilhantado": 1}, + {texto: "abrilhantados", sentimento: 1, "abrilhantados": 1}, + {texto: "abrilhantar", sentimento: 0, "abrilhantar": 0}, + {texto: "abrir mão de", sentimento: -1, "abrir mão de": -1}, + {texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1}, + {texto: "abrir-se", sentimento: -1, "abrir-se": -1}, + {texto: "abrir", sentimento: -1, "abrir": -1}, + {texto: "abrolhar", sentimento: 0, "abrolhar": 0}, + {texto: "abrupta", sentimento: -1, "abrupta": -1}, + {texto: "abruptas", sentimento: -1, "abruptas": -1}, + {texto: "abrupto", sentimento: -1, "abrupto": -1}, + {texto: "abruptos", sentimento: -1, "abruptos": -1}, + {texto: "abrutado", sentimento: -1, "abrutado": -1}, + {texto: "abrutalhada", sentimento: -1, "abrutalhada": -1}, + {texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1}, + {texto: "abrutalhado", sentimento: -1, "abrutalhado": -1}, + {texto: "abrutalhados", sentimento: -1, "abrutalhados": -1}, + {texto: "abrutalhar", sentimento: 1, "abrutalhar": 1}, + {texto: "abrutar", sentimento: 1, "abrutar": 1}, + {texto: "abscidar-se", sentimento: 1, "abscidar-se": 1}, + {texto: "absentista", sentimento: -1, "absentista": -1}, + {texto: "absentistas", sentimento: -1, "absentistas": -1}, + {texto: "absoluta", sentimento: 1, "absoluta": 1}, + {texto: "absolutas", sentimento: 1, "absolutas": 1}, + {texto: "absolutista", sentimento: 0, "absolutista": 0}, + {texto: "absolutistas", sentimento: 0, "absolutistas": 0}, + {texto: "absoluto", sentimento: 1, "absoluto": 1}, + {texto: "absolutos", sentimento: 1, "absolutos": 1}, + {texto: "absolve", sentimento: 2, "absolve": 2}, + {texto: "absolvendo", sentimento: 2, "absolvendo": 2}, + {texto: "absolver", sentimento: -1, "absolver": -1}, + {texto: "absolver", sentimento: 2, "absolver": 2}, + {texto: "absolvida", sentimento: 0, "absolvida": 0}, + {texto: "absolvidas", sentimento: 0, "absolvidas": 0}, + {texto: "absolvido", sentimento: 0, "absolvido": 0}, + {texto: "absolvido", sentimento: 2, "absolvido": 2}, + {texto: "absolvidos", sentimento: 0, "absolvidos": 0}, + {texto: "absolvidos", sentimento: 2, "absolvidos": 2}, + {texto: "absonar", sentimento: -1, "absonar": -1}, + {texto: "absorta", sentimento: -1, "absorta": -1}, + {texto: "absortas", sentimento: -1, "absortas": -1}, + {texto: "absorto", sentimento: -1, "absorto": -1}, + {texto: "absortos", sentimento: -1, "absortos": -1}, + {texto: "absortos", sentimento: 1, "absortos": 1}, + {texto: "absorvente", sentimento: 1, "absorvente": 1}, + {texto: "absorventes", sentimento: 1, "absorventes": 1}, + {texto: "absorver-se", sentimento: 1, "absorver-se": 1}, + {texto: "absorver", sentimento: -1, "absorver": -1}, + {texto: "absorvido", sentimento: 1, "absorvido": 1}, + {texto: "abstémia", sentimento: 1, "abstémia": 1}, + {texto: "abstémias", sentimento: 1, "abstémias": 1}, + {texto: "abstémica", sentimento: 1, "abstémica": 1}, + {texto: "abstémicas", sentimento: 1, "abstémicas": 1}, + {texto: "abstémico", sentimento: 1, "abstémico": 1}, + {texto: "abstémicos", sentimento: 1, "abstémicos": 1}, + {texto: "abstémio", sentimento: 1, "abstémio": 1}, + {texto: "abstémios", sentimento: 1, "abstémios": 1}, + {texto: "abstencionista", sentimento: 0, "abstencionista": 0}, + {texto: "abstencionistas", sentimento: 0, "abstencionistas": 0}, + {texto: "abster-se", sentimento: 0, "abster-se": 0}, + {texto: "abstinente", sentimento: 0, "abstinente": 0}, + {texto: "abstinentes", sentimento: 0, "abstinentes": 0}, + {texto: "abstraccionista", sentimento: 0, "abstraccionista": 0}, + {texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0}, + {texto: "abstracta", sentimento: -1, "abstracta": -1}, + {texto: "abstractas", sentimento: -1, "abstractas": -1}, + {texto: "abstracto", sentimento: -1, "abstracto": -1}, + {texto: "abstractos", sentimento: -1, "abstractos": -1}, + {texto: "abstraída", sentimento: -1, "abstraída": -1}, + {texto: "abstraídas", sentimento: -1, "abstraídas": -1}, + {texto: "abstraído", sentimento: -1, "abstraído": -1}, + {texto: "abstraídos", sentimento: -1, "abstraídos": -1}, + {texto: "abstrair-se", sentimento: 0, "abstrair-se": 0}, + {texto: "abstrair", sentimento: 1, "abstrair": 1}, + {texto: "abstrata", sentimento: -1, "abstrata": -1}, + {texto: "abstratas", sentimento: -1, "abstratas": -1}, + {texto: "abstrato", sentimento: -1, "abstrato": -1}, + {texto: "abstratos", sentimento: -1, "abstratos": -1}, + {texto: "abstrusa", sentimento: -1, "abstrusa": -1}, + {texto: "abstrusas", sentimento: -1, "abstrusas": -1}, + {texto: "abstruso", sentimento: -1, "abstruso": -1}, + {texto: "abstrusos", sentimento: -1, "abstrusos": -1}, + {texto: "absumir", sentimento: -1, "absumir": -1}, + {texto: "absurda", sentimento: -1, "absurda": -1}, + {texto: "absurdas", sentimento: -1, "absurdas": -1}, + {texto: "absurdo", sentimento: -1, "absurdo": -1}, + {texto: "absurdo", sentimento: -2, "absurdo": -2}, + {texto: "absurdos", sentimento: -1, "absurdos": -1}, + {texto: "abugalhar", sentimento: 1, "abugalhar": 1}, + {texto: "abúlica", sentimento: -1, "abúlica": -1}, + {texto: "abúlicas", sentimento: -1, "abúlicas": -1}, + {texto: "abúlico", sentimento: -1, "abúlico": -1}, + {texto: "abúlicos", sentimento: -1, "abúlicos": -1}, + {texto: "abundante", sentimento: 1, "abundante": 1}, + {texto: "abundar", sentimento: 1, "abundar": 1}, + {texto: "abundoso", sentimento: 1, "abundoso": 1}, + {texto: "aburacar", sentimento: 1, "aburacar": 1}, + {texto: "aburguesada", sentimento: 0, "aburguesada": 0}, + {texto: "aburguesadas", sentimento: 0, "aburguesadas": 0}, + {texto: "aburguesado", sentimento: 0, "aburguesado": 0}, + {texto: "aburguesados", sentimento: 0, "aburguesados": 0}, + {texto: "abusada", sentimento: -1, "abusada": -1}, + {texto: "abusadas", sentimento: -1, "abusadas": -1}, + {texto: "abusado", sentimento: -1, "abusado": -1}, + {texto: "abusado", sentimento: -3, "abusado": -3}, + {texto: "abusador", sentimento: -1, "abusador": -1}, + {texto: "abusadora", sentimento: -1, "abusadora": -1}, + {texto: "abusadoras", sentimento: -1, "abusadoras": -1}, + {texto: "abusadores", sentimento: -1, "abusadores": -1}, + {texto: "abusados", sentimento: -1, "abusados": -1}, + {texto: "abusar", sentimento: 1, "abusar": 1}, + {texto: "abusiva", sentimento: -1, "abusiva": -1}, + {texto: "abusivas", sentimento: -1, "abusivas": -1}, + {texto: "abusivo", sentimento: -1, "abusivo": -1}, + {texto: "abusivo", sentimento: -3, "abusivo": -3}, + {texto: "abusivos", sentimento: -1, "abusivos": -1}, + {texto: "abuso", sentimento: -3, "abuso": -3}, + {texto: "abusos", sentimento: -3, "abusos": -3}, + {texto: "abuzinar", sentimento: 1, "abuzinar": 1}, + {texto: "acabada", sentimento: -1, "acabada": -1}, + {texto: "acabadas", sentimento: -1, "acabadas": -1}, + {texto: "acabado", sentimento: -1, "acabado": -1}, + {texto: "acabados", sentimento: -1, "acabados": -1}, + {texto: "acabadota", sentimento: -1, "acabadota": -1}, + {texto: "acabadotas", sentimento: -1, "acabadotas": -1}, + {texto: "acabadote", sentimento: -1, "acabadote": -1}, + {texto: "acabadotes", sentimento: -1, "acabadotes": -1}, + {texto: "acabamento", sentimento: 1, "acabamento": 1}, + {texto: "acabar-se", sentimento: 0, "acabar-se": 0}, + {texto: "acabar", sentimento: 0, "acabar": 0}, + {texto: "acabrunhada", sentimento: -1, "acabrunhada": -1}, + {texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1}, + {texto: "acabrunhado", sentimento: -1, "acabrunhado": -1}, + {texto: "acabrunhados", sentimento: -1, "acabrunhados": -1}, + {texto: "acabrunhar", sentimento: 0, "acabrunhar": 0}, + {texto: "açacalado", sentimento: 1, "açacalado": 1}, + {texto: "acaçapar", sentimento: 1, "acaçapar": 1}, + {texto: "acachar", sentimento: 1, "acachar": 1}, + {texto: "acaciana", sentimento: -1, "acaciana": -1}, + {texto: "acacianas", sentimento: -1, "acacianas": -1}, + {texto: "acaciano", sentimento: -1, "acaciano": -1}, + {texto: "acacianos", sentimento: -1, "acacianos": -1}, + {texto: "académica", sentimento: 0, "académica": 0}, + {texto: "acadêmica", sentimento: 0, "acadêmica": 0}, + {texto: "académicas", sentimento: 0, "académicas": 0}, + {texto: "acadêmicas", sentimento: 0, "acadêmicas": 0}, + {texto: "académico", sentimento: 0, "académico": 0}, + {texto: "acadêmico", sentimento: 0, "acadêmico": 0}, + {texto: "académicos", sentimento: 0, "académicos": 0}, + {texto: "acadêmicos", sentimento: 0, "acadêmicos": 0}, + {texto: "acafelar", sentimento: 1, "acafelar": 1}, + {texto: "acaiçarado", sentimento: -1, "acaiçarado": -1}, + {texto: "açaimar", sentimento: 0, "açaimar": 0}, + {texto: "acalentando", sentimento: 2, "acalentando": 2}, + {texto: "acalentar-se", sentimento: 1, "acalentar-se": 1}, + {texto: "acalentar", sentimento: 0, "acalentar": 0}, + {texto: "acalentar", sentimento: 2, "acalentar": 2}, + {texto: "acalmada", sentimento: 3, "acalmada": 3}, + {texto: "acalmado", sentimento: 2, "acalmado": 2}, + {texto: "acalmar-se", sentimento: 1, "acalmar-se": 1}, + {texto: "acalmar", sentimento: 0, "acalmar": 0}, + {texto: "acalmar", sentimento: 3, "acalmar": 3}, + {texto: "acalorada", sentimento: 0, "acalorada": 0}, + {texto: "acaloradas", sentimento: 0, "acaloradas": 0}, + {texto: "acalorado", sentimento: 0, "acalorado": 0}, + {texto: "acalorados", sentimento: 0, "acalorados": 0}, + {texto: "acalorar-se", sentimento: 1, "acalorar-se": 1}, + {texto: "acalorar", sentimento: 1, "acalorar": 1}, + {texto: "acamar", sentimento: 1, "acamar": 1}, + {texto: "açambarcador", sentimento: -1, "açambarcador": -1}, + {texto: "açambarcadora", sentimento: -1, "açambarcadora": -1}, + {texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1}, + {texto: "açambarcadores", sentimento: -1, "açambarcadores": -1}, + {texto: "açambarcar", sentimento: 0, "açambarcar": 0}, + {texto: "acambetar", sentimento: 0, "acambetar": 0}, + {texto: "acampanar", sentimento: 0, "acampanar": 0}, + {texto: "acanalar", sentimento: 0, "acanalar": 0}, + {texto: "acanalhar", sentimento: 1, "acanalhar": 1}, + {texto: "acanavear", sentimento: -1, "acanavear": -1}, + {texto: "acanelar", sentimento: 0, "acanelar": 0}, + {texto: "acanhada", sentimento: -1, "acanhada": -1}, + {texto: "acanhadas", sentimento: -1, "acanhadas": -1}, + {texto: "acanhado", sentimento: -1, "acanhado": -1}, + {texto: "acanhados", sentimento: -1, "acanhados": -1}, + {texto: "acanhar", sentimento: -1, "acanhar": -1}, + {texto: "ação judicial", sentimento: -2, "ação judicial": -2}, + {texto: "acapelado", sentimento: 1, "acapelado": 1}, + {texto: "acapelar", sentimento: 0, "acapelar": 0}, + {texto: "acarar", sentimento: 1, "acarar": 1}, + {texto: "acarear", sentimento: 1, "acarear": 1}, + {texto: "acariciar", sentimento: 0, "acariciar": 0}, + {texto: "acarinhada", sentimento: -1, "acarinhada": -1}, + {texto: "acarinhadas", sentimento: -1, "acarinhadas": -1}, + {texto: "acarinhado", sentimento: -1, "acarinhado": -1}, + {texto: "acarinhados", sentimento: -1, "acarinhados": -1}, + {texto: "acarinhar", sentimento: 1, "acarinhar": 1}, + {texto: "acarminar", sentimento: 0, "acarminar": 0}, +]; \ No newline at end of file From 11676097cef2b1d906aa6ba59519d91b62b1ad5b Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Wed, 28 Nov 2018 09:47:38 -0800 Subject: [PATCH 3/4] Accept new baselines --- .../arrayLiteralTooComplex.errors.txt | 2009 +++ .../reference/arrayLiteralTooComplex.js | 2007 +++ .../reference/arrayLiteralTooComplex.symbols | 5005 ++++++++ .../reference/arrayLiteralTooComplex.types | 10184 ++++++++++++++++ 4 files changed, 19205 insertions(+) create mode 100644 tests/baselines/reference/arrayLiteralTooComplex.errors.txt create mode 100644 tests/baselines/reference/arrayLiteralTooComplex.js create mode 100644 tests/baselines/reference/arrayLiteralTooComplex.symbols create mode 100644 tests/baselines/reference/arrayLiteralTooComplex.types diff --git a/tests/baselines/reference/arrayLiteralTooComplex.errors.txt b/tests/baselines/reference/arrayLiteralTooComplex.errors.txt new file mode 100644 index 0000000000000..090f788343628 --- /dev/null +++ b/tests/baselines/reference/arrayLiteralTooComplex.errors.txt @@ -0,0 +1,2009 @@ +tests/cases/compiler/arrayLiteralTooComplex.ts(1,9): error TS2743: Array literal type is too complex to represent. + + +==== tests/cases/compiler/arrayLiteralTooComplex.ts (1 errors) ==== + let a = [ + ~ + {texto: ";)", sentimento: 1, ";)": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";@", sentimento: -1, ";@": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";*", sentimento: -1, ";*": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";**", sentimento: -1, ";**": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";~", sentimento: -1, ";~": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";D", sentimento: -1, ";D": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";P", sentimento: -1, ";P": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";p", sentimento: -1, ";p": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";x", sentimento: -1, ";x": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ";xx", sentimento: -1, ";xx": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":'(", sentimento: -1, ":'(": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":')", sentimento: -1, ":')": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":(", sentimento: -1, ":(": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":)", sentimento: 1, ":)": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":)))", sentimento: 1, ":)))": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":]", sentimento: -1, ":]": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":@", sentimento: 0, ":@": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":*", sentimento: -1, ":*": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":<", sentimento: -1, ":<": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":~", sentimento: -1, ":~": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":$", sentimento: -1, ":$": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":D", sentimento: 1, ":D": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":p", sentimento: -1, ":p": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":P", sentimento: 0, ":P": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":x", sentimento: -1, ":x": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ":x)", sentimento: 1, ":x)": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "(:", sentimento: -1, "(:": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "(=", sentimento: 1, "(=": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "):", sentimento: -1, "):": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ")):", sentimento: -1, ")):": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "*:", sentimento: -1, "*:": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#2", sentimento: -1, "#2": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#2011", sentimento: -1, "#2011": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#2014", sentimento: -1, "#2014": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#4square", sentimento: -1, "#4square": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#64bit", sentimento: 1, "#64bit": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#adsl", sentimento: -1, "#adsl": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#afazenda", sentimento: -1, "#afazenda": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#aff", sentimento: -1, "#aff": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#again", sentimento: -1, "#again": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#agua", sentimento: 1, "#agua": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#aimeucora", sentimento: -1, "#aimeucora": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#alan", sentimento: -1, "#alan": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#aline", sentimento: -1, "#aline": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#amo", sentimento: 1, "#amo": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#amodoro", sentimento: 1, "#amodoro": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#amor", sentimento: -1, "#amor": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#an", sentimento: 1, "#an": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#android", sentimento: 1, "#android": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#animada", sentimento: -1, "#animada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#apagao", sentimento: -1, "#apagao": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#apps", sentimento: -1, "#apps": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#aqu", sentimento: 1, "#aqu": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ari", sentimento: -1, "#ari": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ariane", sentimento: -1, "#ariane": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bad", sentimento: -1, "#bad": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bakugan", sentimento: -1, "#bakugan": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bam", sentimento: 1, "#bam": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bandida", sentimento: -1, "#bandida": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bankonline", sentimento: 1, "#bankonline": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#beer", sentimento: 1, "#beer": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#beijo", sentimento: 1, "#beijo": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bigmistake", sentimento: -1, "#bigmistake": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bio", sentimento: 1, "#bio": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#biologia", sentimento: -1, "#biologia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#birdbrain", sentimento: -1, "#birdbrain": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#blackberry", sentimento: -1, "#blackberry": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#blackhat", sentimento: -1, "#blackhat": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#blogprog", sentimento: -1, "#blogprog": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bodareal", sentimento: -1, "#bodareal": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bombando", sentimento: -1, "#bombando": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bomdia", sentimento: -1, "#bomdia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#boobs", sentimento: 1, "#boobs": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#boomsm", sentimento: 1, "#boomsm": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#boss", sentimento: 1, "#boss": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#brandsclub", sentimento: -1, "#brandsclub": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#brasil", sentimento: -1, "#brasil": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#brasilia", sentimento: -1, "#brasilia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#brazilians", sentimento: -1, "#brazilians": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bsb", sentimento: -1, "#bsb": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#bub", sentimento: -1, "#bub": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#buongiorno", sentimento: -1, "#buongiorno": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#burro", sentimento: -1, "#burro": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cad", sentimento: -1, "#cad": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#caelum", sentimento: 1, "#caelum": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cafeina", sentimento: -1, "#cafeina": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#caixa", sentimento: -1, "#caixa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cal", sentimento: 1, "#cal": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#camaradagem", sentimento: -1, "#camaradagem": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#camel", sentimento: 1, "#camel": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#capric", sentimento: -1, "#capric": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#carol", sentimento: -1, "#carol": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#carris", sentimento: -1, "#carris": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cartolafc", sentimento: -1, "#cartolafc": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#catalao", sentimento: -1, "#catalao": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cdlr", sentimento: 1, "#cdlr": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cearasc", sentimento: -1, "#cearasc": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#centauro", sentimento: -1, "#centauro": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#certeza", sentimento: -1, "#certeza": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cet", sentimento: -1, "#cet": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#charmeleon", sentimento: 1, "#charmeleon": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#chelas", sentimento: 1, "#chelas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#chrome", sentimento: 1, "#chrome": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cielo", sentimento: -1, "#cielo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cloaking", sentimento: -1, "#cloaking": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cmteam", sentimento: 1, "#cmteam": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#comex", sentimento: -1, "#comex": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#comofas", sentimento: -1, "#comofas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#compos", sentimento: -1, "#compos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#conspira", sentimento: -1, "#conspira": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#contribuir", sentimento: 1, "#contribuir": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#conversos", sentimento: -1, "#conversos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#copa", sentimento: -1, "#copa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#corpoevida", sentimento: 1, "#corpoevida": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#correios", sentimento: -1, "#correios": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cpco4", sentimento: 1, "#cpco4": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cpfl", sentimento: -1, "#cpfl": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cqc", sentimento: -1, "#cqc": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cqteste", sentimento: -1, "#cqteste": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cry", sentimento: -1, "#cry": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cs1", sentimento: 1, "#cs1": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#csrio", sentimento: 1, "#csrio": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#curiosidades", sentimento: 1, "#curiosidades": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#curso", sentimento: -1, "#curso": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#d", sentimento: 1, "#d": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#dailyformula", sentimento: 1, "#dailyformula": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#datena", sentimento: -1, "#datena": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#declara", sentimento: -1, "#declara": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#defeito", sentimento: -1, "#defeito": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#desconfiado", sentimento: 1, "#desconfiado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#desculpa", sentimento: -1, "#desculpa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#deus", sentimento: 1, "#deus": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#di", sentimento: 1, "#di": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#diegocaash", sentimento: -1, "#diegocaash": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#digimon", sentimento: -1, "#digimon": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#digitalworld", sentimento: -1, "#digitalworld": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#django1", sentimento: 1, "#django1": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#dojorio", sentimento: 1, "#dojorio": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#dorgas", sentimento: -1, "#dorgas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#dormir", sentimento: 1, "#dormir": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#e3", sentimento: -1, "#e3": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#e32011", sentimento: -1, "#e32011": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ela", sentimento: -1, "#ela": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#elbotin", sentimento: 1, "#elbotin": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#elcorner", sentimento: -1, "#elcorner": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ele", sentimento: -1, "#ele": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eletromate", sentimento: -1, "#eletromate": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#emerson", sentimento: -1, "#emerson": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#enem", sentimento: -1, "#enem": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#epic", sentimento: -1, "#epic": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#epicwin", sentimento: 0, "#epicwin": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eressexypero", sentimento: 1, "#eressexypero": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#errodotz", sentimento: -1, "#errodotz": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#escroto", sentimento: -1, "#escroto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#estad", sentimento: -1, "#estad": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#estudar", sentimento: -1, "#estudar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#etenildos", sentimento: -1, "#etenildos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eu", sentimento: -1, "#eu": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eununca", sentimento: -1, "#eununca": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#evernote", sentimento: 1, "#evernote": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#exalta", sentimento: -1, "#exalta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#expotch", sentimento: -1, "#expotch": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#facebook", sentimento: 1, "#facebook": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fail", sentimento: -1, "#fail": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#faiooo", sentimento: -1, "#faiooo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fascinante", sentimento: 1, "#fascinante": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fashion", sentimento: -1, "#fashion": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fato", sentimento: -1, "#fato": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fb", sentimento: 1, "#fb": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#feil", sentimento: -1, "#feil": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#feio", sentimento: -1, "#feio": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fertagus", sentimento: 1, "#fertagus": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ff", sentimento: 1, "#ff": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fibra", sentimento: -1, "#fibra": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ficadica", sentimento: -1, "#ficadica": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fifa11", sentimento: 1, "#fifa11": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fikdik", sentimento: -1, "#fikdik": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#filha", sentimento: -1, "#filha": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#finishh", sentimento: 1, "#finishh": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#firefox", sentimento: 1, "#firefox": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fisl", sentimento: 1, "#fisl": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#flash", sentimento: 1, "#flash": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#flopou", sentimento: -1, "#flopou": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fodaa", sentimento: -1, "#fodaa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fodao", sentimento: 1, "#fodao": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fome", sentimento: 1, "#fome": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#foramicarla", sentimento: -1, "#foramicarla": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#forever", sentimento: 1, "#forever": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#foreveralone", sentimento: 1, "#foreveralone": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#forevergordo", sentimento: 1, "#forevergordo": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fortaleza", sentimento: -1, "#fortaleza": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#frontinrio", sentimento: 1, "#frontinrio": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fsoa", sentimento: 1, "#fsoa": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fuckboy", sentimento: -1, "#fuckboy": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fuckyea", sentimento: 1, "#fuckyea": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#funk", sentimento: -1, "#funk": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#gaga", sentimento: -1, "#gaga": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#gatos", sentimento: 1, "#gatos": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#generationteen", sentimento: -1, "#generationteen": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#gente", sentimento: -1, "#gente": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#genteque", sentimento: -1, "#genteque": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ger", sentimento: -1, "#ger": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#gof9", sentimento: -1, "#gof9": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#gol", sentimento: 1, "#gol": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#golazo", sentimento: 1, "#golazo": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#google", sentimento: -1, "#google": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#googledoodle", sentimento: -1, "#googledoodle": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#gr", sentimento: -1, "#gr": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#gremio", sentimento: -1, "#gremio": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#guanabara", sentimento: 1, "#guanabara": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#guicostnn", sentimento: -1, "#guicostnn": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#harrypobre", sentimento: 1, "#harrypobre": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#hi5", sentimento: 1, "#hi5": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#historia", sentimento: -1, "#historia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#horacerta", sentimento: -1, "#horacerta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#hotmail", sentimento: -1, "#hotmail": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#html5", sentimento: 1, "#html5": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#humornegro", sentimento: 1, "#humornegro": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#icwd", sentimento: 1, "#icwd": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ie", sentimento: 1, "#ie": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ifce", sentimento: -1, "#ifce": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#imagens", sentimento: 1, "#imagens": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#infancia", sentimento: 1, "#infancia": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#infografia", sentimento: 1, "#infografia": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#inlove", sentimento: 1, "#inlove": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#insensatos2", sentimento: -1, "#insensatos2": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#internetbanking", sentimento: -1, "#internetbanking": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#intersystem", sentimento: -1, "#intersystem": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ios5", sentimento: 1, "#ios5": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#itau", sentimento: -1, "#itau": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#j", sentimento: -1, "#j": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#jam", sentimento: -1, "#jam": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#jantar", sentimento: 1, "#jantar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#jaspion", sentimento: 1, "#jaspion": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#jesse", sentimento: 1, "#jesse": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#jim", sentimento: 1, "#jim": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#joomla", sentimento: -1, "#joomla": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#josatan", sentimento: 1, "#josatan": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#jumbo", sentimento: 1, "#jumbo": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#kevin", sentimento: -1, "#kevin": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lance", sentimento: 1, "#lance": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#le", sentimento: 1, "#le": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#leticia", sentimento: -1, "#leticia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lindo", sentimento: 1, "#lindo": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#linux", sentimento: 1, "#linux": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lion", sentimento: 1, "#lion": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lixo", sentimento: -1, "#lixo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lixofonica", sentimento: -1, "#lixofonica": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lol", sentimento: -1, "#lol": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#looser", sentimento: 1, "#looser": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#luansantana", sentimento: -1, "#luansantana": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#lucasednir", sentimento: -1, "#lucasednir": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mac", sentimento: -1, "#mac": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#maconha", sentimento: -1, "#maconha": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#madvma", sentimento: -1, "#madvma": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#magnocentro", sentimento: -1, "#magnocentro": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#malha", sentimento: -1, "#malha": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#manaus", sentimento: 1, "#manaus": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mariabethania", sentimento: -1, "#mariabethania": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#marisa", sentimento: -1, "#marisa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#may", sentimento: -1, "#may": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mecaga", sentimento: -1, "#mecaga": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#megalagana", sentimento: 1, "#megalagana": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#megasena", sentimento: 1, "#megasena": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#melhores", sentimento: 1, "#melhores": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#melissa", sentimento: -1, "#melissa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#melissahorn", sentimento: 1, "#melissahorn": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#memolesta", sentimento: -1, "#memolesta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#metrosp", sentimento: -1, "#metrosp": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#meusonho", sentimento: -1, "#meusonho": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#microsoft", sentimento: -1, "#microsoft": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mimimi", sentimento: 1, "#mimimi": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mobile", sentimento: -1, "#mobile": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mockery", sentimento: 1, "#mockery": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mockito", sentimento: 1, "#mockito": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#monografia", sentimento: -1, "#monografia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#montanagrill", sentimento: 1, "#montanagrill": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#monterrey", sentimento: -1, "#monterrey": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#morto", sentimento: -1, "#morto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#motos", sentimento: -1, "#motos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#movies", sentimento: 1, "#movies": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#msn", sentimento: -1, "#msn": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#myhero", sentimento: 1, "#myhero": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#naomais", sentimento: -1, "#naomais": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#nata", sentimento: -1, "#nata": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#nervoso", sentimento: 1, "#nervoso": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#net", sentimento: -1, "#net": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#netcombo", sentimento: -1, "#netcombo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#nomamar", sentimento: -1, "#nomamar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#not", sentimento: -1, "#not": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#oclone", sentimento: -1, "#oclone": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#oda", sentimento: -1, "#oda": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#odeio", sentimento: -1, "#odeio": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#oi", sentimento: -1, "#oi": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#old", sentimento: 1, "#old": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#omg", sentimento: -1, "#omg": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#opera", sentimento: 1, "#opera": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#pais", sentimento: -1, "#pais": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#palmeiras", sentimento: 1, "#palmeiras": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#palocci", sentimento: -1, "#palocci": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#panama", sentimento: 1, "#panama": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#panico", sentimento: 1, "#panico": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#parti", sentimento: -1, "#parti": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#partiu", sentimento: -1, "#partiu": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#patadeperro", sentimento: 1, "#patadeperro": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#photoshop", sentimento: -1, "#photoshop": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#php", sentimento: 1, "#php": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#planetmix", sentimento: -1, "#planetmix": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#plc122", sentimento: -1, "#plc122": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#plimplim", sentimento: -1, "#plimplim": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#poderir", sentimento: -1, "#poderir": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#pokemon", sentimento: -1, "#pokemon": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#polishop", sentimento: -1, "#polishop": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#politicagem", sentimento: -1, "#politicagem": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#polvilho", sentimento: -1, "#polvilho": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#popular", sentimento: -1, "#popular": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#poweroflove", sentimento: -1, "#poweroflove": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#pqp", sentimento: -1, "#pqp": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#prequi", sentimento: -1, "#prequi": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#profiss", sentimento: 1, "#profiss": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#programadojo", sentimento: -1, "#programadojo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#promo", sentimento: -1, "#promo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#prova", sentimento: -1, "#prova": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ptt", sentimento: -1, "#ptt": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#pucrs", sentimento: -1, "#pucrs": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#qbomne", sentimento: -1, "#qbomne": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#qconsp", sentimento: 1, "#qconsp": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#quefasehein", sentimento: -1, "#quefasehein": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#quepena", sentimento: -1, "#quepena": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#quiz", sentimento: 1, "#quiz": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ramon", sentimento: -1, "#ramon": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#receba", sentimento: -1, "#receba": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#reclame", sentimento: 1, "#reclame": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#redeglobo", sentimento: -1, "#redeglobo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#referendum", sentimento: -1, "#referendum": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#referendum2011", sentimento: -1, "#referendum2011": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#revendatim", sentimento: -1, "#revendatim": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#reynosa", sentimento: -1, "#reynosa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#riovermelho", sentimento: -1, "#riovermelho": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#riverplate", sentimento: 1, "#riverplate": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#rockrio", sentimento: -1, "#rockrio": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#s", sentimento: -1, "#s": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sabado", sentimento: 1, "#sabado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#safari", sentimento: 1, "#safari": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#samsung", sentimento: -1, "#samsung": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#santoantonio", sentimento: -1, "#santoantonio": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#semata", sentimento: -1, "#semata": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#seo", sentimento: 0, "#seo": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#seomoz", sentimento: 1, "#seomoz": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ser", sentimento: -1, "#ser": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sga", sentimento: -1, "#sga": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sic", sentimento: 1, "#sic": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sigam", sentimento: -1, "#sigam": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#signos", sentimento: -1, "#signos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#signout", sentimento: -1, "#signout": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#site", sentimento: -1, "#site": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#smiles", sentimento: -1, "#smiles": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sms", sentimento: -1, "#sms": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sogra", sentimento: -1, "#sogra": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sono", sentimento: -1, "#sono": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#soyadicto", sentimento: 1, "#soyadicto": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#speed", sentimento: -1, "#speed": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#speedy", sentimento: -1, "#speedy": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#spotv", sentimento: -1, "#spotv": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#submarino", sentimento: -1, "#submarino": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tcc", sentimento: 1, "#tcc": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#teamo", sentimento: -1, "#teamo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tecnologia", sentimento: 1, "#tecnologia": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#telaquente", sentimento: -1, "#telaquente": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#telefoncia", sentimento: -1, "#telefoncia": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#telefonica", sentimento: -1, "#telefonica": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tenso", sentimento: -1, "#tenso": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#ti", sentimento: -1, "#ti": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tim", sentimento: -1, "#tim": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#time", sentimento: -1, "#time": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#todosadora", sentimento: -1, "#todosadora": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#topfive", sentimento: -1, "#topfive": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#totalyfail", sentimento: -1, "#totalyfail": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tps", sentimento: -1, "#tps": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#transitosp", sentimento: -1, "#transitosp": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#travelmug", sentimento: 1, "#travelmug": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#travelw", sentimento: -1, "#travelw": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#treinaweb", sentimento: -1, "#treinaweb": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#trollar", sentimento: -1, "#trollar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#trote", sentimento: -1, "#trote": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#true", sentimento: 1, "#true": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#tvi", sentimento: 1, "#tvi": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#twitcam", sentimento: -1, "#twitcam": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#twittcam", sentimento: -1, "#twittcam": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#twitter", sentimento: -1, "#twitter": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#uenf", sentimento: 1, "#uenf": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#unesp", sentimento: -1, "#unesp": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#uni", sentimento: -1, "#uni": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#unico", sentimento: -1, "#unico": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#unip", sentimento: -1, "#unip": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#v", sentimento: -1, "#v": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#valdir", sentimento: -1, "#valdir": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#valetudo", sentimento: -1, "#valetudo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#valeurge", sentimento: -1, "#valeurge": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vamp", sentimento: -1, "#vamp": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vdm", sentimento: -1, "#vdm": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#verdade", sentimento: 0, "#verdade": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vergonha", sentimento: -1, "#vergonha": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#viage", sentimento: -1, "#viage": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vida", sentimento: -1, "#vida": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#viih", sentimento: -1, "#viih": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vivo", sentimento: 0, "#vivo": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vmb", sentimento: -1, "#vmb": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#voetrip", sentimento: -1, "#voetrip": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#volei", sentimento: -1, "#volei": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vtnc", sentimento: -1, "#vtnc": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#vym", sentimento: -1, "#vym": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#w00t", sentimento: 1, "#w00t": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#win", sentimento: 1, "#win": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#windows", sentimento: 1, "#windows": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#winning", sentimento: 1, "#winning": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#wolfteam", sentimento: -1, "#wolfteam": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#wp7", sentimento: 1, "#wp7": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#x10", sentimento: -1, "#x10": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#youtube", sentimento: -1, "#youtube": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#z", sentimento: -1, "#z": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#zegotinha", sentimento: 1, "#zegotinha": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "#zon", sentimento: 0, "#zon": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "=[", sentimento: -1, "=[": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "=@", sentimento: -1, "=@": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "=D", sentimento: 1, "=D": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "=d", sentimento: 1, "=d": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "=P", sentimento: -1, "=P": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "=p", sentimento: -1, "=p": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "=x", sentimento: -1, "=x": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: ">:(", sentimento: -1, ">:(": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "><", sentimento: -1, "><": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "¬¬''", sentimento: -1, "¬¬''": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "¬¬", sentimento: -1, "¬¬": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "a comemorar", sentimento: 3, "a comemorar": 3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "¬", sentimento: -1, "¬": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "ab-rogar", sentimento: -1, "ab-rogar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "ababadar", sentimento: 0, "ababadar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "ababelar-se", sentimento: 1, "ababelar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "ababelar", sentimento: -1, "ababelar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaçanar", sentimento: 1, "abaçanar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abacinar", sentimento: 1, "abacinar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafada", sentimento: -1, "abafada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafadas", sentimento: -1, "abafadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafado", sentimento: -1, "abafado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafados", sentimento: -1, "abafados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafante", sentimento: -1, "abafante": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafantes", sentimento: -1, "abafantes": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafar", sentimento: -1, "abafar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abafou", sentimento: -1, "abafou": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaixada", sentimento: -1, "abaixada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaixadas", sentimento: -1, "abaixadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaixado", sentimento: -1, "abaixado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaixados", sentimento: -1, "abaixados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaixar-se", sentimento: 0, "abaixar-se": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaixar", sentimento: 0, "abaixar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalada", sentimento: -1, "abalada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abaladas", sentimento: -1, "abaladas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalado", sentimento: -1, "abalado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalados", sentimento: -1, "abalados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalançado", sentimento: 1, "abalançado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalançar", sentimento: 1, "abalançar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalar-se", sentimento: 0, "abalar-se": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalar", sentimento: 0, "abalar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalizada", sentimento: 1, "abalizada": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalizadas", sentimento: 1, "abalizadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalizado", sentimento: 1, "abalizado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalizados", sentimento: 1, "abalizados": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalizar", sentimento: 0, "abalizar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalroar-se", sentimento: 1, "abalroar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abalroar", sentimento: 0, "abalroar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abanar", sentimento: 0, "abanar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandalhada", sentimento: -1, "abandalhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandalhadas", sentimento: -1, "abandalhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandalhado", sentimento: -1, "abandalhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandalhados", sentimento: -1, "abandalhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandalhar", sentimento: 1, "abandalhar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandar", sentimento: -1, "abandar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonada", sentimento: -1, "abandonada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonadas", sentimento: -1, "abandonadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonado", sentimento: -1, "abandonado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonado", sentimento: -2, "abandonado": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonados", sentimento: -1, "abandonados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonar-se", sentimento: 0, "abandonar-se": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonar", sentimento: -1, "abandonar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandono", sentimento: -2, "abandono": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abandonos", sentimento: -2, "abandonos": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarbar", sentimento: 1, "abarbar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarbarado", sentimento: 1, "abarbarado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarcante", sentimento: -1, "abarcante": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarcantes", sentimento: -1, "abarcantes": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarcar", sentimento: -1, "abarcar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarrancar", sentimento: -1, "abarrancar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarregar", sentimento: 1, "abarregar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarreirar", sentimento: -1, "abarreirar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarrocar", sentimento: -1, "abarrocar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarrotada", sentimento: -1, "abarrotada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarrotadas", sentimento: -1, "abarrotadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarrotado", sentimento: -1, "abarrotado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarrotados", sentimento: -1, "abarrotados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abarrotar", sentimento: 0, "abarrotar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abasbacar", sentimento: 0, "abasbacar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastada", sentimento: 1, "abastada": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastadas", sentimento: 1, "abastadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastadear", sentimento: 1, "abastadear": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastado", sentimento: 1, "abastado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastados", sentimento: 1, "abastados": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastar", sentimento: -1, "abastar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastardar-se", sentimento: 1, "abastardar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastardar", sentimento: 1, "abastardar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastardear-se", sentimento: 1, "abastardear-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastecer", sentimento: 1, "abastecer": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastecida", sentimento: 0, "abastecida": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastecidas", sentimento: 0, "abastecidas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastecido", sentimento: 0, "abastecido": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastecidos", sentimento: 0, "abastecidos": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abastoso", sentimento: 1, "abastoso": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abater", sentimento: -1, "abater": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abatida", sentimento: -1, "abatida": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abatidas", sentimento: -1, "abatidas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abatido", sentimento: -1, "abatido": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abatido", sentimento: -2, "abatido": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abatidos", sentimento: -1, "abatidos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abatocar", sentimento: 1, "abatocar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abdicar", sentimento: -1, "abdicar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abdução", sentimento: -2, "abdução": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abduzir-se", sentimento: 1, "abduzir-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abduzir", sentimento: 0, "abduzir": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abeberar", sentimento: 0, "abeberar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abeirar-se", sentimento: 1, "abeirar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abeirar", sentimento: 0, "abeirar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abelhuda", sentimento: -1, "abelhuda": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abelhudar", sentimento: 0, "abelhudar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abelhudas", sentimento: -1, "abelhudas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abelhudo", sentimento: -1, "abelhudo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abelhudos", sentimento: -1, "abelhudos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abemolar", sentimento: 0, "abemolar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abençoa", sentimento: 2, "abençoa": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abençoada", sentimento: 1, "abençoada": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abençoadas", sentimento: 1, "abençoadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abençoado", sentimento: 1, "abençoado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abençoados", sentimento: 1, "abençoados": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abençoar", sentimento: 0, "abençoar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abençoar", sentimento: 2, "abençoar": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberrante", sentimento: -1, "aberrante": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberrantes", sentimento: -1, "aberrantes": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberrativa", sentimento: -1, "aberrativa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberrativas", sentimento: -1, "aberrativas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberrativo", sentimento: -1, "aberrativo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberrativos", sentimento: -1, "aberrativos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberratório", sentimento: 1, "aberratório": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberta", sentimento: 0, "aberta": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abertão", sentimento: 1, "abertão": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abertas", sentimento: 0, "abertas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aberto", sentimento: 0, "aberto": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abertos", sentimento: 0, "abertos": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abespinhada", sentimento: -1, "abespinhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abespinhadas", sentimento: -1, "abespinhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abespinhado", sentimento: -1, "abespinhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abespinhados", sentimento: -1, "abespinhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abespinhar", sentimento: -1, "abespinhar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abestalhada", sentimento: -1, "abestalhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abestalhadas", sentimento: -1, "abestalhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abestalhado", sentimento: -1, "abestalhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abestalhados", sentimento: -1, "abestalhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abetumado", sentimento: -1, "abetumado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abetumar", sentimento: 0, "abetumar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abicar", sentimento: 0, "abicar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abichar", sentimento: 0, "abichar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abilolada", sentimento: -1, "abilolada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abiloladas", sentimento: -1, "abiloladas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abilolado", sentimento: -1, "abilolado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abilolados", sentimento: -1, "abilolados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abiscoitar", sentimento: 0, "abiscoitar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abiselar", sentimento: 1, "abiselar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abismada", sentimento: -1, "abismada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abismadas", sentimento: -1, "abismadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abismado", sentimento: -1, "abismado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abismados", sentimento: -1, "abismados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abismais", sentimento: -1, "abismais": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abismal", sentimento: -1, "abismal": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abismar", sentimento: 1, "abismar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjecta", sentimento: -1, "abjecta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjectas", sentimento: -1, "abjectas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjecto", sentimento: -1, "abjecto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjectos", sentimento: -1, "abjectos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjeta", sentimento: -1, "abjeta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjetas", sentimento: -1, "abjetas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjeto", sentimento: -1, "abjeto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjetos", sentimento: -1, "abjetos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjugar-se", sentimento: 1, "abjugar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjugar", sentimento: 0, "abjugar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abjurar", sentimento: 1, "abjurar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "ablegar-se", sentimento: 1, "ablegar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "ablegar", sentimento: 1, "ablegar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abluir", sentimento: 0, "abluir": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnegada", sentimento: 1, "abnegada": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnegadas", sentimento: 1, "abnegadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnegado", sentimento: 1, "abnegado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnegados", sentimento: 1, "abnegados": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnegar", sentimento: 1, "abnegar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnoitar", sentimento: 1, "abnoitar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnormal", sentimento: 1, "abnormal": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnóxio", sentimento: 1, "abnóxio": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abnuir", sentimento: 1, "abnuir": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobada", sentimento: -1, "abobada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobadar", sentimento: 0, "abobadar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobadas", sentimento: -1, "abobadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobado", sentimento: -1, "abobado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobados", sentimento: -1, "abobados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobalhada", sentimento: -1, "abobalhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobalhadas", sentimento: -1, "abobalhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobalhado", sentimento: -1, "abobalhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobalhados", sentimento: -1, "abobalhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abobalhar", sentimento: 1, "abobalhar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abocanhar", sentimento: -1, "abocanhar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abocar", sentimento: -1, "abocar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abodegado", sentimento: -1, "abodegado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abodegar", sentimento: -1, "abodegar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolachar", sentimento: 0, "abolachar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolar", sentimento: -1, "abolar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolçar", sentimento: 0, "abolçar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aboleimar", sentimento: 0, "aboleimar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aboletar", sentimento: 0, "aboletar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolicionista", sentimento: 0, "abolicionista": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolicionistas", sentimento: 0, "abolicionistas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolida", sentimento: -1, "abolida": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolidas", sentimento: -1, "abolidas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolido", sentimento: -1, "abolido": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolidos", sentimento: -1, "abolidos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolir", sentimento: -1, "abolir": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolorecer", sentimento: 1, "abolorecer": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolorentar", sentimento: 1, "abolorentar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abolsar", sentimento: 1, "abolsar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abomina", sentimento: -3, "abomina": -3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominado", sentimento: -1, "abominado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominador", sentimento: -1, "abominador": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominadora", sentimento: -1, "abominadora": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominadoras", sentimento: -1, "abominadoras": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominadores", sentimento: -1, "abominadores": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominanda", sentimento: -1, "abominanda": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominandas", sentimento: -1, "abominandas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominando", sentimento: -1, "abominando": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominandos", sentimento: -1, "abominandos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominar", sentimento: -3, "abominar": -3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abomináveis", sentimento: -1, "abomináveis": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominável", sentimento: -1, "abominável": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominoso", sentimento: -1, "abominoso": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abominou", sentimento: -3, "abominou": -3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonada", sentimento: 1, "abonada": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonadas", sentimento: 1, "abonadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonado", sentimento: 1, "abonado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonados", sentimento: 1, "abonados": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonançar-se", sentimento: 1, "abonançar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonançar", sentimento: 0, "abonançar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonar", sentimento: 0, "abonar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonatória", sentimento: 1, "abonatória": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonatórias", sentimento: 1, "abonatórias": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonatório", sentimento: 1, "abonatório": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonatórios", sentimento: 1, "abonatórios": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonecada", sentimento: 0, "abonecada": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonecadas", sentimento: 0, "abonecadas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonecado", sentimento: 0, "abonecado": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abonecados", sentimento: 0, "abonecados": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aboquejar", sentimento: -1, "aboquejar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborcar", sentimento: -1, "aborcar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abordar", sentimento: 0, "abordar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborígene", sentimento: -1, "aborígene": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborígenes", sentimento: -1, "aborígenes": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecedor", sentimento: -1, "aborrecedor": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecer", sentimento: -1, "aborrecer": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecida", sentimento: -1, "aborrecida": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecidas", sentimento: -1, "aborrecidas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecido", sentimento: -1, "aborrecido": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecido", sentimento: -2, "aborrecido": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecidos", sentimento: -1, "aborrecidos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecimento", sentimento: -2, "aborrecimento": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrecível", sentimento: -1, "aborrecível": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrido", sentimento: -1, "aborrido": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aborrível", sentimento: -1, "aborrível": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abortada", sentimento: -1, "abortada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abortadas", sentimento: -1, "abortadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abortado", sentimento: -1, "abortado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abortados", sentimento: -1, "abortados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abortar", sentimento: -1, "abortar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abotoar", sentimento: 0, "abotoar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraçada", sentimento: 1, "abraçada": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abracadabrante", sentimento: 1, "abracadabrante": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abracadábrico", sentimento: 1, "abracadábrico": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraçadas", sentimento: 1, "abraçadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraçado", sentimento: 1, "abraçado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraçados", sentimento: 1, "abraçados": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraçar-se", sentimento: 1, "abraçar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraçar", sentimento: 0, "abraçar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraço", sentimento: 1, "abraço": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraço", sentimento: 2, "abraço": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abraços", sentimento: 2, "abraços": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrancar", sentimento: 1, "abrancar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrandar-se", sentimento: 1, "abrandar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrandar", sentimento: 0, "abrandar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrangente", sentimento: 1, "abrangente": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrangentes", sentimento: 1, "abrangentes": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abranger", sentimento: 0, "abranger": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrangida", sentimento: -1, "abrangida": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrangidas", sentimento: -1, "abrangidas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrangido", sentimento: -1, "abrangido": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrangidos", sentimento: -1, "abrangidos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrasar-se", sentimento: 1, "abrasar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrasar", sentimento: 0, "abrasar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrasear", sentimento: -1, "abrasear": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrasileirada", sentimento: 0, "abrasileirada": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrasileirado", sentimento: 0, "abrasileirado": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrasileirados", sentimento: 0, "abrasileirados": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrejar", sentimento: 1, "abrejar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abreviar", sentimento: 0, "abreviar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrigada", sentimento: 0, "abrigada": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrigadas", sentimento: 0, "abrigadas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrigado", sentimento: 0, "abrigado": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrigados", sentimento: 0, "abrigados": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrigar", sentimento: -1, "abrigar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrilhantada", sentimento: 1, "abrilhantada": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrilhantado", sentimento: 1, "abrilhantado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrilhantados", sentimento: 1, "abrilhantados": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrilhantar", sentimento: 0, "abrilhantar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrir mão de", sentimento: -1, "abrir mão de": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrir-se", sentimento: -1, "abrir-se": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrir", sentimento: -1, "abrir": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrolhar", sentimento: 0, "abrolhar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrupta", sentimento: -1, "abrupta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abruptas", sentimento: -1, "abruptas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrupto", sentimento: -1, "abrupto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abruptos", sentimento: -1, "abruptos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrutado", sentimento: -1, "abrutado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrutalhada", sentimento: -1, "abrutalhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrutalhado", sentimento: -1, "abrutalhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrutalhados", sentimento: -1, "abrutalhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrutalhar", sentimento: 1, "abrutalhar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abrutar", sentimento: 1, "abrutar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abscidar-se", sentimento: 1, "abscidar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absentista", sentimento: -1, "absentista": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absentistas", sentimento: -1, "absentistas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absoluta", sentimento: 1, "absoluta": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolutas", sentimento: 1, "absolutas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolutista", sentimento: 0, "absolutista": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolutistas", sentimento: 0, "absolutistas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absoluto", sentimento: 1, "absoluto": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolutos", sentimento: 1, "absolutos": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolve", sentimento: 2, "absolve": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolvendo", sentimento: 2, "absolvendo": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolver", sentimento: -1, "absolver": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolver", sentimento: 2, "absolver": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolvida", sentimento: 0, "absolvida": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolvidas", sentimento: 0, "absolvidas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolvido", sentimento: 0, "absolvido": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolvido", sentimento: 2, "absolvido": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolvidos", sentimento: 0, "absolvidos": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absolvidos", sentimento: 2, "absolvidos": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absonar", sentimento: -1, "absonar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absorta", sentimento: -1, "absorta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absortas", sentimento: -1, "absortas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absorto", sentimento: -1, "absorto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absortos", sentimento: -1, "absortos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absortos", sentimento: 1, "absortos": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absorvente", sentimento: 1, "absorvente": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absorventes", sentimento: 1, "absorventes": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absorver-se", sentimento: 1, "absorver-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absorver", sentimento: -1, "absorver": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absorvido", sentimento: 1, "absorvido": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémia", sentimento: 1, "abstémia": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémias", sentimento: 1, "abstémias": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémica", sentimento: 1, "abstémica": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémicas", sentimento: 1, "abstémicas": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémico", sentimento: 1, "abstémico": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémicos", sentimento: 1, "abstémicos": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémio", sentimento: 1, "abstémio": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstémios", sentimento: 1, "abstémios": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstencionista", sentimento: 0, "abstencionista": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstencionistas", sentimento: 0, "abstencionistas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abster-se", sentimento: 0, "abster-se": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstinente", sentimento: 0, "abstinente": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstinentes", sentimento: 0, "abstinentes": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstraccionista", sentimento: 0, "abstraccionista": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstracta", sentimento: -1, "abstracta": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstractas", sentimento: -1, "abstractas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstracto", sentimento: -1, "abstracto": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstractos", sentimento: -1, "abstractos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstraída", sentimento: -1, "abstraída": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstraídas", sentimento: -1, "abstraídas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstraído", sentimento: -1, "abstraído": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstraídos", sentimento: -1, "abstraídos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstrair-se", sentimento: 0, "abstrair-se": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstrair", sentimento: 1, "abstrair": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstrata", sentimento: -1, "abstrata": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstratas", sentimento: -1, "abstratas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstrato", sentimento: -1, "abstrato": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstratos", sentimento: -1, "abstratos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstrusa", sentimento: -1, "abstrusa": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstrusas", sentimento: -1, "abstrusas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstruso", sentimento: -1, "abstruso": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abstrusos", sentimento: -1, "abstrusos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absumir", sentimento: -1, "absumir": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absurda", sentimento: -1, "absurda": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absurdas", sentimento: -1, "absurdas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absurdo", sentimento: -1, "absurdo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absurdo", sentimento: -2, "absurdo": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "absurdos", sentimento: -1, "absurdos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abugalhar", sentimento: 1, "abugalhar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abúlica", sentimento: -1, "abúlica": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abúlicas", sentimento: -1, "abúlicas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abúlico", sentimento: -1, "abúlico": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abúlicos", sentimento: -1, "abúlicos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abundante", sentimento: 1, "abundante": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abundar", sentimento: 1, "abundar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abundoso", sentimento: 1, "abundoso": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aburacar", sentimento: 1, "aburacar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aburguesada", sentimento: 0, "aburguesada": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aburguesadas", sentimento: 0, "aburguesadas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aburguesado", sentimento: 0, "aburguesado": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "aburguesados", sentimento: 0, "aburguesados": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusada", sentimento: -1, "abusada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusadas", sentimento: -1, "abusadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusado", sentimento: -1, "abusado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusado", sentimento: -3, "abusado": -3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusador", sentimento: -1, "abusador": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusadora", sentimento: -1, "abusadora": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusadoras", sentimento: -1, "abusadoras": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusadores", sentimento: -1, "abusadores": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusados", sentimento: -1, "abusados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusar", sentimento: 1, "abusar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusiva", sentimento: -1, "abusiva": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusivas", sentimento: -1, "abusivas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusivo", sentimento: -1, "abusivo": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusivo", sentimento: -3, "abusivo": -3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusivos", sentimento: -1, "abusivos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abuso", sentimento: -3, "abuso": -3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abusos", sentimento: -3, "abusos": -3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "abuzinar", sentimento: 1, "abuzinar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabada", sentimento: -1, "acabada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabadas", sentimento: -1, "acabadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabado", sentimento: -1, "acabado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabados", sentimento: -1, "acabados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabadota", sentimento: -1, "acabadota": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabadotas", sentimento: -1, "acabadotas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabadote", sentimento: -1, "acabadote": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabadotes", sentimento: -1, "acabadotes": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabamento", sentimento: 1, "acabamento": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabar-se", sentimento: 0, "acabar-se": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabar", sentimento: 0, "acabar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabrunhada", sentimento: -1, "acabrunhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabrunhado", sentimento: -1, "acabrunhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabrunhados", sentimento: -1, "acabrunhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acabrunhar", sentimento: 0, "acabrunhar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "açacalado", sentimento: 1, "açacalado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acaçapar", sentimento: 1, "acaçapar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acachar", sentimento: 1, "acachar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acaciana", sentimento: -1, "acaciana": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acacianas", sentimento: -1, "acacianas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acaciano", sentimento: -1, "acaciano": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acacianos", sentimento: -1, "acacianos": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "académica", sentimento: 0, "académica": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acadêmica", sentimento: 0, "acadêmica": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "académicas", sentimento: 0, "académicas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acadêmicas", sentimento: 0, "acadêmicas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "académico", sentimento: 0, "académico": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acadêmico", sentimento: 0, "acadêmico": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "académicos", sentimento: 0, "académicos": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acadêmicos", sentimento: 0, "acadêmicos": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acafelar", sentimento: 1, "acafelar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acaiçarado", sentimento: -1, "acaiçarado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "açaimar", sentimento: 0, "açaimar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalentando", sentimento: 2, "acalentando": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalentar-se", sentimento: 1, "acalentar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalentar", sentimento: 0, "acalentar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalentar", sentimento: 2, "acalentar": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalmada", sentimento: 3, "acalmada": 3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalmado", sentimento: 2, "acalmado": 2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalmar-se", sentimento: 1, "acalmar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalmar", sentimento: 0, "acalmar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalmar", sentimento: 3, "acalmar": 3}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalorada", sentimento: 0, "acalorada": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acaloradas", sentimento: 0, "acaloradas": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalorado", sentimento: 0, "acalorado": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalorados", sentimento: 0, "acalorados": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalorar-se", sentimento: 1, "acalorar-se": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acalorar", sentimento: 1, "acalorar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acamar", sentimento: 1, "acamar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "açambarcador", sentimento: -1, "açambarcador": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "açambarcadora", sentimento: -1, "açambarcadora": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "açambarcadores", sentimento: -1, "açambarcadores": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "açambarcar", sentimento: 0, "açambarcar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acambetar", sentimento: 0, "acambetar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acampanar", sentimento: 0, "acampanar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanalar", sentimento: 0, "acanalar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanalhar", sentimento: 1, "acanalhar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanavear", sentimento: -1, "acanavear": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanelar", sentimento: 0, "acanelar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanhada", sentimento: -1, "acanhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanhadas", sentimento: -1, "acanhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanhado", sentimento: -1, "acanhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanhados", sentimento: -1, "acanhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acanhar", sentimento: -1, "acanhar": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "ação judicial", sentimento: -2, "ação judicial": -2}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acapelado", sentimento: 1, "acapelado": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acapelar", sentimento: 0, "acapelar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarar", sentimento: 1, "acarar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarear", sentimento: 1, "acarear": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acariciar", sentimento: 0, "acariciar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarinhada", sentimento: -1, "acarinhada": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarinhadas", sentimento: -1, "acarinhadas": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarinhado", sentimento: -1, "acarinhado": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarinhados", sentimento: -1, "acarinhados": -1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarinhar", sentimento: 1, "acarinhar": 1}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + {texto: "acarminar", sentimento: 0, "acarminar": 0}, + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + ]; + ~ +!!! error TS2743: Array literal type is too complex to represent. \ No newline at end of file diff --git a/tests/baselines/reference/arrayLiteralTooComplex.js b/tests/baselines/reference/arrayLiteralTooComplex.js new file mode 100644 index 0000000000000..24534513913f3 --- /dev/null +++ b/tests/baselines/reference/arrayLiteralTooComplex.js @@ -0,0 +1,2007 @@ +//// [arrayLiteralTooComplex.ts] +let a = [ + {texto: ";)", sentimento: 1, ";)": 1}, + {texto: ";@", sentimento: -1, ";@": -1}, + {texto: ";*", sentimento: -1, ";*": -1}, + {texto: ";**", sentimento: -1, ";**": -1}, + {texto: ";~", sentimento: -1, ";~": -1}, + {texto: ";D", sentimento: -1, ";D": -1}, + {texto: ";P", sentimento: -1, ";P": -1}, + {texto: ";p", sentimento: -1, ";p": -1}, + {texto: ";x", sentimento: -1, ";x": -1}, + {texto: ";xx", sentimento: -1, ";xx": -1}, + {texto: ":'(", sentimento: -1, ":'(": -1}, + {texto: ":')", sentimento: -1, ":')": -1}, + {texto: ":(", sentimento: -1, ":(": -1}, + {texto: ":)", sentimento: 1, ":)": 1}, + {texto: ":)))", sentimento: 1, ":)))": 1}, + {texto: ":]", sentimento: -1, ":]": -1}, + {texto: ":@", sentimento: 0, ":@": 0}, + {texto: ":*", sentimento: -1, ":*": -1}, + {texto: ":<", sentimento: -1, ":<": -1}, + {texto: ":~", sentimento: -1, ":~": -1}, + {texto: ":$", sentimento: -1, ":$": -1}, + {texto: ":D", sentimento: 1, ":D": 1}, + {texto: ":p", sentimento: -1, ":p": -1}, + {texto: ":P", sentimento: 0, ":P": 0}, + {texto: ":x", sentimento: -1, ":x": -1}, + {texto: ":x)", sentimento: 1, ":x)": 1}, + {texto: "(:", sentimento: -1, "(:": -1}, + {texto: "(=", sentimento: 1, "(=": 1}, + {texto: "):", sentimento: -1, "):": -1}, + {texto: ")):", sentimento: -1, ")):": -1}, + {texto: "*:", sentimento: -1, "*:": -1}, + {texto: "#2", sentimento: -1, "#2": -1}, + {texto: "#2011", sentimento: -1, "#2011": -1}, + {texto: "#2014", sentimento: -1, "#2014": -1}, + {texto: "#4square", sentimento: -1, "#4square": -1}, + {texto: "#64bit", sentimento: 1, "#64bit": 1}, + {texto: "#adsl", sentimento: -1, "#adsl": -1}, + {texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1}, + {texto: "#afazenda", sentimento: -1, "#afazenda": -1}, + {texto: "#aff", sentimento: -1, "#aff": -1}, + {texto: "#again", sentimento: -1, "#again": -1}, + {texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1}, + {texto: "#agua", sentimento: 1, "#agua": 1}, + {texto: "#aimeucora", sentimento: -1, "#aimeucora": -1}, + {texto: "#alan", sentimento: -1, "#alan": -1}, + {texto: "#aline", sentimento: -1, "#aline": -1}, + {texto: "#amo", sentimento: 1, "#amo": 1}, + {texto: "#amodoro", sentimento: 1, "#amodoro": 1}, + {texto: "#amor", sentimento: -1, "#amor": -1}, + {texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1}, + {texto: "#an", sentimento: 1, "#an": 1}, + {texto: "#android", sentimento: 1, "#android": 1}, + {texto: "#animada", sentimento: -1, "#animada": -1}, + {texto: "#apagao", sentimento: -1, "#apagao": -1}, + {texto: "#apps", sentimento: -1, "#apps": -1}, + {texto: "#aqu", sentimento: 1, "#aqu": 1}, + {texto: "#ari", sentimento: -1, "#ari": -1}, + {texto: "#ariane", sentimento: -1, "#ariane": -1}, + {texto: "#bad", sentimento: -1, "#bad": -1}, + {texto: "#bakugan", sentimento: -1, "#bakugan": -1}, + {texto: "#bam", sentimento: 1, "#bam": 1}, + {texto: "#bandida", sentimento: -1, "#bandida": -1}, + {texto: "#bankonline", sentimento: 1, "#bankonline": 1}, + {texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1}, + {texto: "#beer", sentimento: 1, "#beer": 1}, + {texto: "#beijo", sentimento: 1, "#beijo": 1}, + {texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1}, + {texto: "#bigmistake", sentimento: -1, "#bigmistake": -1}, + {texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1}, + {texto: "#bio", sentimento: 1, "#bio": 1}, + {texto: "#biologia", sentimento: -1, "#biologia": -1}, + {texto: "#birdbrain", sentimento: -1, "#birdbrain": -1}, + {texto: "#blackberry", sentimento: -1, "#blackberry": -1}, + {texto: "#blackhat", sentimento: -1, "#blackhat": -1}, + {texto: "#blogprog", sentimento: -1, "#blogprog": -1}, + {texto: "#bodareal", sentimento: -1, "#bodareal": -1}, + {texto: "#bombando", sentimento: -1, "#bombando": -1}, + {texto: "#bomdia", sentimento: -1, "#bomdia": -1}, + {texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1}, + {texto: "#boobs", sentimento: 1, "#boobs": 1}, + {texto: "#boomsm", sentimento: 1, "#boomsm": 1}, + {texto: "#boss", sentimento: 1, "#boss": 1}, + {texto: "#brandsclub", sentimento: -1, "#brandsclub": -1}, + {texto: "#brasil", sentimento: -1, "#brasil": -1}, + {texto: "#brasilia", sentimento: -1, "#brasilia": -1}, + {texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1}, + {texto: "#brazilians", sentimento: -1, "#brazilians": -1}, + {texto: "#bsb", sentimento: -1, "#bsb": -1}, + {texto: "#bub", sentimento: -1, "#bub": -1}, + {texto: "#buongiorno", sentimento: -1, "#buongiorno": -1}, + {texto: "#burro", sentimento: -1, "#burro": -1}, + {texto: "#cad", sentimento: -1, "#cad": -1}, + {texto: "#caelum", sentimento: 1, "#caelum": 1}, + {texto: "#cafeina", sentimento: -1, "#cafeina": -1}, + {texto: "#caixa", sentimento: -1, "#caixa": -1}, + {texto: "#cal", sentimento: 1, "#cal": 1}, + {texto: "#camaradagem", sentimento: -1, "#camaradagem": -1}, + {texto: "#camel", sentimento: 1, "#camel": 1}, + {texto: "#capric", sentimento: -1, "#capric": -1}, + {texto: "#carol", sentimento: -1, "#carol": -1}, + {texto: "#carris", sentimento: -1, "#carris": -1}, + {texto: "#cartolafc", sentimento: -1, "#cartolafc": -1}, + {texto: "#catalao", sentimento: -1, "#catalao": -1}, + {texto: "#cdlr", sentimento: 1, "#cdlr": 1}, + {texto: "#cearasc", sentimento: -1, "#cearasc": -1}, + {texto: "#centauro", sentimento: -1, "#centauro": -1}, + {texto: "#certeza", sentimento: -1, "#certeza": -1}, + {texto: "#cet", sentimento: -1, "#cet": -1}, + {texto: "#charmeleon", sentimento: 1, "#charmeleon": 1}, + {texto: "#chelas", sentimento: 1, "#chelas": 1}, + {texto: "#chrome", sentimento: 1, "#chrome": 1}, + {texto: "#cielo", sentimento: -1, "#cielo": -1}, + {texto: "#cloaking", sentimento: -1, "#cloaking": -1}, + {texto: "#cmteam", sentimento: 1, "#cmteam": 1}, + {texto: "#comex", sentimento: -1, "#comex": -1}, + {texto: "#comofas", sentimento: -1, "#comofas": -1}, + {texto: "#compos", sentimento: -1, "#compos": -1}, + {texto: "#conspira", sentimento: -1, "#conspira": -1}, + {texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1}, + {texto: "#contribuir", sentimento: 1, "#contribuir": 1}, + {texto: "#conversos", sentimento: -1, "#conversos": -1}, + {texto: "#copa", sentimento: -1, "#copa": -1}, + {texto: "#corpoevida", sentimento: 1, "#corpoevida": 1}, + {texto: "#correios", sentimento: -1, "#correios": -1}, + {texto: "#cpco4", sentimento: 1, "#cpco4": 1}, + {texto: "#cpfl", sentimento: -1, "#cpfl": -1}, + {texto: "#cqc", sentimento: -1, "#cqc": -1}, + {texto: "#cqteste", sentimento: -1, "#cqteste": -1}, + {texto: "#cry", sentimento: -1, "#cry": -1}, + {texto: "#cs1", sentimento: 1, "#cs1": 1}, + {texto: "#csrio", sentimento: 1, "#csrio": 1}, + {texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1}, + {texto: "#curiosidades", sentimento: 1, "#curiosidades": 1}, + {texto: "#curso", sentimento: -1, "#curso": -1}, + {texto: "#d", sentimento: 1, "#d": 1}, + {texto: "#dailyformula", sentimento: 1, "#dailyformula": 1}, + {texto: "#datena", sentimento: -1, "#datena": -1}, + {texto: "#declara", sentimento: -1, "#declara": -1}, + {texto: "#defeito", sentimento: -1, "#defeito": -1}, + {texto: "#desconfiado", sentimento: 1, "#desconfiado": 1}, + {texto: "#desculpa", sentimento: -1, "#desculpa": -1}, + {texto: "#deus", sentimento: 1, "#deus": 1}, + {texto: "#di", sentimento: 1, "#di": 1}, + {texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1}, + {texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1}, + {texto: "#diegocaash", sentimento: -1, "#diegocaash": -1}, + {texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1}, + {texto: "#digimon", sentimento: -1, "#digimon": -1}, + {texto: "#digitalworld", sentimento: -1, "#digitalworld": -1}, + {texto: "#django1", sentimento: 1, "#django1": 1}, + {texto: "#dojorio", sentimento: 1, "#dojorio": 1}, + {texto: "#dorgas", sentimento: -1, "#dorgas": -1}, + {texto: "#dormir", sentimento: 1, "#dormir": 1}, + {texto: "#e3", sentimento: -1, "#e3": -1}, + {texto: "#e32011", sentimento: -1, "#e32011": -1}, + {texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1}, + {texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1}, + {texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1}, + {texto: "#ela", sentimento: -1, "#ela": -1}, + {texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1}, + {texto: "#elbotin", sentimento: 1, "#elbotin": 1}, + {texto: "#elcorner", sentimento: -1, "#elcorner": -1}, + {texto: "#ele", sentimento: -1, "#ele": -1}, + {texto: "#eletromate", sentimento: -1, "#eletromate": -1}, + {texto: "#emerson", sentimento: -1, "#emerson": -1}, + {texto: "#enem", sentimento: -1, "#enem": -1}, + {texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1}, + {texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1}, + {texto: "#epic", sentimento: -1, "#epic": -1}, + {texto: "#epicwin", sentimento: 0, "#epicwin": 0}, + {texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1}, + {texto: "#eressexypero", sentimento: 1, "#eressexypero": 1}, + {texto: "#errodotz", sentimento: -1, "#errodotz": -1}, + {texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1}, + {texto: "#escroto", sentimento: -1, "#escroto": -1}, + {texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1}, + {texto: "#estad", sentimento: -1, "#estad": -1}, + {texto: "#estudar", sentimento: -1, "#estudar": -1}, + {texto: "#etenildos", sentimento: -1, "#etenildos": -1}, + {texto: "#eu", sentimento: -1, "#eu": -1}, + {texto: "#eununca", sentimento: -1, "#eununca": -1}, + {texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1}, + {texto: "#evernote", sentimento: 1, "#evernote": 1}, + {texto: "#exalta", sentimento: -1, "#exalta": -1}, + {texto: "#expotch", sentimento: -1, "#expotch": -1}, + {texto: "#facebook", sentimento: 1, "#facebook": 1}, + {texto: "#fail", sentimento: -1, "#fail": -1}, + {texto: "#faiooo", sentimento: -1, "#faiooo": -1}, + {texto: "#fascinante", sentimento: 1, "#fascinante": 1}, + {texto: "#fashion", sentimento: -1, "#fashion": -1}, + {texto: "#fato", sentimento: -1, "#fato": -1}, + {texto: "#fb", sentimento: 1, "#fb": 1}, + {texto: "#feil", sentimento: -1, "#feil": -1}, + {texto: "#feio", sentimento: -1, "#feio": -1}, + {texto: "#fertagus", sentimento: 1, "#fertagus": 1}, + {texto: "#ff", sentimento: 1, "#ff": 1}, + {texto: "#fibra", sentimento: -1, "#fibra": -1}, + {texto: "#ficadica", sentimento: -1, "#ficadica": -1}, + {texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1}, + {texto: "#fifa11", sentimento: 1, "#fifa11": 1}, + {texto: "#fikdik", sentimento: -1, "#fikdik": -1}, + {texto: "#filha", sentimento: -1, "#filha": -1}, + {texto: "#finishh", sentimento: 1, "#finishh": 1}, + {texto: "#firefox", sentimento: 1, "#firefox": 1}, + {texto: "#fisl", sentimento: 1, "#fisl": 1}, + {texto: "#flash", sentimento: 1, "#flash": 1}, + {texto: "#flopou", sentimento: -1, "#flopou": -1}, + {texto: "#fodaa", sentimento: -1, "#fodaa": -1}, + {texto: "#fodao", sentimento: 1, "#fodao": 1}, + {texto: "#fome", sentimento: 1, "#fome": 1}, + {texto: "#foramicarla", sentimento: -1, "#foramicarla": -1}, + {texto: "#forever", sentimento: 1, "#forever": 1}, + {texto: "#foreveralone", sentimento: 1, "#foreveralone": 1}, + {texto: "#forevergordo", sentimento: 1, "#forevergordo": 1}, + {texto: "#fortaleza", sentimento: -1, "#fortaleza": -1}, + {texto: "#frontinrio", sentimento: 1, "#frontinrio": 1}, + {texto: "#fsoa", sentimento: 1, "#fsoa": 1}, + {texto: "#fuckboy", sentimento: -1, "#fuckboy": -1}, + {texto: "#fuckyea", sentimento: 1, "#fuckyea": 1}, + {texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1}, + {texto: "#funk", sentimento: -1, "#funk": -1}, + {texto: "#gaga", sentimento: -1, "#gaga": -1}, + {texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1}, + {texto: "#gatos", sentimento: 1, "#gatos": 1}, + {texto: "#generationteen", sentimento: -1, "#generationteen": -1}, + {texto: "#gente", sentimento: -1, "#gente": -1}, + {texto: "#genteque", sentimento: -1, "#genteque": -1}, + {texto: "#ger", sentimento: -1, "#ger": -1}, + {texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1}, + {texto: "#gof9", sentimento: -1, "#gof9": -1}, + {texto: "#gol", sentimento: 1, "#gol": 1}, + {texto: "#golazo", sentimento: 1, "#golazo": 1}, + {texto: "#google", sentimento: -1, "#google": -1}, + {texto: "#googledoodle", sentimento: -1, "#googledoodle": -1}, + {texto: "#gr", sentimento: -1, "#gr": -1}, + {texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1}, + {texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1}, + {texto: "#gremio", sentimento: -1, "#gremio": -1}, + {texto: "#guanabara", sentimento: 1, "#guanabara": 1}, + {texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1}, + {texto: "#guicostnn", sentimento: -1, "#guicostnn": -1}, + {texto: "#harrypobre", sentimento: 1, "#harrypobre": 1}, + {texto: "#hi5", sentimento: 1, "#hi5": 1}, + {texto: "#historia", sentimento: -1, "#historia": -1}, + {texto: "#horacerta", sentimento: -1, "#horacerta": -1}, + {texto: "#hotmail", sentimento: -1, "#hotmail": -1}, + {texto: "#html5", sentimento: 1, "#html5": 1}, + {texto: "#humornegro", sentimento: 1, "#humornegro": 1}, + {texto: "#icwd", sentimento: 1, "#icwd": 1}, + {texto: "#ie", sentimento: 1, "#ie": 1}, + {texto: "#ifce", sentimento: -1, "#ifce": -1}, + {texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1}, + {texto: "#imagens", sentimento: 1, "#imagens": 1}, + {texto: "#infancia", sentimento: 1, "#infancia": 1}, + {texto: "#infografia", sentimento: 1, "#infografia": 1}, + {texto: "#inlove", sentimento: 1, "#inlove": 1}, + {texto: "#insensatos2", sentimento: -1, "#insensatos2": -1}, + {texto: "#internetbanking", sentimento: -1, "#internetbanking": -1}, + {texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1}, + {texto: "#intersystem", sentimento: -1, "#intersystem": -1}, + {texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1}, + {texto: "#ios5", sentimento: 1, "#ios5": 1}, + {texto: "#itau", sentimento: -1, "#itau": -1}, + {texto: "#j", sentimento: -1, "#j": -1}, + {texto: "#jam", sentimento: -1, "#jam": -1}, + {texto: "#jantar", sentimento: 1, "#jantar": 1}, + {texto: "#jaspion", sentimento: 1, "#jaspion": 1}, + {texto: "#jesse", sentimento: 1, "#jesse": 1}, + {texto: "#jim", sentimento: 1, "#jim": 1}, + {texto: "#joomla", sentimento: -1, "#joomla": -1}, + {texto: "#josatan", sentimento: 1, "#josatan": 1}, + {texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1}, + {texto: "#jumbo", sentimento: 1, "#jumbo": 1}, + {texto: "#kevin", sentimento: -1, "#kevin": -1}, + {texto: "#lance", sentimento: 1, "#lance": 1}, + {texto: "#le", sentimento: 1, "#le": 1}, + {texto: "#leticia", sentimento: -1, "#leticia": -1}, + {texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1}, + {texto: "#lindo", sentimento: 1, "#lindo": 1}, + {texto: "#linux", sentimento: 1, "#linux": 1}, + {texto: "#lion", sentimento: 1, "#lion": 1}, + {texto: "#lixo", sentimento: -1, "#lixo": -1}, + {texto: "#lixofonica", sentimento: -1, "#lixofonica": -1}, + {texto: "#lol", sentimento: -1, "#lol": -1}, + {texto: "#looser", sentimento: 1, "#looser": 1}, + {texto: "#luansantana", sentimento: -1, "#luansantana": -1}, + {texto: "#lucasednir", sentimento: -1, "#lucasednir": -1}, + {texto: "#mac", sentimento: -1, "#mac": -1}, + {texto: "#maconha", sentimento: -1, "#maconha": -1}, + {texto: "#madvma", sentimento: -1, "#madvma": -1}, + {texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1}, + {texto: "#magnocentro", sentimento: -1, "#magnocentro": -1}, + {texto: "#malha", sentimento: -1, "#malha": -1}, + {texto: "#manaus", sentimento: 1, "#manaus": 1}, + {texto: "#mariabethania", sentimento: -1, "#mariabethania": -1}, + {texto: "#marisa", sentimento: -1, "#marisa": -1}, + {texto: "#may", sentimento: -1, "#may": -1}, + {texto: "#mecaga", sentimento: -1, "#mecaga": -1}, + {texto: "#megalagana", sentimento: 1, "#megalagana": 1}, + {texto: "#megasena", sentimento: 1, "#megasena": 1}, + {texto: "#melhores", sentimento: 1, "#melhores": 1}, + {texto: "#melissa", sentimento: -1, "#melissa": -1}, + {texto: "#melissahorn", sentimento: 1, "#melissahorn": 1}, + {texto: "#memolesta", sentimento: -1, "#memolesta": -1}, + {texto: "#metrosp", sentimento: -1, "#metrosp": -1}, + {texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1}, + {texto: "#meusonho", sentimento: -1, "#meusonho": -1}, + {texto: "#microsoft", sentimento: -1, "#microsoft": -1}, + {texto: "#mimimi", sentimento: 1, "#mimimi": 1}, + {texto: "#mobile", sentimento: -1, "#mobile": -1}, + {texto: "#mockery", sentimento: 1, "#mockery": 1}, + {texto: "#mockito", sentimento: 1, "#mockito": 1}, + {texto: "#monografia", sentimento: -1, "#monografia": -1}, + {texto: "#montanagrill", sentimento: 1, "#montanagrill": 1}, + {texto: "#monterrey", sentimento: -1, "#monterrey": -1}, + {texto: "#morto", sentimento: -1, "#morto": -1}, + {texto: "#motos", sentimento: -1, "#motos": -1}, + {texto: "#movies", sentimento: 1, "#movies": 1}, + {texto: "#msn", sentimento: -1, "#msn": -1}, + {texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1}, + {texto: "#myhero", sentimento: 1, "#myhero": 1}, + {texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1}, + {texto: "#naomais", sentimento: -1, "#naomais": -1}, + {texto: "#nata", sentimento: -1, "#nata": -1}, + {texto: "#nervoso", sentimento: 1, "#nervoso": 1}, + {texto: "#net", sentimento: -1, "#net": -1}, + {texto: "#netcombo", sentimento: -1, "#netcombo": -1}, + {texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1}, + {texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1}, + {texto: "#nomamar", sentimento: -1, "#nomamar": -1}, + {texto: "#not", sentimento: -1, "#not": -1}, + {texto: "#oclone", sentimento: -1, "#oclone": -1}, + {texto: "#oda", sentimento: -1, "#oda": -1}, + {texto: "#odeio", sentimento: -1, "#odeio": -1}, + {texto: "#oi", sentimento: -1, "#oi": -1}, + {texto: "#old", sentimento: 1, "#old": 1}, + {texto: "#omg", sentimento: -1, "#omg": -1}, + {texto: "#opera", sentimento: 1, "#opera": 1}, + {texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1}, + {texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1}, + {texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1}, + {texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1}, + {texto: "#pais", sentimento: -1, "#pais": -1}, + {texto: "#palmeiras", sentimento: 1, "#palmeiras": 1}, + {texto: "#palocci", sentimento: -1, "#palocci": -1}, + {texto: "#panama", sentimento: 1, "#panama": 1}, + {texto: "#panico", sentimento: 1, "#panico": 1}, + {texto: "#parti", sentimento: -1, "#parti": -1}, + {texto: "#partiu", sentimento: -1, "#partiu": -1}, + {texto: "#patadeperro", sentimento: 1, "#patadeperro": 1}, + {texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0}, + {texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1}, + {texto: "#photoshop", sentimento: -1, "#photoshop": -1}, + {texto: "#php", sentimento: 1, "#php": 1}, + {texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1}, + {texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1}, + {texto: "#planetmix", sentimento: -1, "#planetmix": -1}, + {texto: "#plc122", sentimento: -1, "#plc122": -1}, + {texto: "#plimplim", sentimento: -1, "#plimplim": -1}, + {texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1}, + {texto: "#poderir", sentimento: -1, "#poderir": -1}, + {texto: "#pokemon", sentimento: -1, "#pokemon": -1}, + {texto: "#polishop", sentimento: -1, "#polishop": -1}, + {texto: "#politicagem", sentimento: -1, "#politicagem": -1}, + {texto: "#polvilho", sentimento: -1, "#polvilho": -1}, + {texto: "#popular", sentimento: -1, "#popular": -1}, + {texto: "#poweroflove", sentimento: -1, "#poweroflove": -1}, + {texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1}, + {texto: "#pqp", sentimento: -1, "#pqp": -1}, + {texto: "#prequi", sentimento: -1, "#prequi": -1}, + {texto: "#profiss", sentimento: 1, "#profiss": 1}, + {texto: "#programadojo", sentimento: -1, "#programadojo": -1}, + {texto: "#promo", sentimento: -1, "#promo": -1}, + {texto: "#prova", sentimento: -1, "#prova": -1}, + {texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1}, + {texto: "#ptt", sentimento: -1, "#ptt": -1}, + {texto: "#pucrs", sentimento: -1, "#pucrs": -1}, + {texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1}, + {texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1}, + {texto: "#qbomne", sentimento: -1, "#qbomne": -1}, + {texto: "#qconsp", sentimento: 1, "#qconsp": 1}, + {texto: "#quefasehein", sentimento: -1, "#quefasehein": -1}, + {texto: "#quepena", sentimento: -1, "#quepena": -1}, + {texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1}, + {texto: "#quiz", sentimento: 1, "#quiz": 1}, + {texto: "#ramon", sentimento: -1, "#ramon": -1}, + {texto: "#receba", sentimento: -1, "#receba": -1}, + {texto: "#reclame", sentimento: 1, "#reclame": 1}, + {texto: "#redeglobo", sentimento: -1, "#redeglobo": -1}, + {texto: "#referendum", sentimento: -1, "#referendum": -1}, + {texto: "#referendum2011", sentimento: -1, "#referendum2011": -1}, + {texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1}, + {texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1}, + {texto: "#revendatim", sentimento: -1, "#revendatim": -1}, + {texto: "#reynosa", sentimento: -1, "#reynosa": -1}, + {texto: "#riovermelho", sentimento: -1, "#riovermelho": -1}, + {texto: "#riverplate", sentimento: 1, "#riverplate": 1}, + {texto: "#rockrio", sentimento: -1, "#rockrio": -1}, + {texto: "#s", sentimento: -1, "#s": -1}, + {texto: "#sabado", sentimento: 1, "#sabado": 1}, + {texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1}, + {texto: "#safari", sentimento: 1, "#safari": 1}, + {texto: "#samsung", sentimento: -1, "#samsung": -1}, + {texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1}, + {texto: "#santoantonio", sentimento: -1, "#santoantonio": -1}, + {texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1}, + {texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1}, + {texto: "#semata", sentimento: -1, "#semata": -1}, + {texto: "#seo", sentimento: 0, "#seo": 0}, + {texto: "#seomoz", sentimento: 1, "#seomoz": 1}, + {texto: "#ser", sentimento: -1, "#ser": -1}, + {texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1}, + {texto: "#sga", sentimento: -1, "#sga": -1}, + {texto: "#sic", sentimento: 1, "#sic": 1}, + {texto: "#sigam", sentimento: -1, "#sigam": -1}, + {texto: "#signos", sentimento: -1, "#signos": -1}, + {texto: "#signout", sentimento: -1, "#signout": -1}, + {texto: "#site", sentimento: -1, "#site": -1}, + {texto: "#smiles", sentimento: -1, "#smiles": -1}, + {texto: "#sms", sentimento: -1, "#sms": -1}, + {texto: "#sogra", sentimento: -1, "#sogra": -1}, + {texto: "#sono", sentimento: -1, "#sono": -1}, + {texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1}, + {texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1}, + {texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1}, + {texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1}, + {texto: "#soyadicto", sentimento: 1, "#soyadicto": 1}, + {texto: "#speed", sentimento: -1, "#speed": -1}, + {texto: "#speedy", sentimento: -1, "#speedy": -1}, + {texto: "#spotv", sentimento: -1, "#spotv": -1}, + {texto: "#submarino", sentimento: -1, "#submarino": -1}, + {texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1}, + {texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1}, + {texto: "#tcc", sentimento: 1, "#tcc": 1}, + {texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1}, + {texto: "#teamo", sentimento: -1, "#teamo": -1}, + {texto: "#tecnologia", sentimento: 1, "#tecnologia": 1}, + {texto: "#telaquente", sentimento: -1, "#telaquente": -1}, + {texto: "#telefoncia", sentimento: -1, "#telefoncia": -1}, + {texto: "#telefonica", sentimento: -1, "#telefonica": -1}, + {texto: "#tenso", sentimento: -1, "#tenso": -1}, + {texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1}, + {texto: "#ti", sentimento: -1, "#ti": -1}, + {texto: "#tim", sentimento: -1, "#tim": -1}, + {texto: "#time", sentimento: -1, "#time": -1}, + {texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1}, + {texto: "#todosadora", sentimento: -1, "#todosadora": -1}, + {texto: "#topfive", sentimento: -1, "#topfive": -1}, + {texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1}, + {texto: "#totalyfail", sentimento: -1, "#totalyfail": -1}, + {texto: "#tps", sentimento: -1, "#tps": -1}, + {texto: "#transitosp", sentimento: -1, "#transitosp": -1}, + {texto: "#travelmug", sentimento: 1, "#travelmug": 1}, + {texto: "#travelw", sentimento: -1, "#travelw": -1}, + {texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1}, + {texto: "#treinaweb", sentimento: -1, "#treinaweb": -1}, + {texto: "#trollar", sentimento: -1, "#trollar": -1}, + {texto: "#trote", sentimento: -1, "#trote": -1}, + {texto: "#true", sentimento: 1, "#true": 1}, + {texto: "#tvi", sentimento: 1, "#tvi": 1}, + {texto: "#twitcam", sentimento: -1, "#twitcam": -1}, + {texto: "#twittcam", sentimento: -1, "#twittcam": -1}, + {texto: "#twitter", sentimento: -1, "#twitter": -1}, + {texto: "#uenf", sentimento: 1, "#uenf": 1}, + {texto: "#unesp", sentimento: -1, "#unesp": -1}, + {texto: "#uni", sentimento: -1, "#uni": -1}, + {texto: "#unico", sentimento: -1, "#unico": -1}, + {texto: "#unip", sentimento: -1, "#unip": -1}, + {texto: "#v", sentimento: -1, "#v": -1}, + {texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1}, + {texto: "#valdir", sentimento: -1, "#valdir": -1}, + {texto: "#valetudo", sentimento: -1, "#valetudo": -1}, + {texto: "#valeurge", sentimento: -1, "#valeurge": -1}, + {texto: "#vamp", sentimento: -1, "#vamp": -1}, + {texto: "#vdm", sentimento: -1, "#vdm": -1}, + {texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1}, + {texto: "#verdade", sentimento: 0, "#verdade": 0}, + {texto: "#vergonha", sentimento: -1, "#vergonha": -1}, + {texto: "#viage", sentimento: -1, "#viage": -1}, + {texto: "#vida", sentimento: -1, "#vida": -1}, + {texto: "#viih", sentimento: -1, "#viih": -1}, + {texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1}, + {texto: "#vivo", sentimento: 0, "#vivo": 0}, + {texto: "#vmb", sentimento: -1, "#vmb": -1}, + {texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1}, + {texto: "#voetrip", sentimento: -1, "#voetrip": -1}, + {texto: "#volei", sentimento: -1, "#volei": -1}, + {texto: "#vtnc", sentimento: -1, "#vtnc": -1}, + {texto: "#vym", sentimento: -1, "#vym": -1}, + {texto: "#w00t", sentimento: 1, "#w00t": 1}, + {texto: "#win", sentimento: 1, "#win": 1}, + {texto: "#windows", sentimento: 1, "#windows": 1}, + {texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1}, + {texto: "#winning", sentimento: 1, "#winning": 1}, + {texto: "#wolfteam", sentimento: -1, "#wolfteam": -1}, + {texto: "#wp7", sentimento: 1, "#wp7": 1}, + {texto: "#x10", sentimento: -1, "#x10": -1}, + {texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1}, + {texto: "#youtube", sentimento: -1, "#youtube": -1}, + {texto: "#z", sentimento: -1, "#z": -1}, + {texto: "#zegotinha", sentimento: 1, "#zegotinha": 1}, + {texto: "#zon", sentimento: 0, "#zon": 0}, + {texto: "=[", sentimento: -1, "=[": -1}, + {texto: "=@", sentimento: -1, "=@": -1}, + {texto: "=D", sentimento: 1, "=D": 1}, + {texto: "=d", sentimento: 1, "=d": 1}, + {texto: "=P", sentimento: -1, "=P": -1}, + {texto: "=p", sentimento: -1, "=p": -1}, + {texto: "=x", sentimento: -1, "=x": -1}, + {texto: ">:(", sentimento: -1, ">:(": -1}, + {texto: "><", sentimento: -1, "><": -1}, + {texto: "¬¬''", sentimento: -1, "¬¬''": -1}, + {texto: "¬¬", sentimento: -1, "¬¬": -1}, + {texto: "a comemorar", sentimento: 3, "a comemorar": 3}, + {texto: "¬", sentimento: -1, "¬": -1}, + {texto: "ab-rogar", sentimento: -1, "ab-rogar": -1}, + {texto: "ababadar", sentimento: 0, "ababadar": 0}, + {texto: "ababelar-se", sentimento: 1, "ababelar-se": 1}, + {texto: "ababelar", sentimento: -1, "ababelar": -1}, + {texto: "abaçanar", sentimento: 1, "abaçanar": 1}, + {texto: "abacinar", sentimento: 1, "abacinar": 1}, + {texto: "abafada", sentimento: -1, "abafada": -1}, + {texto: "abafadas", sentimento: -1, "abafadas": -1}, + {texto: "abafado", sentimento: -1, "abafado": -1}, + {texto: "abafados", sentimento: -1, "abafados": -1}, + {texto: "abafante", sentimento: -1, "abafante": -1}, + {texto: "abafantes", sentimento: -1, "abafantes": -1}, + {texto: "abafar", sentimento: -1, "abafar": -1}, + {texto: "abafou", sentimento: -1, "abafou": -1}, + {texto: "abaixada", sentimento: -1, "abaixada": -1}, + {texto: "abaixadas", sentimento: -1, "abaixadas": -1}, + {texto: "abaixado", sentimento: -1, "abaixado": -1}, + {texto: "abaixados", sentimento: -1, "abaixados": -1}, + {texto: "abaixar-se", sentimento: 0, "abaixar-se": 0}, + {texto: "abaixar", sentimento: 0, "abaixar": 0}, + {texto: "abalada", sentimento: -1, "abalada": -1}, + {texto: "abaladas", sentimento: -1, "abaladas": -1}, + {texto: "abalado", sentimento: -1, "abalado": -1}, + {texto: "abalados", sentimento: -1, "abalados": -1}, + {texto: "abalançado", sentimento: 1, "abalançado": 1}, + {texto: "abalançar", sentimento: 1, "abalançar": 1}, + {texto: "abalar-se", sentimento: 0, "abalar-se": 0}, + {texto: "abalar", sentimento: 0, "abalar": 0}, + {texto: "abalizada", sentimento: 1, "abalizada": 1}, + {texto: "abalizadas", sentimento: 1, "abalizadas": 1}, + {texto: "abalizado", sentimento: 1, "abalizado": 1}, + {texto: "abalizados", sentimento: 1, "abalizados": 1}, + {texto: "abalizar", sentimento: 0, "abalizar": 0}, + {texto: "abalroar-se", sentimento: 1, "abalroar-se": 1}, + {texto: "abalroar", sentimento: 0, "abalroar": 0}, + {texto: "abanar", sentimento: 0, "abanar": 0}, + {texto: "abandalhada", sentimento: -1, "abandalhada": -1}, + {texto: "abandalhadas", sentimento: -1, "abandalhadas": -1}, + {texto: "abandalhado", sentimento: -1, "abandalhado": -1}, + {texto: "abandalhados", sentimento: -1, "abandalhados": -1}, + {texto: "abandalhar", sentimento: 1, "abandalhar": 1}, + {texto: "abandar", sentimento: -1, "abandar": -1}, + {texto: "abandonada", sentimento: -1, "abandonada": -1}, + {texto: "abandonadas", sentimento: -1, "abandonadas": -1}, + {texto: "abandonado", sentimento: -1, "abandonado": -1}, + {texto: "abandonado", sentimento: -2, "abandonado": -2}, + {texto: "abandonados", sentimento: -1, "abandonados": -1}, + {texto: "abandonar-se", sentimento: 0, "abandonar-se": 0}, + {texto: "abandonar", sentimento: -1, "abandonar": -1}, + {texto: "abandono", sentimento: -2, "abandono": -2}, + {texto: "abandonos", sentimento: -2, "abandonos": -2}, + {texto: "abarbar", sentimento: 1, "abarbar": 1}, + {texto: "abarbarado", sentimento: 1, "abarbarado": 1}, + {texto: "abarcante", sentimento: -1, "abarcante": -1}, + {texto: "abarcantes", sentimento: -1, "abarcantes": -1}, + {texto: "abarcar", sentimento: -1, "abarcar": -1}, + {texto: "abarrancar", sentimento: -1, "abarrancar": -1}, + {texto: "abarregar", sentimento: 1, "abarregar": 1}, + {texto: "abarreirar", sentimento: -1, "abarreirar": -1}, + {texto: "abarrocar", sentimento: -1, "abarrocar": -1}, + {texto: "abarrotada", sentimento: -1, "abarrotada": -1}, + {texto: "abarrotadas", sentimento: -1, "abarrotadas": -1}, + {texto: "abarrotado", sentimento: -1, "abarrotado": -1}, + {texto: "abarrotados", sentimento: -1, "abarrotados": -1}, + {texto: "abarrotar", sentimento: 0, "abarrotar": 0}, + {texto: "abasbacar", sentimento: 0, "abasbacar": 0}, + {texto: "abastada", sentimento: 1, "abastada": 1}, + {texto: "abastadas", sentimento: 1, "abastadas": 1}, + {texto: "abastadear", sentimento: 1, "abastadear": 1}, + {texto: "abastado", sentimento: 1, "abastado": 1}, + {texto: "abastados", sentimento: 1, "abastados": 1}, + {texto: "abastar", sentimento: -1, "abastar": -1}, + {texto: "abastardar-se", sentimento: 1, "abastardar-se": 1}, + {texto: "abastardar", sentimento: 1, "abastardar": 1}, + {texto: "abastardear-se", sentimento: 1, "abastardear-se": 1}, + {texto: "abastecer", sentimento: 1, "abastecer": 1}, + {texto: "abastecida", sentimento: 0, "abastecida": 0}, + {texto: "abastecidas", sentimento: 0, "abastecidas": 0}, + {texto: "abastecido", sentimento: 0, "abastecido": 0}, + {texto: "abastecidos", sentimento: 0, "abastecidos": 0}, + {texto: "abastoso", sentimento: 1, "abastoso": 1}, + {texto: "abater", sentimento: -1, "abater": -1}, + {texto: "abatida", sentimento: -1, "abatida": -1}, + {texto: "abatidas", sentimento: -1, "abatidas": -1}, + {texto: "abatido", sentimento: -1, "abatido": -1}, + {texto: "abatido", sentimento: -2, "abatido": -2}, + {texto: "abatidos", sentimento: -1, "abatidos": -1}, + {texto: "abatocar", sentimento: 1, "abatocar": 1}, + {texto: "abdicar", sentimento: -1, "abdicar": -1}, + {texto: "abdução", sentimento: -2, "abdução": -2}, + {texto: "abduzir-se", sentimento: 1, "abduzir-se": 1}, + {texto: "abduzir", sentimento: 0, "abduzir": 0}, + {texto: "abeberar", sentimento: 0, "abeberar": 0}, + {texto: "abeirar-se", sentimento: 1, "abeirar-se": 1}, + {texto: "abeirar", sentimento: 0, "abeirar": 0}, + {texto: "abelhuda", sentimento: -1, "abelhuda": -1}, + {texto: "abelhudar", sentimento: 0, "abelhudar": 0}, + {texto: "abelhudas", sentimento: -1, "abelhudas": -1}, + {texto: "abelhudo", sentimento: -1, "abelhudo": -1}, + {texto: "abelhudos", sentimento: -1, "abelhudos": -1}, + {texto: "abemolar", sentimento: 0, "abemolar": 0}, + {texto: "abençoa", sentimento: 2, "abençoa": 2}, + {texto: "abençoada", sentimento: 1, "abençoada": 1}, + {texto: "abençoadas", sentimento: 1, "abençoadas": 1}, + {texto: "abençoado", sentimento: 1, "abençoado": 1}, + {texto: "abençoados", sentimento: 1, "abençoados": 1}, + {texto: "abençoar", sentimento: 0, "abençoar": 0}, + {texto: "abençoar", sentimento: 2, "abençoar": 2}, + {texto: "aberrante", sentimento: -1, "aberrante": -1}, + {texto: "aberrantes", sentimento: -1, "aberrantes": -1}, + {texto: "aberrativa", sentimento: -1, "aberrativa": -1}, + {texto: "aberrativas", sentimento: -1, "aberrativas": -1}, + {texto: "aberrativo", sentimento: -1, "aberrativo": -1}, + {texto: "aberrativos", sentimento: -1, "aberrativos": -1}, + {texto: "aberratório", sentimento: 1, "aberratório": 1}, + {texto: "aberta", sentimento: 0, "aberta": 0}, + {texto: "abertão", sentimento: 1, "abertão": 1}, + {texto: "abertas", sentimento: 0, "abertas": 0}, + {texto: "aberto", sentimento: 0, "aberto": 0}, + {texto: "abertos", sentimento: 0, "abertos": 0}, + {texto: "abespinhada", sentimento: -1, "abespinhada": -1}, + {texto: "abespinhadas", sentimento: -1, "abespinhadas": -1}, + {texto: "abespinhado", sentimento: -1, "abespinhado": -1}, + {texto: "abespinhados", sentimento: -1, "abespinhados": -1}, + {texto: "abespinhar", sentimento: -1, "abespinhar": -1}, + {texto: "abestalhada", sentimento: -1, "abestalhada": -1}, + {texto: "abestalhadas", sentimento: -1, "abestalhadas": -1}, + {texto: "abestalhado", sentimento: -1, "abestalhado": -1}, + {texto: "abestalhados", sentimento: -1, "abestalhados": -1}, + {texto: "abetumado", sentimento: -1, "abetumado": -1}, + {texto: "abetumar", sentimento: 0, "abetumar": 0}, + {texto: "abicar", sentimento: 0, "abicar": 0}, + {texto: "abichar", sentimento: 0, "abichar": 0}, + {texto: "abilolada", sentimento: -1, "abilolada": -1}, + {texto: "abiloladas", sentimento: -1, "abiloladas": -1}, + {texto: "abilolado", sentimento: -1, "abilolado": -1}, + {texto: "abilolados", sentimento: -1, "abilolados": -1}, + {texto: "abiscoitar", sentimento: 0, "abiscoitar": 0}, + {texto: "abiselar", sentimento: 1, "abiselar": 1}, + {texto: "abismada", sentimento: -1, "abismada": -1}, + {texto: "abismadas", sentimento: -1, "abismadas": -1}, + {texto: "abismado", sentimento: -1, "abismado": -1}, + {texto: "abismados", sentimento: -1, "abismados": -1}, + {texto: "abismais", sentimento: -1, "abismais": -1}, + {texto: "abismal", sentimento: -1, "abismal": -1}, + {texto: "abismar", sentimento: 1, "abismar": 1}, + {texto: "abjecta", sentimento: -1, "abjecta": -1}, + {texto: "abjectas", sentimento: -1, "abjectas": -1}, + {texto: "abjecto", sentimento: -1, "abjecto": -1}, + {texto: "abjectos", sentimento: -1, "abjectos": -1}, + {texto: "abjeta", sentimento: -1, "abjeta": -1}, + {texto: "abjetas", sentimento: -1, "abjetas": -1}, + {texto: "abjeto", sentimento: -1, "abjeto": -1}, + {texto: "abjetos", sentimento: -1, "abjetos": -1}, + {texto: "abjugar-se", sentimento: 1, "abjugar-se": 1}, + {texto: "abjugar", sentimento: 0, "abjugar": 0}, + {texto: "abjurar", sentimento: 1, "abjurar": 1}, + {texto: "ablegar-se", sentimento: 1, "ablegar-se": 1}, + {texto: "ablegar", sentimento: 1, "ablegar": 1}, + {texto: "abluir", sentimento: 0, "abluir": 0}, + {texto: "abnegada", sentimento: 1, "abnegada": 1}, + {texto: "abnegadas", sentimento: 1, "abnegadas": 1}, + {texto: "abnegado", sentimento: 1, "abnegado": 1}, + {texto: "abnegados", sentimento: 1, "abnegados": 1}, + {texto: "abnegar", sentimento: 1, "abnegar": 1}, + {texto: "abnoitar", sentimento: 1, "abnoitar": 1}, + {texto: "abnormal", sentimento: 1, "abnormal": 1}, + {texto: "abnóxio", sentimento: 1, "abnóxio": 1}, + {texto: "abnuir", sentimento: 1, "abnuir": 1}, + {texto: "abobada", sentimento: -1, "abobada": -1}, + {texto: "abobadar", sentimento: 0, "abobadar": 0}, + {texto: "abobadas", sentimento: -1, "abobadas": -1}, + {texto: "abobado", sentimento: -1, "abobado": -1}, + {texto: "abobados", sentimento: -1, "abobados": -1}, + {texto: "abobalhada", sentimento: -1, "abobalhada": -1}, + {texto: "abobalhadas", sentimento: -1, "abobalhadas": -1}, + {texto: "abobalhado", sentimento: -1, "abobalhado": -1}, + {texto: "abobalhados", sentimento: -1, "abobalhados": -1}, + {texto: "abobalhar", sentimento: 1, "abobalhar": 1}, + {texto: "abocanhar", sentimento: -1, "abocanhar": -1}, + {texto: "abocar", sentimento: -1, "abocar": -1}, + {texto: "abodegado", sentimento: -1, "abodegado": -1}, + {texto: "abodegar", sentimento: -1, "abodegar": -1}, + {texto: "abolachar", sentimento: 0, "abolachar": 0}, + {texto: "abolar", sentimento: -1, "abolar": -1}, + {texto: "abolçar", sentimento: 0, "abolçar": 0}, + {texto: "aboleimar", sentimento: 0, "aboleimar": 0}, + {texto: "aboletar", sentimento: 0, "aboletar": 0}, + {texto: "abolicionista", sentimento: 0, "abolicionista": 0}, + {texto: "abolicionistas", sentimento: 0, "abolicionistas": 0}, + {texto: "abolida", sentimento: -1, "abolida": -1}, + {texto: "abolidas", sentimento: -1, "abolidas": -1}, + {texto: "abolido", sentimento: -1, "abolido": -1}, + {texto: "abolidos", sentimento: -1, "abolidos": -1}, + {texto: "abolir", sentimento: -1, "abolir": -1}, + {texto: "abolorecer", sentimento: 1, "abolorecer": 1}, + {texto: "abolorentar", sentimento: 1, "abolorentar": 1}, + {texto: "abolsar", sentimento: 1, "abolsar": 1}, + {texto: "abomina", sentimento: -3, "abomina": -3}, + {texto: "abominado", sentimento: -1, "abominado": -1}, + {texto: "abominador", sentimento: -1, "abominador": -1}, + {texto: "abominadora", sentimento: -1, "abominadora": -1}, + {texto: "abominadoras", sentimento: -1, "abominadoras": -1}, + {texto: "abominadores", sentimento: -1, "abominadores": -1}, + {texto: "abominanda", sentimento: -1, "abominanda": -1}, + {texto: "abominandas", sentimento: -1, "abominandas": -1}, + {texto: "abominando", sentimento: -1, "abominando": -1}, + {texto: "abominandos", sentimento: -1, "abominandos": -1}, + {texto: "abominar", sentimento: -3, "abominar": -3}, + {texto: "abomináveis", sentimento: -1, "abomináveis": -1}, + {texto: "abominável", sentimento: -1, "abominável": -1}, + {texto: "abominoso", sentimento: -1, "abominoso": -1}, + {texto: "abominou", sentimento: -3, "abominou": -3}, + {texto: "abonada", sentimento: 1, "abonada": 1}, + {texto: "abonadas", sentimento: 1, "abonadas": 1}, + {texto: "abonado", sentimento: 1, "abonado": 1}, + {texto: "abonados", sentimento: 1, "abonados": 1}, + {texto: "abonançar-se", sentimento: 1, "abonançar-se": 1}, + {texto: "abonançar", sentimento: 0, "abonançar": 0}, + {texto: "abonar", sentimento: 0, "abonar": 0}, + {texto: "abonatória", sentimento: 1, "abonatória": 1}, + {texto: "abonatórias", sentimento: 1, "abonatórias": 1}, + {texto: "abonatório", sentimento: 1, "abonatório": 1}, + {texto: "abonatórios", sentimento: 1, "abonatórios": 1}, + {texto: "abonecada", sentimento: 0, "abonecada": 0}, + {texto: "abonecadas", sentimento: 0, "abonecadas": 0}, + {texto: "abonecado", sentimento: 0, "abonecado": 0}, + {texto: "abonecados", sentimento: 0, "abonecados": 0}, + {texto: "aboquejar", sentimento: -1, "aboquejar": -1}, + {texto: "aborcar", sentimento: -1, "aborcar": -1}, + {texto: "abordar", sentimento: 0, "abordar": 0}, + {texto: "aborígene", sentimento: -1, "aborígene": -1}, + {texto: "aborígenes", sentimento: -1, "aborígenes": -1}, + {texto: "aborrecedor", sentimento: -1, "aborrecedor": -1}, + {texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1}, + {texto: "aborrecer", sentimento: -1, "aborrecer": -1}, + {texto: "aborrecida", sentimento: -1, "aborrecida": -1}, + {texto: "aborrecidas", sentimento: -1, "aborrecidas": -1}, + {texto: "aborrecido", sentimento: -1, "aborrecido": -1}, + {texto: "aborrecido", sentimento: -2, "aborrecido": -2}, + {texto: "aborrecidos", sentimento: -1, "aborrecidos": -1}, + {texto: "aborrecimento", sentimento: -2, "aborrecimento": -2}, + {texto: "aborrecível", sentimento: -1, "aborrecível": -1}, + {texto: "aborrido", sentimento: -1, "aborrido": -1}, + {texto: "aborrível", sentimento: -1, "aborrível": -1}, + {texto: "abortada", sentimento: -1, "abortada": -1}, + {texto: "abortadas", sentimento: -1, "abortadas": -1}, + {texto: "abortado", sentimento: -1, "abortado": -1}, + {texto: "abortados", sentimento: -1, "abortados": -1}, + {texto: "abortar", sentimento: -1, "abortar": -1}, + {texto: "abotoar", sentimento: 0, "abotoar": 0}, + {texto: "abraçada", sentimento: 1, "abraçada": 1}, + {texto: "abracadabrante", sentimento: 1, "abracadabrante": 1}, + {texto: "abracadábrico", sentimento: 1, "abracadábrico": 1}, + {texto: "abraçadas", sentimento: 1, "abraçadas": 1}, + {texto: "abraçado", sentimento: 1, "abraçado": 1}, + {texto: "abraçados", sentimento: 1, "abraçados": 1}, + {texto: "abraçar-se", sentimento: 1, "abraçar-se": 1}, + {texto: "abraçar", sentimento: 0, "abraçar": 0}, + {texto: "abraço", sentimento: 1, "abraço": 1}, + {texto: "abraço", sentimento: 2, "abraço": 2}, + {texto: "abraços", sentimento: 2, "abraços": 2}, + {texto: "abrancar", sentimento: 1, "abrancar": 1}, + {texto: "abrandar-se", sentimento: 1, "abrandar-se": 1}, + {texto: "abrandar", sentimento: 0, "abrandar": 0}, + {texto: "abrangente", sentimento: 1, "abrangente": 1}, + {texto: "abrangentes", sentimento: 1, "abrangentes": 1}, + {texto: "abranger", sentimento: 0, "abranger": 0}, + {texto: "abrangida", sentimento: -1, "abrangida": -1}, + {texto: "abrangidas", sentimento: -1, "abrangidas": -1}, + {texto: "abrangido", sentimento: -1, "abrangido": -1}, + {texto: "abrangidos", sentimento: -1, "abrangidos": -1}, + {texto: "abrasar-se", sentimento: 1, "abrasar-se": 1}, + {texto: "abrasar", sentimento: 0, "abrasar": 0}, + {texto: "abrasear", sentimento: -1, "abrasear": -1}, + {texto: "abrasileirada", sentimento: 0, "abrasileirada": 0}, + {texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0}, + {texto: "abrasileirado", sentimento: 0, "abrasileirado": 0}, + {texto: "abrasileirados", sentimento: 0, "abrasileirados": 0}, + {texto: "abrejar", sentimento: 1, "abrejar": 1}, + {texto: "abreviar", sentimento: 0, "abreviar": 0}, + {texto: "abrigada", sentimento: 0, "abrigada": 0}, + {texto: "abrigadas", sentimento: 0, "abrigadas": 0}, + {texto: "abrigado", sentimento: 0, "abrigado": 0}, + {texto: "abrigados", sentimento: 0, "abrigados": 0}, + {texto: "abrigar", sentimento: -1, "abrigar": -1}, + {texto: "abrilhantada", sentimento: 1, "abrilhantada": 1}, + {texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1}, + {texto: "abrilhantado", sentimento: 1, "abrilhantado": 1}, + {texto: "abrilhantados", sentimento: 1, "abrilhantados": 1}, + {texto: "abrilhantar", sentimento: 0, "abrilhantar": 0}, + {texto: "abrir mão de", sentimento: -1, "abrir mão de": -1}, + {texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1}, + {texto: "abrir-se", sentimento: -1, "abrir-se": -1}, + {texto: "abrir", sentimento: -1, "abrir": -1}, + {texto: "abrolhar", sentimento: 0, "abrolhar": 0}, + {texto: "abrupta", sentimento: -1, "abrupta": -1}, + {texto: "abruptas", sentimento: -1, "abruptas": -1}, + {texto: "abrupto", sentimento: -1, "abrupto": -1}, + {texto: "abruptos", sentimento: -1, "abruptos": -1}, + {texto: "abrutado", sentimento: -1, "abrutado": -1}, + {texto: "abrutalhada", sentimento: -1, "abrutalhada": -1}, + {texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1}, + {texto: "abrutalhado", sentimento: -1, "abrutalhado": -1}, + {texto: "abrutalhados", sentimento: -1, "abrutalhados": -1}, + {texto: "abrutalhar", sentimento: 1, "abrutalhar": 1}, + {texto: "abrutar", sentimento: 1, "abrutar": 1}, + {texto: "abscidar-se", sentimento: 1, "abscidar-se": 1}, + {texto: "absentista", sentimento: -1, "absentista": -1}, + {texto: "absentistas", sentimento: -1, "absentistas": -1}, + {texto: "absoluta", sentimento: 1, "absoluta": 1}, + {texto: "absolutas", sentimento: 1, "absolutas": 1}, + {texto: "absolutista", sentimento: 0, "absolutista": 0}, + {texto: "absolutistas", sentimento: 0, "absolutistas": 0}, + {texto: "absoluto", sentimento: 1, "absoluto": 1}, + {texto: "absolutos", sentimento: 1, "absolutos": 1}, + {texto: "absolve", sentimento: 2, "absolve": 2}, + {texto: "absolvendo", sentimento: 2, "absolvendo": 2}, + {texto: "absolver", sentimento: -1, "absolver": -1}, + {texto: "absolver", sentimento: 2, "absolver": 2}, + {texto: "absolvida", sentimento: 0, "absolvida": 0}, + {texto: "absolvidas", sentimento: 0, "absolvidas": 0}, + {texto: "absolvido", sentimento: 0, "absolvido": 0}, + {texto: "absolvido", sentimento: 2, "absolvido": 2}, + {texto: "absolvidos", sentimento: 0, "absolvidos": 0}, + {texto: "absolvidos", sentimento: 2, "absolvidos": 2}, + {texto: "absonar", sentimento: -1, "absonar": -1}, + {texto: "absorta", sentimento: -1, "absorta": -1}, + {texto: "absortas", sentimento: -1, "absortas": -1}, + {texto: "absorto", sentimento: -1, "absorto": -1}, + {texto: "absortos", sentimento: -1, "absortos": -1}, + {texto: "absortos", sentimento: 1, "absortos": 1}, + {texto: "absorvente", sentimento: 1, "absorvente": 1}, + {texto: "absorventes", sentimento: 1, "absorventes": 1}, + {texto: "absorver-se", sentimento: 1, "absorver-se": 1}, + {texto: "absorver", sentimento: -1, "absorver": -1}, + {texto: "absorvido", sentimento: 1, "absorvido": 1}, + {texto: "abstémia", sentimento: 1, "abstémia": 1}, + {texto: "abstémias", sentimento: 1, "abstémias": 1}, + {texto: "abstémica", sentimento: 1, "abstémica": 1}, + {texto: "abstémicas", sentimento: 1, "abstémicas": 1}, + {texto: "abstémico", sentimento: 1, "abstémico": 1}, + {texto: "abstémicos", sentimento: 1, "abstémicos": 1}, + {texto: "abstémio", sentimento: 1, "abstémio": 1}, + {texto: "abstémios", sentimento: 1, "abstémios": 1}, + {texto: "abstencionista", sentimento: 0, "abstencionista": 0}, + {texto: "abstencionistas", sentimento: 0, "abstencionistas": 0}, + {texto: "abster-se", sentimento: 0, "abster-se": 0}, + {texto: "abstinente", sentimento: 0, "abstinente": 0}, + {texto: "abstinentes", sentimento: 0, "abstinentes": 0}, + {texto: "abstraccionista", sentimento: 0, "abstraccionista": 0}, + {texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0}, + {texto: "abstracta", sentimento: -1, "abstracta": -1}, + {texto: "abstractas", sentimento: -1, "abstractas": -1}, + {texto: "abstracto", sentimento: -1, "abstracto": -1}, + {texto: "abstractos", sentimento: -1, "abstractos": -1}, + {texto: "abstraída", sentimento: -1, "abstraída": -1}, + {texto: "abstraídas", sentimento: -1, "abstraídas": -1}, + {texto: "abstraído", sentimento: -1, "abstraído": -1}, + {texto: "abstraídos", sentimento: -1, "abstraídos": -1}, + {texto: "abstrair-se", sentimento: 0, "abstrair-se": 0}, + {texto: "abstrair", sentimento: 1, "abstrair": 1}, + {texto: "abstrata", sentimento: -1, "abstrata": -1}, + {texto: "abstratas", sentimento: -1, "abstratas": -1}, + {texto: "abstrato", sentimento: -1, "abstrato": -1}, + {texto: "abstratos", sentimento: -1, "abstratos": -1}, + {texto: "abstrusa", sentimento: -1, "abstrusa": -1}, + {texto: "abstrusas", sentimento: -1, "abstrusas": -1}, + {texto: "abstruso", sentimento: -1, "abstruso": -1}, + {texto: "abstrusos", sentimento: -1, "abstrusos": -1}, + {texto: "absumir", sentimento: -1, "absumir": -1}, + {texto: "absurda", sentimento: -1, "absurda": -1}, + {texto: "absurdas", sentimento: -1, "absurdas": -1}, + {texto: "absurdo", sentimento: -1, "absurdo": -1}, + {texto: "absurdo", sentimento: -2, "absurdo": -2}, + {texto: "absurdos", sentimento: -1, "absurdos": -1}, + {texto: "abugalhar", sentimento: 1, "abugalhar": 1}, + {texto: "abúlica", sentimento: -1, "abúlica": -1}, + {texto: "abúlicas", sentimento: -1, "abúlicas": -1}, + {texto: "abúlico", sentimento: -1, "abúlico": -1}, + {texto: "abúlicos", sentimento: -1, "abúlicos": -1}, + {texto: "abundante", sentimento: 1, "abundante": 1}, + {texto: "abundar", sentimento: 1, "abundar": 1}, + {texto: "abundoso", sentimento: 1, "abundoso": 1}, + {texto: "aburacar", sentimento: 1, "aburacar": 1}, + {texto: "aburguesada", sentimento: 0, "aburguesada": 0}, + {texto: "aburguesadas", sentimento: 0, "aburguesadas": 0}, + {texto: "aburguesado", sentimento: 0, "aburguesado": 0}, + {texto: "aburguesados", sentimento: 0, "aburguesados": 0}, + {texto: "abusada", sentimento: -1, "abusada": -1}, + {texto: "abusadas", sentimento: -1, "abusadas": -1}, + {texto: "abusado", sentimento: -1, "abusado": -1}, + {texto: "abusado", sentimento: -3, "abusado": -3}, + {texto: "abusador", sentimento: -1, "abusador": -1}, + {texto: "abusadora", sentimento: -1, "abusadora": -1}, + {texto: "abusadoras", sentimento: -1, "abusadoras": -1}, + {texto: "abusadores", sentimento: -1, "abusadores": -1}, + {texto: "abusados", sentimento: -1, "abusados": -1}, + {texto: "abusar", sentimento: 1, "abusar": 1}, + {texto: "abusiva", sentimento: -1, "abusiva": -1}, + {texto: "abusivas", sentimento: -1, "abusivas": -1}, + {texto: "abusivo", sentimento: -1, "abusivo": -1}, + {texto: "abusivo", sentimento: -3, "abusivo": -3}, + {texto: "abusivos", sentimento: -1, "abusivos": -1}, + {texto: "abuso", sentimento: -3, "abuso": -3}, + {texto: "abusos", sentimento: -3, "abusos": -3}, + {texto: "abuzinar", sentimento: 1, "abuzinar": 1}, + {texto: "acabada", sentimento: -1, "acabada": -1}, + {texto: "acabadas", sentimento: -1, "acabadas": -1}, + {texto: "acabado", sentimento: -1, "acabado": -1}, + {texto: "acabados", sentimento: -1, "acabados": -1}, + {texto: "acabadota", sentimento: -1, "acabadota": -1}, + {texto: "acabadotas", sentimento: -1, "acabadotas": -1}, + {texto: "acabadote", sentimento: -1, "acabadote": -1}, + {texto: "acabadotes", sentimento: -1, "acabadotes": -1}, + {texto: "acabamento", sentimento: 1, "acabamento": 1}, + {texto: "acabar-se", sentimento: 0, "acabar-se": 0}, + {texto: "acabar", sentimento: 0, "acabar": 0}, + {texto: "acabrunhada", sentimento: -1, "acabrunhada": -1}, + {texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1}, + {texto: "acabrunhado", sentimento: -1, "acabrunhado": -1}, + {texto: "acabrunhados", sentimento: -1, "acabrunhados": -1}, + {texto: "acabrunhar", sentimento: 0, "acabrunhar": 0}, + {texto: "açacalado", sentimento: 1, "açacalado": 1}, + {texto: "acaçapar", sentimento: 1, "acaçapar": 1}, + {texto: "acachar", sentimento: 1, "acachar": 1}, + {texto: "acaciana", sentimento: -1, "acaciana": -1}, + {texto: "acacianas", sentimento: -1, "acacianas": -1}, + {texto: "acaciano", sentimento: -1, "acaciano": -1}, + {texto: "acacianos", sentimento: -1, "acacianos": -1}, + {texto: "académica", sentimento: 0, "académica": 0}, + {texto: "acadêmica", sentimento: 0, "acadêmica": 0}, + {texto: "académicas", sentimento: 0, "académicas": 0}, + {texto: "acadêmicas", sentimento: 0, "acadêmicas": 0}, + {texto: "académico", sentimento: 0, "académico": 0}, + {texto: "acadêmico", sentimento: 0, "acadêmico": 0}, + {texto: "académicos", sentimento: 0, "académicos": 0}, + {texto: "acadêmicos", sentimento: 0, "acadêmicos": 0}, + {texto: "acafelar", sentimento: 1, "acafelar": 1}, + {texto: "acaiçarado", sentimento: -1, "acaiçarado": -1}, + {texto: "açaimar", sentimento: 0, "açaimar": 0}, + {texto: "acalentando", sentimento: 2, "acalentando": 2}, + {texto: "acalentar-se", sentimento: 1, "acalentar-se": 1}, + {texto: "acalentar", sentimento: 0, "acalentar": 0}, + {texto: "acalentar", sentimento: 2, "acalentar": 2}, + {texto: "acalmada", sentimento: 3, "acalmada": 3}, + {texto: "acalmado", sentimento: 2, "acalmado": 2}, + {texto: "acalmar-se", sentimento: 1, "acalmar-se": 1}, + {texto: "acalmar", sentimento: 0, "acalmar": 0}, + {texto: "acalmar", sentimento: 3, "acalmar": 3}, + {texto: "acalorada", sentimento: 0, "acalorada": 0}, + {texto: "acaloradas", sentimento: 0, "acaloradas": 0}, + {texto: "acalorado", sentimento: 0, "acalorado": 0}, + {texto: "acalorados", sentimento: 0, "acalorados": 0}, + {texto: "acalorar-se", sentimento: 1, "acalorar-se": 1}, + {texto: "acalorar", sentimento: 1, "acalorar": 1}, + {texto: "acamar", sentimento: 1, "acamar": 1}, + {texto: "açambarcador", sentimento: -1, "açambarcador": -1}, + {texto: "açambarcadora", sentimento: -1, "açambarcadora": -1}, + {texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1}, + {texto: "açambarcadores", sentimento: -1, "açambarcadores": -1}, + {texto: "açambarcar", sentimento: 0, "açambarcar": 0}, + {texto: "acambetar", sentimento: 0, "acambetar": 0}, + {texto: "acampanar", sentimento: 0, "acampanar": 0}, + {texto: "acanalar", sentimento: 0, "acanalar": 0}, + {texto: "acanalhar", sentimento: 1, "acanalhar": 1}, + {texto: "acanavear", sentimento: -1, "acanavear": -1}, + {texto: "acanelar", sentimento: 0, "acanelar": 0}, + {texto: "acanhada", sentimento: -1, "acanhada": -1}, + {texto: "acanhadas", sentimento: -1, "acanhadas": -1}, + {texto: "acanhado", sentimento: -1, "acanhado": -1}, + {texto: "acanhados", sentimento: -1, "acanhados": -1}, + {texto: "acanhar", sentimento: -1, "acanhar": -1}, + {texto: "ação judicial", sentimento: -2, "ação judicial": -2}, + {texto: "acapelado", sentimento: 1, "acapelado": 1}, + {texto: "acapelar", sentimento: 0, "acapelar": 0}, + {texto: "acarar", sentimento: 1, "acarar": 1}, + {texto: "acarear", sentimento: 1, "acarear": 1}, + {texto: "acariciar", sentimento: 0, "acariciar": 0}, + {texto: "acarinhada", sentimento: -1, "acarinhada": -1}, + {texto: "acarinhadas", sentimento: -1, "acarinhadas": -1}, + {texto: "acarinhado", sentimento: -1, "acarinhado": -1}, + {texto: "acarinhados", sentimento: -1, "acarinhados": -1}, + {texto: "acarinhar", sentimento: 1, "acarinhar": 1}, + {texto: "acarminar", sentimento: 0, "acarminar": 0}, +]; + +//// [arrayLiteralTooComplex.js] +var a = [ + { texto: ";)", sentimento: 1, ";)": 1 }, + { texto: ";@", sentimento: -1, ";@": -1 }, + { texto: ";*", sentimento: -1, ";*": -1 }, + { texto: ";**", sentimento: -1, ";**": -1 }, + { texto: ";~", sentimento: -1, ";~": -1 }, + { texto: ";D", sentimento: -1, ";D": -1 }, + { texto: ";P", sentimento: -1, ";P": -1 }, + { texto: ";p", sentimento: -1, ";p": -1 }, + { texto: ";x", sentimento: -1, ";x": -1 }, + { texto: ";xx", sentimento: -1, ";xx": -1 }, + { texto: ":'(", sentimento: -1, ":'(": -1 }, + { texto: ":')", sentimento: -1, ":')": -1 }, + { texto: ":(", sentimento: -1, ":(": -1 }, + { texto: ":)", sentimento: 1, ":)": 1 }, + { texto: ":)))", sentimento: 1, ":)))": 1 }, + { texto: ":]", sentimento: -1, ":]": -1 }, + { texto: ":@", sentimento: 0, ":@": 0 }, + { texto: ":*", sentimento: -1, ":*": -1 }, + { texto: ":<", sentimento: -1, ":<": -1 }, + { texto: ":~", sentimento: -1, ":~": -1 }, + { texto: ":$", sentimento: -1, ":$": -1 }, + { texto: ":D", sentimento: 1, ":D": 1 }, + { texto: ":p", sentimento: -1, ":p": -1 }, + { texto: ":P", sentimento: 0, ":P": 0 }, + { texto: ":x", sentimento: -1, ":x": -1 }, + { texto: ":x)", sentimento: 1, ":x)": 1 }, + { texto: "(:", sentimento: -1, "(:": -1 }, + { texto: "(=", sentimento: 1, "(=": 1 }, + { texto: "):", sentimento: -1, "):": -1 }, + { texto: ")):", sentimento: -1, ")):": -1 }, + { texto: "*:", sentimento: -1, "*:": -1 }, + { texto: "#2", sentimento: -1, "#2": -1 }, + { texto: "#2011", sentimento: -1, "#2011": -1 }, + { texto: "#2014", sentimento: -1, "#2014": -1 }, + { texto: "#4square", sentimento: -1, "#4square": -1 }, + { texto: "#64bit", sentimento: 1, "#64bit": 1 }, + { texto: "#adsl", sentimento: -1, "#adsl": -1 }, + { texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1 }, + { texto: "#afazenda", sentimento: -1, "#afazenda": -1 }, + { texto: "#aff", sentimento: -1, "#aff": -1 }, + { texto: "#again", sentimento: -1, "#again": -1 }, + { texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1 }, + { texto: "#agua", sentimento: 1, "#agua": 1 }, + { texto: "#aimeucora", sentimento: -1, "#aimeucora": -1 }, + { texto: "#alan", sentimento: -1, "#alan": -1 }, + { texto: "#aline", sentimento: -1, "#aline": -1 }, + { texto: "#amo", sentimento: 1, "#amo": 1 }, + { texto: "#amodoro", sentimento: 1, "#amodoro": 1 }, + { texto: "#amor", sentimento: -1, "#amor": -1 }, + { texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1 }, + { texto: "#an", sentimento: 1, "#an": 1 }, + { texto: "#android", sentimento: 1, "#android": 1 }, + { texto: "#animada", sentimento: -1, "#animada": -1 }, + { texto: "#apagao", sentimento: -1, "#apagao": -1 }, + { texto: "#apps", sentimento: -1, "#apps": -1 }, + { texto: "#aqu", sentimento: 1, "#aqu": 1 }, + { texto: "#ari", sentimento: -1, "#ari": -1 }, + { texto: "#ariane", sentimento: -1, "#ariane": -1 }, + { texto: "#bad", sentimento: -1, "#bad": -1 }, + { texto: "#bakugan", sentimento: -1, "#bakugan": -1 }, + { texto: "#bam", sentimento: 1, "#bam": 1 }, + { texto: "#bandida", sentimento: -1, "#bandida": -1 }, + { texto: "#bankonline", sentimento: 1, "#bankonline": 1 }, + { texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1 }, + { texto: "#beer", sentimento: 1, "#beer": 1 }, + { texto: "#beijo", sentimento: 1, "#beijo": 1 }, + { texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1 }, + { texto: "#bigmistake", sentimento: -1, "#bigmistake": -1 }, + { texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1 }, + { texto: "#bio", sentimento: 1, "#bio": 1 }, + { texto: "#biologia", sentimento: -1, "#biologia": -1 }, + { texto: "#birdbrain", sentimento: -1, "#birdbrain": -1 }, + { texto: "#blackberry", sentimento: -1, "#blackberry": -1 }, + { texto: "#blackhat", sentimento: -1, "#blackhat": -1 }, + { texto: "#blogprog", sentimento: -1, "#blogprog": -1 }, + { texto: "#bodareal", sentimento: -1, "#bodareal": -1 }, + { texto: "#bombando", sentimento: -1, "#bombando": -1 }, + { texto: "#bomdia", sentimento: -1, "#bomdia": -1 }, + { texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1 }, + { texto: "#boobs", sentimento: 1, "#boobs": 1 }, + { texto: "#boomsm", sentimento: 1, "#boomsm": 1 }, + { texto: "#boss", sentimento: 1, "#boss": 1 }, + { texto: "#brandsclub", sentimento: -1, "#brandsclub": -1 }, + { texto: "#brasil", sentimento: -1, "#brasil": -1 }, + { texto: "#brasilia", sentimento: -1, "#brasilia": -1 }, + { texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1 }, + { texto: "#brazilians", sentimento: -1, "#brazilians": -1 }, + { texto: "#bsb", sentimento: -1, "#bsb": -1 }, + { texto: "#bub", sentimento: -1, "#bub": -1 }, + { texto: "#buongiorno", sentimento: -1, "#buongiorno": -1 }, + { texto: "#burro", sentimento: -1, "#burro": -1 }, + { texto: "#cad", sentimento: -1, "#cad": -1 }, + { texto: "#caelum", sentimento: 1, "#caelum": 1 }, + { texto: "#cafeina", sentimento: -1, "#cafeina": -1 }, + { texto: "#caixa", sentimento: -1, "#caixa": -1 }, + { texto: "#cal", sentimento: 1, "#cal": 1 }, + { texto: "#camaradagem", sentimento: -1, "#camaradagem": -1 }, + { texto: "#camel", sentimento: 1, "#camel": 1 }, + { texto: "#capric", sentimento: -1, "#capric": -1 }, + { texto: "#carol", sentimento: -1, "#carol": -1 }, + { texto: "#carris", sentimento: -1, "#carris": -1 }, + { texto: "#cartolafc", sentimento: -1, "#cartolafc": -1 }, + { texto: "#catalao", sentimento: -1, "#catalao": -1 }, + { texto: "#cdlr", sentimento: 1, "#cdlr": 1 }, + { texto: "#cearasc", sentimento: -1, "#cearasc": -1 }, + { texto: "#centauro", sentimento: -1, "#centauro": -1 }, + { texto: "#certeza", sentimento: -1, "#certeza": -1 }, + { texto: "#cet", sentimento: -1, "#cet": -1 }, + { texto: "#charmeleon", sentimento: 1, "#charmeleon": 1 }, + { texto: "#chelas", sentimento: 1, "#chelas": 1 }, + { texto: "#chrome", sentimento: 1, "#chrome": 1 }, + { texto: "#cielo", sentimento: -1, "#cielo": -1 }, + { texto: "#cloaking", sentimento: -1, "#cloaking": -1 }, + { texto: "#cmteam", sentimento: 1, "#cmteam": 1 }, + { texto: "#comex", sentimento: -1, "#comex": -1 }, + { texto: "#comofas", sentimento: -1, "#comofas": -1 }, + { texto: "#compos", sentimento: -1, "#compos": -1 }, + { texto: "#conspira", sentimento: -1, "#conspira": -1 }, + { texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1 }, + { texto: "#contribuir", sentimento: 1, "#contribuir": 1 }, + { texto: "#conversos", sentimento: -1, "#conversos": -1 }, + { texto: "#copa", sentimento: -1, "#copa": -1 }, + { texto: "#corpoevida", sentimento: 1, "#corpoevida": 1 }, + { texto: "#correios", sentimento: -1, "#correios": -1 }, + { texto: "#cpco4", sentimento: 1, "#cpco4": 1 }, + { texto: "#cpfl", sentimento: -1, "#cpfl": -1 }, + { texto: "#cqc", sentimento: -1, "#cqc": -1 }, + { texto: "#cqteste", sentimento: -1, "#cqteste": -1 }, + { texto: "#cry", sentimento: -1, "#cry": -1 }, + { texto: "#cs1", sentimento: 1, "#cs1": 1 }, + { texto: "#csrio", sentimento: 1, "#csrio": 1 }, + { texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1 }, + { texto: "#curiosidades", sentimento: 1, "#curiosidades": 1 }, + { texto: "#curso", sentimento: -1, "#curso": -1 }, + { texto: "#d", sentimento: 1, "#d": 1 }, + { texto: "#dailyformula", sentimento: 1, "#dailyformula": 1 }, + { texto: "#datena", sentimento: -1, "#datena": -1 }, + { texto: "#declara", sentimento: -1, "#declara": -1 }, + { texto: "#defeito", sentimento: -1, "#defeito": -1 }, + { texto: "#desconfiado", sentimento: 1, "#desconfiado": 1 }, + { texto: "#desculpa", sentimento: -1, "#desculpa": -1 }, + { texto: "#deus", sentimento: 1, "#deus": 1 }, + { texto: "#di", sentimento: 1, "#di": 1 }, + { texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1 }, + { texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1 }, + { texto: "#diegocaash", sentimento: -1, "#diegocaash": -1 }, + { texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1 }, + { texto: "#digimon", sentimento: -1, "#digimon": -1 }, + { texto: "#digitalworld", sentimento: -1, "#digitalworld": -1 }, + { texto: "#django1", sentimento: 1, "#django1": 1 }, + { texto: "#dojorio", sentimento: 1, "#dojorio": 1 }, + { texto: "#dorgas", sentimento: -1, "#dorgas": -1 }, + { texto: "#dormir", sentimento: 1, "#dormir": 1 }, + { texto: "#e3", sentimento: -1, "#e3": -1 }, + { texto: "#e32011", sentimento: -1, "#e32011": -1 }, + { texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1 }, + { texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1 }, + { texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1 }, + { texto: "#ela", sentimento: -1, "#ela": -1 }, + { texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1 }, + { texto: "#elbotin", sentimento: 1, "#elbotin": 1 }, + { texto: "#elcorner", sentimento: -1, "#elcorner": -1 }, + { texto: "#ele", sentimento: -1, "#ele": -1 }, + { texto: "#eletromate", sentimento: -1, "#eletromate": -1 }, + { texto: "#emerson", sentimento: -1, "#emerson": -1 }, + { texto: "#enem", sentimento: -1, "#enem": -1 }, + { texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1 }, + { texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1 }, + { texto: "#epic", sentimento: -1, "#epic": -1 }, + { texto: "#epicwin", sentimento: 0, "#epicwin": 0 }, + { texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1 }, + { texto: "#eressexypero", sentimento: 1, "#eressexypero": 1 }, + { texto: "#errodotz", sentimento: -1, "#errodotz": -1 }, + { texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1 }, + { texto: "#escroto", sentimento: -1, "#escroto": -1 }, + { texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1 }, + { texto: "#estad", sentimento: -1, "#estad": -1 }, + { texto: "#estudar", sentimento: -1, "#estudar": -1 }, + { texto: "#etenildos", sentimento: -1, "#etenildos": -1 }, + { texto: "#eu", sentimento: -1, "#eu": -1 }, + { texto: "#eununca", sentimento: -1, "#eununca": -1 }, + { texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1 }, + { texto: "#evernote", sentimento: 1, "#evernote": 1 }, + { texto: "#exalta", sentimento: -1, "#exalta": -1 }, + { texto: "#expotch", sentimento: -1, "#expotch": -1 }, + { texto: "#facebook", sentimento: 1, "#facebook": 1 }, + { texto: "#fail", sentimento: -1, "#fail": -1 }, + { texto: "#faiooo", sentimento: -1, "#faiooo": -1 }, + { texto: "#fascinante", sentimento: 1, "#fascinante": 1 }, + { texto: "#fashion", sentimento: -1, "#fashion": -1 }, + { texto: "#fato", sentimento: -1, "#fato": -1 }, + { texto: "#fb", sentimento: 1, "#fb": 1 }, + { texto: "#feil", sentimento: -1, "#feil": -1 }, + { texto: "#feio", sentimento: -1, "#feio": -1 }, + { texto: "#fertagus", sentimento: 1, "#fertagus": 1 }, + { texto: "#ff", sentimento: 1, "#ff": 1 }, + { texto: "#fibra", sentimento: -1, "#fibra": -1 }, + { texto: "#ficadica", sentimento: -1, "#ficadica": -1 }, + { texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1 }, + { texto: "#fifa11", sentimento: 1, "#fifa11": 1 }, + { texto: "#fikdik", sentimento: -1, "#fikdik": -1 }, + { texto: "#filha", sentimento: -1, "#filha": -1 }, + { texto: "#finishh", sentimento: 1, "#finishh": 1 }, + { texto: "#firefox", sentimento: 1, "#firefox": 1 }, + { texto: "#fisl", sentimento: 1, "#fisl": 1 }, + { texto: "#flash", sentimento: 1, "#flash": 1 }, + { texto: "#flopou", sentimento: -1, "#flopou": -1 }, + { texto: "#fodaa", sentimento: -1, "#fodaa": -1 }, + { texto: "#fodao", sentimento: 1, "#fodao": 1 }, + { texto: "#fome", sentimento: 1, "#fome": 1 }, + { texto: "#foramicarla", sentimento: -1, "#foramicarla": -1 }, + { texto: "#forever", sentimento: 1, "#forever": 1 }, + { texto: "#foreveralone", sentimento: 1, "#foreveralone": 1 }, + { texto: "#forevergordo", sentimento: 1, "#forevergordo": 1 }, + { texto: "#fortaleza", sentimento: -1, "#fortaleza": -1 }, + { texto: "#frontinrio", sentimento: 1, "#frontinrio": 1 }, + { texto: "#fsoa", sentimento: 1, "#fsoa": 1 }, + { texto: "#fuckboy", sentimento: -1, "#fuckboy": -1 }, + { texto: "#fuckyea", sentimento: 1, "#fuckyea": 1 }, + { texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1 }, + { texto: "#funk", sentimento: -1, "#funk": -1 }, + { texto: "#gaga", sentimento: -1, "#gaga": -1 }, + { texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1 }, + { texto: "#gatos", sentimento: 1, "#gatos": 1 }, + { texto: "#generationteen", sentimento: -1, "#generationteen": -1 }, + { texto: "#gente", sentimento: -1, "#gente": -1 }, + { texto: "#genteque", sentimento: -1, "#genteque": -1 }, + { texto: "#ger", sentimento: -1, "#ger": -1 }, + { texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1 }, + { texto: "#gof9", sentimento: -1, "#gof9": -1 }, + { texto: "#gol", sentimento: 1, "#gol": 1 }, + { texto: "#golazo", sentimento: 1, "#golazo": 1 }, + { texto: "#google", sentimento: -1, "#google": -1 }, + { texto: "#googledoodle", sentimento: -1, "#googledoodle": -1 }, + { texto: "#gr", sentimento: -1, "#gr": -1 }, + { texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1 }, + { texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1 }, + { texto: "#gremio", sentimento: -1, "#gremio": -1 }, + { texto: "#guanabara", sentimento: 1, "#guanabara": 1 }, + { texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1 }, + { texto: "#guicostnn", sentimento: -1, "#guicostnn": -1 }, + { texto: "#harrypobre", sentimento: 1, "#harrypobre": 1 }, + { texto: "#hi5", sentimento: 1, "#hi5": 1 }, + { texto: "#historia", sentimento: -1, "#historia": -1 }, + { texto: "#horacerta", sentimento: -1, "#horacerta": -1 }, + { texto: "#hotmail", sentimento: -1, "#hotmail": -1 }, + { texto: "#html5", sentimento: 1, "#html5": 1 }, + { texto: "#humornegro", sentimento: 1, "#humornegro": 1 }, + { texto: "#icwd", sentimento: 1, "#icwd": 1 }, + { texto: "#ie", sentimento: 1, "#ie": 1 }, + { texto: "#ifce", sentimento: -1, "#ifce": -1 }, + { texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1 }, + { texto: "#imagens", sentimento: 1, "#imagens": 1 }, + { texto: "#infancia", sentimento: 1, "#infancia": 1 }, + { texto: "#infografia", sentimento: 1, "#infografia": 1 }, + { texto: "#inlove", sentimento: 1, "#inlove": 1 }, + { texto: "#insensatos2", sentimento: -1, "#insensatos2": -1 }, + { texto: "#internetbanking", sentimento: -1, "#internetbanking": -1 }, + { texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1 }, + { texto: "#intersystem", sentimento: -1, "#intersystem": -1 }, + { texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1 }, + { texto: "#ios5", sentimento: 1, "#ios5": 1 }, + { texto: "#itau", sentimento: -1, "#itau": -1 }, + { texto: "#j", sentimento: -1, "#j": -1 }, + { texto: "#jam", sentimento: -1, "#jam": -1 }, + { texto: "#jantar", sentimento: 1, "#jantar": 1 }, + { texto: "#jaspion", sentimento: 1, "#jaspion": 1 }, + { texto: "#jesse", sentimento: 1, "#jesse": 1 }, + { texto: "#jim", sentimento: 1, "#jim": 1 }, + { texto: "#joomla", sentimento: -1, "#joomla": -1 }, + { texto: "#josatan", sentimento: 1, "#josatan": 1 }, + { texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1 }, + { texto: "#jumbo", sentimento: 1, "#jumbo": 1 }, + { texto: "#kevin", sentimento: -1, "#kevin": -1 }, + { texto: "#lance", sentimento: 1, "#lance": 1 }, + { texto: "#le", sentimento: 1, "#le": 1 }, + { texto: "#leticia", sentimento: -1, "#leticia": -1 }, + { texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1 }, + { texto: "#lindo", sentimento: 1, "#lindo": 1 }, + { texto: "#linux", sentimento: 1, "#linux": 1 }, + { texto: "#lion", sentimento: 1, "#lion": 1 }, + { texto: "#lixo", sentimento: -1, "#lixo": -1 }, + { texto: "#lixofonica", sentimento: -1, "#lixofonica": -1 }, + { texto: "#lol", sentimento: -1, "#lol": -1 }, + { texto: "#looser", sentimento: 1, "#looser": 1 }, + { texto: "#luansantana", sentimento: -1, "#luansantana": -1 }, + { texto: "#lucasednir", sentimento: -1, "#lucasednir": -1 }, + { texto: "#mac", sentimento: -1, "#mac": -1 }, + { texto: "#maconha", sentimento: -1, "#maconha": -1 }, + { texto: "#madvma", sentimento: -1, "#madvma": -1 }, + { texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1 }, + { texto: "#magnocentro", sentimento: -1, "#magnocentro": -1 }, + { texto: "#malha", sentimento: -1, "#malha": -1 }, + { texto: "#manaus", sentimento: 1, "#manaus": 1 }, + { texto: "#mariabethania", sentimento: -1, "#mariabethania": -1 }, + { texto: "#marisa", sentimento: -1, "#marisa": -1 }, + { texto: "#may", sentimento: -1, "#may": -1 }, + { texto: "#mecaga", sentimento: -1, "#mecaga": -1 }, + { texto: "#megalagana", sentimento: 1, "#megalagana": 1 }, + { texto: "#megasena", sentimento: 1, "#megasena": 1 }, + { texto: "#melhores", sentimento: 1, "#melhores": 1 }, + { texto: "#melissa", sentimento: -1, "#melissa": -1 }, + { texto: "#melissahorn", sentimento: 1, "#melissahorn": 1 }, + { texto: "#memolesta", sentimento: -1, "#memolesta": -1 }, + { texto: "#metrosp", sentimento: -1, "#metrosp": -1 }, + { texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1 }, + { texto: "#meusonho", sentimento: -1, "#meusonho": -1 }, + { texto: "#microsoft", sentimento: -1, "#microsoft": -1 }, + { texto: "#mimimi", sentimento: 1, "#mimimi": 1 }, + { texto: "#mobile", sentimento: -1, "#mobile": -1 }, + { texto: "#mockery", sentimento: 1, "#mockery": 1 }, + { texto: "#mockito", sentimento: 1, "#mockito": 1 }, + { texto: "#monografia", sentimento: -1, "#monografia": -1 }, + { texto: "#montanagrill", sentimento: 1, "#montanagrill": 1 }, + { texto: "#monterrey", sentimento: -1, "#monterrey": -1 }, + { texto: "#morto", sentimento: -1, "#morto": -1 }, + { texto: "#motos", sentimento: -1, "#motos": -1 }, + { texto: "#movies", sentimento: 1, "#movies": 1 }, + { texto: "#msn", sentimento: -1, "#msn": -1 }, + { texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1 }, + { texto: "#myhero", sentimento: 1, "#myhero": 1 }, + { texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1 }, + { texto: "#naomais", sentimento: -1, "#naomais": -1 }, + { texto: "#nata", sentimento: -1, "#nata": -1 }, + { texto: "#nervoso", sentimento: 1, "#nervoso": 1 }, + { texto: "#net", sentimento: -1, "#net": -1 }, + { texto: "#netcombo", sentimento: -1, "#netcombo": -1 }, + { texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1 }, + { texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1 }, + { texto: "#nomamar", sentimento: -1, "#nomamar": -1 }, + { texto: "#not", sentimento: -1, "#not": -1 }, + { texto: "#oclone", sentimento: -1, "#oclone": -1 }, + { texto: "#oda", sentimento: -1, "#oda": -1 }, + { texto: "#odeio", sentimento: -1, "#odeio": -1 }, + { texto: "#oi", sentimento: -1, "#oi": -1 }, + { texto: "#old", sentimento: 1, "#old": 1 }, + { texto: "#omg", sentimento: -1, "#omg": -1 }, + { texto: "#opera", sentimento: 1, "#opera": 1 }, + { texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1 }, + { texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1 }, + { texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1 }, + { texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1 }, + { texto: "#pais", sentimento: -1, "#pais": -1 }, + { texto: "#palmeiras", sentimento: 1, "#palmeiras": 1 }, + { texto: "#palocci", sentimento: -1, "#palocci": -1 }, + { texto: "#panama", sentimento: 1, "#panama": 1 }, + { texto: "#panico", sentimento: 1, "#panico": 1 }, + { texto: "#parti", sentimento: -1, "#parti": -1 }, + { texto: "#partiu", sentimento: -1, "#partiu": -1 }, + { texto: "#patadeperro", sentimento: 1, "#patadeperro": 1 }, + { texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0 }, + { texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1 }, + { texto: "#photoshop", sentimento: -1, "#photoshop": -1 }, + { texto: "#php", sentimento: 1, "#php": 1 }, + { texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1 }, + { texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1 }, + { texto: "#planetmix", sentimento: -1, "#planetmix": -1 }, + { texto: "#plc122", sentimento: -1, "#plc122": -1 }, + { texto: "#plimplim", sentimento: -1, "#plimplim": -1 }, + { texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1 }, + { texto: "#poderir", sentimento: -1, "#poderir": -1 }, + { texto: "#pokemon", sentimento: -1, "#pokemon": -1 }, + { texto: "#polishop", sentimento: -1, "#polishop": -1 }, + { texto: "#politicagem", sentimento: -1, "#politicagem": -1 }, + { texto: "#polvilho", sentimento: -1, "#polvilho": -1 }, + { texto: "#popular", sentimento: -1, "#popular": -1 }, + { texto: "#poweroflove", sentimento: -1, "#poweroflove": -1 }, + { texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1 }, + { texto: "#pqp", sentimento: -1, "#pqp": -1 }, + { texto: "#prequi", sentimento: -1, "#prequi": -1 }, + { texto: "#profiss", sentimento: 1, "#profiss": 1 }, + { texto: "#programadojo", sentimento: -1, "#programadojo": -1 }, + { texto: "#promo", sentimento: -1, "#promo": -1 }, + { texto: "#prova", sentimento: -1, "#prova": -1 }, + { texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1 }, + { texto: "#ptt", sentimento: -1, "#ptt": -1 }, + { texto: "#pucrs", sentimento: -1, "#pucrs": -1 }, + { texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1 }, + { texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1 }, + { texto: "#qbomne", sentimento: -1, "#qbomne": -1 }, + { texto: "#qconsp", sentimento: 1, "#qconsp": 1 }, + { texto: "#quefasehein", sentimento: -1, "#quefasehein": -1 }, + { texto: "#quepena", sentimento: -1, "#quepena": -1 }, + { texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1 }, + { texto: "#quiz", sentimento: 1, "#quiz": 1 }, + { texto: "#ramon", sentimento: -1, "#ramon": -1 }, + { texto: "#receba", sentimento: -1, "#receba": -1 }, + { texto: "#reclame", sentimento: 1, "#reclame": 1 }, + { texto: "#redeglobo", sentimento: -1, "#redeglobo": -1 }, + { texto: "#referendum", sentimento: -1, "#referendum": -1 }, + { texto: "#referendum2011", sentimento: -1, "#referendum2011": -1 }, + { texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1 }, + { texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1 }, + { texto: "#revendatim", sentimento: -1, "#revendatim": -1 }, + { texto: "#reynosa", sentimento: -1, "#reynosa": -1 }, + { texto: "#riovermelho", sentimento: -1, "#riovermelho": -1 }, + { texto: "#riverplate", sentimento: 1, "#riverplate": 1 }, + { texto: "#rockrio", sentimento: -1, "#rockrio": -1 }, + { texto: "#s", sentimento: -1, "#s": -1 }, + { texto: "#sabado", sentimento: 1, "#sabado": 1 }, + { texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1 }, + { texto: "#safari", sentimento: 1, "#safari": 1 }, + { texto: "#samsung", sentimento: -1, "#samsung": -1 }, + { texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1 }, + { texto: "#santoantonio", sentimento: -1, "#santoantonio": -1 }, + { texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1 }, + { texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1 }, + { texto: "#semata", sentimento: -1, "#semata": -1 }, + { texto: "#seo", sentimento: 0, "#seo": 0 }, + { texto: "#seomoz", sentimento: 1, "#seomoz": 1 }, + { texto: "#ser", sentimento: -1, "#ser": -1 }, + { texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1 }, + { texto: "#sga", sentimento: -1, "#sga": -1 }, + { texto: "#sic", sentimento: 1, "#sic": 1 }, + { texto: "#sigam", sentimento: -1, "#sigam": -1 }, + { texto: "#signos", sentimento: -1, "#signos": -1 }, + { texto: "#signout", sentimento: -1, "#signout": -1 }, + { texto: "#site", sentimento: -1, "#site": -1 }, + { texto: "#smiles", sentimento: -1, "#smiles": -1 }, + { texto: "#sms", sentimento: -1, "#sms": -1 }, + { texto: "#sogra", sentimento: -1, "#sogra": -1 }, + { texto: "#sono", sentimento: -1, "#sono": -1 }, + { texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1 }, + { texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1 }, + { texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1 }, + { texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1 }, + { texto: "#soyadicto", sentimento: 1, "#soyadicto": 1 }, + { texto: "#speed", sentimento: -1, "#speed": -1 }, + { texto: "#speedy", sentimento: -1, "#speedy": -1 }, + { texto: "#spotv", sentimento: -1, "#spotv": -1 }, + { texto: "#submarino", sentimento: -1, "#submarino": -1 }, + { texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1 }, + { texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1 }, + { texto: "#tcc", sentimento: 1, "#tcc": 1 }, + { texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1 }, + { texto: "#teamo", sentimento: -1, "#teamo": -1 }, + { texto: "#tecnologia", sentimento: 1, "#tecnologia": 1 }, + { texto: "#telaquente", sentimento: -1, "#telaquente": -1 }, + { texto: "#telefoncia", sentimento: -1, "#telefoncia": -1 }, + { texto: "#telefonica", sentimento: -1, "#telefonica": -1 }, + { texto: "#tenso", sentimento: -1, "#tenso": -1 }, + { texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1 }, + { texto: "#ti", sentimento: -1, "#ti": -1 }, + { texto: "#tim", sentimento: -1, "#tim": -1 }, + { texto: "#time", sentimento: -1, "#time": -1 }, + { texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1 }, + { texto: "#todosadora", sentimento: -1, "#todosadora": -1 }, + { texto: "#topfive", sentimento: -1, "#topfive": -1 }, + { texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1 }, + { texto: "#totalyfail", sentimento: -1, "#totalyfail": -1 }, + { texto: "#tps", sentimento: -1, "#tps": -1 }, + { texto: "#transitosp", sentimento: -1, "#transitosp": -1 }, + { texto: "#travelmug", sentimento: 1, "#travelmug": 1 }, + { texto: "#travelw", sentimento: -1, "#travelw": -1 }, + { texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1 }, + { texto: "#treinaweb", sentimento: -1, "#treinaweb": -1 }, + { texto: "#trollar", sentimento: -1, "#trollar": -1 }, + { texto: "#trote", sentimento: -1, "#trote": -1 }, + { texto: "#true", sentimento: 1, "#true": 1 }, + { texto: "#tvi", sentimento: 1, "#tvi": 1 }, + { texto: "#twitcam", sentimento: -1, "#twitcam": -1 }, + { texto: "#twittcam", sentimento: -1, "#twittcam": -1 }, + { texto: "#twitter", sentimento: -1, "#twitter": -1 }, + { texto: "#uenf", sentimento: 1, "#uenf": 1 }, + { texto: "#unesp", sentimento: -1, "#unesp": -1 }, + { texto: "#uni", sentimento: -1, "#uni": -1 }, + { texto: "#unico", sentimento: -1, "#unico": -1 }, + { texto: "#unip", sentimento: -1, "#unip": -1 }, + { texto: "#v", sentimento: -1, "#v": -1 }, + { texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1 }, + { texto: "#valdir", sentimento: -1, "#valdir": -1 }, + { texto: "#valetudo", sentimento: -1, "#valetudo": -1 }, + { texto: "#valeurge", sentimento: -1, "#valeurge": -1 }, + { texto: "#vamp", sentimento: -1, "#vamp": -1 }, + { texto: "#vdm", sentimento: -1, "#vdm": -1 }, + { texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1 }, + { texto: "#verdade", sentimento: 0, "#verdade": 0 }, + { texto: "#vergonha", sentimento: -1, "#vergonha": -1 }, + { texto: "#viage", sentimento: -1, "#viage": -1 }, + { texto: "#vida", sentimento: -1, "#vida": -1 }, + { texto: "#viih", sentimento: -1, "#viih": -1 }, + { texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1 }, + { texto: "#vivo", sentimento: 0, "#vivo": 0 }, + { texto: "#vmb", sentimento: -1, "#vmb": -1 }, + { texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1 }, + { texto: "#voetrip", sentimento: -1, "#voetrip": -1 }, + { texto: "#volei", sentimento: -1, "#volei": -1 }, + { texto: "#vtnc", sentimento: -1, "#vtnc": -1 }, + { texto: "#vym", sentimento: -1, "#vym": -1 }, + { texto: "#w00t", sentimento: 1, "#w00t": 1 }, + { texto: "#win", sentimento: 1, "#win": 1 }, + { texto: "#windows", sentimento: 1, "#windows": 1 }, + { texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1 }, + { texto: "#winning", sentimento: 1, "#winning": 1 }, + { texto: "#wolfteam", sentimento: -1, "#wolfteam": -1 }, + { texto: "#wp7", sentimento: 1, "#wp7": 1 }, + { texto: "#x10", sentimento: -1, "#x10": -1 }, + { texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1 }, + { texto: "#youtube", sentimento: -1, "#youtube": -1 }, + { texto: "#z", sentimento: -1, "#z": -1 }, + { texto: "#zegotinha", sentimento: 1, "#zegotinha": 1 }, + { texto: "#zon", sentimento: 0, "#zon": 0 }, + { texto: "=[", sentimento: -1, "=[": -1 }, + { texto: "=@", sentimento: -1, "=@": -1 }, + { texto: "=D", sentimento: 1, "=D": 1 }, + { texto: "=d", sentimento: 1, "=d": 1 }, + { texto: "=P", sentimento: -1, "=P": -1 }, + { texto: "=p", sentimento: -1, "=p": -1 }, + { texto: "=x", sentimento: -1, "=x": -1 }, + { texto: ">:(", sentimento: -1, ">:(": -1 }, + { texto: "><", sentimento: -1, "><": -1 }, + { texto: "¬¬''", sentimento: -1, "¬¬''": -1 }, + { texto: "¬¬", sentimento: -1, "¬¬": -1 }, + { texto: "a comemorar", sentimento: 3, "a comemorar": 3 }, + { texto: "¬", sentimento: -1, "¬": -1 }, + { texto: "ab-rogar", sentimento: -1, "ab-rogar": -1 }, + { texto: "ababadar", sentimento: 0, "ababadar": 0 }, + { texto: "ababelar-se", sentimento: 1, "ababelar-se": 1 }, + { texto: "ababelar", sentimento: -1, "ababelar": -1 }, + { texto: "abaçanar", sentimento: 1, "abaçanar": 1 }, + { texto: "abacinar", sentimento: 1, "abacinar": 1 }, + { texto: "abafada", sentimento: -1, "abafada": -1 }, + { texto: "abafadas", sentimento: -1, "abafadas": -1 }, + { texto: "abafado", sentimento: -1, "abafado": -1 }, + { texto: "abafados", sentimento: -1, "abafados": -1 }, + { texto: "abafante", sentimento: -1, "abafante": -1 }, + { texto: "abafantes", sentimento: -1, "abafantes": -1 }, + { texto: "abafar", sentimento: -1, "abafar": -1 }, + { texto: "abafou", sentimento: -1, "abafou": -1 }, + { texto: "abaixada", sentimento: -1, "abaixada": -1 }, + { texto: "abaixadas", sentimento: -1, "abaixadas": -1 }, + { texto: "abaixado", sentimento: -1, "abaixado": -1 }, + { texto: "abaixados", sentimento: -1, "abaixados": -1 }, + { texto: "abaixar-se", sentimento: 0, "abaixar-se": 0 }, + { texto: "abaixar", sentimento: 0, "abaixar": 0 }, + { texto: "abalada", sentimento: -1, "abalada": -1 }, + { texto: "abaladas", sentimento: -1, "abaladas": -1 }, + { texto: "abalado", sentimento: -1, "abalado": -1 }, + { texto: "abalados", sentimento: -1, "abalados": -1 }, + { texto: "abalançado", sentimento: 1, "abalançado": 1 }, + { texto: "abalançar", sentimento: 1, "abalançar": 1 }, + { texto: "abalar-se", sentimento: 0, "abalar-se": 0 }, + { texto: "abalar", sentimento: 0, "abalar": 0 }, + { texto: "abalizada", sentimento: 1, "abalizada": 1 }, + { texto: "abalizadas", sentimento: 1, "abalizadas": 1 }, + { texto: "abalizado", sentimento: 1, "abalizado": 1 }, + { texto: "abalizados", sentimento: 1, "abalizados": 1 }, + { texto: "abalizar", sentimento: 0, "abalizar": 0 }, + { texto: "abalroar-se", sentimento: 1, "abalroar-se": 1 }, + { texto: "abalroar", sentimento: 0, "abalroar": 0 }, + { texto: "abanar", sentimento: 0, "abanar": 0 }, + { texto: "abandalhada", sentimento: -1, "abandalhada": -1 }, + { texto: "abandalhadas", sentimento: -1, "abandalhadas": -1 }, + { texto: "abandalhado", sentimento: -1, "abandalhado": -1 }, + { texto: "abandalhados", sentimento: -1, "abandalhados": -1 }, + { texto: "abandalhar", sentimento: 1, "abandalhar": 1 }, + { texto: "abandar", sentimento: -1, "abandar": -1 }, + { texto: "abandonada", sentimento: -1, "abandonada": -1 }, + { texto: "abandonadas", sentimento: -1, "abandonadas": -1 }, + { texto: "abandonado", sentimento: -1, "abandonado": -1 }, + { texto: "abandonado", sentimento: -2, "abandonado": -2 }, + { texto: "abandonados", sentimento: -1, "abandonados": -1 }, + { texto: "abandonar-se", sentimento: 0, "abandonar-se": 0 }, + { texto: "abandonar", sentimento: -1, "abandonar": -1 }, + { texto: "abandono", sentimento: -2, "abandono": -2 }, + { texto: "abandonos", sentimento: -2, "abandonos": -2 }, + { texto: "abarbar", sentimento: 1, "abarbar": 1 }, + { texto: "abarbarado", sentimento: 1, "abarbarado": 1 }, + { texto: "abarcante", sentimento: -1, "abarcante": -1 }, + { texto: "abarcantes", sentimento: -1, "abarcantes": -1 }, + { texto: "abarcar", sentimento: -1, "abarcar": -1 }, + { texto: "abarrancar", sentimento: -1, "abarrancar": -1 }, + { texto: "abarregar", sentimento: 1, "abarregar": 1 }, + { texto: "abarreirar", sentimento: -1, "abarreirar": -1 }, + { texto: "abarrocar", sentimento: -1, "abarrocar": -1 }, + { texto: "abarrotada", sentimento: -1, "abarrotada": -1 }, + { texto: "abarrotadas", sentimento: -1, "abarrotadas": -1 }, + { texto: "abarrotado", sentimento: -1, "abarrotado": -1 }, + { texto: "abarrotados", sentimento: -1, "abarrotados": -1 }, + { texto: "abarrotar", sentimento: 0, "abarrotar": 0 }, + { texto: "abasbacar", sentimento: 0, "abasbacar": 0 }, + { texto: "abastada", sentimento: 1, "abastada": 1 }, + { texto: "abastadas", sentimento: 1, "abastadas": 1 }, + { texto: "abastadear", sentimento: 1, "abastadear": 1 }, + { texto: "abastado", sentimento: 1, "abastado": 1 }, + { texto: "abastados", sentimento: 1, "abastados": 1 }, + { texto: "abastar", sentimento: -1, "abastar": -1 }, + { texto: "abastardar-se", sentimento: 1, "abastardar-se": 1 }, + { texto: "abastardar", sentimento: 1, "abastardar": 1 }, + { texto: "abastardear-se", sentimento: 1, "abastardear-se": 1 }, + { texto: "abastecer", sentimento: 1, "abastecer": 1 }, + { texto: "abastecida", sentimento: 0, "abastecida": 0 }, + { texto: "abastecidas", sentimento: 0, "abastecidas": 0 }, + { texto: "abastecido", sentimento: 0, "abastecido": 0 }, + { texto: "abastecidos", sentimento: 0, "abastecidos": 0 }, + { texto: "abastoso", sentimento: 1, "abastoso": 1 }, + { texto: "abater", sentimento: -1, "abater": -1 }, + { texto: "abatida", sentimento: -1, "abatida": -1 }, + { texto: "abatidas", sentimento: -1, "abatidas": -1 }, + { texto: "abatido", sentimento: -1, "abatido": -1 }, + { texto: "abatido", sentimento: -2, "abatido": -2 }, + { texto: "abatidos", sentimento: -1, "abatidos": -1 }, + { texto: "abatocar", sentimento: 1, "abatocar": 1 }, + { texto: "abdicar", sentimento: -1, "abdicar": -1 }, + { texto: "abdução", sentimento: -2, "abdução": -2 }, + { texto: "abduzir-se", sentimento: 1, "abduzir-se": 1 }, + { texto: "abduzir", sentimento: 0, "abduzir": 0 }, + { texto: "abeberar", sentimento: 0, "abeberar": 0 }, + { texto: "abeirar-se", sentimento: 1, "abeirar-se": 1 }, + { texto: "abeirar", sentimento: 0, "abeirar": 0 }, + { texto: "abelhuda", sentimento: -1, "abelhuda": -1 }, + { texto: "abelhudar", sentimento: 0, "abelhudar": 0 }, + { texto: "abelhudas", sentimento: -1, "abelhudas": -1 }, + { texto: "abelhudo", sentimento: -1, "abelhudo": -1 }, + { texto: "abelhudos", sentimento: -1, "abelhudos": -1 }, + { texto: "abemolar", sentimento: 0, "abemolar": 0 }, + { texto: "abençoa", sentimento: 2, "abençoa": 2 }, + { texto: "abençoada", sentimento: 1, "abençoada": 1 }, + { texto: "abençoadas", sentimento: 1, "abençoadas": 1 }, + { texto: "abençoado", sentimento: 1, "abençoado": 1 }, + { texto: "abençoados", sentimento: 1, "abençoados": 1 }, + { texto: "abençoar", sentimento: 0, "abençoar": 0 }, + { texto: "abençoar", sentimento: 2, "abençoar": 2 }, + { texto: "aberrante", sentimento: -1, "aberrante": -1 }, + { texto: "aberrantes", sentimento: -1, "aberrantes": -1 }, + { texto: "aberrativa", sentimento: -1, "aberrativa": -1 }, + { texto: "aberrativas", sentimento: -1, "aberrativas": -1 }, + { texto: "aberrativo", sentimento: -1, "aberrativo": -1 }, + { texto: "aberrativos", sentimento: -1, "aberrativos": -1 }, + { texto: "aberratório", sentimento: 1, "aberratório": 1 }, + { texto: "aberta", sentimento: 0, "aberta": 0 }, + { texto: "abertão", sentimento: 1, "abertão": 1 }, + { texto: "abertas", sentimento: 0, "abertas": 0 }, + { texto: "aberto", sentimento: 0, "aberto": 0 }, + { texto: "abertos", sentimento: 0, "abertos": 0 }, + { texto: "abespinhada", sentimento: -1, "abespinhada": -1 }, + { texto: "abespinhadas", sentimento: -1, "abespinhadas": -1 }, + { texto: "abespinhado", sentimento: -1, "abespinhado": -1 }, + { texto: "abespinhados", sentimento: -1, "abespinhados": -1 }, + { texto: "abespinhar", sentimento: -1, "abespinhar": -1 }, + { texto: "abestalhada", sentimento: -1, "abestalhada": -1 }, + { texto: "abestalhadas", sentimento: -1, "abestalhadas": -1 }, + { texto: "abestalhado", sentimento: -1, "abestalhado": -1 }, + { texto: "abestalhados", sentimento: -1, "abestalhados": -1 }, + { texto: "abetumado", sentimento: -1, "abetumado": -1 }, + { texto: "abetumar", sentimento: 0, "abetumar": 0 }, + { texto: "abicar", sentimento: 0, "abicar": 0 }, + { texto: "abichar", sentimento: 0, "abichar": 0 }, + { texto: "abilolada", sentimento: -1, "abilolada": -1 }, + { texto: "abiloladas", sentimento: -1, "abiloladas": -1 }, + { texto: "abilolado", sentimento: -1, "abilolado": -1 }, + { texto: "abilolados", sentimento: -1, "abilolados": -1 }, + { texto: "abiscoitar", sentimento: 0, "abiscoitar": 0 }, + { texto: "abiselar", sentimento: 1, "abiselar": 1 }, + { texto: "abismada", sentimento: -1, "abismada": -1 }, + { texto: "abismadas", sentimento: -1, "abismadas": -1 }, + { texto: "abismado", sentimento: -1, "abismado": -1 }, + { texto: "abismados", sentimento: -1, "abismados": -1 }, + { texto: "abismais", sentimento: -1, "abismais": -1 }, + { texto: "abismal", sentimento: -1, "abismal": -1 }, + { texto: "abismar", sentimento: 1, "abismar": 1 }, + { texto: "abjecta", sentimento: -1, "abjecta": -1 }, + { texto: "abjectas", sentimento: -1, "abjectas": -1 }, + { texto: "abjecto", sentimento: -1, "abjecto": -1 }, + { texto: "abjectos", sentimento: -1, "abjectos": -1 }, + { texto: "abjeta", sentimento: -1, "abjeta": -1 }, + { texto: "abjetas", sentimento: -1, "abjetas": -1 }, + { texto: "abjeto", sentimento: -1, "abjeto": -1 }, + { texto: "abjetos", sentimento: -1, "abjetos": -1 }, + { texto: "abjugar-se", sentimento: 1, "abjugar-se": 1 }, + { texto: "abjugar", sentimento: 0, "abjugar": 0 }, + { texto: "abjurar", sentimento: 1, "abjurar": 1 }, + { texto: "ablegar-se", sentimento: 1, "ablegar-se": 1 }, + { texto: "ablegar", sentimento: 1, "ablegar": 1 }, + { texto: "abluir", sentimento: 0, "abluir": 0 }, + { texto: "abnegada", sentimento: 1, "abnegada": 1 }, + { texto: "abnegadas", sentimento: 1, "abnegadas": 1 }, + { texto: "abnegado", sentimento: 1, "abnegado": 1 }, + { texto: "abnegados", sentimento: 1, "abnegados": 1 }, + { texto: "abnegar", sentimento: 1, "abnegar": 1 }, + { texto: "abnoitar", sentimento: 1, "abnoitar": 1 }, + { texto: "abnormal", sentimento: 1, "abnormal": 1 }, + { texto: "abnóxio", sentimento: 1, "abnóxio": 1 }, + { texto: "abnuir", sentimento: 1, "abnuir": 1 }, + { texto: "abobada", sentimento: -1, "abobada": -1 }, + { texto: "abobadar", sentimento: 0, "abobadar": 0 }, + { texto: "abobadas", sentimento: -1, "abobadas": -1 }, + { texto: "abobado", sentimento: -1, "abobado": -1 }, + { texto: "abobados", sentimento: -1, "abobados": -1 }, + { texto: "abobalhada", sentimento: -1, "abobalhada": -1 }, + { texto: "abobalhadas", sentimento: -1, "abobalhadas": -1 }, + { texto: "abobalhado", sentimento: -1, "abobalhado": -1 }, + { texto: "abobalhados", sentimento: -1, "abobalhados": -1 }, + { texto: "abobalhar", sentimento: 1, "abobalhar": 1 }, + { texto: "abocanhar", sentimento: -1, "abocanhar": -1 }, + { texto: "abocar", sentimento: -1, "abocar": -1 }, + { texto: "abodegado", sentimento: -1, "abodegado": -1 }, + { texto: "abodegar", sentimento: -1, "abodegar": -1 }, + { texto: "abolachar", sentimento: 0, "abolachar": 0 }, + { texto: "abolar", sentimento: -1, "abolar": -1 }, + { texto: "abolçar", sentimento: 0, "abolçar": 0 }, + { texto: "aboleimar", sentimento: 0, "aboleimar": 0 }, + { texto: "aboletar", sentimento: 0, "aboletar": 0 }, + { texto: "abolicionista", sentimento: 0, "abolicionista": 0 }, + { texto: "abolicionistas", sentimento: 0, "abolicionistas": 0 }, + { texto: "abolida", sentimento: -1, "abolida": -1 }, + { texto: "abolidas", sentimento: -1, "abolidas": -1 }, + { texto: "abolido", sentimento: -1, "abolido": -1 }, + { texto: "abolidos", sentimento: -1, "abolidos": -1 }, + { texto: "abolir", sentimento: -1, "abolir": -1 }, + { texto: "abolorecer", sentimento: 1, "abolorecer": 1 }, + { texto: "abolorentar", sentimento: 1, "abolorentar": 1 }, + { texto: "abolsar", sentimento: 1, "abolsar": 1 }, + { texto: "abomina", sentimento: -3, "abomina": -3 }, + { texto: "abominado", sentimento: -1, "abominado": -1 }, + { texto: "abominador", sentimento: -1, "abominador": -1 }, + { texto: "abominadora", sentimento: -1, "abominadora": -1 }, + { texto: "abominadoras", sentimento: -1, "abominadoras": -1 }, + { texto: "abominadores", sentimento: -1, "abominadores": -1 }, + { texto: "abominanda", sentimento: -1, "abominanda": -1 }, + { texto: "abominandas", sentimento: -1, "abominandas": -1 }, + { texto: "abominando", sentimento: -1, "abominando": -1 }, + { texto: "abominandos", sentimento: -1, "abominandos": -1 }, + { texto: "abominar", sentimento: -3, "abominar": -3 }, + { texto: "abomináveis", sentimento: -1, "abomináveis": -1 }, + { texto: "abominável", sentimento: -1, "abominável": -1 }, + { texto: "abominoso", sentimento: -1, "abominoso": -1 }, + { texto: "abominou", sentimento: -3, "abominou": -3 }, + { texto: "abonada", sentimento: 1, "abonada": 1 }, + { texto: "abonadas", sentimento: 1, "abonadas": 1 }, + { texto: "abonado", sentimento: 1, "abonado": 1 }, + { texto: "abonados", sentimento: 1, "abonados": 1 }, + { texto: "abonançar-se", sentimento: 1, "abonançar-se": 1 }, + { texto: "abonançar", sentimento: 0, "abonançar": 0 }, + { texto: "abonar", sentimento: 0, "abonar": 0 }, + { texto: "abonatória", sentimento: 1, "abonatória": 1 }, + { texto: "abonatórias", sentimento: 1, "abonatórias": 1 }, + { texto: "abonatório", sentimento: 1, "abonatório": 1 }, + { texto: "abonatórios", sentimento: 1, "abonatórios": 1 }, + { texto: "abonecada", sentimento: 0, "abonecada": 0 }, + { texto: "abonecadas", sentimento: 0, "abonecadas": 0 }, + { texto: "abonecado", sentimento: 0, "abonecado": 0 }, + { texto: "abonecados", sentimento: 0, "abonecados": 0 }, + { texto: "aboquejar", sentimento: -1, "aboquejar": -1 }, + { texto: "aborcar", sentimento: -1, "aborcar": -1 }, + { texto: "abordar", sentimento: 0, "abordar": 0 }, + { texto: "aborígene", sentimento: -1, "aborígene": -1 }, + { texto: "aborígenes", sentimento: -1, "aborígenes": -1 }, + { texto: "aborrecedor", sentimento: -1, "aborrecedor": -1 }, + { texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1 }, + { texto: "aborrecer", sentimento: -1, "aborrecer": -1 }, + { texto: "aborrecida", sentimento: -1, "aborrecida": -1 }, + { texto: "aborrecidas", sentimento: -1, "aborrecidas": -1 }, + { texto: "aborrecido", sentimento: -1, "aborrecido": -1 }, + { texto: "aborrecido", sentimento: -2, "aborrecido": -2 }, + { texto: "aborrecidos", sentimento: -1, "aborrecidos": -1 }, + { texto: "aborrecimento", sentimento: -2, "aborrecimento": -2 }, + { texto: "aborrecível", sentimento: -1, "aborrecível": -1 }, + { texto: "aborrido", sentimento: -1, "aborrido": -1 }, + { texto: "aborrível", sentimento: -1, "aborrível": -1 }, + { texto: "abortada", sentimento: -1, "abortada": -1 }, + { texto: "abortadas", sentimento: -1, "abortadas": -1 }, + { texto: "abortado", sentimento: -1, "abortado": -1 }, + { texto: "abortados", sentimento: -1, "abortados": -1 }, + { texto: "abortar", sentimento: -1, "abortar": -1 }, + { texto: "abotoar", sentimento: 0, "abotoar": 0 }, + { texto: "abraçada", sentimento: 1, "abraçada": 1 }, + { texto: "abracadabrante", sentimento: 1, "abracadabrante": 1 }, + { texto: "abracadábrico", sentimento: 1, "abracadábrico": 1 }, + { texto: "abraçadas", sentimento: 1, "abraçadas": 1 }, + { texto: "abraçado", sentimento: 1, "abraçado": 1 }, + { texto: "abraçados", sentimento: 1, "abraçados": 1 }, + { texto: "abraçar-se", sentimento: 1, "abraçar-se": 1 }, + { texto: "abraçar", sentimento: 0, "abraçar": 0 }, + { texto: "abraço", sentimento: 1, "abraço": 1 }, + { texto: "abraço", sentimento: 2, "abraço": 2 }, + { texto: "abraços", sentimento: 2, "abraços": 2 }, + { texto: "abrancar", sentimento: 1, "abrancar": 1 }, + { texto: "abrandar-se", sentimento: 1, "abrandar-se": 1 }, + { texto: "abrandar", sentimento: 0, "abrandar": 0 }, + { texto: "abrangente", sentimento: 1, "abrangente": 1 }, + { texto: "abrangentes", sentimento: 1, "abrangentes": 1 }, + { texto: "abranger", sentimento: 0, "abranger": 0 }, + { texto: "abrangida", sentimento: -1, "abrangida": -1 }, + { texto: "abrangidas", sentimento: -1, "abrangidas": -1 }, + { texto: "abrangido", sentimento: -1, "abrangido": -1 }, + { texto: "abrangidos", sentimento: -1, "abrangidos": -1 }, + { texto: "abrasar-se", sentimento: 1, "abrasar-se": 1 }, + { texto: "abrasar", sentimento: 0, "abrasar": 0 }, + { texto: "abrasear", sentimento: -1, "abrasear": -1 }, + { texto: "abrasileirada", sentimento: 0, "abrasileirada": 0 }, + { texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0 }, + { texto: "abrasileirado", sentimento: 0, "abrasileirado": 0 }, + { texto: "abrasileirados", sentimento: 0, "abrasileirados": 0 }, + { texto: "abrejar", sentimento: 1, "abrejar": 1 }, + { texto: "abreviar", sentimento: 0, "abreviar": 0 }, + { texto: "abrigada", sentimento: 0, "abrigada": 0 }, + { texto: "abrigadas", sentimento: 0, "abrigadas": 0 }, + { texto: "abrigado", sentimento: 0, "abrigado": 0 }, + { texto: "abrigados", sentimento: 0, "abrigados": 0 }, + { texto: "abrigar", sentimento: -1, "abrigar": -1 }, + { texto: "abrilhantada", sentimento: 1, "abrilhantada": 1 }, + { texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1 }, + { texto: "abrilhantado", sentimento: 1, "abrilhantado": 1 }, + { texto: "abrilhantados", sentimento: 1, "abrilhantados": 1 }, + { texto: "abrilhantar", sentimento: 0, "abrilhantar": 0 }, + { texto: "abrir mão de", sentimento: -1, "abrir mão de": -1 }, + { texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1 }, + { texto: "abrir-se", sentimento: -1, "abrir-se": -1 }, + { texto: "abrir", sentimento: -1, "abrir": -1 }, + { texto: "abrolhar", sentimento: 0, "abrolhar": 0 }, + { texto: "abrupta", sentimento: -1, "abrupta": -1 }, + { texto: "abruptas", sentimento: -1, "abruptas": -1 }, + { texto: "abrupto", sentimento: -1, "abrupto": -1 }, + { texto: "abruptos", sentimento: -1, "abruptos": -1 }, + { texto: "abrutado", sentimento: -1, "abrutado": -1 }, + { texto: "abrutalhada", sentimento: -1, "abrutalhada": -1 }, + { texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1 }, + { texto: "abrutalhado", sentimento: -1, "abrutalhado": -1 }, + { texto: "abrutalhados", sentimento: -1, "abrutalhados": -1 }, + { texto: "abrutalhar", sentimento: 1, "abrutalhar": 1 }, + { texto: "abrutar", sentimento: 1, "abrutar": 1 }, + { texto: "abscidar-se", sentimento: 1, "abscidar-se": 1 }, + { texto: "absentista", sentimento: -1, "absentista": -1 }, + { texto: "absentistas", sentimento: -1, "absentistas": -1 }, + { texto: "absoluta", sentimento: 1, "absoluta": 1 }, + { texto: "absolutas", sentimento: 1, "absolutas": 1 }, + { texto: "absolutista", sentimento: 0, "absolutista": 0 }, + { texto: "absolutistas", sentimento: 0, "absolutistas": 0 }, + { texto: "absoluto", sentimento: 1, "absoluto": 1 }, + { texto: "absolutos", sentimento: 1, "absolutos": 1 }, + { texto: "absolve", sentimento: 2, "absolve": 2 }, + { texto: "absolvendo", sentimento: 2, "absolvendo": 2 }, + { texto: "absolver", sentimento: -1, "absolver": -1 }, + { texto: "absolver", sentimento: 2, "absolver": 2 }, + { texto: "absolvida", sentimento: 0, "absolvida": 0 }, + { texto: "absolvidas", sentimento: 0, "absolvidas": 0 }, + { texto: "absolvido", sentimento: 0, "absolvido": 0 }, + { texto: "absolvido", sentimento: 2, "absolvido": 2 }, + { texto: "absolvidos", sentimento: 0, "absolvidos": 0 }, + { texto: "absolvidos", sentimento: 2, "absolvidos": 2 }, + { texto: "absonar", sentimento: -1, "absonar": -1 }, + { texto: "absorta", sentimento: -1, "absorta": -1 }, + { texto: "absortas", sentimento: -1, "absortas": -1 }, + { texto: "absorto", sentimento: -1, "absorto": -1 }, + { texto: "absortos", sentimento: -1, "absortos": -1 }, + { texto: "absortos", sentimento: 1, "absortos": 1 }, + { texto: "absorvente", sentimento: 1, "absorvente": 1 }, + { texto: "absorventes", sentimento: 1, "absorventes": 1 }, + { texto: "absorver-se", sentimento: 1, "absorver-se": 1 }, + { texto: "absorver", sentimento: -1, "absorver": -1 }, + { texto: "absorvido", sentimento: 1, "absorvido": 1 }, + { texto: "abstémia", sentimento: 1, "abstémia": 1 }, + { texto: "abstémias", sentimento: 1, "abstémias": 1 }, + { texto: "abstémica", sentimento: 1, "abstémica": 1 }, + { texto: "abstémicas", sentimento: 1, "abstémicas": 1 }, + { texto: "abstémico", sentimento: 1, "abstémico": 1 }, + { texto: "abstémicos", sentimento: 1, "abstémicos": 1 }, + { texto: "abstémio", sentimento: 1, "abstémio": 1 }, + { texto: "abstémios", sentimento: 1, "abstémios": 1 }, + { texto: "abstencionista", sentimento: 0, "abstencionista": 0 }, + { texto: "abstencionistas", sentimento: 0, "abstencionistas": 0 }, + { texto: "abster-se", sentimento: 0, "abster-se": 0 }, + { texto: "abstinente", sentimento: 0, "abstinente": 0 }, + { texto: "abstinentes", sentimento: 0, "abstinentes": 0 }, + { texto: "abstraccionista", sentimento: 0, "abstraccionista": 0 }, + { texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0 }, + { texto: "abstracta", sentimento: -1, "abstracta": -1 }, + { texto: "abstractas", sentimento: -1, "abstractas": -1 }, + { texto: "abstracto", sentimento: -1, "abstracto": -1 }, + { texto: "abstractos", sentimento: -1, "abstractos": -1 }, + { texto: "abstraída", sentimento: -1, "abstraída": -1 }, + { texto: "abstraídas", sentimento: -1, "abstraídas": -1 }, + { texto: "abstraído", sentimento: -1, "abstraído": -1 }, + { texto: "abstraídos", sentimento: -1, "abstraídos": -1 }, + { texto: "abstrair-se", sentimento: 0, "abstrair-se": 0 }, + { texto: "abstrair", sentimento: 1, "abstrair": 1 }, + { texto: "abstrata", sentimento: -1, "abstrata": -1 }, + { texto: "abstratas", sentimento: -1, "abstratas": -1 }, + { texto: "abstrato", sentimento: -1, "abstrato": -1 }, + { texto: "abstratos", sentimento: -1, "abstratos": -1 }, + { texto: "abstrusa", sentimento: -1, "abstrusa": -1 }, + { texto: "abstrusas", sentimento: -1, "abstrusas": -1 }, + { texto: "abstruso", sentimento: -1, "abstruso": -1 }, + { texto: "abstrusos", sentimento: -1, "abstrusos": -1 }, + { texto: "absumir", sentimento: -1, "absumir": -1 }, + { texto: "absurda", sentimento: -1, "absurda": -1 }, + { texto: "absurdas", sentimento: -1, "absurdas": -1 }, + { texto: "absurdo", sentimento: -1, "absurdo": -1 }, + { texto: "absurdo", sentimento: -2, "absurdo": -2 }, + { texto: "absurdos", sentimento: -1, "absurdos": -1 }, + { texto: "abugalhar", sentimento: 1, "abugalhar": 1 }, + { texto: "abúlica", sentimento: -1, "abúlica": -1 }, + { texto: "abúlicas", sentimento: -1, "abúlicas": -1 }, + { texto: "abúlico", sentimento: -1, "abúlico": -1 }, + { texto: "abúlicos", sentimento: -1, "abúlicos": -1 }, + { texto: "abundante", sentimento: 1, "abundante": 1 }, + { texto: "abundar", sentimento: 1, "abundar": 1 }, + { texto: "abundoso", sentimento: 1, "abundoso": 1 }, + { texto: "aburacar", sentimento: 1, "aburacar": 1 }, + { texto: "aburguesada", sentimento: 0, "aburguesada": 0 }, + { texto: "aburguesadas", sentimento: 0, "aburguesadas": 0 }, + { texto: "aburguesado", sentimento: 0, "aburguesado": 0 }, + { texto: "aburguesados", sentimento: 0, "aburguesados": 0 }, + { texto: "abusada", sentimento: -1, "abusada": -1 }, + { texto: "abusadas", sentimento: -1, "abusadas": -1 }, + { texto: "abusado", sentimento: -1, "abusado": -1 }, + { texto: "abusado", sentimento: -3, "abusado": -3 }, + { texto: "abusador", sentimento: -1, "abusador": -1 }, + { texto: "abusadora", sentimento: -1, "abusadora": -1 }, + { texto: "abusadoras", sentimento: -1, "abusadoras": -1 }, + { texto: "abusadores", sentimento: -1, "abusadores": -1 }, + { texto: "abusados", sentimento: -1, "abusados": -1 }, + { texto: "abusar", sentimento: 1, "abusar": 1 }, + { texto: "abusiva", sentimento: -1, "abusiva": -1 }, + { texto: "abusivas", sentimento: -1, "abusivas": -1 }, + { texto: "abusivo", sentimento: -1, "abusivo": -1 }, + { texto: "abusivo", sentimento: -3, "abusivo": -3 }, + { texto: "abusivos", sentimento: -1, "abusivos": -1 }, + { texto: "abuso", sentimento: -3, "abuso": -3 }, + { texto: "abusos", sentimento: -3, "abusos": -3 }, + { texto: "abuzinar", sentimento: 1, "abuzinar": 1 }, + { texto: "acabada", sentimento: -1, "acabada": -1 }, + { texto: "acabadas", sentimento: -1, "acabadas": -1 }, + { texto: "acabado", sentimento: -1, "acabado": -1 }, + { texto: "acabados", sentimento: -1, "acabados": -1 }, + { texto: "acabadota", sentimento: -1, "acabadota": -1 }, + { texto: "acabadotas", sentimento: -1, "acabadotas": -1 }, + { texto: "acabadote", sentimento: -1, "acabadote": -1 }, + { texto: "acabadotes", sentimento: -1, "acabadotes": -1 }, + { texto: "acabamento", sentimento: 1, "acabamento": 1 }, + { texto: "acabar-se", sentimento: 0, "acabar-se": 0 }, + { texto: "acabar", sentimento: 0, "acabar": 0 }, + { texto: "acabrunhada", sentimento: -1, "acabrunhada": -1 }, + { texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1 }, + { texto: "acabrunhado", sentimento: -1, "acabrunhado": -1 }, + { texto: "acabrunhados", sentimento: -1, "acabrunhados": -1 }, + { texto: "acabrunhar", sentimento: 0, "acabrunhar": 0 }, + { texto: "açacalado", sentimento: 1, "açacalado": 1 }, + { texto: "acaçapar", sentimento: 1, "acaçapar": 1 }, + { texto: "acachar", sentimento: 1, "acachar": 1 }, + { texto: "acaciana", sentimento: -1, "acaciana": -1 }, + { texto: "acacianas", sentimento: -1, "acacianas": -1 }, + { texto: "acaciano", sentimento: -1, "acaciano": -1 }, + { texto: "acacianos", sentimento: -1, "acacianos": -1 }, + { texto: "académica", sentimento: 0, "académica": 0 }, + { texto: "acadêmica", sentimento: 0, "acadêmica": 0 }, + { texto: "académicas", sentimento: 0, "académicas": 0 }, + { texto: "acadêmicas", sentimento: 0, "acadêmicas": 0 }, + { texto: "académico", sentimento: 0, "académico": 0 }, + { texto: "acadêmico", sentimento: 0, "acadêmico": 0 }, + { texto: "académicos", sentimento: 0, "académicos": 0 }, + { texto: "acadêmicos", sentimento: 0, "acadêmicos": 0 }, + { texto: "acafelar", sentimento: 1, "acafelar": 1 }, + { texto: "acaiçarado", sentimento: -1, "acaiçarado": -1 }, + { texto: "açaimar", sentimento: 0, "açaimar": 0 }, + { texto: "acalentando", sentimento: 2, "acalentando": 2 }, + { texto: "acalentar-se", sentimento: 1, "acalentar-se": 1 }, + { texto: "acalentar", sentimento: 0, "acalentar": 0 }, + { texto: "acalentar", sentimento: 2, "acalentar": 2 }, + { texto: "acalmada", sentimento: 3, "acalmada": 3 }, + { texto: "acalmado", sentimento: 2, "acalmado": 2 }, + { texto: "acalmar-se", sentimento: 1, "acalmar-se": 1 }, + { texto: "acalmar", sentimento: 0, "acalmar": 0 }, + { texto: "acalmar", sentimento: 3, "acalmar": 3 }, + { texto: "acalorada", sentimento: 0, "acalorada": 0 }, + { texto: "acaloradas", sentimento: 0, "acaloradas": 0 }, + { texto: "acalorado", sentimento: 0, "acalorado": 0 }, + { texto: "acalorados", sentimento: 0, "acalorados": 0 }, + { texto: "acalorar-se", sentimento: 1, "acalorar-se": 1 }, + { texto: "acalorar", sentimento: 1, "acalorar": 1 }, + { texto: "acamar", sentimento: 1, "acamar": 1 }, + { texto: "açambarcador", sentimento: -1, "açambarcador": -1 }, + { texto: "açambarcadora", sentimento: -1, "açambarcadora": -1 }, + { texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1 }, + { texto: "açambarcadores", sentimento: -1, "açambarcadores": -1 }, + { texto: "açambarcar", sentimento: 0, "açambarcar": 0 }, + { texto: "acambetar", sentimento: 0, "acambetar": 0 }, + { texto: "acampanar", sentimento: 0, "acampanar": 0 }, + { texto: "acanalar", sentimento: 0, "acanalar": 0 }, + { texto: "acanalhar", sentimento: 1, "acanalhar": 1 }, + { texto: "acanavear", sentimento: -1, "acanavear": -1 }, + { texto: "acanelar", sentimento: 0, "acanelar": 0 }, + { texto: "acanhada", sentimento: -1, "acanhada": -1 }, + { texto: "acanhadas", sentimento: -1, "acanhadas": -1 }, + { texto: "acanhado", sentimento: -1, "acanhado": -1 }, + { texto: "acanhados", sentimento: -1, "acanhados": -1 }, + { texto: "acanhar", sentimento: -1, "acanhar": -1 }, + { texto: "ação judicial", sentimento: -2, "ação judicial": -2 }, + { texto: "acapelado", sentimento: 1, "acapelado": 1 }, + { texto: "acapelar", sentimento: 0, "acapelar": 0 }, + { texto: "acarar", sentimento: 1, "acarar": 1 }, + { texto: "acarear", sentimento: 1, "acarear": 1 }, + { texto: "acariciar", sentimento: 0, "acariciar": 0 }, + { texto: "acarinhada", sentimento: -1, "acarinhada": -1 }, + { texto: "acarinhadas", sentimento: -1, "acarinhadas": -1 }, + { texto: "acarinhado", sentimento: -1, "acarinhado": -1 }, + { texto: "acarinhados", sentimento: -1, "acarinhados": -1 }, + { texto: "acarinhar", sentimento: 1, "acarinhar": 1 }, + { texto: "acarminar", sentimento: 0, "acarminar": 0 }, +]; diff --git a/tests/baselines/reference/arrayLiteralTooComplex.symbols b/tests/baselines/reference/arrayLiteralTooComplex.symbols new file mode 100644 index 0000000000000..fb952f2b72547 --- /dev/null +++ b/tests/baselines/reference/arrayLiteralTooComplex.symbols @@ -0,0 +1,5005 @@ +=== tests/cases/compiler/arrayLiteralTooComplex.ts === +let a = [ +>a : Symbol(a, Decl(arrayLiteralTooComplex.ts, 0, 3)) + + {texto: ";)", sentimento: 1, ";)": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 1, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 1, 17)) +>";)" : Symbol(";)", Decl(arrayLiteralTooComplex.ts, 1, 32)) + + {texto: ";@", sentimento: -1, ";@": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 2, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 2, 17)) +>";@" : Symbol(";@", Decl(arrayLiteralTooComplex.ts, 2, 33)) + + {texto: ";*", sentimento: -1, ";*": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 3, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 3, 17)) +>";*" : Symbol(";*", Decl(arrayLiteralTooComplex.ts, 3, 33)) + + {texto: ";**", sentimento: -1, ";**": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 4, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 4, 18)) +>";**" : Symbol(";**", Decl(arrayLiteralTooComplex.ts, 4, 34)) + + {texto: ";~", sentimento: -1, ";~": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 5, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 5, 17)) +>";~" : Symbol(";~", Decl(arrayLiteralTooComplex.ts, 5, 33)) + + {texto: ";D", sentimento: -1, ";D": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 6, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 6, 17)) +>";D" : Symbol(";D", Decl(arrayLiteralTooComplex.ts, 6, 33)) + + {texto: ";P", sentimento: -1, ";P": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 7, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 7, 17)) +>";P" : Symbol(";P", Decl(arrayLiteralTooComplex.ts, 7, 33)) + + {texto: ";p", sentimento: -1, ";p": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 8, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 8, 17)) +>";p" : Symbol(";p", Decl(arrayLiteralTooComplex.ts, 8, 33)) + + {texto: ";x", sentimento: -1, ";x": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 9, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 9, 17)) +>";x" : Symbol(";x", Decl(arrayLiteralTooComplex.ts, 9, 33)) + + {texto: ";xx", sentimento: -1, ";xx": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 10, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 10, 18)) +>";xx" : Symbol(";xx", Decl(arrayLiteralTooComplex.ts, 10, 34)) + + {texto: ":'(", sentimento: -1, ":'(": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 11, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 11, 18)) +>":'(" : Symbol(":'(", Decl(arrayLiteralTooComplex.ts, 11, 34)) + + {texto: ":')", sentimento: -1, ":')": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 12, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 12, 18)) +>":')" : Symbol(":')", Decl(arrayLiteralTooComplex.ts, 12, 34)) + + {texto: ":(", sentimento: -1, ":(": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 13, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 13, 17)) +>":(" : Symbol(":(", Decl(arrayLiteralTooComplex.ts, 13, 33)) + + {texto: ":)", sentimento: 1, ":)": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 14, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 14, 17)) +>":)" : Symbol(":)", Decl(arrayLiteralTooComplex.ts, 14, 32)) + + {texto: ":)))", sentimento: 1, ":)))": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 15, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 15, 19)) +>":)))" : Symbol(":)))", Decl(arrayLiteralTooComplex.ts, 15, 34)) + + {texto: ":]", sentimento: -1, ":]": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 16, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 16, 17)) +>":]" : Symbol(":]", Decl(arrayLiteralTooComplex.ts, 16, 33)) + + {texto: ":@", sentimento: 0, ":@": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 17, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 17, 17)) +>":@" : Symbol(":@", Decl(arrayLiteralTooComplex.ts, 17, 32)) + + {texto: ":*", sentimento: -1, ":*": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 18, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 18, 17)) +>":*" : Symbol(":*", Decl(arrayLiteralTooComplex.ts, 18, 33)) + + {texto: ":<", sentimento: -1, ":<": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 19, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 19, 17)) +>":<" : Symbol(":<", Decl(arrayLiteralTooComplex.ts, 19, 33)) + + {texto: ":~", sentimento: -1, ":~": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 20, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 20, 17)) +>":~" : Symbol(":~", Decl(arrayLiteralTooComplex.ts, 20, 33)) + + {texto: ":$", sentimento: -1, ":$": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 21, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 21, 17)) +>":$" : Symbol(":$", Decl(arrayLiteralTooComplex.ts, 21, 33)) + + {texto: ":D", sentimento: 1, ":D": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 22, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 22, 17)) +>":D" : Symbol(":D", Decl(arrayLiteralTooComplex.ts, 22, 32)) + + {texto: ":p", sentimento: -1, ":p": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 23, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 23, 17)) +>":p" : Symbol(":p", Decl(arrayLiteralTooComplex.ts, 23, 33)) + + {texto: ":P", sentimento: 0, ":P": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 24, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 24, 17)) +>":P" : Symbol(":P", Decl(arrayLiteralTooComplex.ts, 24, 32)) + + {texto: ":x", sentimento: -1, ":x": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 25, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 25, 17)) +>":x" : Symbol(":x", Decl(arrayLiteralTooComplex.ts, 25, 33)) + + {texto: ":x)", sentimento: 1, ":x)": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 26, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 26, 18)) +>":x)" : Symbol(":x)", Decl(arrayLiteralTooComplex.ts, 26, 33)) + + {texto: "(:", sentimento: -1, "(:": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 27, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 27, 17)) +>"(:" : Symbol("(:", Decl(arrayLiteralTooComplex.ts, 27, 33)) + + {texto: "(=", sentimento: 1, "(=": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 28, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 28, 17)) +>"(=" : Symbol("(=", Decl(arrayLiteralTooComplex.ts, 28, 32)) + + {texto: "):", sentimento: -1, "):": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 29, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 29, 17)) +>"):" : Symbol("):", Decl(arrayLiteralTooComplex.ts, 29, 33)) + + {texto: ")):", sentimento: -1, ")):": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 30, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 30, 18)) +>")):" : Symbol(")):", Decl(arrayLiteralTooComplex.ts, 30, 34)) + + {texto: "*:", sentimento: -1, "*:": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 31, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 31, 17)) +>"*:" : Symbol("*:", Decl(arrayLiteralTooComplex.ts, 31, 33)) + + {texto: "#2", sentimento: -1, "#2": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 32, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 32, 17)) +>"#2" : Symbol("#2", Decl(arrayLiteralTooComplex.ts, 32, 33)) + + {texto: "#2011", sentimento: -1, "#2011": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 33, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 33, 20)) +>"#2011" : Symbol("#2011", Decl(arrayLiteralTooComplex.ts, 33, 36)) + + {texto: "#2014", sentimento: -1, "#2014": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 34, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 34, 20)) +>"#2014" : Symbol("#2014", Decl(arrayLiteralTooComplex.ts, 34, 36)) + + {texto: "#4square", sentimento: -1, "#4square": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 35, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 35, 23)) +>"#4square" : Symbol("#4square", Decl(arrayLiteralTooComplex.ts, 35, 39)) + + {texto: "#64bit", sentimento: 1, "#64bit": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 36, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 36, 21)) +>"#64bit" : Symbol("#64bit", Decl(arrayLiteralTooComplex.ts, 36, 36)) + + {texto: "#adsl", sentimento: -1, "#adsl": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 37, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 37, 20)) +>"#adsl" : Symbol("#adsl", Decl(arrayLiteralTooComplex.ts, 37, 36)) + + {texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 38, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 38, 32)) +>"#aduvirientregate" : Symbol("#aduvirientregate", Decl(arrayLiteralTooComplex.ts, 38, 47)) + + {texto: "#afazenda", sentimento: -1, "#afazenda": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 39, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 39, 24)) +>"#afazenda" : Symbol("#afazenda", Decl(arrayLiteralTooComplex.ts, 39, 40)) + + {texto: "#aff", sentimento: -1, "#aff": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 40, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 40, 19)) +>"#aff" : Symbol("#aff", Decl(arrayLiteralTooComplex.ts, 40, 35)) + + {texto: "#again", sentimento: -1, "#again": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 41, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 41, 21)) +>"#again" : Symbol("#again", Decl(arrayLiteralTooComplex.ts, 41, 37)) + + {texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 42, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 42, 28)) +>"#agendadeldia" : Symbol("#agendadeldia", Decl(arrayLiteralTooComplex.ts, 42, 43)) + + {texto: "#agua", sentimento: 1, "#agua": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 43, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 43, 20)) +>"#agua" : Symbol("#agua", Decl(arrayLiteralTooComplex.ts, 43, 35)) + + {texto: "#aimeucora", sentimento: -1, "#aimeucora": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 44, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 44, 25)) +>"#aimeucora" : Symbol("#aimeucora", Decl(arrayLiteralTooComplex.ts, 44, 41)) + + {texto: "#alan", sentimento: -1, "#alan": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 45, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 45, 20)) +>"#alan" : Symbol("#alan", Decl(arrayLiteralTooComplex.ts, 45, 36)) + + {texto: "#aline", sentimento: -1, "#aline": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 46, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 46, 21)) +>"#aline" : Symbol("#aline", Decl(arrayLiteralTooComplex.ts, 46, 37)) + + {texto: "#amo", sentimento: 1, "#amo": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 47, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 47, 19)) +>"#amo" : Symbol("#amo", Decl(arrayLiteralTooComplex.ts, 47, 34)) + + {texto: "#amodoro", sentimento: 1, "#amodoro": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 48, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 48, 23)) +>"#amodoro" : Symbol("#amodoro", Decl(arrayLiteralTooComplex.ts, 48, 38)) + + {texto: "#amor", sentimento: -1, "#amor": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 49, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 49, 20)) +>"#amor" : Symbol("#amor", Decl(arrayLiteralTooComplex.ts, 49, 36)) + + {texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 50, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 50, 30)) +>"#amorposmoderno" : Symbol("#amorposmoderno", Decl(arrayLiteralTooComplex.ts, 50, 45)) + + {texto: "#an", sentimento: 1, "#an": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 51, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 51, 18)) +>"#an" : Symbol("#an", Decl(arrayLiteralTooComplex.ts, 51, 33)) + + {texto: "#android", sentimento: 1, "#android": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 52, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 52, 23)) +>"#android" : Symbol("#android", Decl(arrayLiteralTooComplex.ts, 52, 38)) + + {texto: "#animada", sentimento: -1, "#animada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 53, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 53, 23)) +>"#animada" : Symbol("#animada", Decl(arrayLiteralTooComplex.ts, 53, 39)) + + {texto: "#apagao", sentimento: -1, "#apagao": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 54, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 54, 22)) +>"#apagao" : Symbol("#apagao", Decl(arrayLiteralTooComplex.ts, 54, 38)) + + {texto: "#apps", sentimento: -1, "#apps": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 55, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 55, 20)) +>"#apps" : Symbol("#apps", Decl(arrayLiteralTooComplex.ts, 55, 36)) + + {texto: "#aqu", sentimento: 1, "#aqu": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 56, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 56, 19)) +>"#aqu" : Symbol("#aqu", Decl(arrayLiteralTooComplex.ts, 56, 34)) + + {texto: "#ari", sentimento: -1, "#ari": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 57, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 57, 19)) +>"#ari" : Symbol("#ari", Decl(arrayLiteralTooComplex.ts, 57, 35)) + + {texto: "#ariane", sentimento: -1, "#ariane": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 58, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 58, 22)) +>"#ariane" : Symbol("#ariane", Decl(arrayLiteralTooComplex.ts, 58, 38)) + + {texto: "#bad", sentimento: -1, "#bad": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 59, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 59, 19)) +>"#bad" : Symbol("#bad", Decl(arrayLiteralTooComplex.ts, 59, 35)) + + {texto: "#bakugan", sentimento: -1, "#bakugan": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 60, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 60, 23)) +>"#bakugan" : Symbol("#bakugan", Decl(arrayLiteralTooComplex.ts, 60, 39)) + + {texto: "#bam", sentimento: 1, "#bam": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 61, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 61, 19)) +>"#bam" : Symbol("#bam", Decl(arrayLiteralTooComplex.ts, 61, 34)) + + {texto: "#bandida", sentimento: -1, "#bandida": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 62, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 62, 23)) +>"#bandida" : Symbol("#bandida", Decl(arrayLiteralTooComplex.ts, 62, 39)) + + {texto: "#bankonline", sentimento: 1, "#bankonline": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 63, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 63, 26)) +>"#bankonline" : Symbol("#bankonline", Decl(arrayLiteralTooComplex.ts, 63, 41)) + + {texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 64, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 64, 27)) +>"#batalhanerd" : Symbol("#batalhanerd", Decl(arrayLiteralTooComplex.ts, 64, 42)) + + {texto: "#beer", sentimento: 1, "#beer": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 65, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 65, 20)) +>"#beer" : Symbol("#beer", Decl(arrayLiteralTooComplex.ts, 65, 35)) + + {texto: "#beijo", sentimento: 1, "#beijo": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 66, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 66, 21)) +>"#beijo" : Symbol("#beijo", Decl(arrayLiteralTooComplex.ts, 66, 36)) + + {texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 67, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 67, 29)) +>"#belemfeelings" : Symbol("#belemfeelings", Decl(arrayLiteralTooComplex.ts, 67, 45)) + + {texto: "#bigmistake", sentimento: -1, "#bigmistake": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 68, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 68, 26)) +>"#bigmistake" : Symbol("#bigmistake", Decl(arrayLiteralTooComplex.ts, 68, 42)) + + {texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 69, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 69, 26)) +>"#bigsuprise" : Symbol("#bigsuprise", Decl(arrayLiteralTooComplex.ts, 69, 41)) + + {texto: "#bio", sentimento: 1, "#bio": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 70, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 70, 19)) +>"#bio" : Symbol("#bio", Decl(arrayLiteralTooComplex.ts, 70, 34)) + + {texto: "#biologia", sentimento: -1, "#biologia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 71, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 71, 24)) +>"#biologia" : Symbol("#biologia", Decl(arrayLiteralTooComplex.ts, 71, 40)) + + {texto: "#birdbrain", sentimento: -1, "#birdbrain": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 72, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 72, 25)) +>"#birdbrain" : Symbol("#birdbrain", Decl(arrayLiteralTooComplex.ts, 72, 41)) + + {texto: "#blackberry", sentimento: -1, "#blackberry": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 73, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 73, 26)) +>"#blackberry" : Symbol("#blackberry", Decl(arrayLiteralTooComplex.ts, 73, 42)) + + {texto: "#blackhat", sentimento: -1, "#blackhat": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 74, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 74, 24)) +>"#blackhat" : Symbol("#blackhat", Decl(arrayLiteralTooComplex.ts, 74, 40)) + + {texto: "#blogprog", sentimento: -1, "#blogprog": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 75, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 75, 24)) +>"#blogprog" : Symbol("#blogprog", Decl(arrayLiteralTooComplex.ts, 75, 40)) + + {texto: "#bodareal", sentimento: -1, "#bodareal": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 76, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 76, 24)) +>"#bodareal" : Symbol("#bodareal", Decl(arrayLiteralTooComplex.ts, 76, 40)) + + {texto: "#bombando", sentimento: -1, "#bombando": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 77, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 77, 24)) +>"#bombando" : Symbol("#bombando", Decl(arrayLiteralTooComplex.ts, 77, 40)) + + {texto: "#bomdia", sentimento: -1, "#bomdia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 78, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 78, 22)) +>"#bomdia" : Symbol("#bomdia", Decl(arrayLiteralTooComplex.ts, 78, 38)) + + {texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 79, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 79, 28)) +>"#bomdiabrasil" : Symbol("#bomdiabrasil", Decl(arrayLiteralTooComplex.ts, 79, 44)) + + {texto: "#boobs", sentimento: 1, "#boobs": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 80, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 80, 21)) +>"#boobs" : Symbol("#boobs", Decl(arrayLiteralTooComplex.ts, 80, 36)) + + {texto: "#boomsm", sentimento: 1, "#boomsm": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 81, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 81, 22)) +>"#boomsm" : Symbol("#boomsm", Decl(arrayLiteralTooComplex.ts, 81, 37)) + + {texto: "#boss", sentimento: 1, "#boss": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 82, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 82, 20)) +>"#boss" : Symbol("#boss", Decl(arrayLiteralTooComplex.ts, 82, 35)) + + {texto: "#brandsclub", sentimento: -1, "#brandsclub": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 83, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 83, 26)) +>"#brandsclub" : Symbol("#brandsclub", Decl(arrayLiteralTooComplex.ts, 83, 42)) + + {texto: "#brasil", sentimento: -1, "#brasil": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 84, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 84, 22)) +>"#brasil" : Symbol("#brasil", Decl(arrayLiteralTooComplex.ts, 84, 38)) + + {texto: "#brasilia", sentimento: -1, "#brasilia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 85, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 85, 24)) +>"#brasilia" : Symbol("#brasilia", Decl(arrayLiteralTooComplex.ts, 85, 40)) + + {texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 86, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 86, 28)) +>"#brasilsilsil" : Symbol("#brasilsilsil", Decl(arrayLiteralTooComplex.ts, 86, 44)) + + {texto: "#brazilians", sentimento: -1, "#brazilians": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 87, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 87, 26)) +>"#brazilians" : Symbol("#brazilians", Decl(arrayLiteralTooComplex.ts, 87, 42)) + + {texto: "#bsb", sentimento: -1, "#bsb": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 88, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 88, 19)) +>"#bsb" : Symbol("#bsb", Decl(arrayLiteralTooComplex.ts, 88, 35)) + + {texto: "#bub", sentimento: -1, "#bub": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 89, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 89, 19)) +>"#bub" : Symbol("#bub", Decl(arrayLiteralTooComplex.ts, 89, 35)) + + {texto: "#buongiorno", sentimento: -1, "#buongiorno": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 90, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 90, 26)) +>"#buongiorno" : Symbol("#buongiorno", Decl(arrayLiteralTooComplex.ts, 90, 42)) + + {texto: "#burro", sentimento: -1, "#burro": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 91, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 91, 21)) +>"#burro" : Symbol("#burro", Decl(arrayLiteralTooComplex.ts, 91, 37)) + + {texto: "#cad", sentimento: -1, "#cad": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 92, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 92, 19)) +>"#cad" : Symbol("#cad", Decl(arrayLiteralTooComplex.ts, 92, 35)) + + {texto: "#caelum", sentimento: 1, "#caelum": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 93, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 93, 22)) +>"#caelum" : Symbol("#caelum", Decl(arrayLiteralTooComplex.ts, 93, 37)) + + {texto: "#cafeina", sentimento: -1, "#cafeina": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 94, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 94, 23)) +>"#cafeina" : Symbol("#cafeina", Decl(arrayLiteralTooComplex.ts, 94, 39)) + + {texto: "#caixa", sentimento: -1, "#caixa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 95, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 95, 21)) +>"#caixa" : Symbol("#caixa", Decl(arrayLiteralTooComplex.ts, 95, 37)) + + {texto: "#cal", sentimento: 1, "#cal": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 96, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 96, 19)) +>"#cal" : Symbol("#cal", Decl(arrayLiteralTooComplex.ts, 96, 34)) + + {texto: "#camaradagem", sentimento: -1, "#camaradagem": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 97, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 97, 27)) +>"#camaradagem" : Symbol("#camaradagem", Decl(arrayLiteralTooComplex.ts, 97, 43)) + + {texto: "#camel", sentimento: 1, "#camel": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 98, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 98, 21)) +>"#camel" : Symbol("#camel", Decl(arrayLiteralTooComplex.ts, 98, 36)) + + {texto: "#capric", sentimento: -1, "#capric": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 99, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 99, 22)) +>"#capric" : Symbol("#capric", Decl(arrayLiteralTooComplex.ts, 99, 38)) + + {texto: "#carol", sentimento: -1, "#carol": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 100, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 100, 21)) +>"#carol" : Symbol("#carol", Decl(arrayLiteralTooComplex.ts, 100, 37)) + + {texto: "#carris", sentimento: -1, "#carris": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 101, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 101, 22)) +>"#carris" : Symbol("#carris", Decl(arrayLiteralTooComplex.ts, 101, 38)) + + {texto: "#cartolafc", sentimento: -1, "#cartolafc": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 102, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 102, 25)) +>"#cartolafc" : Symbol("#cartolafc", Decl(arrayLiteralTooComplex.ts, 102, 41)) + + {texto: "#catalao", sentimento: -1, "#catalao": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 103, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 103, 23)) +>"#catalao" : Symbol("#catalao", Decl(arrayLiteralTooComplex.ts, 103, 39)) + + {texto: "#cdlr", sentimento: 1, "#cdlr": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 104, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 104, 20)) +>"#cdlr" : Symbol("#cdlr", Decl(arrayLiteralTooComplex.ts, 104, 35)) + + {texto: "#cearasc", sentimento: -1, "#cearasc": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 105, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 105, 23)) +>"#cearasc" : Symbol("#cearasc", Decl(arrayLiteralTooComplex.ts, 105, 39)) + + {texto: "#centauro", sentimento: -1, "#centauro": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 106, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 106, 24)) +>"#centauro" : Symbol("#centauro", Decl(arrayLiteralTooComplex.ts, 106, 40)) + + {texto: "#certeza", sentimento: -1, "#certeza": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 107, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 107, 23)) +>"#certeza" : Symbol("#certeza", Decl(arrayLiteralTooComplex.ts, 107, 39)) + + {texto: "#cet", sentimento: -1, "#cet": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 108, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 108, 19)) +>"#cet" : Symbol("#cet", Decl(arrayLiteralTooComplex.ts, 108, 35)) + + {texto: "#charmeleon", sentimento: 1, "#charmeleon": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 109, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 109, 26)) +>"#charmeleon" : Symbol("#charmeleon", Decl(arrayLiteralTooComplex.ts, 109, 41)) + + {texto: "#chelas", sentimento: 1, "#chelas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 110, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 110, 22)) +>"#chelas" : Symbol("#chelas", Decl(arrayLiteralTooComplex.ts, 110, 37)) + + {texto: "#chrome", sentimento: 1, "#chrome": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 111, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 111, 22)) +>"#chrome" : Symbol("#chrome", Decl(arrayLiteralTooComplex.ts, 111, 37)) + + {texto: "#cielo", sentimento: -1, "#cielo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 112, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 112, 21)) +>"#cielo" : Symbol("#cielo", Decl(arrayLiteralTooComplex.ts, 112, 37)) + + {texto: "#cloaking", sentimento: -1, "#cloaking": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 113, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 113, 24)) +>"#cloaking" : Symbol("#cloaking", Decl(arrayLiteralTooComplex.ts, 113, 40)) + + {texto: "#cmteam", sentimento: 1, "#cmteam": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 114, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 114, 22)) +>"#cmteam" : Symbol("#cmteam", Decl(arrayLiteralTooComplex.ts, 114, 37)) + + {texto: "#comex", sentimento: -1, "#comex": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 115, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 115, 21)) +>"#comex" : Symbol("#comex", Decl(arrayLiteralTooComplex.ts, 115, 37)) + + {texto: "#comofas", sentimento: -1, "#comofas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 116, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 116, 23)) +>"#comofas" : Symbol("#comofas", Decl(arrayLiteralTooComplex.ts, 116, 39)) + + {texto: "#compos", sentimento: -1, "#compos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 117, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 117, 22)) +>"#compos" : Symbol("#compos", Decl(arrayLiteralTooComplex.ts, 117, 38)) + + {texto: "#conspira", sentimento: -1, "#conspira": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 118, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 118, 24)) +>"#conspira" : Symbol("#conspira", Decl(arrayLiteralTooComplex.ts, 118, 40)) + + {texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 119, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 119, 40)) +>"#contabilidadeempresarial" : Symbol("#contabilidadeempresarial", Decl(arrayLiteralTooComplex.ts, 119, 55)) + + {texto: "#contribuir", sentimento: 1, "#contribuir": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 120, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 120, 26)) +>"#contribuir" : Symbol("#contribuir", Decl(arrayLiteralTooComplex.ts, 120, 41)) + + {texto: "#conversos", sentimento: -1, "#conversos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 121, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 121, 25)) +>"#conversos" : Symbol("#conversos", Decl(arrayLiteralTooComplex.ts, 121, 41)) + + {texto: "#copa", sentimento: -1, "#copa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 122, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 122, 20)) +>"#copa" : Symbol("#copa", Decl(arrayLiteralTooComplex.ts, 122, 36)) + + {texto: "#corpoevida", sentimento: 1, "#corpoevida": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 123, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 123, 26)) +>"#corpoevida" : Symbol("#corpoevida", Decl(arrayLiteralTooComplex.ts, 123, 41)) + + {texto: "#correios", sentimento: -1, "#correios": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 124, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 124, 24)) +>"#correios" : Symbol("#correios", Decl(arrayLiteralTooComplex.ts, 124, 40)) + + {texto: "#cpco4", sentimento: 1, "#cpco4": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 125, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 125, 21)) +>"#cpco4" : Symbol("#cpco4", Decl(arrayLiteralTooComplex.ts, 125, 36)) + + {texto: "#cpfl", sentimento: -1, "#cpfl": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 126, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 126, 20)) +>"#cpfl" : Symbol("#cpfl", Decl(arrayLiteralTooComplex.ts, 126, 36)) + + {texto: "#cqc", sentimento: -1, "#cqc": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 127, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 127, 19)) +>"#cqc" : Symbol("#cqc", Decl(arrayLiteralTooComplex.ts, 127, 35)) + + {texto: "#cqteste", sentimento: -1, "#cqteste": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 128, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 128, 23)) +>"#cqteste" : Symbol("#cqteste", Decl(arrayLiteralTooComplex.ts, 128, 39)) + + {texto: "#cry", sentimento: -1, "#cry": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 129, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 129, 19)) +>"#cry" : Symbol("#cry", Decl(arrayLiteralTooComplex.ts, 129, 35)) + + {texto: "#cs1", sentimento: 1, "#cs1": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 130, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 130, 19)) +>"#cs1" : Symbol("#cs1", Decl(arrayLiteralTooComplex.ts, 130, 34)) + + {texto: "#csrio", sentimento: 1, "#csrio": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 131, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 131, 21)) +>"#csrio" : Symbol("#csrio", Decl(arrayLiteralTooComplex.ts, 131, 36)) + + {texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 132, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 132, 27)) +>"#cuandoerani" : Symbol("#cuandoerani", Decl(arrayLiteralTooComplex.ts, 132, 43)) + + {texto: "#curiosidades", sentimento: 1, "#curiosidades": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 133, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 133, 28)) +>"#curiosidades" : Symbol("#curiosidades", Decl(arrayLiteralTooComplex.ts, 133, 43)) + + {texto: "#curso", sentimento: -1, "#curso": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 134, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 134, 21)) +>"#curso" : Symbol("#curso", Decl(arrayLiteralTooComplex.ts, 134, 37)) + + {texto: "#d", sentimento: 1, "#d": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 135, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 135, 17)) +>"#d" : Symbol("#d", Decl(arrayLiteralTooComplex.ts, 135, 32)) + + {texto: "#dailyformula", sentimento: 1, "#dailyformula": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 136, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 136, 28)) +>"#dailyformula" : Symbol("#dailyformula", Decl(arrayLiteralTooComplex.ts, 136, 43)) + + {texto: "#datena", sentimento: -1, "#datena": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 137, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 137, 22)) +>"#datena" : Symbol("#datena", Decl(arrayLiteralTooComplex.ts, 137, 38)) + + {texto: "#declara", sentimento: -1, "#declara": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 138, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 138, 23)) +>"#declara" : Symbol("#declara", Decl(arrayLiteralTooComplex.ts, 138, 39)) + + {texto: "#defeito", sentimento: -1, "#defeito": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 139, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 139, 23)) +>"#defeito" : Symbol("#defeito", Decl(arrayLiteralTooComplex.ts, 139, 39)) + + {texto: "#desconfiado", sentimento: 1, "#desconfiado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 140, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 140, 27)) +>"#desconfiado" : Symbol("#desconfiado", Decl(arrayLiteralTooComplex.ts, 140, 42)) + + {texto: "#desculpa", sentimento: -1, "#desculpa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 141, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 141, 24)) +>"#desculpa" : Symbol("#desculpa", Decl(arrayLiteralTooComplex.ts, 141, 40)) + + {texto: "#deus", sentimento: 1, "#deus": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 142, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 142, 20)) +>"#deus" : Symbol("#deus", Decl(arrayLiteralTooComplex.ts, 142, 35)) + + {texto: "#di", sentimento: 1, "#di": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 143, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 143, 18)) +>"#di" : Symbol("#di", Decl(arrayLiteralTooComplex.ts, 143, 33)) + + {texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 144, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 144, 31)) +>"#diadosnamorados" : Symbol("#diadosnamorados", Decl(arrayLiteralTooComplex.ts, 144, 47)) + + {texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 145, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 145, 32)) +>"#diariosdovampiro" : Symbol("#diariosdovampiro", Decl(arrayLiteralTooComplex.ts, 145, 48)) + + {texto: "#diegocaash", sentimento: -1, "#diegocaash": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 146, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 146, 26)) +>"#diegocaash" : Symbol("#diegocaash", Decl(arrayLiteralTooComplex.ts, 146, 42)) + + {texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 147, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 147, 34)) +>"#diezcanseconojodas" : Symbol("#diezcanseconojodas", Decl(arrayLiteralTooComplex.ts, 147, 49)) + + {texto: "#digimon", sentimento: -1, "#digimon": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 148, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 148, 23)) +>"#digimon" : Symbol("#digimon", Decl(arrayLiteralTooComplex.ts, 148, 39)) + + {texto: "#digitalworld", sentimento: -1, "#digitalworld": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 149, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 149, 28)) +>"#digitalworld" : Symbol("#digitalworld", Decl(arrayLiteralTooComplex.ts, 149, 44)) + + {texto: "#django1", sentimento: 1, "#django1": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 150, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 150, 23)) +>"#django1" : Symbol("#django1", Decl(arrayLiteralTooComplex.ts, 150, 38)) + + {texto: "#dojorio", sentimento: 1, "#dojorio": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 151, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 151, 23)) +>"#dojorio" : Symbol("#dojorio", Decl(arrayLiteralTooComplex.ts, 151, 38)) + + {texto: "#dorgas", sentimento: -1, "#dorgas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 152, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 152, 22)) +>"#dorgas" : Symbol("#dorgas", Decl(arrayLiteralTooComplex.ts, 152, 38)) + + {texto: "#dormir", sentimento: 1, "#dormir": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 153, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 153, 22)) +>"#dormir" : Symbol("#dormir", Decl(arrayLiteralTooComplex.ts, 153, 37)) + + {texto: "#e3", sentimento: -1, "#e3": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 154, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 154, 18)) +>"#e3" : Symbol("#e3", Decl(arrayLiteralTooComplex.ts, 154, 34)) + + {texto: "#e32011", sentimento: -1, "#e32011": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 155, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 155, 22)) +>"#e32011" : Symbol("#e32011", Decl(arrayLiteralTooComplex.ts, 155, 38)) + + {texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 156, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 156, 25)) +>"#eaidoutor" : Symbol("#eaidoutor", Decl(arrayLiteralTooComplex.ts, 156, 41)) + + {texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 157, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 157, 27)) +>"#edwardpobre" : Symbol("#edwardpobre", Decl(arrayLiteralTooComplex.ts, 157, 42)) + + {texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 158, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 158, 32)) +>"#eeeeeeeuridemais" : Symbol("#eeeeeeeuridemais", Decl(arrayLiteralTooComplex.ts, 158, 48)) + + {texto: "#ela", sentimento: -1, "#ela": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 159, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 159, 19)) +>"#ela" : Symbol("#ela", Decl(arrayLiteralTooComplex.ts, 159, 35)) + + {texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 160, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 160, 27)) +>"#elanaodeixa" : Symbol("#elanaodeixa", Decl(arrayLiteralTooComplex.ts, 160, 43)) + + {texto: "#elbotin", sentimento: 1, "#elbotin": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 161, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 161, 23)) +>"#elbotin" : Symbol("#elbotin", Decl(arrayLiteralTooComplex.ts, 161, 38)) + + {texto: "#elcorner", sentimento: -1, "#elcorner": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 162, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 162, 24)) +>"#elcorner" : Symbol("#elcorner", Decl(arrayLiteralTooComplex.ts, 162, 40)) + + {texto: "#ele", sentimento: -1, "#ele": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 163, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 163, 19)) +>"#ele" : Symbol("#ele", Decl(arrayLiteralTooComplex.ts, 163, 35)) + + {texto: "#eletromate", sentimento: -1, "#eletromate": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 164, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 164, 26)) +>"#eletromate" : Symbol("#eletromate", Decl(arrayLiteralTooComplex.ts, 164, 42)) + + {texto: "#emerson", sentimento: -1, "#emerson": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 165, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 165, 23)) +>"#emerson" : Symbol("#emerson", Decl(arrayLiteralTooComplex.ts, 165, 39)) + + {texto: "#enem", sentimento: -1, "#enem": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 166, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 166, 20)) +>"#enem" : Symbol("#enem", Decl(arrayLiteralTooComplex.ts, 166, 36)) + + {texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 167, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 167, 40)) +>"#eospisicopatasdaoretwitt" : Symbol("#eospisicopatasdaoretwitt", Decl(arrayLiteralTooComplex.ts, 167, 56)) + + {texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 168, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 168, 27)) +>"#eossemeduca" : Symbol("#eossemeduca", Decl(arrayLiteralTooComplex.ts, 168, 43)) + + {texto: "#epic", sentimento: -1, "#epic": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 169, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 169, 20)) +>"#epic" : Symbol("#epic", Decl(arrayLiteralTooComplex.ts, 169, 36)) + + {texto: "#epicwin", sentimento: 0, "#epicwin": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 170, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 170, 23)) +>"#epicwin" : Symbol("#epicwin", Decl(arrayLiteralTooComplex.ts, 170, 38)) + + {texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 171, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 171, 27)) +>"#eraseunavez" : Symbol("#eraseunavez", Decl(arrayLiteralTooComplex.ts, 171, 42)) + + {texto: "#eressexypero", sentimento: 1, "#eressexypero": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 172, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 172, 28)) +>"#eressexypero" : Symbol("#eressexypero", Decl(arrayLiteralTooComplex.ts, 172, 43)) + + {texto: "#errodotz", sentimento: -1, "#errodotz": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 173, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 173, 24)) +>"#errodotz" : Symbol("#errodotz", Decl(arrayLiteralTooComplex.ts, 173, 40)) + + {texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 174, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 174, 36)) +>"#esassonpurasmentiras" : Symbol("#esassonpurasmentiras", Decl(arrayLiteralTooComplex.ts, 174, 51)) + + {texto: "#escroto", sentimento: -1, "#escroto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 175, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 175, 23)) +>"#escroto" : Symbol("#escroto", Decl(arrayLiteralTooComplex.ts, 175, 39)) + + {texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 176, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 176, 29)) +>"#espiritosanto" : Symbol("#espiritosanto", Decl(arrayLiteralTooComplex.ts, 176, 45)) + + {texto: "#estad", sentimento: -1, "#estad": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 177, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 177, 21)) +>"#estad" : Symbol("#estad", Decl(arrayLiteralTooComplex.ts, 177, 37)) + + {texto: "#estudar", sentimento: -1, "#estudar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 178, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 178, 23)) +>"#estudar" : Symbol("#estudar", Decl(arrayLiteralTooComplex.ts, 178, 39)) + + {texto: "#etenildos", sentimento: -1, "#etenildos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 179, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 179, 25)) +>"#etenildos" : Symbol("#etenildos", Decl(arrayLiteralTooComplex.ts, 179, 41)) + + {texto: "#eu", sentimento: -1, "#eu": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 180, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 180, 18)) +>"#eu" : Symbol("#eu", Decl(arrayLiteralTooComplex.ts, 180, 34)) + + {texto: "#eununca", sentimento: -1, "#eununca": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 181, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 181, 23)) +>"#eununca" : Symbol("#eununca", Decl(arrayLiteralTooComplex.ts, 181, 39)) + + {texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 182, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 182, 30)) +>"#eutenhoumamigo" : Symbol("#eutenhoumamigo", Decl(arrayLiteralTooComplex.ts, 182, 46)) + + {texto: "#evernote", sentimento: 1, "#evernote": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 183, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 183, 24)) +>"#evernote" : Symbol("#evernote", Decl(arrayLiteralTooComplex.ts, 183, 39)) + + {texto: "#exalta", sentimento: -1, "#exalta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 184, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 184, 22)) +>"#exalta" : Symbol("#exalta", Decl(arrayLiteralTooComplex.ts, 184, 38)) + + {texto: "#expotch", sentimento: -1, "#expotch": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 185, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 185, 23)) +>"#expotch" : Symbol("#expotch", Decl(arrayLiteralTooComplex.ts, 185, 39)) + + {texto: "#facebook", sentimento: 1, "#facebook": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 186, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 186, 24)) +>"#facebook" : Symbol("#facebook", Decl(arrayLiteralTooComplex.ts, 186, 39)) + + {texto: "#fail", sentimento: -1, "#fail": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 187, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 187, 20)) +>"#fail" : Symbol("#fail", Decl(arrayLiteralTooComplex.ts, 187, 36)) + + {texto: "#faiooo", sentimento: -1, "#faiooo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 188, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 188, 22)) +>"#faiooo" : Symbol("#faiooo", Decl(arrayLiteralTooComplex.ts, 188, 38)) + + {texto: "#fascinante", sentimento: 1, "#fascinante": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 189, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 189, 26)) +>"#fascinante" : Symbol("#fascinante", Decl(arrayLiteralTooComplex.ts, 189, 41)) + + {texto: "#fashion", sentimento: -1, "#fashion": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 190, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 190, 23)) +>"#fashion" : Symbol("#fashion", Decl(arrayLiteralTooComplex.ts, 190, 39)) + + {texto: "#fato", sentimento: -1, "#fato": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 191, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 191, 20)) +>"#fato" : Symbol("#fato", Decl(arrayLiteralTooComplex.ts, 191, 36)) + + {texto: "#fb", sentimento: 1, "#fb": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 192, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 192, 18)) +>"#fb" : Symbol("#fb", Decl(arrayLiteralTooComplex.ts, 192, 33)) + + {texto: "#feil", sentimento: -1, "#feil": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 193, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 193, 20)) +>"#feil" : Symbol("#feil", Decl(arrayLiteralTooComplex.ts, 193, 36)) + + {texto: "#feio", sentimento: -1, "#feio": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 194, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 194, 20)) +>"#feio" : Symbol("#feio", Decl(arrayLiteralTooComplex.ts, 194, 36)) + + {texto: "#fertagus", sentimento: 1, "#fertagus": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 195, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 195, 24)) +>"#fertagus" : Symbol("#fertagus", Decl(arrayLiteralTooComplex.ts, 195, 39)) + + {texto: "#ff", sentimento: 1, "#ff": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 196, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 196, 18)) +>"#ff" : Symbol("#ff", Decl(arrayLiteralTooComplex.ts, 196, 33)) + + {texto: "#fibra", sentimento: -1, "#fibra": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 197, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 197, 21)) +>"#fibra" : Symbol("#fibra", Decl(arrayLiteralTooComplex.ts, 197, 37)) + + {texto: "#ficadica", sentimento: -1, "#ficadica": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 198, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 198, 24)) +>"#ficadica" : Symbol("#ficadica", Decl(arrayLiteralTooComplex.ts, 198, 40)) + + {texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 199, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 199, 32)) +>"#fidalidadesmiles" : Symbol("#fidalidadesmiles", Decl(arrayLiteralTooComplex.ts, 199, 48)) + + {texto: "#fifa11", sentimento: 1, "#fifa11": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 200, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 200, 22)) +>"#fifa11" : Symbol("#fifa11", Decl(arrayLiteralTooComplex.ts, 200, 37)) + + {texto: "#fikdik", sentimento: -1, "#fikdik": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 201, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 201, 22)) +>"#fikdik" : Symbol("#fikdik", Decl(arrayLiteralTooComplex.ts, 201, 38)) + + {texto: "#filha", sentimento: -1, "#filha": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 202, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 202, 21)) +>"#filha" : Symbol("#filha", Decl(arrayLiteralTooComplex.ts, 202, 37)) + + {texto: "#finishh", sentimento: 1, "#finishh": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 203, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 203, 23)) +>"#finishh" : Symbol("#finishh", Decl(arrayLiteralTooComplex.ts, 203, 38)) + + {texto: "#firefox", sentimento: 1, "#firefox": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 204, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 204, 23)) +>"#firefox" : Symbol("#firefox", Decl(arrayLiteralTooComplex.ts, 204, 38)) + + {texto: "#fisl", sentimento: 1, "#fisl": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 205, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 205, 20)) +>"#fisl" : Symbol("#fisl", Decl(arrayLiteralTooComplex.ts, 205, 35)) + + {texto: "#flash", sentimento: 1, "#flash": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 206, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 206, 21)) +>"#flash" : Symbol("#flash", Decl(arrayLiteralTooComplex.ts, 206, 36)) + + {texto: "#flopou", sentimento: -1, "#flopou": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 207, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 207, 22)) +>"#flopou" : Symbol("#flopou", Decl(arrayLiteralTooComplex.ts, 207, 38)) + + {texto: "#fodaa", sentimento: -1, "#fodaa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 208, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 208, 21)) +>"#fodaa" : Symbol("#fodaa", Decl(arrayLiteralTooComplex.ts, 208, 37)) + + {texto: "#fodao", sentimento: 1, "#fodao": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 209, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 209, 21)) +>"#fodao" : Symbol("#fodao", Decl(arrayLiteralTooComplex.ts, 209, 36)) + + {texto: "#fome", sentimento: 1, "#fome": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 210, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 210, 20)) +>"#fome" : Symbol("#fome", Decl(arrayLiteralTooComplex.ts, 210, 35)) + + {texto: "#foramicarla", sentimento: -1, "#foramicarla": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 211, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 211, 27)) +>"#foramicarla" : Symbol("#foramicarla", Decl(arrayLiteralTooComplex.ts, 211, 43)) + + {texto: "#forever", sentimento: 1, "#forever": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 212, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 212, 23)) +>"#forever" : Symbol("#forever", Decl(arrayLiteralTooComplex.ts, 212, 38)) + + {texto: "#foreveralone", sentimento: 1, "#foreveralone": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 213, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 213, 28)) +>"#foreveralone" : Symbol("#foreveralone", Decl(arrayLiteralTooComplex.ts, 213, 43)) + + {texto: "#forevergordo", sentimento: 1, "#forevergordo": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 214, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 214, 28)) +>"#forevergordo" : Symbol("#forevergordo", Decl(arrayLiteralTooComplex.ts, 214, 43)) + + {texto: "#fortaleza", sentimento: -1, "#fortaleza": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 215, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 215, 25)) +>"#fortaleza" : Symbol("#fortaleza", Decl(arrayLiteralTooComplex.ts, 215, 41)) + + {texto: "#frontinrio", sentimento: 1, "#frontinrio": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 216, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 216, 26)) +>"#frontinrio" : Symbol("#frontinrio", Decl(arrayLiteralTooComplex.ts, 216, 41)) + + {texto: "#fsoa", sentimento: 1, "#fsoa": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 217, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 217, 20)) +>"#fsoa" : Symbol("#fsoa", Decl(arrayLiteralTooComplex.ts, 217, 35)) + + {texto: "#fuckboy", sentimento: -1, "#fuckboy": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 218, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 218, 23)) +>"#fuckboy" : Symbol("#fuckboy", Decl(arrayLiteralTooComplex.ts, 218, 39)) + + {texto: "#fuckyea", sentimento: 1, "#fuckyea": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 219, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 219, 23)) +>"#fuckyea" : Symbol("#fuckyea", Decl(arrayLiteralTooComplex.ts, 219, 38)) + + {texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 220, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 220, 26)) +>"#fudeugeral" : Symbol("#fudeugeral", Decl(arrayLiteralTooComplex.ts, 220, 42)) + + {texto: "#funk", sentimento: -1, "#funk": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 221, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 221, 20)) +>"#funk" : Symbol("#funk", Decl(arrayLiteralTooComplex.ts, 221, 36)) + + {texto: "#gaga", sentimento: -1, "#gaga": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 222, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 222, 20)) +>"#gaga" : Symbol("#gaga", Decl(arrayLiteralTooComplex.ts, 222, 36)) + + {texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 223, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 223, 27)) +>"#galvaobueno" : Symbol("#galvaobueno", Decl(arrayLiteralTooComplex.ts, 223, 43)) + + {texto: "#gatos", sentimento: 1, "#gatos": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 224, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 224, 21)) +>"#gatos" : Symbol("#gatos", Decl(arrayLiteralTooComplex.ts, 224, 36)) + + {texto: "#generationteen", sentimento: -1, "#generationteen": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 225, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 225, 30)) +>"#generationteen" : Symbol("#generationteen", Decl(arrayLiteralTooComplex.ts, 225, 46)) + + {texto: "#gente", sentimento: -1, "#gente": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 226, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 226, 21)) +>"#gente" : Symbol("#gente", Decl(arrayLiteralTooComplex.ts, 226, 37)) + + {texto: "#genteque", sentimento: -1, "#genteque": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 227, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 227, 24)) +>"#genteque" : Symbol("#genteque", Decl(arrayLiteralTooComplex.ts, 227, 40)) + + {texto: "#ger", sentimento: -1, "#ger": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 228, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 228, 19)) +>"#ger" : Symbol("#ger", Decl(arrayLiteralTooComplex.ts, 228, 35)) + + {texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 229, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 229, 30)) +>"#giovanealmeida" : Symbol("#giovanealmeida", Decl(arrayLiteralTooComplex.ts, 229, 46)) + + {texto: "#gof9", sentimento: -1, "#gof9": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 230, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 230, 20)) +>"#gof9" : Symbol("#gof9", Decl(arrayLiteralTooComplex.ts, 230, 36)) + + {texto: "#gol", sentimento: 1, "#gol": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 231, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 231, 19)) +>"#gol" : Symbol("#gol", Decl(arrayLiteralTooComplex.ts, 231, 34)) + + {texto: "#golazo", sentimento: 1, "#golazo": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 232, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 232, 22)) +>"#golazo" : Symbol("#golazo", Decl(arrayLiteralTooComplex.ts, 232, 37)) + + {texto: "#google", sentimento: -1, "#google": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 233, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 233, 22)) +>"#google" : Symbol("#google", Decl(arrayLiteralTooComplex.ts, 233, 38)) + + {texto: "#googledoodle", sentimento: -1, "#googledoodle": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 234, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 234, 28)) +>"#googledoodle" : Symbol("#googledoodle", Decl(arrayLiteralTooComplex.ts, 234, 44)) + + {texto: "#gr", sentimento: -1, "#gr": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 235, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 235, 18)) +>"#gr" : Symbol("#gr", Decl(arrayLiteralTooComplex.ts, 235, 34)) + + {texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 236, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 236, 30)) +>"#graciasdiosito" : Symbol("#graciasdiosito", Decl(arrayLiteralTooComplex.ts, 236, 45)) + + {texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 237, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 237, 31)) +>"#grandesmentiras" : Symbol("#grandesmentiras", Decl(arrayLiteralTooComplex.ts, 237, 47)) + + {texto: "#gremio", sentimento: -1, "#gremio": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 238, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 238, 22)) +>"#gremio" : Symbol("#gremio", Decl(arrayLiteralTooComplex.ts, 238, 38)) + + {texto: "#guanabara", sentimento: 1, "#guanabara": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 239, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 239, 25)) +>"#guanabara" : Symbol("#guanabara", Decl(arrayLiteralTooComplex.ts, 239, 40)) + + {texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 240, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 240, 27)) +>"#guardomagoa" : Symbol("#guardomagoa", Decl(arrayLiteralTooComplex.ts, 240, 42)) + + {texto: "#guicostnn", sentimento: -1, "#guicostnn": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 241, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 241, 25)) +>"#guicostnn" : Symbol("#guicostnn", Decl(arrayLiteralTooComplex.ts, 241, 41)) + + {texto: "#harrypobre", sentimento: 1, "#harrypobre": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 242, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 242, 26)) +>"#harrypobre" : Symbol("#harrypobre", Decl(arrayLiteralTooComplex.ts, 242, 41)) + + {texto: "#hi5", sentimento: 1, "#hi5": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 243, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 243, 19)) +>"#hi5" : Symbol("#hi5", Decl(arrayLiteralTooComplex.ts, 243, 34)) + + {texto: "#historia", sentimento: -1, "#historia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 244, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 244, 24)) +>"#historia" : Symbol("#historia", Decl(arrayLiteralTooComplex.ts, 244, 40)) + + {texto: "#horacerta", sentimento: -1, "#horacerta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 245, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 245, 25)) +>"#horacerta" : Symbol("#horacerta", Decl(arrayLiteralTooComplex.ts, 245, 41)) + + {texto: "#hotmail", sentimento: -1, "#hotmail": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 246, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 246, 23)) +>"#hotmail" : Symbol("#hotmail", Decl(arrayLiteralTooComplex.ts, 246, 39)) + + {texto: "#html5", sentimento: 1, "#html5": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 247, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 247, 21)) +>"#html5" : Symbol("#html5", Decl(arrayLiteralTooComplex.ts, 247, 36)) + + {texto: "#humornegro", sentimento: 1, "#humornegro": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 248, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 248, 26)) +>"#humornegro" : Symbol("#humornegro", Decl(arrayLiteralTooComplex.ts, 248, 41)) + + {texto: "#icwd", sentimento: 1, "#icwd": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 249, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 249, 20)) +>"#icwd" : Symbol("#icwd", Decl(arrayLiteralTooComplex.ts, 249, 35)) + + {texto: "#ie", sentimento: 1, "#ie": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 250, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 250, 18)) +>"#ie" : Symbol("#ie", Decl(arrayLiteralTooComplex.ts, 250, 33)) + + {texto: "#ifce", sentimento: -1, "#ifce": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 251, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 251, 20)) +>"#ifce" : Symbol("#ifce", Decl(arrayLiteralTooComplex.ts, 251, 36)) + + {texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 252, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 252, 28)) +>"#ifdesenvolve" : Symbol("#ifdesenvolve", Decl(arrayLiteralTooComplex.ts, 252, 44)) + + {texto: "#imagens", sentimento: 1, "#imagens": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 253, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 253, 23)) +>"#imagens" : Symbol("#imagens", Decl(arrayLiteralTooComplex.ts, 253, 38)) + + {texto: "#infancia", sentimento: 1, "#infancia": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 254, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 254, 24)) +>"#infancia" : Symbol("#infancia", Decl(arrayLiteralTooComplex.ts, 254, 39)) + + {texto: "#infografia", sentimento: 1, "#infografia": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 255, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 255, 26)) +>"#infografia" : Symbol("#infografia", Decl(arrayLiteralTooComplex.ts, 255, 41)) + + {texto: "#inlove", sentimento: 1, "#inlove": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 256, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 256, 22)) +>"#inlove" : Symbol("#inlove", Decl(arrayLiteralTooComplex.ts, 256, 37)) + + {texto: "#insensatos2", sentimento: -1, "#insensatos2": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 257, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 257, 27)) +>"#insensatos2" : Symbol("#insensatos2", Decl(arrayLiteralTooComplex.ts, 257, 43)) + + {texto: "#internetbanking", sentimento: -1, "#internetbanking": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 258, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 258, 31)) +>"#internetbanking" : Symbol("#internetbanking", Decl(arrayLiteralTooComplex.ts, 258, 47)) + + {texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 259, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 259, 32)) +>"#interpolnobrasil" : Symbol("#interpolnobrasil", Decl(arrayLiteralTooComplex.ts, 259, 48)) + + {texto: "#intersystem", sentimento: -1, "#intersystem": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 260, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 260, 27)) +>"#intersystem" : Symbol("#intersystem", Decl(arrayLiteralTooComplex.ts, 260, 43)) + + {texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 261, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 261, 33)) +>"#intimatelybeckham" : Symbol("#intimatelybeckham", Decl(arrayLiteralTooComplex.ts, 261, 48)) + + {texto: "#ios5", sentimento: 1, "#ios5": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 262, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 262, 20)) +>"#ios5" : Symbol("#ios5", Decl(arrayLiteralTooComplex.ts, 262, 35)) + + {texto: "#itau", sentimento: -1, "#itau": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 263, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 263, 20)) +>"#itau" : Symbol("#itau", Decl(arrayLiteralTooComplex.ts, 263, 36)) + + {texto: "#j", sentimento: -1, "#j": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 264, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 264, 17)) +>"#j" : Symbol("#j", Decl(arrayLiteralTooComplex.ts, 264, 33)) + + {texto: "#jam", sentimento: -1, "#jam": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 265, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 265, 19)) +>"#jam" : Symbol("#jam", Decl(arrayLiteralTooComplex.ts, 265, 35)) + + {texto: "#jantar", sentimento: 1, "#jantar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 266, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 266, 22)) +>"#jantar" : Symbol("#jantar", Decl(arrayLiteralTooComplex.ts, 266, 37)) + + {texto: "#jaspion", sentimento: 1, "#jaspion": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 267, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 267, 23)) +>"#jaspion" : Symbol("#jaspion", Decl(arrayLiteralTooComplex.ts, 267, 38)) + + {texto: "#jesse", sentimento: 1, "#jesse": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 268, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 268, 21)) +>"#jesse" : Symbol("#jesse", Decl(arrayLiteralTooComplex.ts, 268, 36)) + + {texto: "#jim", sentimento: 1, "#jim": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 269, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 269, 19)) +>"#jim" : Symbol("#jim", Decl(arrayLiteralTooComplex.ts, 269, 34)) + + {texto: "#joomla", sentimento: -1, "#joomla": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 270, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 270, 22)) +>"#joomla" : Symbol("#joomla", Decl(arrayLiteralTooComplex.ts, 270, 38)) + + {texto: "#josatan", sentimento: 1, "#josatan": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 271, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 271, 23)) +>"#josatan" : Symbol("#josatan", Decl(arrayLiteralTooComplex.ts, 271, 38)) + + {texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 272, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 272, 27)) +>"#juevesfeliz" : Symbol("#juevesfeliz", Decl(arrayLiteralTooComplex.ts, 272, 42)) + + {texto: "#jumbo", sentimento: 1, "#jumbo": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 273, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 273, 21)) +>"#jumbo" : Symbol("#jumbo", Decl(arrayLiteralTooComplex.ts, 273, 36)) + + {texto: "#kevin", sentimento: -1, "#kevin": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 274, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 274, 21)) +>"#kevin" : Symbol("#kevin", Decl(arrayLiteralTooComplex.ts, 274, 37)) + + {texto: "#lance", sentimento: 1, "#lance": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 275, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 275, 21)) +>"#lance" : Symbol("#lance", Decl(arrayLiteralTooComplex.ts, 275, 36)) + + {texto: "#le", sentimento: 1, "#le": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 276, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 276, 18)) +>"#le" : Symbol("#le", Decl(arrayLiteralTooComplex.ts, 276, 33)) + + {texto: "#leticia", sentimento: -1, "#leticia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 277, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 277, 23)) +>"#leticia" : Symbol("#leticia", Decl(arrayLiteralTooComplex.ts, 277, 39)) + + {texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 278, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 278, 24)) +>"#lifebuoy" : Symbol("#lifebuoy", Decl(arrayLiteralTooComplex.ts, 278, 40)) + + {texto: "#lindo", sentimento: 1, "#lindo": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 279, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 279, 21)) +>"#lindo" : Symbol("#lindo", Decl(arrayLiteralTooComplex.ts, 279, 36)) + + {texto: "#linux", sentimento: 1, "#linux": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 280, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 280, 21)) +>"#linux" : Symbol("#linux", Decl(arrayLiteralTooComplex.ts, 280, 36)) + + {texto: "#lion", sentimento: 1, "#lion": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 281, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 281, 20)) +>"#lion" : Symbol("#lion", Decl(arrayLiteralTooComplex.ts, 281, 35)) + + {texto: "#lixo", sentimento: -1, "#lixo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 282, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 282, 20)) +>"#lixo" : Symbol("#lixo", Decl(arrayLiteralTooComplex.ts, 282, 36)) + + {texto: "#lixofonica", sentimento: -1, "#lixofonica": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 283, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 283, 26)) +>"#lixofonica" : Symbol("#lixofonica", Decl(arrayLiteralTooComplex.ts, 283, 42)) + + {texto: "#lol", sentimento: -1, "#lol": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 284, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 284, 19)) +>"#lol" : Symbol("#lol", Decl(arrayLiteralTooComplex.ts, 284, 35)) + + {texto: "#looser", sentimento: 1, "#looser": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 285, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 285, 22)) +>"#looser" : Symbol("#looser", Decl(arrayLiteralTooComplex.ts, 285, 37)) + + {texto: "#luansantana", sentimento: -1, "#luansantana": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 286, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 286, 27)) +>"#luansantana" : Symbol("#luansantana", Decl(arrayLiteralTooComplex.ts, 286, 43)) + + {texto: "#lucasednir", sentimento: -1, "#lucasednir": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 287, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 287, 26)) +>"#lucasednir" : Symbol("#lucasednir", Decl(arrayLiteralTooComplex.ts, 287, 42)) + + {texto: "#mac", sentimento: -1, "#mac": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 288, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 288, 19)) +>"#mac" : Symbol("#mac", Decl(arrayLiteralTooComplex.ts, 288, 35)) + + {texto: "#maconha", sentimento: -1, "#maconha": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 289, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 289, 23)) +>"#maconha" : Symbol("#maconha", Decl(arrayLiteralTooComplex.ts, 289, 39)) + + {texto: "#madvma", sentimento: -1, "#madvma": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 290, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 290, 22)) +>"#madvma" : Symbol("#madvma", Decl(arrayLiteralTooComplex.ts, 290, 38)) + + {texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 291, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 291, 29)) +>"#magazineluiza" : Symbol("#magazineluiza", Decl(arrayLiteralTooComplex.ts, 291, 45)) + + {texto: "#magnocentro", sentimento: -1, "#magnocentro": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 292, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 292, 27)) +>"#magnocentro" : Symbol("#magnocentro", Decl(arrayLiteralTooComplex.ts, 292, 43)) + + {texto: "#malha", sentimento: -1, "#malha": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 293, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 293, 21)) +>"#malha" : Symbol("#malha", Decl(arrayLiteralTooComplex.ts, 293, 37)) + + {texto: "#manaus", sentimento: 1, "#manaus": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 294, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 294, 22)) +>"#manaus" : Symbol("#manaus", Decl(arrayLiteralTooComplex.ts, 294, 37)) + + {texto: "#mariabethania", sentimento: -1, "#mariabethania": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 295, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 295, 29)) +>"#mariabethania" : Symbol("#mariabethania", Decl(arrayLiteralTooComplex.ts, 295, 45)) + + {texto: "#marisa", sentimento: -1, "#marisa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 296, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 296, 22)) +>"#marisa" : Symbol("#marisa", Decl(arrayLiteralTooComplex.ts, 296, 38)) + + {texto: "#may", sentimento: -1, "#may": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 297, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 297, 19)) +>"#may" : Symbol("#may", Decl(arrayLiteralTooComplex.ts, 297, 35)) + + {texto: "#mecaga", sentimento: -1, "#mecaga": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 298, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 298, 22)) +>"#mecaga" : Symbol("#mecaga", Decl(arrayLiteralTooComplex.ts, 298, 38)) + + {texto: "#megalagana", sentimento: 1, "#megalagana": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 299, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 299, 26)) +>"#megalagana" : Symbol("#megalagana", Decl(arrayLiteralTooComplex.ts, 299, 41)) + + {texto: "#megasena", sentimento: 1, "#megasena": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 300, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 300, 24)) +>"#megasena" : Symbol("#megasena", Decl(arrayLiteralTooComplex.ts, 300, 39)) + + {texto: "#melhores", sentimento: 1, "#melhores": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 301, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 301, 24)) +>"#melhores" : Symbol("#melhores", Decl(arrayLiteralTooComplex.ts, 301, 39)) + + {texto: "#melissa", sentimento: -1, "#melissa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 302, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 302, 23)) +>"#melissa" : Symbol("#melissa", Decl(arrayLiteralTooComplex.ts, 302, 39)) + + {texto: "#melissahorn", sentimento: 1, "#melissahorn": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 303, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 303, 27)) +>"#melissahorn" : Symbol("#melissahorn", Decl(arrayLiteralTooComplex.ts, 303, 42)) + + {texto: "#memolesta", sentimento: -1, "#memolesta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 304, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 304, 25)) +>"#memolesta" : Symbol("#memolesta", Decl(arrayLiteralTooComplex.ts, 304, 41)) + + {texto: "#metrosp", sentimento: -1, "#metrosp": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 305, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 305, 23)) +>"#metrosp" : Symbol("#metrosp", Decl(arrayLiteralTooComplex.ts, 305, 39)) + + {texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 306, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 306, 25)) +>"#meuchapeu" : Symbol("#meuchapeu", Decl(arrayLiteralTooComplex.ts, 306, 41)) + + {texto: "#meusonho", sentimento: -1, "#meusonho": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 307, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 307, 24)) +>"#meusonho" : Symbol("#meusonho", Decl(arrayLiteralTooComplex.ts, 307, 40)) + + {texto: "#microsoft", sentimento: -1, "#microsoft": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 308, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 308, 25)) +>"#microsoft" : Symbol("#microsoft", Decl(arrayLiteralTooComplex.ts, 308, 41)) + + {texto: "#mimimi", sentimento: 1, "#mimimi": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 309, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 309, 22)) +>"#mimimi" : Symbol("#mimimi", Decl(arrayLiteralTooComplex.ts, 309, 37)) + + {texto: "#mobile", sentimento: -1, "#mobile": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 310, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 310, 22)) +>"#mobile" : Symbol("#mobile", Decl(arrayLiteralTooComplex.ts, 310, 38)) + + {texto: "#mockery", sentimento: 1, "#mockery": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 311, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 311, 23)) +>"#mockery" : Symbol("#mockery", Decl(arrayLiteralTooComplex.ts, 311, 38)) + + {texto: "#mockito", sentimento: 1, "#mockito": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 312, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 312, 23)) +>"#mockito" : Symbol("#mockito", Decl(arrayLiteralTooComplex.ts, 312, 38)) + + {texto: "#monografia", sentimento: -1, "#monografia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 313, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 313, 26)) +>"#monografia" : Symbol("#monografia", Decl(arrayLiteralTooComplex.ts, 313, 42)) + + {texto: "#montanagrill", sentimento: 1, "#montanagrill": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 314, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 314, 28)) +>"#montanagrill" : Symbol("#montanagrill", Decl(arrayLiteralTooComplex.ts, 314, 43)) + + {texto: "#monterrey", sentimento: -1, "#monterrey": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 315, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 315, 25)) +>"#monterrey" : Symbol("#monterrey", Decl(arrayLiteralTooComplex.ts, 315, 41)) + + {texto: "#morto", sentimento: -1, "#morto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 316, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 316, 21)) +>"#morto" : Symbol("#morto", Decl(arrayLiteralTooComplex.ts, 316, 37)) + + {texto: "#motos", sentimento: -1, "#motos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 317, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 317, 21)) +>"#motos" : Symbol("#motos", Decl(arrayLiteralTooComplex.ts, 317, 37)) + + {texto: "#movies", sentimento: 1, "#movies": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 318, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 318, 22)) +>"#movies" : Symbol("#movies", Decl(arrayLiteralTooComplex.ts, 318, 37)) + + {texto: "#msn", sentimento: -1, "#msn": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 319, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 319, 19)) +>"#msn" : Symbol("#msn", Decl(arrayLiteralTooComplex.ts, 319, 35)) + + {texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 320, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 320, 39)) +>"#mueremalditodesgraciado" : Symbol("#mueremalditodesgraciado", Decl(arrayLiteralTooComplex.ts, 320, 55)) + + {texto: "#myhero", sentimento: 1, "#myhero": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 321, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 321, 22)) +>"#myhero" : Symbol("#myhero", Decl(arrayLiteralTooComplex.ts, 321, 37)) + + {texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 322, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 322, 39)) +>"#nameyourpeniswithamovie" : Symbol("#nameyourpeniswithamovie", Decl(arrayLiteralTooComplex.ts, 322, 54)) + + {texto: "#naomais", sentimento: -1, "#naomais": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 323, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 323, 23)) +>"#naomais" : Symbol("#naomais", Decl(arrayLiteralTooComplex.ts, 323, 39)) + + {texto: "#nata", sentimento: -1, "#nata": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 324, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 324, 20)) +>"#nata" : Symbol("#nata", Decl(arrayLiteralTooComplex.ts, 324, 36)) + + {texto: "#nervoso", sentimento: 1, "#nervoso": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 325, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 325, 23)) +>"#nervoso" : Symbol("#nervoso", Decl(arrayLiteralTooComplex.ts, 325, 38)) + + {texto: "#net", sentimento: -1, "#net": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 326, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 326, 19)) +>"#net" : Symbol("#net", Decl(arrayLiteralTooComplex.ts, 326, 35)) + + {texto: "#netcombo", sentimento: -1, "#netcombo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 327, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 327, 24)) +>"#netcombo" : Symbol("#netcombo", Decl(arrayLiteralTooComplex.ts, 327, 40)) + + {texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 328, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 328, 28)) +>"#neymarcaicai" : Symbol("#neymarcaicai", Decl(arrayLiteralTooComplex.ts, 328, 43)) + + {texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 329, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 329, 25)) +>"#nhlnaespn" : Symbol("#nhlnaespn", Decl(arrayLiteralTooComplex.ts, 329, 41)) + + {texto: "#nomamar", sentimento: -1, "#nomamar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 330, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 330, 23)) +>"#nomamar" : Symbol("#nomamar", Decl(arrayLiteralTooComplex.ts, 330, 39)) + + {texto: "#not", sentimento: -1, "#not": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 331, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 331, 19)) +>"#not" : Symbol("#not", Decl(arrayLiteralTooComplex.ts, 331, 35)) + + {texto: "#oclone", sentimento: -1, "#oclone": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 332, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 332, 22)) +>"#oclone" : Symbol("#oclone", Decl(arrayLiteralTooComplex.ts, 332, 38)) + + {texto: "#oda", sentimento: -1, "#oda": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 333, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 333, 19)) +>"#oda" : Symbol("#oda", Decl(arrayLiteralTooComplex.ts, 333, 35)) + + {texto: "#odeio", sentimento: -1, "#odeio": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 334, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 334, 21)) +>"#odeio" : Symbol("#odeio", Decl(arrayLiteralTooComplex.ts, 334, 37)) + + {texto: "#oi", sentimento: -1, "#oi": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 335, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 335, 18)) +>"#oi" : Symbol("#oi", Decl(arrayLiteralTooComplex.ts, 335, 34)) + + {texto: "#old", sentimento: 1, "#old": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 336, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 336, 19)) +>"#old" : Symbol("#old", Decl(arrayLiteralTooComplex.ts, 336, 34)) + + {texto: "#omg", sentimento: -1, "#omg": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 337, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 337, 19)) +>"#omg" : Symbol("#omg", Decl(arrayLiteralTooComplex.ts, 337, 35)) + + {texto: "#opera", sentimento: 1, "#opera": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 338, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 338, 21)) +>"#opera" : Symbol("#opera", Decl(arrayLiteralTooComplex.ts, 338, 36)) + + {texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 339, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 339, 27)) +>"#orgulhoafro" : Symbol("#orgulhoafro", Decl(arrayLiteralTooComplex.ts, 339, 43)) + + {texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 340, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 340, 27)) +>"#orkutaovivo" : Symbol("#orkutaovivo", Decl(arrayLiteralTooComplex.ts, 340, 43)) + + {texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 341, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 341, 35)) +>"#oseducadosrespondem" : Symbol("#oseducadosrespondem", Decl(arrayLiteralTooComplex.ts, 341, 51)) + + {texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 342, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 342, 26)) +>"#ossimpsons" : Symbol("#ossimpsons", Decl(arrayLiteralTooComplex.ts, 342, 42)) + + {texto: "#pais", sentimento: -1, "#pais": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 343, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 343, 20)) +>"#pais" : Symbol("#pais", Decl(arrayLiteralTooComplex.ts, 343, 36)) + + {texto: "#palmeiras", sentimento: 1, "#palmeiras": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 344, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 344, 25)) +>"#palmeiras" : Symbol("#palmeiras", Decl(arrayLiteralTooComplex.ts, 344, 40)) + + {texto: "#palocci", sentimento: -1, "#palocci": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 345, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 345, 23)) +>"#palocci" : Symbol("#palocci", Decl(arrayLiteralTooComplex.ts, 345, 39)) + + {texto: "#panama", sentimento: 1, "#panama": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 346, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 346, 22)) +>"#panama" : Symbol("#panama", Decl(arrayLiteralTooComplex.ts, 346, 37)) + + {texto: "#panico", sentimento: 1, "#panico": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 347, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 347, 22)) +>"#panico" : Symbol("#panico", Decl(arrayLiteralTooComplex.ts, 347, 37)) + + {texto: "#parti", sentimento: -1, "#parti": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 348, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 348, 21)) +>"#parti" : Symbol("#parti", Decl(arrayLiteralTooComplex.ts, 348, 37)) + + {texto: "#partiu", sentimento: -1, "#partiu": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 349, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 349, 22)) +>"#partiu" : Symbol("#partiu", Decl(arrayLiteralTooComplex.ts, 349, 38)) + + {texto: "#patadeperro", sentimento: 1, "#patadeperro": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 350, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 350, 27)) +>"#patadeperro" : Symbol("#patadeperro", Decl(arrayLiteralTooComplex.ts, 350, 42)) + + {texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 351, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 351, 30)) +>"#paulafernandes" : Symbol("#paulafernandes", Decl(arrayLiteralTooComplex.ts, 351, 45)) + + {texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 352, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 352, 33)) +>"#peliculaspizzeras" : Symbol("#peliculaspizzeras", Decl(arrayLiteralTooComplex.ts, 352, 48)) + + {texto: "#photoshop", sentimento: -1, "#photoshop": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 353, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 353, 25)) +>"#photoshop" : Symbol("#photoshop", Decl(arrayLiteralTooComplex.ts, 353, 41)) + + {texto: "#php", sentimento: 1, "#php": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 354, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 354, 19)) +>"#php" : Symbol("#php", Decl(arrayLiteralTooComplex.ts, 354, 34)) + + {texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 355, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 355, 29)) +>"#piadasdacarol" : Symbol("#piadasdacarol", Decl(arrayLiteralTooComplex.ts, 355, 45)) + + {texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 356, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 356, 33)) +>"#piadassobrepiadas" : Symbol("#piadassobrepiadas", Decl(arrayLiteralTooComplex.ts, 356, 48)) + + {texto: "#planetmix", sentimento: -1, "#planetmix": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 357, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 357, 25)) +>"#planetmix" : Symbol("#planetmix", Decl(arrayLiteralTooComplex.ts, 357, 41)) + + {texto: "#plc122", sentimento: -1, "#plc122": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 358, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 358, 22)) +>"#plc122" : Symbol("#plc122", Decl(arrayLiteralTooComplex.ts, 358, 38)) + + {texto: "#plimplim", sentimento: -1, "#plimplim": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 359, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 359, 24)) +>"#plimplim" : Symbol("#plimplim", Decl(arrayLiteralTooComplex.ts, 359, 40)) + + {texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 360, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 360, 29)) +>"#pobrefeelings" : Symbol("#pobrefeelings", Decl(arrayLiteralTooComplex.ts, 360, 45)) + + {texto: "#poderir", sentimento: -1, "#poderir": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 361, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 361, 23)) +>"#poderir" : Symbol("#poderir", Decl(arrayLiteralTooComplex.ts, 361, 39)) + + {texto: "#pokemon", sentimento: -1, "#pokemon": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 362, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 362, 23)) +>"#pokemon" : Symbol("#pokemon", Decl(arrayLiteralTooComplex.ts, 362, 39)) + + {texto: "#polishop", sentimento: -1, "#polishop": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 363, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 363, 24)) +>"#polishop" : Symbol("#polishop", Decl(arrayLiteralTooComplex.ts, 363, 40)) + + {texto: "#politicagem", sentimento: -1, "#politicagem": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 364, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 364, 27)) +>"#politicagem" : Symbol("#politicagem", Decl(arrayLiteralTooComplex.ts, 364, 43)) + + {texto: "#polvilho", sentimento: -1, "#polvilho": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 365, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 365, 24)) +>"#polvilho" : Symbol("#polvilho", Decl(arrayLiteralTooComplex.ts, 365, 40)) + + {texto: "#popular", sentimento: -1, "#popular": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 366, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 366, 23)) +>"#popular" : Symbol("#popular", Decl(arrayLiteralTooComplex.ts, 366, 39)) + + {texto: "#poweroflove", sentimento: -1, "#poweroflove": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 367, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 367, 27)) +>"#poweroflove" : Symbol("#poweroflove", Decl(arrayLiteralTooComplex.ts, 367, 43)) + + {texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 368, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 368, 26)) +>"#poxagoogle" : Symbol("#poxagoogle", Decl(arrayLiteralTooComplex.ts, 368, 42)) + + {texto: "#pqp", sentimento: -1, "#pqp": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 369, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 369, 19)) +>"#pqp" : Symbol("#pqp", Decl(arrayLiteralTooComplex.ts, 369, 35)) + + {texto: "#prequi", sentimento: -1, "#prequi": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 370, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 370, 22)) +>"#prequi" : Symbol("#prequi", Decl(arrayLiteralTooComplex.ts, 370, 38)) + + {texto: "#profiss", sentimento: 1, "#profiss": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 371, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 371, 23)) +>"#profiss" : Symbol("#profiss", Decl(arrayLiteralTooComplex.ts, 371, 38)) + + {texto: "#programadojo", sentimento: -1, "#programadojo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 372, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 372, 28)) +>"#programadojo" : Symbol("#programadojo", Decl(arrayLiteralTooComplex.ts, 372, 44)) + + {texto: "#promo", sentimento: -1, "#promo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 373, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 373, 21)) +>"#promo" : Symbol("#promo", Decl(arrayLiteralTooComplex.ts, 373, 37)) + + {texto: "#prova", sentimento: -1, "#prova": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 374, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 374, 21)) +>"#prova" : Symbol("#prova", Decl(arrayLiteralTooComplex.ts, 374, 37)) + + {texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 375, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 375, 29)) +>"#pseudociencia" : Symbol("#pseudociencia", Decl(arrayLiteralTooComplex.ts, 375, 45)) + + {texto: "#ptt", sentimento: -1, "#ptt": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 376, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 376, 19)) +>"#ptt" : Symbol("#ptt", Decl(arrayLiteralTooComplex.ts, 376, 35)) + + {texto: "#pucrs", sentimento: -1, "#pucrs": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 377, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 377, 21)) +>"#pucrs" : Symbol("#pucrs", Decl(arrayLiteralTooComplex.ts, 377, 37)) + + {texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 378, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 378, 36)) +>"#putafaltadesacanagem" : Symbol("#putafaltadesacanagem", Decl(arrayLiteralTooComplex.ts, 378, 52)) + + {texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 379, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 379, 28)) +>"#putaquepariu" : Symbol("#putaquepariu", Decl(arrayLiteralTooComplex.ts, 379, 44)) + + {texto: "#qbomne", sentimento: -1, "#qbomne": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 380, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 380, 22)) +>"#qbomne" : Symbol("#qbomne", Decl(arrayLiteralTooComplex.ts, 380, 38)) + + {texto: "#qconsp", sentimento: 1, "#qconsp": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 381, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 381, 22)) +>"#qconsp" : Symbol("#qconsp", Decl(arrayLiteralTooComplex.ts, 381, 37)) + + {texto: "#quefasehein", sentimento: -1, "#quefasehein": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 382, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 382, 27)) +>"#quefasehein" : Symbol("#quefasehein", Decl(arrayLiteralTooComplex.ts, 382, 43)) + + {texto: "#quepena", sentimento: -1, "#quepena": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 383, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 383, 23)) +>"#quepena" : Symbol("#quepena", Decl(arrayLiteralTooComplex.ts, 383, 39)) + + {texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 384, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 384, 28)) +>"#quitesmoking" : Symbol("#quitesmoking", Decl(arrayLiteralTooComplex.ts, 384, 43)) + + {texto: "#quiz", sentimento: 1, "#quiz": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 385, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 385, 20)) +>"#quiz" : Symbol("#quiz", Decl(arrayLiteralTooComplex.ts, 385, 35)) + + {texto: "#ramon", sentimento: -1, "#ramon": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 386, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 386, 21)) +>"#ramon" : Symbol("#ramon", Decl(arrayLiteralTooComplex.ts, 386, 37)) + + {texto: "#receba", sentimento: -1, "#receba": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 387, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 387, 22)) +>"#receba" : Symbol("#receba", Decl(arrayLiteralTooComplex.ts, 387, 38)) + + {texto: "#reclame", sentimento: 1, "#reclame": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 388, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 388, 23)) +>"#reclame" : Symbol("#reclame", Decl(arrayLiteralTooComplex.ts, 388, 38)) + + {texto: "#redeglobo", sentimento: -1, "#redeglobo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 389, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 389, 25)) +>"#redeglobo" : Symbol("#redeglobo", Decl(arrayLiteralTooComplex.ts, 389, 41)) + + {texto: "#referendum", sentimento: -1, "#referendum": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 390, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 390, 26)) +>"#referendum" : Symbol("#referendum", Decl(arrayLiteralTooComplex.ts, 390, 42)) + + {texto: "#referendum2011", sentimento: -1, "#referendum2011": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 391, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 391, 30)) +>"#referendum2011" : Symbol("#referendum2011", Decl(arrayLiteralTooComplex.ts, 391, 46)) + + {texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 392, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 392, 31)) +>"#refugiodosanjos" : Symbol("#refugiodosanjos", Decl(arrayLiteralTooComplex.ts, 392, 46)) + + {texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 393, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 393, 30)) +>"#reginaldorossi" : Symbol("#reginaldorossi", Decl(arrayLiteralTooComplex.ts, 393, 46)) + + {texto: "#revendatim", sentimento: -1, "#revendatim": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 394, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 394, 26)) +>"#revendatim" : Symbol("#revendatim", Decl(arrayLiteralTooComplex.ts, 394, 42)) + + {texto: "#reynosa", sentimento: -1, "#reynosa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 395, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 395, 23)) +>"#reynosa" : Symbol("#reynosa", Decl(arrayLiteralTooComplex.ts, 395, 39)) + + {texto: "#riovermelho", sentimento: -1, "#riovermelho": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 396, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 396, 27)) +>"#riovermelho" : Symbol("#riovermelho", Decl(arrayLiteralTooComplex.ts, 396, 43)) + + {texto: "#riverplate", sentimento: 1, "#riverplate": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 397, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 397, 26)) +>"#riverplate" : Symbol("#riverplate", Decl(arrayLiteralTooComplex.ts, 397, 41)) + + {texto: "#rockrio", sentimento: -1, "#rockrio": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 398, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 398, 23)) +>"#rockrio" : Symbol("#rockrio", Decl(arrayLiteralTooComplex.ts, 398, 39)) + + {texto: "#s", sentimento: -1, "#s": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 399, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 399, 17)) +>"#s" : Symbol("#s", Decl(arrayLiteralTooComplex.ts, 399, 33)) + + {texto: "#sabado", sentimento: 1, "#sabado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 400, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 400, 22)) +>"#sabado" : Symbol("#sabado", Decl(arrayLiteralTooComplex.ts, 400, 37)) + + {texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 401, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 401, 34)) +>"#sabesqueestasgordo" : Symbol("#sabesqueestasgordo", Decl(arrayLiteralTooComplex.ts, 401, 50)) + + {texto: "#safari", sentimento: 1, "#safari": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 402, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 402, 22)) +>"#safari" : Symbol("#safari", Decl(arrayLiteralTooComplex.ts, 402, 37)) + + {texto: "#samsung", sentimento: -1, "#samsung": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 403, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 403, 23)) +>"#samsung" : Symbol("#samsung", Decl(arrayLiteralTooComplex.ts, 403, 39)) + + {texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 404, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 404, 34)) +>"#sanantoniodecabeza" : Symbol("#sanantoniodecabeza", Decl(arrayLiteralTooComplex.ts, 404, 50)) + + {texto: "#santoantonio", sentimento: -1, "#santoantonio": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 405, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 405, 28)) +>"#santoantonio" : Symbol("#santoantonio", Decl(arrayLiteralTooComplex.ts, 405, 44)) + + {texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 406, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 406, 26)) +>"#sapevatelo" : Symbol("#sapevatelo", Decl(arrayLiteralTooComplex.ts, 406, 42)) + + {texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 407, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 407, 41)) +>"#seladygagafossebrasileira" : Symbol("#seladygagafossebrasileira", Decl(arrayLiteralTooComplex.ts, 407, 57)) + + {texto: "#semata", sentimento: -1, "#semata": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 408, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 408, 22)) +>"#semata" : Symbol("#semata", Decl(arrayLiteralTooComplex.ts, 408, 38)) + + {texto: "#seo", sentimento: 0, "#seo": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 409, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 409, 19)) +>"#seo" : Symbol("#seo", Decl(arrayLiteralTooComplex.ts, 409, 34)) + + {texto: "#seomoz", sentimento: 1, "#seomoz": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 410, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 410, 22)) +>"#seomoz" : Symbol("#seomoz", Decl(arrayLiteralTooComplex.ts, 410, 37)) + + {texto: "#ser", sentimento: -1, "#ser": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 411, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 411, 19)) +>"#ser" : Symbol("#ser", Decl(arrayLiteralTooComplex.ts, 411, 35)) + + {texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 412, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 412, 34)) +>"#serepitelahistoria" : Symbol("#serepitelahistoria", Decl(arrayLiteralTooComplex.ts, 412, 49)) + + {texto: "#sga", sentimento: -1, "#sga": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 413, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 413, 19)) +>"#sga" : Symbol("#sga", Decl(arrayLiteralTooComplex.ts, 413, 35)) + + {texto: "#sic", sentimento: 1, "#sic": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 414, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 414, 19)) +>"#sic" : Symbol("#sic", Decl(arrayLiteralTooComplex.ts, 414, 34)) + + {texto: "#sigam", sentimento: -1, "#sigam": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 415, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 415, 21)) +>"#sigam" : Symbol("#sigam", Decl(arrayLiteralTooComplex.ts, 415, 37)) + + {texto: "#signos", sentimento: -1, "#signos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 416, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 416, 22)) +>"#signos" : Symbol("#signos", Decl(arrayLiteralTooComplex.ts, 416, 38)) + + {texto: "#signout", sentimento: -1, "#signout": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 417, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 417, 23)) +>"#signout" : Symbol("#signout", Decl(arrayLiteralTooComplex.ts, 417, 39)) + + {texto: "#site", sentimento: -1, "#site": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 418, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 418, 20)) +>"#site" : Symbol("#site", Decl(arrayLiteralTooComplex.ts, 418, 36)) + + {texto: "#smiles", sentimento: -1, "#smiles": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 419, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 419, 22)) +>"#smiles" : Symbol("#smiles", Decl(arrayLiteralTooComplex.ts, 419, 38)) + + {texto: "#sms", sentimento: -1, "#sms": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 420, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 420, 19)) +>"#sms" : Symbol("#sms", Decl(arrayLiteralTooComplex.ts, 420, 35)) + + {texto: "#sogra", sentimento: -1, "#sogra": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 421, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 421, 21)) +>"#sogra" : Symbol("#sogra", Decl(arrayLiteralTooComplex.ts, 421, 37)) + + {texto: "#sono", sentimento: -1, "#sono": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 422, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 422, 20)) +>"#sono" : Symbol("#sono", Decl(arrayLiteralTooComplex.ts, 422, 36)) + + {texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 423, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 423, 28)) +>"#sonyericsson" : Symbol("#sonyericsson", Decl(arrayLiteralTooComplex.ts, 423, 44)) + + {texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 424, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 424, 29)) +>"#sorteiomanual" : Symbol("#sorteiomanual", Decl(arrayLiteralTooComplex.ts, 424, 45)) + + {texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 425, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 425, 28)) +>"#sosbombeiros" : Symbol("#sosbombeiros", Decl(arrayLiteralTooComplex.ts, 425, 44)) + + {texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 426, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 426, 25)) +>"#soumaiseu" : Symbol("#soumaiseu", Decl(arrayLiteralTooComplex.ts, 426, 40)) + + {texto: "#soyadicto", sentimento: 1, "#soyadicto": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 427, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 427, 25)) +>"#soyadicto" : Symbol("#soyadicto", Decl(arrayLiteralTooComplex.ts, 427, 40)) + + {texto: "#speed", sentimento: -1, "#speed": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 428, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 428, 21)) +>"#speed" : Symbol("#speed", Decl(arrayLiteralTooComplex.ts, 428, 37)) + + {texto: "#speedy", sentimento: -1, "#speedy": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 429, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 429, 22)) +>"#speedy" : Symbol("#speedy", Decl(arrayLiteralTooComplex.ts, 429, 38)) + + {texto: "#spotv", sentimento: -1, "#spotv": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 430, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 430, 21)) +>"#spotv" : Symbol("#spotv", Decl(arrayLiteralTooComplex.ts, 430, 37)) + + {texto: "#submarino", sentimento: -1, "#submarino": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 431, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 431, 25)) +>"#submarino" : Symbol("#submarino", Decl(arrayLiteralTooComplex.ts, 431, 41)) + + {texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 432, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 432, 26)) +>"#tadimdemim" : Symbol("#tadimdemim", Decl(arrayLiteralTooComplex.ts, 432, 42)) + + {texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 433, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 433, 25)) +>"#taxiamigo" : Symbol("#taxiamigo", Decl(arrayLiteralTooComplex.ts, 433, 40)) + + {texto: "#tcc", sentimento: 1, "#tcc": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 434, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 434, 19)) +>"#tcc" : Symbol("#tcc", Decl(arrayLiteralTooComplex.ts, 434, 34)) + + {texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 435, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 435, 30)) +>"#teamfollowback" : Symbol("#teamfollowback", Decl(arrayLiteralTooComplex.ts, 435, 46)) + + {texto: "#teamo", sentimento: -1, "#teamo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 436, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 436, 21)) +>"#teamo" : Symbol("#teamo", Decl(arrayLiteralTooComplex.ts, 436, 37)) + + {texto: "#tecnologia", sentimento: 1, "#tecnologia": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 437, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 437, 26)) +>"#tecnologia" : Symbol("#tecnologia", Decl(arrayLiteralTooComplex.ts, 437, 41)) + + {texto: "#telaquente", sentimento: -1, "#telaquente": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 438, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 438, 26)) +>"#telaquente" : Symbol("#telaquente", Decl(arrayLiteralTooComplex.ts, 438, 42)) + + {texto: "#telefoncia", sentimento: -1, "#telefoncia": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 439, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 439, 26)) +>"#telefoncia" : Symbol("#telefoncia", Decl(arrayLiteralTooComplex.ts, 439, 42)) + + {texto: "#telefonica", sentimento: -1, "#telefonica": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 440, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 440, 26)) +>"#telefonica" : Symbol("#telefonica", Decl(arrayLiteralTooComplex.ts, 440, 42)) + + {texto: "#tenso", sentimento: -1, "#tenso": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 441, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 441, 21)) +>"#tenso" : Symbol("#tenso", Decl(arrayLiteralTooComplex.ts, 441, 37)) + + {texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 442, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 442, 29)) +>"#thaismaracorr" : Symbol("#thaismaracorr", Decl(arrayLiteralTooComplex.ts, 442, 45)) + + {texto: "#ti", sentimento: -1, "#ti": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 443, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 443, 18)) +>"#ti" : Symbol("#ti", Decl(arrayLiteralTooComplex.ts, 443, 34)) + + {texto: "#tim", sentimento: -1, "#tim": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 444, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 444, 19)) +>"#tim" : Symbol("#tim", Decl(arrayLiteralTooComplex.ts, 444, 35)) + + {texto: "#time", sentimento: -1, "#time": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 445, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 445, 20)) +>"#time" : Symbol("#time", Decl(arrayLiteralTooComplex.ts, 445, 36)) + + {texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 446, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 446, 32)) +>"#todayillbesimple" : Symbol("#todayillbesimple", Decl(arrayLiteralTooComplex.ts, 446, 48)) + + {texto: "#todosadora", sentimento: -1, "#todosadora": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 447, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 447, 26)) +>"#todosadora" : Symbol("#todosadora", Decl(arrayLiteralTooComplex.ts, 447, 42)) + + {texto: "#topfive", sentimento: -1, "#topfive": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 448, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 448, 23)) +>"#topfive" : Symbol("#topfive", Decl(arrayLiteralTooComplex.ts, 448, 39)) + + {texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 449, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 449, 32)) +>"#tosempiquenenhum" : Symbol("#tosempiquenenhum", Decl(arrayLiteralTooComplex.ts, 449, 48)) + + {texto: "#totalyfail", sentimento: -1, "#totalyfail": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 450, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 450, 26)) +>"#totalyfail" : Symbol("#totalyfail", Decl(arrayLiteralTooComplex.ts, 450, 42)) + + {texto: "#tps", sentimento: -1, "#tps": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 451, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 451, 19)) +>"#tps" : Symbol("#tps", Decl(arrayLiteralTooComplex.ts, 451, 35)) + + {texto: "#transitosp", sentimento: -1, "#transitosp": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 452, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 452, 26)) +>"#transitosp" : Symbol("#transitosp", Decl(arrayLiteralTooComplex.ts, 452, 42)) + + {texto: "#travelmug", sentimento: 1, "#travelmug": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 453, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 453, 25)) +>"#travelmug" : Symbol("#travelmug", Decl(arrayLiteralTooComplex.ts, 453, 40)) + + {texto: "#travelw", sentimento: -1, "#travelw": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 454, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 454, 23)) +>"#travelw" : Symbol("#travelw", Decl(arrayLiteralTooComplex.ts, 454, 39)) + + {texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 455, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 455, 29)) +>"#trecho15reais" : Symbol("#trecho15reais", Decl(arrayLiteralTooComplex.ts, 455, 45)) + + {texto: "#treinaweb", sentimento: -1, "#treinaweb": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 456, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 456, 25)) +>"#treinaweb" : Symbol("#treinaweb", Decl(arrayLiteralTooComplex.ts, 456, 41)) + + {texto: "#trollar", sentimento: -1, "#trollar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 457, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 457, 23)) +>"#trollar" : Symbol("#trollar", Decl(arrayLiteralTooComplex.ts, 457, 39)) + + {texto: "#trote", sentimento: -1, "#trote": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 458, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 458, 21)) +>"#trote" : Symbol("#trote", Decl(arrayLiteralTooComplex.ts, 458, 37)) + + {texto: "#true", sentimento: 1, "#true": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 459, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 459, 20)) +>"#true" : Symbol("#true", Decl(arrayLiteralTooComplex.ts, 459, 35)) + + {texto: "#tvi", sentimento: 1, "#tvi": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 460, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 460, 19)) +>"#tvi" : Symbol("#tvi", Decl(arrayLiteralTooComplex.ts, 460, 34)) + + {texto: "#twitcam", sentimento: -1, "#twitcam": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 461, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 461, 23)) +>"#twitcam" : Symbol("#twitcam", Decl(arrayLiteralTooComplex.ts, 461, 39)) + + {texto: "#twittcam", sentimento: -1, "#twittcam": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 462, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 462, 24)) +>"#twittcam" : Symbol("#twittcam", Decl(arrayLiteralTooComplex.ts, 462, 40)) + + {texto: "#twitter", sentimento: -1, "#twitter": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 463, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 463, 23)) +>"#twitter" : Symbol("#twitter", Decl(arrayLiteralTooComplex.ts, 463, 39)) + + {texto: "#uenf", sentimento: 1, "#uenf": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 464, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 464, 20)) +>"#uenf" : Symbol("#uenf", Decl(arrayLiteralTooComplex.ts, 464, 35)) + + {texto: "#unesp", sentimento: -1, "#unesp": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 465, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 465, 21)) +>"#unesp" : Symbol("#unesp", Decl(arrayLiteralTooComplex.ts, 465, 37)) + + {texto: "#uni", sentimento: -1, "#uni": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 466, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 466, 19)) +>"#uni" : Symbol("#uni", Decl(arrayLiteralTooComplex.ts, 466, 35)) + + {texto: "#unico", sentimento: -1, "#unico": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 467, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 467, 21)) +>"#unico" : Symbol("#unico", Decl(arrayLiteralTooComplex.ts, 467, 37)) + + {texto: "#unip", sentimento: -1, "#unip": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 468, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 468, 20)) +>"#unip" : Symbol("#unip", Decl(arrayLiteralTooComplex.ts, 468, 36)) + + {texto: "#v", sentimento: -1, "#v": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 469, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 469, 17)) +>"#v" : Symbol("#v", Decl(arrayLiteralTooComplex.ts, 469, 33)) + + {texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 470, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 470, 27)) +>"#vaisonhando" : Symbol("#vaisonhando", Decl(arrayLiteralTooComplex.ts, 470, 42)) + + {texto: "#valdir", sentimento: -1, "#valdir": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 471, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 471, 22)) +>"#valdir" : Symbol("#valdir", Decl(arrayLiteralTooComplex.ts, 471, 38)) + + {texto: "#valetudo", sentimento: -1, "#valetudo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 472, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 472, 24)) +>"#valetudo" : Symbol("#valetudo", Decl(arrayLiteralTooComplex.ts, 472, 40)) + + {texto: "#valeurge", sentimento: -1, "#valeurge": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 473, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 473, 24)) +>"#valeurge" : Symbol("#valeurge", Decl(arrayLiteralTooComplex.ts, 473, 40)) + + {texto: "#vamp", sentimento: -1, "#vamp": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 474, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 474, 20)) +>"#vamp" : Symbol("#vamp", Decl(arrayLiteralTooComplex.ts, 474, 36)) + + {texto: "#vdm", sentimento: -1, "#vdm": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 475, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 475, 19)) +>"#vdm" : Symbol("#vdm", Decl(arrayLiteralTooComplex.ts, 475, 35)) + + {texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 476, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 476, 30)) +>"#vengodelfuturo" : Symbol("#vengodelfuturo", Decl(arrayLiteralTooComplex.ts, 476, 46)) + + {texto: "#verdade", sentimento: 0, "#verdade": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 477, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 477, 23)) +>"#verdade" : Symbol("#verdade", Decl(arrayLiteralTooComplex.ts, 477, 38)) + + {texto: "#vergonha", sentimento: -1, "#vergonha": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 478, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 478, 24)) +>"#vergonha" : Symbol("#vergonha", Decl(arrayLiteralTooComplex.ts, 478, 40)) + + {texto: "#viage", sentimento: -1, "#viage": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 479, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 479, 21)) +>"#viage" : Symbol("#viage", Decl(arrayLiteralTooComplex.ts, 479, 37)) + + {texto: "#vida", sentimento: -1, "#vida": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 480, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 480, 20)) +>"#vida" : Symbol("#vida", Decl(arrayLiteralTooComplex.ts, 480, 36)) + + {texto: "#viih", sentimento: -1, "#viih": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 481, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 481, 20)) +>"#viih" : Symbol("#viih", Decl(arrayLiteralTooComplex.ts, 481, 36)) + + {texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 482, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 482, 28)) +>"#virgenalos40" : Symbol("#virgenalos40", Decl(arrayLiteralTooComplex.ts, 482, 44)) + + {texto: "#vivo", sentimento: 0, "#vivo": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 483, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 483, 20)) +>"#vivo" : Symbol("#vivo", Decl(arrayLiteralTooComplex.ts, 483, 35)) + + {texto: "#vmb", sentimento: -1, "#vmb": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 484, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 484, 19)) +>"#vmb" : Symbol("#vmb", Decl(arrayLiteralTooComplex.ts, 484, 35)) + + {texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 485, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 485, 29)) +>"#voegoloficial" : Symbol("#voegoloficial", Decl(arrayLiteralTooComplex.ts, 485, 45)) + + {texto: "#voetrip", sentimento: -1, "#voetrip": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 486, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 486, 23)) +>"#voetrip" : Symbol("#voetrip", Decl(arrayLiteralTooComplex.ts, 486, 39)) + + {texto: "#volei", sentimento: -1, "#volei": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 487, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 487, 21)) +>"#volei" : Symbol("#volei", Decl(arrayLiteralTooComplex.ts, 487, 37)) + + {texto: "#vtnc", sentimento: -1, "#vtnc": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 488, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 488, 20)) +>"#vtnc" : Symbol("#vtnc", Decl(arrayLiteralTooComplex.ts, 488, 36)) + + {texto: "#vym", sentimento: -1, "#vym": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 489, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 489, 19)) +>"#vym" : Symbol("#vym", Decl(arrayLiteralTooComplex.ts, 489, 35)) + + {texto: "#w00t", sentimento: 1, "#w00t": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 490, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 490, 20)) +>"#w00t" : Symbol("#w00t", Decl(arrayLiteralTooComplex.ts, 490, 35)) + + {texto: "#win", sentimento: 1, "#win": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 491, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 491, 19)) +>"#win" : Symbol("#win", Decl(arrayLiteralTooComplex.ts, 491, 34)) + + {texto: "#windows", sentimento: 1, "#windows": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 492, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 492, 23)) +>"#windows" : Symbol("#windows", Decl(arrayLiteralTooComplex.ts, 492, 38)) + + {texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 493, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 493, 33)) +>"#windowsphonemango" : Symbol("#windowsphonemango", Decl(arrayLiteralTooComplex.ts, 493, 48)) + + {texto: "#winning", sentimento: 1, "#winning": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 494, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 494, 23)) +>"#winning" : Symbol("#winning", Decl(arrayLiteralTooComplex.ts, 494, 38)) + + {texto: "#wolfteam", sentimento: -1, "#wolfteam": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 495, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 495, 24)) +>"#wolfteam" : Symbol("#wolfteam", Decl(arrayLiteralTooComplex.ts, 495, 40)) + + {texto: "#wp7", sentimento: 1, "#wp7": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 496, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 496, 19)) +>"#wp7" : Symbol("#wp7", Decl(arrayLiteralTooComplex.ts, 496, 34)) + + {texto: "#x10", sentimento: -1, "#x10": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 497, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 497, 19)) +>"#x10" : Symbol("#x10", Decl(arrayLiteralTooComplex.ts, 497, 35)) + + {texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 498, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 498, 25)) +>"#xoinsetos" : Symbol("#xoinsetos", Decl(arrayLiteralTooComplex.ts, 498, 41)) + + {texto: "#youtube", sentimento: -1, "#youtube": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 499, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 499, 23)) +>"#youtube" : Symbol("#youtube", Decl(arrayLiteralTooComplex.ts, 499, 39)) + + {texto: "#z", sentimento: -1, "#z": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 500, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 500, 17)) +>"#z" : Symbol("#z", Decl(arrayLiteralTooComplex.ts, 500, 33)) + + {texto: "#zegotinha", sentimento: 1, "#zegotinha": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 501, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 501, 25)) +>"#zegotinha" : Symbol("#zegotinha", Decl(arrayLiteralTooComplex.ts, 501, 40)) + + {texto: "#zon", sentimento: 0, "#zon": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 502, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 502, 19)) +>"#zon" : Symbol("#zon", Decl(arrayLiteralTooComplex.ts, 502, 34)) + + {texto: "=[", sentimento: -1, "=[": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 503, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 503, 17)) +>"=[" : Symbol("=[", Decl(arrayLiteralTooComplex.ts, 503, 33)) + + {texto: "=@", sentimento: -1, "=@": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 504, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 504, 17)) +>"=@" : Symbol("=@", Decl(arrayLiteralTooComplex.ts, 504, 33)) + + {texto: "=D", sentimento: 1, "=D": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 505, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 505, 17)) +>"=D" : Symbol("=D", Decl(arrayLiteralTooComplex.ts, 505, 32)) + + {texto: "=d", sentimento: 1, "=d": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 506, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 506, 17)) +>"=d" : Symbol("=d", Decl(arrayLiteralTooComplex.ts, 506, 32)) + + {texto: "=P", sentimento: -1, "=P": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 507, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 507, 17)) +>"=P" : Symbol("=P", Decl(arrayLiteralTooComplex.ts, 507, 33)) + + {texto: "=p", sentimento: -1, "=p": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 508, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 508, 17)) +>"=p" : Symbol("=p", Decl(arrayLiteralTooComplex.ts, 508, 33)) + + {texto: "=x", sentimento: -1, "=x": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 509, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 509, 17)) +>"=x" : Symbol("=x", Decl(arrayLiteralTooComplex.ts, 509, 33)) + + {texto: ">:(", sentimento: -1, ">:(": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 510, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 510, 18)) +>">:(" : Symbol(">:(", Decl(arrayLiteralTooComplex.ts, 510, 34)) + + {texto: "><", sentimento: -1, "><": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 511, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 511, 17)) +>"><" : Symbol("><", Decl(arrayLiteralTooComplex.ts, 511, 33)) + + {texto: "¬¬''", sentimento: -1, "¬¬''": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 512, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 512, 19)) +>"¬¬''" : Symbol("¬¬''", Decl(arrayLiteralTooComplex.ts, 512, 35)) + + {texto: "¬¬", sentimento: -1, "¬¬": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 513, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 513, 17)) +>"¬¬" : Symbol("¬¬", Decl(arrayLiteralTooComplex.ts, 513, 33)) + + {texto: "a comemorar", sentimento: 3, "a comemorar": 3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 514, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 514, 26)) +>"a comemorar" : Symbol("a comemorar", Decl(arrayLiteralTooComplex.ts, 514, 41)) + + {texto: "¬", sentimento: -1, "¬": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 515, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 515, 17)) +>"¬" : Symbol("¬", Decl(arrayLiteralTooComplex.ts, 515, 33)) + + {texto: "ab-rogar", sentimento: -1, "ab-rogar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 516, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 516, 23)) +>"ab-rogar" : Symbol("ab-rogar", Decl(arrayLiteralTooComplex.ts, 516, 39)) + + {texto: "ababadar", sentimento: 0, "ababadar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 517, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 517, 23)) +>"ababadar" : Symbol("ababadar", Decl(arrayLiteralTooComplex.ts, 517, 38)) + + {texto: "ababelar-se", sentimento: 1, "ababelar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 518, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 518, 26)) +>"ababelar-se" : Symbol("ababelar-se", Decl(arrayLiteralTooComplex.ts, 518, 41)) + + {texto: "ababelar", sentimento: -1, "ababelar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 519, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 519, 23)) +>"ababelar" : Symbol("ababelar", Decl(arrayLiteralTooComplex.ts, 519, 39)) + + {texto: "abaçanar", sentimento: 1, "abaçanar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 520, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 520, 23)) +>"abaçanar" : Symbol("abaçanar", Decl(arrayLiteralTooComplex.ts, 520, 38)) + + {texto: "abacinar", sentimento: 1, "abacinar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 521, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 521, 23)) +>"abacinar" : Symbol("abacinar", Decl(arrayLiteralTooComplex.ts, 521, 38)) + + {texto: "abafada", sentimento: -1, "abafada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 522, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 522, 22)) +>"abafada" : Symbol("abafada", Decl(arrayLiteralTooComplex.ts, 522, 38)) + + {texto: "abafadas", sentimento: -1, "abafadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 523, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 523, 23)) +>"abafadas" : Symbol("abafadas", Decl(arrayLiteralTooComplex.ts, 523, 39)) + + {texto: "abafado", sentimento: -1, "abafado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 524, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 524, 22)) +>"abafado" : Symbol("abafado", Decl(arrayLiteralTooComplex.ts, 524, 38)) + + {texto: "abafados", sentimento: -1, "abafados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 525, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 525, 23)) +>"abafados" : Symbol("abafados", Decl(arrayLiteralTooComplex.ts, 525, 39)) + + {texto: "abafante", sentimento: -1, "abafante": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 526, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 526, 23)) +>"abafante" : Symbol("abafante", Decl(arrayLiteralTooComplex.ts, 526, 39)) + + {texto: "abafantes", sentimento: -1, "abafantes": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 527, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 527, 24)) +>"abafantes" : Symbol("abafantes", Decl(arrayLiteralTooComplex.ts, 527, 40)) + + {texto: "abafar", sentimento: -1, "abafar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 528, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 528, 21)) +>"abafar" : Symbol("abafar", Decl(arrayLiteralTooComplex.ts, 528, 37)) + + {texto: "abafou", sentimento: -1, "abafou": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 529, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 529, 21)) +>"abafou" : Symbol("abafou", Decl(arrayLiteralTooComplex.ts, 529, 37)) + + {texto: "abaixada", sentimento: -1, "abaixada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 530, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 530, 23)) +>"abaixada" : Symbol("abaixada", Decl(arrayLiteralTooComplex.ts, 530, 39)) + + {texto: "abaixadas", sentimento: -1, "abaixadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 531, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 531, 24)) +>"abaixadas" : Symbol("abaixadas", Decl(arrayLiteralTooComplex.ts, 531, 40)) + + {texto: "abaixado", sentimento: -1, "abaixado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 532, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 532, 23)) +>"abaixado" : Symbol("abaixado", Decl(arrayLiteralTooComplex.ts, 532, 39)) + + {texto: "abaixados", sentimento: -1, "abaixados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 533, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 533, 24)) +>"abaixados" : Symbol("abaixados", Decl(arrayLiteralTooComplex.ts, 533, 40)) + + {texto: "abaixar-se", sentimento: 0, "abaixar-se": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 534, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 534, 25)) +>"abaixar-se" : Symbol("abaixar-se", Decl(arrayLiteralTooComplex.ts, 534, 40)) + + {texto: "abaixar", sentimento: 0, "abaixar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 535, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 535, 22)) +>"abaixar" : Symbol("abaixar", Decl(arrayLiteralTooComplex.ts, 535, 37)) + + {texto: "abalada", sentimento: -1, "abalada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 536, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 536, 22)) +>"abalada" : Symbol("abalada", Decl(arrayLiteralTooComplex.ts, 536, 38)) + + {texto: "abaladas", sentimento: -1, "abaladas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 537, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 537, 23)) +>"abaladas" : Symbol("abaladas", Decl(arrayLiteralTooComplex.ts, 537, 39)) + + {texto: "abalado", sentimento: -1, "abalado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 538, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 538, 22)) +>"abalado" : Symbol("abalado", Decl(arrayLiteralTooComplex.ts, 538, 38)) + + {texto: "abalados", sentimento: -1, "abalados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 539, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 539, 23)) +>"abalados" : Symbol("abalados", Decl(arrayLiteralTooComplex.ts, 539, 39)) + + {texto: "abalançado", sentimento: 1, "abalançado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 540, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 540, 25)) +>"abalançado" : Symbol("abalançado", Decl(arrayLiteralTooComplex.ts, 540, 40)) + + {texto: "abalançar", sentimento: 1, "abalançar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 541, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 541, 24)) +>"abalançar" : Symbol("abalançar", Decl(arrayLiteralTooComplex.ts, 541, 39)) + + {texto: "abalar-se", sentimento: 0, "abalar-se": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 542, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 542, 24)) +>"abalar-se" : Symbol("abalar-se", Decl(arrayLiteralTooComplex.ts, 542, 39)) + + {texto: "abalar", sentimento: 0, "abalar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 543, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 543, 21)) +>"abalar" : Symbol("abalar", Decl(arrayLiteralTooComplex.ts, 543, 36)) + + {texto: "abalizada", sentimento: 1, "abalizada": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 544, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 544, 24)) +>"abalizada" : Symbol("abalizada", Decl(arrayLiteralTooComplex.ts, 544, 39)) + + {texto: "abalizadas", sentimento: 1, "abalizadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 545, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 545, 25)) +>"abalizadas" : Symbol("abalizadas", Decl(arrayLiteralTooComplex.ts, 545, 40)) + + {texto: "abalizado", sentimento: 1, "abalizado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 546, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 546, 24)) +>"abalizado" : Symbol("abalizado", Decl(arrayLiteralTooComplex.ts, 546, 39)) + + {texto: "abalizados", sentimento: 1, "abalizados": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 547, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 547, 25)) +>"abalizados" : Symbol("abalizados", Decl(arrayLiteralTooComplex.ts, 547, 40)) + + {texto: "abalizar", sentimento: 0, "abalizar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 548, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 548, 23)) +>"abalizar" : Symbol("abalizar", Decl(arrayLiteralTooComplex.ts, 548, 38)) + + {texto: "abalroar-se", sentimento: 1, "abalroar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 549, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 549, 26)) +>"abalroar-se" : Symbol("abalroar-se", Decl(arrayLiteralTooComplex.ts, 549, 41)) + + {texto: "abalroar", sentimento: 0, "abalroar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 550, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 550, 23)) +>"abalroar" : Symbol("abalroar", Decl(arrayLiteralTooComplex.ts, 550, 38)) + + {texto: "abanar", sentimento: 0, "abanar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 551, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 551, 21)) +>"abanar" : Symbol("abanar", Decl(arrayLiteralTooComplex.ts, 551, 36)) + + {texto: "abandalhada", sentimento: -1, "abandalhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 552, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 552, 26)) +>"abandalhada" : Symbol("abandalhada", Decl(arrayLiteralTooComplex.ts, 552, 42)) + + {texto: "abandalhadas", sentimento: -1, "abandalhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 553, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 553, 27)) +>"abandalhadas" : Symbol("abandalhadas", Decl(arrayLiteralTooComplex.ts, 553, 43)) + + {texto: "abandalhado", sentimento: -1, "abandalhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 554, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 554, 26)) +>"abandalhado" : Symbol("abandalhado", Decl(arrayLiteralTooComplex.ts, 554, 42)) + + {texto: "abandalhados", sentimento: -1, "abandalhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 555, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 555, 27)) +>"abandalhados" : Symbol("abandalhados", Decl(arrayLiteralTooComplex.ts, 555, 43)) + + {texto: "abandalhar", sentimento: 1, "abandalhar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 556, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 556, 25)) +>"abandalhar" : Symbol("abandalhar", Decl(arrayLiteralTooComplex.ts, 556, 40)) + + {texto: "abandar", sentimento: -1, "abandar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 557, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 557, 22)) +>"abandar" : Symbol("abandar", Decl(arrayLiteralTooComplex.ts, 557, 38)) + + {texto: "abandonada", sentimento: -1, "abandonada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 558, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 558, 25)) +>"abandonada" : Symbol("abandonada", Decl(arrayLiteralTooComplex.ts, 558, 41)) + + {texto: "abandonadas", sentimento: -1, "abandonadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 559, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 559, 26)) +>"abandonadas" : Symbol("abandonadas", Decl(arrayLiteralTooComplex.ts, 559, 42)) + + {texto: "abandonado", sentimento: -1, "abandonado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 560, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 560, 25)) +>"abandonado" : Symbol("abandonado", Decl(arrayLiteralTooComplex.ts, 560, 41)) + + {texto: "abandonado", sentimento: -2, "abandonado": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 561, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 561, 25)) +>"abandonado" : Symbol("abandonado", Decl(arrayLiteralTooComplex.ts, 561, 41)) + + {texto: "abandonados", sentimento: -1, "abandonados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 562, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 562, 26)) +>"abandonados" : Symbol("abandonados", Decl(arrayLiteralTooComplex.ts, 562, 42)) + + {texto: "abandonar-se", sentimento: 0, "abandonar-se": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 563, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 563, 27)) +>"abandonar-se" : Symbol("abandonar-se", Decl(arrayLiteralTooComplex.ts, 563, 42)) + + {texto: "abandonar", sentimento: -1, "abandonar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 564, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 564, 24)) +>"abandonar" : Symbol("abandonar", Decl(arrayLiteralTooComplex.ts, 564, 40)) + + {texto: "abandono", sentimento: -2, "abandono": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 565, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 565, 23)) +>"abandono" : Symbol("abandono", Decl(arrayLiteralTooComplex.ts, 565, 39)) + + {texto: "abandonos", sentimento: -2, "abandonos": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 566, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 566, 24)) +>"abandonos" : Symbol("abandonos", Decl(arrayLiteralTooComplex.ts, 566, 40)) + + {texto: "abarbar", sentimento: 1, "abarbar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 567, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 567, 22)) +>"abarbar" : Symbol("abarbar", Decl(arrayLiteralTooComplex.ts, 567, 37)) + + {texto: "abarbarado", sentimento: 1, "abarbarado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 568, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 568, 25)) +>"abarbarado" : Symbol("abarbarado", Decl(arrayLiteralTooComplex.ts, 568, 40)) + + {texto: "abarcante", sentimento: -1, "abarcante": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 569, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 569, 24)) +>"abarcante" : Symbol("abarcante", Decl(arrayLiteralTooComplex.ts, 569, 40)) + + {texto: "abarcantes", sentimento: -1, "abarcantes": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 570, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 570, 25)) +>"abarcantes" : Symbol("abarcantes", Decl(arrayLiteralTooComplex.ts, 570, 41)) + + {texto: "abarcar", sentimento: -1, "abarcar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 571, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 571, 22)) +>"abarcar" : Symbol("abarcar", Decl(arrayLiteralTooComplex.ts, 571, 38)) + + {texto: "abarrancar", sentimento: -1, "abarrancar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 572, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 572, 25)) +>"abarrancar" : Symbol("abarrancar", Decl(arrayLiteralTooComplex.ts, 572, 41)) + + {texto: "abarregar", sentimento: 1, "abarregar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 573, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 573, 24)) +>"abarregar" : Symbol("abarregar", Decl(arrayLiteralTooComplex.ts, 573, 39)) + + {texto: "abarreirar", sentimento: -1, "abarreirar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 574, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 574, 25)) +>"abarreirar" : Symbol("abarreirar", Decl(arrayLiteralTooComplex.ts, 574, 41)) + + {texto: "abarrocar", sentimento: -1, "abarrocar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 575, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 575, 24)) +>"abarrocar" : Symbol("abarrocar", Decl(arrayLiteralTooComplex.ts, 575, 40)) + + {texto: "abarrotada", sentimento: -1, "abarrotada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 576, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 576, 25)) +>"abarrotada" : Symbol("abarrotada", Decl(arrayLiteralTooComplex.ts, 576, 41)) + + {texto: "abarrotadas", sentimento: -1, "abarrotadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 577, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 577, 26)) +>"abarrotadas" : Symbol("abarrotadas", Decl(arrayLiteralTooComplex.ts, 577, 42)) + + {texto: "abarrotado", sentimento: -1, "abarrotado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 578, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 578, 25)) +>"abarrotado" : Symbol("abarrotado", Decl(arrayLiteralTooComplex.ts, 578, 41)) + + {texto: "abarrotados", sentimento: -1, "abarrotados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 579, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 579, 26)) +>"abarrotados" : Symbol("abarrotados", Decl(arrayLiteralTooComplex.ts, 579, 42)) + + {texto: "abarrotar", sentimento: 0, "abarrotar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 580, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 580, 24)) +>"abarrotar" : Symbol("abarrotar", Decl(arrayLiteralTooComplex.ts, 580, 39)) + + {texto: "abasbacar", sentimento: 0, "abasbacar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 581, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 581, 24)) +>"abasbacar" : Symbol("abasbacar", Decl(arrayLiteralTooComplex.ts, 581, 39)) + + {texto: "abastada", sentimento: 1, "abastada": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 582, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 582, 23)) +>"abastada" : Symbol("abastada", Decl(arrayLiteralTooComplex.ts, 582, 38)) + + {texto: "abastadas", sentimento: 1, "abastadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 583, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 583, 24)) +>"abastadas" : Symbol("abastadas", Decl(arrayLiteralTooComplex.ts, 583, 39)) + + {texto: "abastadear", sentimento: 1, "abastadear": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 584, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 584, 25)) +>"abastadear" : Symbol("abastadear", Decl(arrayLiteralTooComplex.ts, 584, 40)) + + {texto: "abastado", sentimento: 1, "abastado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 585, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 585, 23)) +>"abastado" : Symbol("abastado", Decl(arrayLiteralTooComplex.ts, 585, 38)) + + {texto: "abastados", sentimento: 1, "abastados": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 586, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 586, 24)) +>"abastados" : Symbol("abastados", Decl(arrayLiteralTooComplex.ts, 586, 39)) + + {texto: "abastar", sentimento: -1, "abastar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 587, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 587, 22)) +>"abastar" : Symbol("abastar", Decl(arrayLiteralTooComplex.ts, 587, 38)) + + {texto: "abastardar-se", sentimento: 1, "abastardar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 588, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 588, 28)) +>"abastardar-se" : Symbol("abastardar-se", Decl(arrayLiteralTooComplex.ts, 588, 43)) + + {texto: "abastardar", sentimento: 1, "abastardar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 589, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 589, 25)) +>"abastardar" : Symbol("abastardar", Decl(arrayLiteralTooComplex.ts, 589, 40)) + + {texto: "abastardear-se", sentimento: 1, "abastardear-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 590, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 590, 29)) +>"abastardear-se" : Symbol("abastardear-se", Decl(arrayLiteralTooComplex.ts, 590, 44)) + + {texto: "abastecer", sentimento: 1, "abastecer": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 591, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 591, 24)) +>"abastecer" : Symbol("abastecer", Decl(arrayLiteralTooComplex.ts, 591, 39)) + + {texto: "abastecida", sentimento: 0, "abastecida": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 592, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 592, 25)) +>"abastecida" : Symbol("abastecida", Decl(arrayLiteralTooComplex.ts, 592, 40)) + + {texto: "abastecidas", sentimento: 0, "abastecidas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 593, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 593, 26)) +>"abastecidas" : Symbol("abastecidas", Decl(arrayLiteralTooComplex.ts, 593, 41)) + + {texto: "abastecido", sentimento: 0, "abastecido": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 594, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 594, 25)) +>"abastecido" : Symbol("abastecido", Decl(arrayLiteralTooComplex.ts, 594, 40)) + + {texto: "abastecidos", sentimento: 0, "abastecidos": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 595, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 595, 26)) +>"abastecidos" : Symbol("abastecidos", Decl(arrayLiteralTooComplex.ts, 595, 41)) + + {texto: "abastoso", sentimento: 1, "abastoso": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 596, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 596, 23)) +>"abastoso" : Symbol("abastoso", Decl(arrayLiteralTooComplex.ts, 596, 38)) + + {texto: "abater", sentimento: -1, "abater": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 597, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 597, 21)) +>"abater" : Symbol("abater", Decl(arrayLiteralTooComplex.ts, 597, 37)) + + {texto: "abatida", sentimento: -1, "abatida": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 598, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 598, 22)) +>"abatida" : Symbol("abatida", Decl(arrayLiteralTooComplex.ts, 598, 38)) + + {texto: "abatidas", sentimento: -1, "abatidas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 599, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 599, 23)) +>"abatidas" : Symbol("abatidas", Decl(arrayLiteralTooComplex.ts, 599, 39)) + + {texto: "abatido", sentimento: -1, "abatido": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 600, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 600, 22)) +>"abatido" : Symbol("abatido", Decl(arrayLiteralTooComplex.ts, 600, 38)) + + {texto: "abatido", sentimento: -2, "abatido": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 601, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 601, 22)) +>"abatido" : Symbol("abatido", Decl(arrayLiteralTooComplex.ts, 601, 38)) + + {texto: "abatidos", sentimento: -1, "abatidos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 602, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 602, 23)) +>"abatidos" : Symbol("abatidos", Decl(arrayLiteralTooComplex.ts, 602, 39)) + + {texto: "abatocar", sentimento: 1, "abatocar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 603, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 603, 23)) +>"abatocar" : Symbol("abatocar", Decl(arrayLiteralTooComplex.ts, 603, 38)) + + {texto: "abdicar", sentimento: -1, "abdicar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 604, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 604, 22)) +>"abdicar" : Symbol("abdicar", Decl(arrayLiteralTooComplex.ts, 604, 38)) + + {texto: "abdução", sentimento: -2, "abdução": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 605, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 605, 22)) +>"abdução" : Symbol("abdução", Decl(arrayLiteralTooComplex.ts, 605, 38)) + + {texto: "abduzir-se", sentimento: 1, "abduzir-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 606, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 606, 25)) +>"abduzir-se" : Symbol("abduzir-se", Decl(arrayLiteralTooComplex.ts, 606, 40)) + + {texto: "abduzir", sentimento: 0, "abduzir": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 607, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 607, 22)) +>"abduzir" : Symbol("abduzir", Decl(arrayLiteralTooComplex.ts, 607, 37)) + + {texto: "abeberar", sentimento: 0, "abeberar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 608, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 608, 23)) +>"abeberar" : Symbol("abeberar", Decl(arrayLiteralTooComplex.ts, 608, 38)) + + {texto: "abeirar-se", sentimento: 1, "abeirar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 609, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 609, 25)) +>"abeirar-se" : Symbol("abeirar-se", Decl(arrayLiteralTooComplex.ts, 609, 40)) + + {texto: "abeirar", sentimento: 0, "abeirar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 610, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 610, 22)) +>"abeirar" : Symbol("abeirar", Decl(arrayLiteralTooComplex.ts, 610, 37)) + + {texto: "abelhuda", sentimento: -1, "abelhuda": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 611, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 611, 23)) +>"abelhuda" : Symbol("abelhuda", Decl(arrayLiteralTooComplex.ts, 611, 39)) + + {texto: "abelhudar", sentimento: 0, "abelhudar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 612, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 612, 24)) +>"abelhudar" : Symbol("abelhudar", Decl(arrayLiteralTooComplex.ts, 612, 39)) + + {texto: "abelhudas", sentimento: -1, "abelhudas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 613, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 613, 24)) +>"abelhudas" : Symbol("abelhudas", Decl(arrayLiteralTooComplex.ts, 613, 40)) + + {texto: "abelhudo", sentimento: -1, "abelhudo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 614, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 614, 23)) +>"abelhudo" : Symbol("abelhudo", Decl(arrayLiteralTooComplex.ts, 614, 39)) + + {texto: "abelhudos", sentimento: -1, "abelhudos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 615, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 615, 24)) +>"abelhudos" : Symbol("abelhudos", Decl(arrayLiteralTooComplex.ts, 615, 40)) + + {texto: "abemolar", sentimento: 0, "abemolar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 616, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 616, 23)) +>"abemolar" : Symbol("abemolar", Decl(arrayLiteralTooComplex.ts, 616, 38)) + + {texto: "abençoa", sentimento: 2, "abençoa": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 617, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 617, 22)) +>"abençoa" : Symbol("abençoa", Decl(arrayLiteralTooComplex.ts, 617, 37)) + + {texto: "abençoada", sentimento: 1, "abençoada": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 618, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 618, 24)) +>"abençoada" : Symbol("abençoada", Decl(arrayLiteralTooComplex.ts, 618, 39)) + + {texto: "abençoadas", sentimento: 1, "abençoadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 619, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 619, 25)) +>"abençoadas" : Symbol("abençoadas", Decl(arrayLiteralTooComplex.ts, 619, 40)) + + {texto: "abençoado", sentimento: 1, "abençoado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 620, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 620, 24)) +>"abençoado" : Symbol("abençoado", Decl(arrayLiteralTooComplex.ts, 620, 39)) + + {texto: "abençoados", sentimento: 1, "abençoados": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 621, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 621, 25)) +>"abençoados" : Symbol("abençoados", Decl(arrayLiteralTooComplex.ts, 621, 40)) + + {texto: "abençoar", sentimento: 0, "abençoar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 622, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 622, 23)) +>"abençoar" : Symbol("abençoar", Decl(arrayLiteralTooComplex.ts, 622, 38)) + + {texto: "abençoar", sentimento: 2, "abençoar": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 623, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 623, 23)) +>"abençoar" : Symbol("abençoar", Decl(arrayLiteralTooComplex.ts, 623, 38)) + + {texto: "aberrante", sentimento: -1, "aberrante": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 624, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 624, 24)) +>"aberrante" : Symbol("aberrante", Decl(arrayLiteralTooComplex.ts, 624, 40)) + + {texto: "aberrantes", sentimento: -1, "aberrantes": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 625, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 625, 25)) +>"aberrantes" : Symbol("aberrantes", Decl(arrayLiteralTooComplex.ts, 625, 41)) + + {texto: "aberrativa", sentimento: -1, "aberrativa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 626, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 626, 25)) +>"aberrativa" : Symbol("aberrativa", Decl(arrayLiteralTooComplex.ts, 626, 41)) + + {texto: "aberrativas", sentimento: -1, "aberrativas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 627, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 627, 26)) +>"aberrativas" : Symbol("aberrativas", Decl(arrayLiteralTooComplex.ts, 627, 42)) + + {texto: "aberrativo", sentimento: -1, "aberrativo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 628, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 628, 25)) +>"aberrativo" : Symbol("aberrativo", Decl(arrayLiteralTooComplex.ts, 628, 41)) + + {texto: "aberrativos", sentimento: -1, "aberrativos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 629, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 629, 26)) +>"aberrativos" : Symbol("aberrativos", Decl(arrayLiteralTooComplex.ts, 629, 42)) + + {texto: "aberratório", sentimento: 1, "aberratório": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 630, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 630, 26)) +>"aberratório" : Symbol("aberratório", Decl(arrayLiteralTooComplex.ts, 630, 41)) + + {texto: "aberta", sentimento: 0, "aberta": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 631, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 631, 21)) +>"aberta" : Symbol("aberta", Decl(arrayLiteralTooComplex.ts, 631, 36)) + + {texto: "abertão", sentimento: 1, "abertão": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 632, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 632, 22)) +>"abertão" : Symbol("abertão", Decl(arrayLiteralTooComplex.ts, 632, 37)) + + {texto: "abertas", sentimento: 0, "abertas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 633, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 633, 22)) +>"abertas" : Symbol("abertas", Decl(arrayLiteralTooComplex.ts, 633, 37)) + + {texto: "aberto", sentimento: 0, "aberto": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 634, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 634, 21)) +>"aberto" : Symbol("aberto", Decl(arrayLiteralTooComplex.ts, 634, 36)) + + {texto: "abertos", sentimento: 0, "abertos": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 635, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 635, 22)) +>"abertos" : Symbol("abertos", Decl(arrayLiteralTooComplex.ts, 635, 37)) + + {texto: "abespinhada", sentimento: -1, "abespinhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 636, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 636, 26)) +>"abespinhada" : Symbol("abespinhada", Decl(arrayLiteralTooComplex.ts, 636, 42)) + + {texto: "abespinhadas", sentimento: -1, "abespinhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 637, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 637, 27)) +>"abespinhadas" : Symbol("abespinhadas", Decl(arrayLiteralTooComplex.ts, 637, 43)) + + {texto: "abespinhado", sentimento: -1, "abespinhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 638, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 638, 26)) +>"abespinhado" : Symbol("abespinhado", Decl(arrayLiteralTooComplex.ts, 638, 42)) + + {texto: "abespinhados", sentimento: -1, "abespinhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 639, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 639, 27)) +>"abespinhados" : Symbol("abespinhados", Decl(arrayLiteralTooComplex.ts, 639, 43)) + + {texto: "abespinhar", sentimento: -1, "abespinhar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 640, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 640, 25)) +>"abespinhar" : Symbol("abespinhar", Decl(arrayLiteralTooComplex.ts, 640, 41)) + + {texto: "abestalhada", sentimento: -1, "abestalhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 641, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 641, 26)) +>"abestalhada" : Symbol("abestalhada", Decl(arrayLiteralTooComplex.ts, 641, 42)) + + {texto: "abestalhadas", sentimento: -1, "abestalhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 642, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 642, 27)) +>"abestalhadas" : Symbol("abestalhadas", Decl(arrayLiteralTooComplex.ts, 642, 43)) + + {texto: "abestalhado", sentimento: -1, "abestalhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 643, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 643, 26)) +>"abestalhado" : Symbol("abestalhado", Decl(arrayLiteralTooComplex.ts, 643, 42)) + + {texto: "abestalhados", sentimento: -1, "abestalhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 644, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 644, 27)) +>"abestalhados" : Symbol("abestalhados", Decl(arrayLiteralTooComplex.ts, 644, 43)) + + {texto: "abetumado", sentimento: -1, "abetumado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 645, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 645, 24)) +>"abetumado" : Symbol("abetumado", Decl(arrayLiteralTooComplex.ts, 645, 40)) + + {texto: "abetumar", sentimento: 0, "abetumar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 646, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 646, 23)) +>"abetumar" : Symbol("abetumar", Decl(arrayLiteralTooComplex.ts, 646, 38)) + + {texto: "abicar", sentimento: 0, "abicar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 647, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 647, 21)) +>"abicar" : Symbol("abicar", Decl(arrayLiteralTooComplex.ts, 647, 36)) + + {texto: "abichar", sentimento: 0, "abichar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 648, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 648, 22)) +>"abichar" : Symbol("abichar", Decl(arrayLiteralTooComplex.ts, 648, 37)) + + {texto: "abilolada", sentimento: -1, "abilolada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 649, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 649, 24)) +>"abilolada" : Symbol("abilolada", Decl(arrayLiteralTooComplex.ts, 649, 40)) + + {texto: "abiloladas", sentimento: -1, "abiloladas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 650, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 650, 25)) +>"abiloladas" : Symbol("abiloladas", Decl(arrayLiteralTooComplex.ts, 650, 41)) + + {texto: "abilolado", sentimento: -1, "abilolado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 651, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 651, 24)) +>"abilolado" : Symbol("abilolado", Decl(arrayLiteralTooComplex.ts, 651, 40)) + + {texto: "abilolados", sentimento: -1, "abilolados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 652, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 652, 25)) +>"abilolados" : Symbol("abilolados", Decl(arrayLiteralTooComplex.ts, 652, 41)) + + {texto: "abiscoitar", sentimento: 0, "abiscoitar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 653, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 653, 25)) +>"abiscoitar" : Symbol("abiscoitar", Decl(arrayLiteralTooComplex.ts, 653, 40)) + + {texto: "abiselar", sentimento: 1, "abiselar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 654, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 654, 23)) +>"abiselar" : Symbol("abiselar", Decl(arrayLiteralTooComplex.ts, 654, 38)) + + {texto: "abismada", sentimento: -1, "abismada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 655, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 655, 23)) +>"abismada" : Symbol("abismada", Decl(arrayLiteralTooComplex.ts, 655, 39)) + + {texto: "abismadas", sentimento: -1, "abismadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 656, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 656, 24)) +>"abismadas" : Symbol("abismadas", Decl(arrayLiteralTooComplex.ts, 656, 40)) + + {texto: "abismado", sentimento: -1, "abismado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 657, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 657, 23)) +>"abismado" : Symbol("abismado", Decl(arrayLiteralTooComplex.ts, 657, 39)) + + {texto: "abismados", sentimento: -1, "abismados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 658, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 658, 24)) +>"abismados" : Symbol("abismados", Decl(arrayLiteralTooComplex.ts, 658, 40)) + + {texto: "abismais", sentimento: -1, "abismais": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 659, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 659, 23)) +>"abismais" : Symbol("abismais", Decl(arrayLiteralTooComplex.ts, 659, 39)) + + {texto: "abismal", sentimento: -1, "abismal": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 660, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 660, 22)) +>"abismal" : Symbol("abismal", Decl(arrayLiteralTooComplex.ts, 660, 38)) + + {texto: "abismar", sentimento: 1, "abismar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 661, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 661, 22)) +>"abismar" : Symbol("abismar", Decl(arrayLiteralTooComplex.ts, 661, 37)) + + {texto: "abjecta", sentimento: -1, "abjecta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 662, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 662, 22)) +>"abjecta" : Symbol("abjecta", Decl(arrayLiteralTooComplex.ts, 662, 38)) + + {texto: "abjectas", sentimento: -1, "abjectas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 663, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 663, 23)) +>"abjectas" : Symbol("abjectas", Decl(arrayLiteralTooComplex.ts, 663, 39)) + + {texto: "abjecto", sentimento: -1, "abjecto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 664, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 664, 22)) +>"abjecto" : Symbol("abjecto", Decl(arrayLiteralTooComplex.ts, 664, 38)) + + {texto: "abjectos", sentimento: -1, "abjectos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 665, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 665, 23)) +>"abjectos" : Symbol("abjectos", Decl(arrayLiteralTooComplex.ts, 665, 39)) + + {texto: "abjeta", sentimento: -1, "abjeta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 666, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 666, 21)) +>"abjeta" : Symbol("abjeta", Decl(arrayLiteralTooComplex.ts, 666, 37)) + + {texto: "abjetas", sentimento: -1, "abjetas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 667, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 667, 22)) +>"abjetas" : Symbol("abjetas", Decl(arrayLiteralTooComplex.ts, 667, 38)) + + {texto: "abjeto", sentimento: -1, "abjeto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 668, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 668, 21)) +>"abjeto" : Symbol("abjeto", Decl(arrayLiteralTooComplex.ts, 668, 37)) + + {texto: "abjetos", sentimento: -1, "abjetos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 669, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 669, 22)) +>"abjetos" : Symbol("abjetos", Decl(arrayLiteralTooComplex.ts, 669, 38)) + + {texto: "abjugar-se", sentimento: 1, "abjugar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 670, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 670, 25)) +>"abjugar-se" : Symbol("abjugar-se", Decl(arrayLiteralTooComplex.ts, 670, 40)) + + {texto: "abjugar", sentimento: 0, "abjugar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 671, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 671, 22)) +>"abjugar" : Symbol("abjugar", Decl(arrayLiteralTooComplex.ts, 671, 37)) + + {texto: "abjurar", sentimento: 1, "abjurar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 672, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 672, 22)) +>"abjurar" : Symbol("abjurar", Decl(arrayLiteralTooComplex.ts, 672, 37)) + + {texto: "ablegar-se", sentimento: 1, "ablegar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 673, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 673, 25)) +>"ablegar-se" : Symbol("ablegar-se", Decl(arrayLiteralTooComplex.ts, 673, 40)) + + {texto: "ablegar", sentimento: 1, "ablegar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 674, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 674, 22)) +>"ablegar" : Symbol("ablegar", Decl(arrayLiteralTooComplex.ts, 674, 37)) + + {texto: "abluir", sentimento: 0, "abluir": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 675, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 675, 21)) +>"abluir" : Symbol("abluir", Decl(arrayLiteralTooComplex.ts, 675, 36)) + + {texto: "abnegada", sentimento: 1, "abnegada": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 676, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 676, 23)) +>"abnegada" : Symbol("abnegada", Decl(arrayLiteralTooComplex.ts, 676, 38)) + + {texto: "abnegadas", sentimento: 1, "abnegadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 677, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 677, 24)) +>"abnegadas" : Symbol("abnegadas", Decl(arrayLiteralTooComplex.ts, 677, 39)) + + {texto: "abnegado", sentimento: 1, "abnegado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 678, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 678, 23)) +>"abnegado" : Symbol("abnegado", Decl(arrayLiteralTooComplex.ts, 678, 38)) + + {texto: "abnegados", sentimento: 1, "abnegados": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 679, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 679, 24)) +>"abnegados" : Symbol("abnegados", Decl(arrayLiteralTooComplex.ts, 679, 39)) + + {texto: "abnegar", sentimento: 1, "abnegar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 680, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 680, 22)) +>"abnegar" : Symbol("abnegar", Decl(arrayLiteralTooComplex.ts, 680, 37)) + + {texto: "abnoitar", sentimento: 1, "abnoitar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 681, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 681, 23)) +>"abnoitar" : Symbol("abnoitar", Decl(arrayLiteralTooComplex.ts, 681, 38)) + + {texto: "abnormal", sentimento: 1, "abnormal": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 682, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 682, 23)) +>"abnormal" : Symbol("abnormal", Decl(arrayLiteralTooComplex.ts, 682, 38)) + + {texto: "abnóxio", sentimento: 1, "abnóxio": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 683, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 683, 22)) +>"abnóxio" : Symbol("abnóxio", Decl(arrayLiteralTooComplex.ts, 683, 37)) + + {texto: "abnuir", sentimento: 1, "abnuir": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 684, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 684, 21)) +>"abnuir" : Symbol("abnuir", Decl(arrayLiteralTooComplex.ts, 684, 36)) + + {texto: "abobada", sentimento: -1, "abobada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 685, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 685, 22)) +>"abobada" : Symbol("abobada", Decl(arrayLiteralTooComplex.ts, 685, 38)) + + {texto: "abobadar", sentimento: 0, "abobadar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 686, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 686, 23)) +>"abobadar" : Symbol("abobadar", Decl(arrayLiteralTooComplex.ts, 686, 38)) + + {texto: "abobadas", sentimento: -1, "abobadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 687, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 687, 23)) +>"abobadas" : Symbol("abobadas", Decl(arrayLiteralTooComplex.ts, 687, 39)) + + {texto: "abobado", sentimento: -1, "abobado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 688, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 688, 22)) +>"abobado" : Symbol("abobado", Decl(arrayLiteralTooComplex.ts, 688, 38)) + + {texto: "abobados", sentimento: -1, "abobados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 689, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 689, 23)) +>"abobados" : Symbol("abobados", Decl(arrayLiteralTooComplex.ts, 689, 39)) + + {texto: "abobalhada", sentimento: -1, "abobalhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 690, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 690, 25)) +>"abobalhada" : Symbol("abobalhada", Decl(arrayLiteralTooComplex.ts, 690, 41)) + + {texto: "abobalhadas", sentimento: -1, "abobalhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 691, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 691, 26)) +>"abobalhadas" : Symbol("abobalhadas", Decl(arrayLiteralTooComplex.ts, 691, 42)) + + {texto: "abobalhado", sentimento: -1, "abobalhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 692, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 692, 25)) +>"abobalhado" : Symbol("abobalhado", Decl(arrayLiteralTooComplex.ts, 692, 41)) + + {texto: "abobalhados", sentimento: -1, "abobalhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 693, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 693, 26)) +>"abobalhados" : Symbol("abobalhados", Decl(arrayLiteralTooComplex.ts, 693, 42)) + + {texto: "abobalhar", sentimento: 1, "abobalhar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 694, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 694, 24)) +>"abobalhar" : Symbol("abobalhar", Decl(arrayLiteralTooComplex.ts, 694, 39)) + + {texto: "abocanhar", sentimento: -1, "abocanhar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 695, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 695, 24)) +>"abocanhar" : Symbol("abocanhar", Decl(arrayLiteralTooComplex.ts, 695, 40)) + + {texto: "abocar", sentimento: -1, "abocar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 696, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 696, 21)) +>"abocar" : Symbol("abocar", Decl(arrayLiteralTooComplex.ts, 696, 37)) + + {texto: "abodegado", sentimento: -1, "abodegado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 697, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 697, 24)) +>"abodegado" : Symbol("abodegado", Decl(arrayLiteralTooComplex.ts, 697, 40)) + + {texto: "abodegar", sentimento: -1, "abodegar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 698, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 698, 23)) +>"abodegar" : Symbol("abodegar", Decl(arrayLiteralTooComplex.ts, 698, 39)) + + {texto: "abolachar", sentimento: 0, "abolachar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 699, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 699, 24)) +>"abolachar" : Symbol("abolachar", Decl(arrayLiteralTooComplex.ts, 699, 39)) + + {texto: "abolar", sentimento: -1, "abolar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 700, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 700, 21)) +>"abolar" : Symbol("abolar", Decl(arrayLiteralTooComplex.ts, 700, 37)) + + {texto: "abolçar", sentimento: 0, "abolçar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 701, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 701, 22)) +>"abolçar" : Symbol("abolçar", Decl(arrayLiteralTooComplex.ts, 701, 37)) + + {texto: "aboleimar", sentimento: 0, "aboleimar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 702, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 702, 24)) +>"aboleimar" : Symbol("aboleimar", Decl(arrayLiteralTooComplex.ts, 702, 39)) + + {texto: "aboletar", sentimento: 0, "aboletar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 703, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 703, 23)) +>"aboletar" : Symbol("aboletar", Decl(arrayLiteralTooComplex.ts, 703, 38)) + + {texto: "abolicionista", sentimento: 0, "abolicionista": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 704, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 704, 28)) +>"abolicionista" : Symbol("abolicionista", Decl(arrayLiteralTooComplex.ts, 704, 43)) + + {texto: "abolicionistas", sentimento: 0, "abolicionistas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 705, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 705, 29)) +>"abolicionistas" : Symbol("abolicionistas", Decl(arrayLiteralTooComplex.ts, 705, 44)) + + {texto: "abolida", sentimento: -1, "abolida": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 706, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 706, 22)) +>"abolida" : Symbol("abolida", Decl(arrayLiteralTooComplex.ts, 706, 38)) + + {texto: "abolidas", sentimento: -1, "abolidas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 707, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 707, 23)) +>"abolidas" : Symbol("abolidas", Decl(arrayLiteralTooComplex.ts, 707, 39)) + + {texto: "abolido", sentimento: -1, "abolido": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 708, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 708, 22)) +>"abolido" : Symbol("abolido", Decl(arrayLiteralTooComplex.ts, 708, 38)) + + {texto: "abolidos", sentimento: -1, "abolidos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 709, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 709, 23)) +>"abolidos" : Symbol("abolidos", Decl(arrayLiteralTooComplex.ts, 709, 39)) + + {texto: "abolir", sentimento: -1, "abolir": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 710, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 710, 21)) +>"abolir" : Symbol("abolir", Decl(arrayLiteralTooComplex.ts, 710, 37)) + + {texto: "abolorecer", sentimento: 1, "abolorecer": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 711, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 711, 25)) +>"abolorecer" : Symbol("abolorecer", Decl(arrayLiteralTooComplex.ts, 711, 40)) + + {texto: "abolorentar", sentimento: 1, "abolorentar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 712, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 712, 26)) +>"abolorentar" : Symbol("abolorentar", Decl(arrayLiteralTooComplex.ts, 712, 41)) + + {texto: "abolsar", sentimento: 1, "abolsar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 713, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 713, 22)) +>"abolsar" : Symbol("abolsar", Decl(arrayLiteralTooComplex.ts, 713, 37)) + + {texto: "abomina", sentimento: -3, "abomina": -3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 714, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 714, 22)) +>"abomina" : Symbol("abomina", Decl(arrayLiteralTooComplex.ts, 714, 38)) + + {texto: "abominado", sentimento: -1, "abominado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 715, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 715, 24)) +>"abominado" : Symbol("abominado", Decl(arrayLiteralTooComplex.ts, 715, 40)) + + {texto: "abominador", sentimento: -1, "abominador": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 716, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 716, 25)) +>"abominador" : Symbol("abominador", Decl(arrayLiteralTooComplex.ts, 716, 41)) + + {texto: "abominadora", sentimento: -1, "abominadora": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 717, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 717, 26)) +>"abominadora" : Symbol("abominadora", Decl(arrayLiteralTooComplex.ts, 717, 42)) + + {texto: "abominadoras", sentimento: -1, "abominadoras": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 718, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 718, 27)) +>"abominadoras" : Symbol("abominadoras", Decl(arrayLiteralTooComplex.ts, 718, 43)) + + {texto: "abominadores", sentimento: -1, "abominadores": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 719, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 719, 27)) +>"abominadores" : Symbol("abominadores", Decl(arrayLiteralTooComplex.ts, 719, 43)) + + {texto: "abominanda", sentimento: -1, "abominanda": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 720, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 720, 25)) +>"abominanda" : Symbol("abominanda", Decl(arrayLiteralTooComplex.ts, 720, 41)) + + {texto: "abominandas", sentimento: -1, "abominandas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 721, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 721, 26)) +>"abominandas" : Symbol("abominandas", Decl(arrayLiteralTooComplex.ts, 721, 42)) + + {texto: "abominando", sentimento: -1, "abominando": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 722, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 722, 25)) +>"abominando" : Symbol("abominando", Decl(arrayLiteralTooComplex.ts, 722, 41)) + + {texto: "abominandos", sentimento: -1, "abominandos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 723, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 723, 26)) +>"abominandos" : Symbol("abominandos", Decl(arrayLiteralTooComplex.ts, 723, 42)) + + {texto: "abominar", sentimento: -3, "abominar": -3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 724, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 724, 23)) +>"abominar" : Symbol("abominar", Decl(arrayLiteralTooComplex.ts, 724, 39)) + + {texto: "abomináveis", sentimento: -1, "abomináveis": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 725, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 725, 26)) +>"abomináveis" : Symbol("abomináveis", Decl(arrayLiteralTooComplex.ts, 725, 42)) + + {texto: "abominável", sentimento: -1, "abominável": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 726, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 726, 25)) +>"abominável" : Symbol("abominável", Decl(arrayLiteralTooComplex.ts, 726, 41)) + + {texto: "abominoso", sentimento: -1, "abominoso": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 727, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 727, 24)) +>"abominoso" : Symbol("abominoso", Decl(arrayLiteralTooComplex.ts, 727, 40)) + + {texto: "abominou", sentimento: -3, "abominou": -3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 728, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 728, 23)) +>"abominou" : Symbol("abominou", Decl(arrayLiteralTooComplex.ts, 728, 39)) + + {texto: "abonada", sentimento: 1, "abonada": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 729, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 729, 22)) +>"abonada" : Symbol("abonada", Decl(arrayLiteralTooComplex.ts, 729, 37)) + + {texto: "abonadas", sentimento: 1, "abonadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 730, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 730, 23)) +>"abonadas" : Symbol("abonadas", Decl(arrayLiteralTooComplex.ts, 730, 38)) + + {texto: "abonado", sentimento: 1, "abonado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 731, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 731, 22)) +>"abonado" : Symbol("abonado", Decl(arrayLiteralTooComplex.ts, 731, 37)) + + {texto: "abonados", sentimento: 1, "abonados": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 732, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 732, 23)) +>"abonados" : Symbol("abonados", Decl(arrayLiteralTooComplex.ts, 732, 38)) + + {texto: "abonançar-se", sentimento: 1, "abonançar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 733, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 733, 27)) +>"abonançar-se" : Symbol("abonançar-se", Decl(arrayLiteralTooComplex.ts, 733, 42)) + + {texto: "abonançar", sentimento: 0, "abonançar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 734, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 734, 24)) +>"abonançar" : Symbol("abonançar", Decl(arrayLiteralTooComplex.ts, 734, 39)) + + {texto: "abonar", sentimento: 0, "abonar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 735, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 735, 21)) +>"abonar" : Symbol("abonar", Decl(arrayLiteralTooComplex.ts, 735, 36)) + + {texto: "abonatória", sentimento: 1, "abonatória": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 736, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 736, 25)) +>"abonatória" : Symbol("abonatória", Decl(arrayLiteralTooComplex.ts, 736, 40)) + + {texto: "abonatórias", sentimento: 1, "abonatórias": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 737, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 737, 26)) +>"abonatórias" : Symbol("abonatórias", Decl(arrayLiteralTooComplex.ts, 737, 41)) + + {texto: "abonatório", sentimento: 1, "abonatório": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 738, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 738, 25)) +>"abonatório" : Symbol("abonatório", Decl(arrayLiteralTooComplex.ts, 738, 40)) + + {texto: "abonatórios", sentimento: 1, "abonatórios": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 739, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 739, 26)) +>"abonatórios" : Symbol("abonatórios", Decl(arrayLiteralTooComplex.ts, 739, 41)) + + {texto: "abonecada", sentimento: 0, "abonecada": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 740, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 740, 24)) +>"abonecada" : Symbol("abonecada", Decl(arrayLiteralTooComplex.ts, 740, 39)) + + {texto: "abonecadas", sentimento: 0, "abonecadas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 741, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 741, 25)) +>"abonecadas" : Symbol("abonecadas", Decl(arrayLiteralTooComplex.ts, 741, 40)) + + {texto: "abonecado", sentimento: 0, "abonecado": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 742, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 742, 24)) +>"abonecado" : Symbol("abonecado", Decl(arrayLiteralTooComplex.ts, 742, 39)) + + {texto: "abonecados", sentimento: 0, "abonecados": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 743, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 743, 25)) +>"abonecados" : Symbol("abonecados", Decl(arrayLiteralTooComplex.ts, 743, 40)) + + {texto: "aboquejar", sentimento: -1, "aboquejar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 744, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 744, 24)) +>"aboquejar" : Symbol("aboquejar", Decl(arrayLiteralTooComplex.ts, 744, 40)) + + {texto: "aborcar", sentimento: -1, "aborcar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 745, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 745, 22)) +>"aborcar" : Symbol("aborcar", Decl(arrayLiteralTooComplex.ts, 745, 38)) + + {texto: "abordar", sentimento: 0, "abordar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 746, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 746, 22)) +>"abordar" : Symbol("abordar", Decl(arrayLiteralTooComplex.ts, 746, 37)) + + {texto: "aborígene", sentimento: -1, "aborígene": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 747, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 747, 24)) +>"aborígene" : Symbol("aborígene", Decl(arrayLiteralTooComplex.ts, 747, 40)) + + {texto: "aborígenes", sentimento: -1, "aborígenes": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 748, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 748, 25)) +>"aborígenes" : Symbol("aborígenes", Decl(arrayLiteralTooComplex.ts, 748, 41)) + + {texto: "aborrecedor", sentimento: -1, "aborrecedor": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 749, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 749, 26)) +>"aborrecedor" : Symbol("aborrecedor", Decl(arrayLiteralTooComplex.ts, 749, 42)) + + {texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 750, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 750, 27)) +>"aborrecer-se" : Symbol("aborrecer-se", Decl(arrayLiteralTooComplex.ts, 750, 42)) + + {texto: "aborrecer", sentimento: -1, "aborrecer": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 751, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 751, 24)) +>"aborrecer" : Symbol("aborrecer", Decl(arrayLiteralTooComplex.ts, 751, 40)) + + {texto: "aborrecida", sentimento: -1, "aborrecida": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 752, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 752, 25)) +>"aborrecida" : Symbol("aborrecida", Decl(arrayLiteralTooComplex.ts, 752, 41)) + + {texto: "aborrecidas", sentimento: -1, "aborrecidas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 753, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 753, 26)) +>"aborrecidas" : Symbol("aborrecidas", Decl(arrayLiteralTooComplex.ts, 753, 42)) + + {texto: "aborrecido", sentimento: -1, "aborrecido": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 754, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 754, 25)) +>"aborrecido" : Symbol("aborrecido", Decl(arrayLiteralTooComplex.ts, 754, 41)) + + {texto: "aborrecido", sentimento: -2, "aborrecido": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 755, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 755, 25)) +>"aborrecido" : Symbol("aborrecido", Decl(arrayLiteralTooComplex.ts, 755, 41)) + + {texto: "aborrecidos", sentimento: -1, "aborrecidos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 756, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 756, 26)) +>"aborrecidos" : Symbol("aborrecidos", Decl(arrayLiteralTooComplex.ts, 756, 42)) + + {texto: "aborrecimento", sentimento: -2, "aborrecimento": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 757, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 757, 28)) +>"aborrecimento" : Symbol("aborrecimento", Decl(arrayLiteralTooComplex.ts, 757, 44)) + + {texto: "aborrecível", sentimento: -1, "aborrecível": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 758, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 758, 26)) +>"aborrecível" : Symbol("aborrecível", Decl(arrayLiteralTooComplex.ts, 758, 42)) + + {texto: "aborrido", sentimento: -1, "aborrido": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 759, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 759, 23)) +>"aborrido" : Symbol("aborrido", Decl(arrayLiteralTooComplex.ts, 759, 39)) + + {texto: "aborrível", sentimento: -1, "aborrível": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 760, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 760, 24)) +>"aborrível" : Symbol("aborrível", Decl(arrayLiteralTooComplex.ts, 760, 40)) + + {texto: "abortada", sentimento: -1, "abortada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 761, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 761, 23)) +>"abortada" : Symbol("abortada", Decl(arrayLiteralTooComplex.ts, 761, 39)) + + {texto: "abortadas", sentimento: -1, "abortadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 762, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 762, 24)) +>"abortadas" : Symbol("abortadas", Decl(arrayLiteralTooComplex.ts, 762, 40)) + + {texto: "abortado", sentimento: -1, "abortado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 763, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 763, 23)) +>"abortado" : Symbol("abortado", Decl(arrayLiteralTooComplex.ts, 763, 39)) + + {texto: "abortados", sentimento: -1, "abortados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 764, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 764, 24)) +>"abortados" : Symbol("abortados", Decl(arrayLiteralTooComplex.ts, 764, 40)) + + {texto: "abortar", sentimento: -1, "abortar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 765, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 765, 22)) +>"abortar" : Symbol("abortar", Decl(arrayLiteralTooComplex.ts, 765, 38)) + + {texto: "abotoar", sentimento: 0, "abotoar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 766, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 766, 22)) +>"abotoar" : Symbol("abotoar", Decl(arrayLiteralTooComplex.ts, 766, 37)) + + {texto: "abraçada", sentimento: 1, "abraçada": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 767, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 767, 23)) +>"abraçada" : Symbol("abraçada", Decl(arrayLiteralTooComplex.ts, 767, 38)) + + {texto: "abracadabrante", sentimento: 1, "abracadabrante": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 768, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 768, 29)) +>"abracadabrante" : Symbol("abracadabrante", Decl(arrayLiteralTooComplex.ts, 768, 44)) + + {texto: "abracadábrico", sentimento: 1, "abracadábrico": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 769, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 769, 28)) +>"abracadábrico" : Symbol("abracadábrico", Decl(arrayLiteralTooComplex.ts, 769, 43)) + + {texto: "abraçadas", sentimento: 1, "abraçadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 770, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 770, 24)) +>"abraçadas" : Symbol("abraçadas", Decl(arrayLiteralTooComplex.ts, 770, 39)) + + {texto: "abraçado", sentimento: 1, "abraçado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 771, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 771, 23)) +>"abraçado" : Symbol("abraçado", Decl(arrayLiteralTooComplex.ts, 771, 38)) + + {texto: "abraçados", sentimento: 1, "abraçados": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 772, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 772, 24)) +>"abraçados" : Symbol("abraçados", Decl(arrayLiteralTooComplex.ts, 772, 39)) + + {texto: "abraçar-se", sentimento: 1, "abraçar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 773, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 773, 25)) +>"abraçar-se" : Symbol("abraçar-se", Decl(arrayLiteralTooComplex.ts, 773, 40)) + + {texto: "abraçar", sentimento: 0, "abraçar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 774, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 774, 22)) +>"abraçar" : Symbol("abraçar", Decl(arrayLiteralTooComplex.ts, 774, 37)) + + {texto: "abraço", sentimento: 1, "abraço": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 775, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 775, 21)) +>"abraço" : Symbol("abraço", Decl(arrayLiteralTooComplex.ts, 775, 36)) + + {texto: "abraço", sentimento: 2, "abraço": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 776, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 776, 21)) +>"abraço" : Symbol("abraço", Decl(arrayLiteralTooComplex.ts, 776, 36)) + + {texto: "abraços", sentimento: 2, "abraços": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 777, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 777, 22)) +>"abraços" : Symbol("abraços", Decl(arrayLiteralTooComplex.ts, 777, 37)) + + {texto: "abrancar", sentimento: 1, "abrancar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 778, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 778, 23)) +>"abrancar" : Symbol("abrancar", Decl(arrayLiteralTooComplex.ts, 778, 38)) + + {texto: "abrandar-se", sentimento: 1, "abrandar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 779, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 779, 26)) +>"abrandar-se" : Symbol("abrandar-se", Decl(arrayLiteralTooComplex.ts, 779, 41)) + + {texto: "abrandar", sentimento: 0, "abrandar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 780, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 780, 23)) +>"abrandar" : Symbol("abrandar", Decl(arrayLiteralTooComplex.ts, 780, 38)) + + {texto: "abrangente", sentimento: 1, "abrangente": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 781, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 781, 25)) +>"abrangente" : Symbol("abrangente", Decl(arrayLiteralTooComplex.ts, 781, 40)) + + {texto: "abrangentes", sentimento: 1, "abrangentes": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 782, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 782, 26)) +>"abrangentes" : Symbol("abrangentes", Decl(arrayLiteralTooComplex.ts, 782, 41)) + + {texto: "abranger", sentimento: 0, "abranger": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 783, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 783, 23)) +>"abranger" : Symbol("abranger", Decl(arrayLiteralTooComplex.ts, 783, 38)) + + {texto: "abrangida", sentimento: -1, "abrangida": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 784, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 784, 24)) +>"abrangida" : Symbol("abrangida", Decl(arrayLiteralTooComplex.ts, 784, 40)) + + {texto: "abrangidas", sentimento: -1, "abrangidas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 785, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 785, 25)) +>"abrangidas" : Symbol("abrangidas", Decl(arrayLiteralTooComplex.ts, 785, 41)) + + {texto: "abrangido", sentimento: -1, "abrangido": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 786, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 786, 24)) +>"abrangido" : Symbol("abrangido", Decl(arrayLiteralTooComplex.ts, 786, 40)) + + {texto: "abrangidos", sentimento: -1, "abrangidos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 787, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 787, 25)) +>"abrangidos" : Symbol("abrangidos", Decl(arrayLiteralTooComplex.ts, 787, 41)) + + {texto: "abrasar-se", sentimento: 1, "abrasar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 788, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 788, 25)) +>"abrasar-se" : Symbol("abrasar-se", Decl(arrayLiteralTooComplex.ts, 788, 40)) + + {texto: "abrasar", sentimento: 0, "abrasar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 789, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 789, 22)) +>"abrasar" : Symbol("abrasar", Decl(arrayLiteralTooComplex.ts, 789, 37)) + + {texto: "abrasear", sentimento: -1, "abrasear": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 790, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 790, 23)) +>"abrasear" : Symbol("abrasear", Decl(arrayLiteralTooComplex.ts, 790, 39)) + + {texto: "abrasileirada", sentimento: 0, "abrasileirada": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 791, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 791, 28)) +>"abrasileirada" : Symbol("abrasileirada", Decl(arrayLiteralTooComplex.ts, 791, 43)) + + {texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 792, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 792, 29)) +>"abrasileiradas" : Symbol("abrasileiradas", Decl(arrayLiteralTooComplex.ts, 792, 44)) + + {texto: "abrasileirado", sentimento: 0, "abrasileirado": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 793, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 793, 28)) +>"abrasileirado" : Symbol("abrasileirado", Decl(arrayLiteralTooComplex.ts, 793, 43)) + + {texto: "abrasileirados", sentimento: 0, "abrasileirados": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 794, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 794, 29)) +>"abrasileirados" : Symbol("abrasileirados", Decl(arrayLiteralTooComplex.ts, 794, 44)) + + {texto: "abrejar", sentimento: 1, "abrejar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 795, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 795, 22)) +>"abrejar" : Symbol("abrejar", Decl(arrayLiteralTooComplex.ts, 795, 37)) + + {texto: "abreviar", sentimento: 0, "abreviar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 796, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 796, 23)) +>"abreviar" : Symbol("abreviar", Decl(arrayLiteralTooComplex.ts, 796, 38)) + + {texto: "abrigada", sentimento: 0, "abrigada": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 797, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 797, 23)) +>"abrigada" : Symbol("abrigada", Decl(arrayLiteralTooComplex.ts, 797, 38)) + + {texto: "abrigadas", sentimento: 0, "abrigadas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 798, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 798, 24)) +>"abrigadas" : Symbol("abrigadas", Decl(arrayLiteralTooComplex.ts, 798, 39)) + + {texto: "abrigado", sentimento: 0, "abrigado": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 799, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 799, 23)) +>"abrigado" : Symbol("abrigado", Decl(arrayLiteralTooComplex.ts, 799, 38)) + + {texto: "abrigados", sentimento: 0, "abrigados": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 800, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 800, 24)) +>"abrigados" : Symbol("abrigados", Decl(arrayLiteralTooComplex.ts, 800, 39)) + + {texto: "abrigar", sentimento: -1, "abrigar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 801, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 801, 22)) +>"abrigar" : Symbol("abrigar", Decl(arrayLiteralTooComplex.ts, 801, 38)) + + {texto: "abrilhantada", sentimento: 1, "abrilhantada": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 802, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 802, 27)) +>"abrilhantada" : Symbol("abrilhantada", Decl(arrayLiteralTooComplex.ts, 802, 42)) + + {texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 803, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 803, 28)) +>"abrilhantadas" : Symbol("abrilhantadas", Decl(arrayLiteralTooComplex.ts, 803, 43)) + + {texto: "abrilhantado", sentimento: 1, "abrilhantado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 804, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 804, 27)) +>"abrilhantado" : Symbol("abrilhantado", Decl(arrayLiteralTooComplex.ts, 804, 42)) + + {texto: "abrilhantados", sentimento: 1, "abrilhantados": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 805, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 805, 28)) +>"abrilhantados" : Symbol("abrilhantados", Decl(arrayLiteralTooComplex.ts, 805, 43)) + + {texto: "abrilhantar", sentimento: 0, "abrilhantar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 806, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 806, 26)) +>"abrilhantar" : Symbol("abrilhantar", Decl(arrayLiteralTooComplex.ts, 806, 41)) + + {texto: "abrir mão de", sentimento: -1, "abrir mão de": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 807, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 807, 27)) +>"abrir mão de" : Symbol("abrir mão de", Decl(arrayLiteralTooComplex.ts, 807, 43)) + + {texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 808, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 808, 39)) +>"abrir o possibilidade de" : Symbol("abrir o possibilidade de", Decl(arrayLiteralTooComplex.ts, 808, 54)) + + {texto: "abrir-se", sentimento: -1, "abrir-se": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 809, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 809, 23)) +>"abrir-se" : Symbol("abrir-se", Decl(arrayLiteralTooComplex.ts, 809, 39)) + + {texto: "abrir", sentimento: -1, "abrir": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 810, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 810, 20)) +>"abrir" : Symbol("abrir", Decl(arrayLiteralTooComplex.ts, 810, 36)) + + {texto: "abrolhar", sentimento: 0, "abrolhar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 811, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 811, 23)) +>"abrolhar" : Symbol("abrolhar", Decl(arrayLiteralTooComplex.ts, 811, 38)) + + {texto: "abrupta", sentimento: -1, "abrupta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 812, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 812, 22)) +>"abrupta" : Symbol("abrupta", Decl(arrayLiteralTooComplex.ts, 812, 38)) + + {texto: "abruptas", sentimento: -1, "abruptas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 813, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 813, 23)) +>"abruptas" : Symbol("abruptas", Decl(arrayLiteralTooComplex.ts, 813, 39)) + + {texto: "abrupto", sentimento: -1, "abrupto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 814, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 814, 22)) +>"abrupto" : Symbol("abrupto", Decl(arrayLiteralTooComplex.ts, 814, 38)) + + {texto: "abruptos", sentimento: -1, "abruptos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 815, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 815, 23)) +>"abruptos" : Symbol("abruptos", Decl(arrayLiteralTooComplex.ts, 815, 39)) + + {texto: "abrutado", sentimento: -1, "abrutado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 816, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 816, 23)) +>"abrutado" : Symbol("abrutado", Decl(arrayLiteralTooComplex.ts, 816, 39)) + + {texto: "abrutalhada", sentimento: -1, "abrutalhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 817, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 817, 26)) +>"abrutalhada" : Symbol("abrutalhada", Decl(arrayLiteralTooComplex.ts, 817, 42)) + + {texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 818, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 818, 27)) +>"abrutalhadas" : Symbol("abrutalhadas", Decl(arrayLiteralTooComplex.ts, 818, 43)) + + {texto: "abrutalhado", sentimento: -1, "abrutalhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 819, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 819, 26)) +>"abrutalhado" : Symbol("abrutalhado", Decl(arrayLiteralTooComplex.ts, 819, 42)) + + {texto: "abrutalhados", sentimento: -1, "abrutalhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 820, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 820, 27)) +>"abrutalhados" : Symbol("abrutalhados", Decl(arrayLiteralTooComplex.ts, 820, 43)) + + {texto: "abrutalhar", sentimento: 1, "abrutalhar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 821, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 821, 25)) +>"abrutalhar" : Symbol("abrutalhar", Decl(arrayLiteralTooComplex.ts, 821, 40)) + + {texto: "abrutar", sentimento: 1, "abrutar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 822, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 822, 22)) +>"abrutar" : Symbol("abrutar", Decl(arrayLiteralTooComplex.ts, 822, 37)) + + {texto: "abscidar-se", sentimento: 1, "abscidar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 823, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 823, 26)) +>"abscidar-se" : Symbol("abscidar-se", Decl(arrayLiteralTooComplex.ts, 823, 41)) + + {texto: "absentista", sentimento: -1, "absentista": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 824, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 824, 25)) +>"absentista" : Symbol("absentista", Decl(arrayLiteralTooComplex.ts, 824, 41)) + + {texto: "absentistas", sentimento: -1, "absentistas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 825, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 825, 26)) +>"absentistas" : Symbol("absentistas", Decl(arrayLiteralTooComplex.ts, 825, 42)) + + {texto: "absoluta", sentimento: 1, "absoluta": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 826, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 826, 23)) +>"absoluta" : Symbol("absoluta", Decl(arrayLiteralTooComplex.ts, 826, 38)) + + {texto: "absolutas", sentimento: 1, "absolutas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 827, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 827, 24)) +>"absolutas" : Symbol("absolutas", Decl(arrayLiteralTooComplex.ts, 827, 39)) + + {texto: "absolutista", sentimento: 0, "absolutista": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 828, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 828, 26)) +>"absolutista" : Symbol("absolutista", Decl(arrayLiteralTooComplex.ts, 828, 41)) + + {texto: "absolutistas", sentimento: 0, "absolutistas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 829, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 829, 27)) +>"absolutistas" : Symbol("absolutistas", Decl(arrayLiteralTooComplex.ts, 829, 42)) + + {texto: "absoluto", sentimento: 1, "absoluto": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 830, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 830, 23)) +>"absoluto" : Symbol("absoluto", Decl(arrayLiteralTooComplex.ts, 830, 38)) + + {texto: "absolutos", sentimento: 1, "absolutos": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 831, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 831, 24)) +>"absolutos" : Symbol("absolutos", Decl(arrayLiteralTooComplex.ts, 831, 39)) + + {texto: "absolve", sentimento: 2, "absolve": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 832, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 832, 22)) +>"absolve" : Symbol("absolve", Decl(arrayLiteralTooComplex.ts, 832, 37)) + + {texto: "absolvendo", sentimento: 2, "absolvendo": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 833, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 833, 25)) +>"absolvendo" : Symbol("absolvendo", Decl(arrayLiteralTooComplex.ts, 833, 40)) + + {texto: "absolver", sentimento: -1, "absolver": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 834, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 834, 23)) +>"absolver" : Symbol("absolver", Decl(arrayLiteralTooComplex.ts, 834, 39)) + + {texto: "absolver", sentimento: 2, "absolver": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 835, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 835, 23)) +>"absolver" : Symbol("absolver", Decl(arrayLiteralTooComplex.ts, 835, 38)) + + {texto: "absolvida", sentimento: 0, "absolvida": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 836, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 836, 24)) +>"absolvida" : Symbol("absolvida", Decl(arrayLiteralTooComplex.ts, 836, 39)) + + {texto: "absolvidas", sentimento: 0, "absolvidas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 837, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 837, 25)) +>"absolvidas" : Symbol("absolvidas", Decl(arrayLiteralTooComplex.ts, 837, 40)) + + {texto: "absolvido", sentimento: 0, "absolvido": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 838, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 838, 24)) +>"absolvido" : Symbol("absolvido", Decl(arrayLiteralTooComplex.ts, 838, 39)) + + {texto: "absolvido", sentimento: 2, "absolvido": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 839, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 839, 24)) +>"absolvido" : Symbol("absolvido", Decl(arrayLiteralTooComplex.ts, 839, 39)) + + {texto: "absolvidos", sentimento: 0, "absolvidos": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 840, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 840, 25)) +>"absolvidos" : Symbol("absolvidos", Decl(arrayLiteralTooComplex.ts, 840, 40)) + + {texto: "absolvidos", sentimento: 2, "absolvidos": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 841, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 841, 25)) +>"absolvidos" : Symbol("absolvidos", Decl(arrayLiteralTooComplex.ts, 841, 40)) + + {texto: "absonar", sentimento: -1, "absonar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 842, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 842, 22)) +>"absonar" : Symbol("absonar", Decl(arrayLiteralTooComplex.ts, 842, 38)) + + {texto: "absorta", sentimento: -1, "absorta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 843, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 843, 22)) +>"absorta" : Symbol("absorta", Decl(arrayLiteralTooComplex.ts, 843, 38)) + + {texto: "absortas", sentimento: -1, "absortas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 844, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 844, 23)) +>"absortas" : Symbol("absortas", Decl(arrayLiteralTooComplex.ts, 844, 39)) + + {texto: "absorto", sentimento: -1, "absorto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 845, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 845, 22)) +>"absorto" : Symbol("absorto", Decl(arrayLiteralTooComplex.ts, 845, 38)) + + {texto: "absortos", sentimento: -1, "absortos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 846, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 846, 23)) +>"absortos" : Symbol("absortos", Decl(arrayLiteralTooComplex.ts, 846, 39)) + + {texto: "absortos", sentimento: 1, "absortos": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 847, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 847, 23)) +>"absortos" : Symbol("absortos", Decl(arrayLiteralTooComplex.ts, 847, 38)) + + {texto: "absorvente", sentimento: 1, "absorvente": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 848, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 848, 25)) +>"absorvente" : Symbol("absorvente", Decl(arrayLiteralTooComplex.ts, 848, 40)) + + {texto: "absorventes", sentimento: 1, "absorventes": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 849, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 849, 26)) +>"absorventes" : Symbol("absorventes", Decl(arrayLiteralTooComplex.ts, 849, 41)) + + {texto: "absorver-se", sentimento: 1, "absorver-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 850, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 850, 26)) +>"absorver-se" : Symbol("absorver-se", Decl(arrayLiteralTooComplex.ts, 850, 41)) + + {texto: "absorver", sentimento: -1, "absorver": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 851, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 851, 23)) +>"absorver" : Symbol("absorver", Decl(arrayLiteralTooComplex.ts, 851, 39)) + + {texto: "absorvido", sentimento: 1, "absorvido": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 852, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 852, 24)) +>"absorvido" : Symbol("absorvido", Decl(arrayLiteralTooComplex.ts, 852, 39)) + + {texto: "abstémia", sentimento: 1, "abstémia": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 853, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 853, 23)) +>"abstémia" : Symbol("abstémia", Decl(arrayLiteralTooComplex.ts, 853, 38)) + + {texto: "abstémias", sentimento: 1, "abstémias": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 854, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 854, 24)) +>"abstémias" : Symbol("abstémias", Decl(arrayLiteralTooComplex.ts, 854, 39)) + + {texto: "abstémica", sentimento: 1, "abstémica": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 855, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 855, 24)) +>"abstémica" : Symbol("abstémica", Decl(arrayLiteralTooComplex.ts, 855, 39)) + + {texto: "abstémicas", sentimento: 1, "abstémicas": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 856, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 856, 25)) +>"abstémicas" : Symbol("abstémicas", Decl(arrayLiteralTooComplex.ts, 856, 40)) + + {texto: "abstémico", sentimento: 1, "abstémico": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 857, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 857, 24)) +>"abstémico" : Symbol("abstémico", Decl(arrayLiteralTooComplex.ts, 857, 39)) + + {texto: "abstémicos", sentimento: 1, "abstémicos": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 858, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 858, 25)) +>"abstémicos" : Symbol("abstémicos", Decl(arrayLiteralTooComplex.ts, 858, 40)) + + {texto: "abstémio", sentimento: 1, "abstémio": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 859, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 859, 23)) +>"abstémio" : Symbol("abstémio", Decl(arrayLiteralTooComplex.ts, 859, 38)) + + {texto: "abstémios", sentimento: 1, "abstémios": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 860, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 860, 24)) +>"abstémios" : Symbol("abstémios", Decl(arrayLiteralTooComplex.ts, 860, 39)) + + {texto: "abstencionista", sentimento: 0, "abstencionista": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 861, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 861, 29)) +>"abstencionista" : Symbol("abstencionista", Decl(arrayLiteralTooComplex.ts, 861, 44)) + + {texto: "abstencionistas", sentimento: 0, "abstencionistas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 862, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 862, 30)) +>"abstencionistas" : Symbol("abstencionistas", Decl(arrayLiteralTooComplex.ts, 862, 45)) + + {texto: "abster-se", sentimento: 0, "abster-se": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 863, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 863, 24)) +>"abster-se" : Symbol("abster-se", Decl(arrayLiteralTooComplex.ts, 863, 39)) + + {texto: "abstinente", sentimento: 0, "abstinente": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 864, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 864, 25)) +>"abstinente" : Symbol("abstinente", Decl(arrayLiteralTooComplex.ts, 864, 40)) + + {texto: "abstinentes", sentimento: 0, "abstinentes": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 865, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 865, 26)) +>"abstinentes" : Symbol("abstinentes", Decl(arrayLiteralTooComplex.ts, 865, 41)) + + {texto: "abstraccionista", sentimento: 0, "abstraccionista": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 866, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 866, 30)) +>"abstraccionista" : Symbol("abstraccionista", Decl(arrayLiteralTooComplex.ts, 866, 45)) + + {texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 867, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 867, 31)) +>"abstraccionistas" : Symbol("abstraccionistas", Decl(arrayLiteralTooComplex.ts, 867, 46)) + + {texto: "abstracta", sentimento: -1, "abstracta": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 868, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 868, 24)) +>"abstracta" : Symbol("abstracta", Decl(arrayLiteralTooComplex.ts, 868, 40)) + + {texto: "abstractas", sentimento: -1, "abstractas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 869, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 869, 25)) +>"abstractas" : Symbol("abstractas", Decl(arrayLiteralTooComplex.ts, 869, 41)) + + {texto: "abstracto", sentimento: -1, "abstracto": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 870, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 870, 24)) +>"abstracto" : Symbol("abstracto", Decl(arrayLiteralTooComplex.ts, 870, 40)) + + {texto: "abstractos", sentimento: -1, "abstractos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 871, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 871, 25)) +>"abstractos" : Symbol("abstractos", Decl(arrayLiteralTooComplex.ts, 871, 41)) + + {texto: "abstraída", sentimento: -1, "abstraída": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 872, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 872, 24)) +>"abstraída" : Symbol("abstraída", Decl(arrayLiteralTooComplex.ts, 872, 40)) + + {texto: "abstraídas", sentimento: -1, "abstraídas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 873, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 873, 25)) +>"abstraídas" : Symbol("abstraídas", Decl(arrayLiteralTooComplex.ts, 873, 41)) + + {texto: "abstraído", sentimento: -1, "abstraído": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 874, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 874, 24)) +>"abstraído" : Symbol("abstraído", Decl(arrayLiteralTooComplex.ts, 874, 40)) + + {texto: "abstraídos", sentimento: -1, "abstraídos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 875, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 875, 25)) +>"abstraídos" : Symbol("abstraídos", Decl(arrayLiteralTooComplex.ts, 875, 41)) + + {texto: "abstrair-se", sentimento: 0, "abstrair-se": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 876, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 876, 26)) +>"abstrair-se" : Symbol("abstrair-se", Decl(arrayLiteralTooComplex.ts, 876, 41)) + + {texto: "abstrair", sentimento: 1, "abstrair": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 877, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 877, 23)) +>"abstrair" : Symbol("abstrair", Decl(arrayLiteralTooComplex.ts, 877, 38)) + + {texto: "abstrata", sentimento: -1, "abstrata": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 878, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 878, 23)) +>"abstrata" : Symbol("abstrata", Decl(arrayLiteralTooComplex.ts, 878, 39)) + + {texto: "abstratas", sentimento: -1, "abstratas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 879, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 879, 24)) +>"abstratas" : Symbol("abstratas", Decl(arrayLiteralTooComplex.ts, 879, 40)) + + {texto: "abstrato", sentimento: -1, "abstrato": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 880, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 880, 23)) +>"abstrato" : Symbol("abstrato", Decl(arrayLiteralTooComplex.ts, 880, 39)) + + {texto: "abstratos", sentimento: -1, "abstratos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 881, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 881, 24)) +>"abstratos" : Symbol("abstratos", Decl(arrayLiteralTooComplex.ts, 881, 40)) + + {texto: "abstrusa", sentimento: -1, "abstrusa": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 882, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 882, 23)) +>"abstrusa" : Symbol("abstrusa", Decl(arrayLiteralTooComplex.ts, 882, 39)) + + {texto: "abstrusas", sentimento: -1, "abstrusas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 883, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 883, 24)) +>"abstrusas" : Symbol("abstrusas", Decl(arrayLiteralTooComplex.ts, 883, 40)) + + {texto: "abstruso", sentimento: -1, "abstruso": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 884, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 884, 23)) +>"abstruso" : Symbol("abstruso", Decl(arrayLiteralTooComplex.ts, 884, 39)) + + {texto: "abstrusos", sentimento: -1, "abstrusos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 885, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 885, 24)) +>"abstrusos" : Symbol("abstrusos", Decl(arrayLiteralTooComplex.ts, 885, 40)) + + {texto: "absumir", sentimento: -1, "absumir": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 886, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 886, 22)) +>"absumir" : Symbol("absumir", Decl(arrayLiteralTooComplex.ts, 886, 38)) + + {texto: "absurda", sentimento: -1, "absurda": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 887, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 887, 22)) +>"absurda" : Symbol("absurda", Decl(arrayLiteralTooComplex.ts, 887, 38)) + + {texto: "absurdas", sentimento: -1, "absurdas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 888, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 888, 23)) +>"absurdas" : Symbol("absurdas", Decl(arrayLiteralTooComplex.ts, 888, 39)) + + {texto: "absurdo", sentimento: -1, "absurdo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 889, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 889, 22)) +>"absurdo" : Symbol("absurdo", Decl(arrayLiteralTooComplex.ts, 889, 38)) + + {texto: "absurdo", sentimento: -2, "absurdo": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 890, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 890, 22)) +>"absurdo" : Symbol("absurdo", Decl(arrayLiteralTooComplex.ts, 890, 38)) + + {texto: "absurdos", sentimento: -1, "absurdos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 891, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 891, 23)) +>"absurdos" : Symbol("absurdos", Decl(arrayLiteralTooComplex.ts, 891, 39)) + + {texto: "abugalhar", sentimento: 1, "abugalhar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 892, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 892, 24)) +>"abugalhar" : Symbol("abugalhar", Decl(arrayLiteralTooComplex.ts, 892, 39)) + + {texto: "abúlica", sentimento: -1, "abúlica": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 893, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 893, 22)) +>"abúlica" : Symbol("abúlica", Decl(arrayLiteralTooComplex.ts, 893, 38)) + + {texto: "abúlicas", sentimento: -1, "abúlicas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 894, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 894, 23)) +>"abúlicas" : Symbol("abúlicas", Decl(arrayLiteralTooComplex.ts, 894, 39)) + + {texto: "abúlico", sentimento: -1, "abúlico": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 895, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 895, 22)) +>"abúlico" : Symbol("abúlico", Decl(arrayLiteralTooComplex.ts, 895, 38)) + + {texto: "abúlicos", sentimento: -1, "abúlicos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 896, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 896, 23)) +>"abúlicos" : Symbol("abúlicos", Decl(arrayLiteralTooComplex.ts, 896, 39)) + + {texto: "abundante", sentimento: 1, "abundante": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 897, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 897, 24)) +>"abundante" : Symbol("abundante", Decl(arrayLiteralTooComplex.ts, 897, 39)) + + {texto: "abundar", sentimento: 1, "abundar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 898, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 898, 22)) +>"abundar" : Symbol("abundar", Decl(arrayLiteralTooComplex.ts, 898, 37)) + + {texto: "abundoso", sentimento: 1, "abundoso": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 899, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 899, 23)) +>"abundoso" : Symbol("abundoso", Decl(arrayLiteralTooComplex.ts, 899, 38)) + + {texto: "aburacar", sentimento: 1, "aburacar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 900, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 900, 23)) +>"aburacar" : Symbol("aburacar", Decl(arrayLiteralTooComplex.ts, 900, 38)) + + {texto: "aburguesada", sentimento: 0, "aburguesada": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 901, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 901, 26)) +>"aburguesada" : Symbol("aburguesada", Decl(arrayLiteralTooComplex.ts, 901, 41)) + + {texto: "aburguesadas", sentimento: 0, "aburguesadas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 902, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 902, 27)) +>"aburguesadas" : Symbol("aburguesadas", Decl(arrayLiteralTooComplex.ts, 902, 42)) + + {texto: "aburguesado", sentimento: 0, "aburguesado": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 903, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 903, 26)) +>"aburguesado" : Symbol("aburguesado", Decl(arrayLiteralTooComplex.ts, 903, 41)) + + {texto: "aburguesados", sentimento: 0, "aburguesados": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 904, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 904, 27)) +>"aburguesados" : Symbol("aburguesados", Decl(arrayLiteralTooComplex.ts, 904, 42)) + + {texto: "abusada", sentimento: -1, "abusada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 905, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 905, 22)) +>"abusada" : Symbol("abusada", Decl(arrayLiteralTooComplex.ts, 905, 38)) + + {texto: "abusadas", sentimento: -1, "abusadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 906, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 906, 23)) +>"abusadas" : Symbol("abusadas", Decl(arrayLiteralTooComplex.ts, 906, 39)) + + {texto: "abusado", sentimento: -1, "abusado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 907, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 907, 22)) +>"abusado" : Symbol("abusado", Decl(arrayLiteralTooComplex.ts, 907, 38)) + + {texto: "abusado", sentimento: -3, "abusado": -3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 908, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 908, 22)) +>"abusado" : Symbol("abusado", Decl(arrayLiteralTooComplex.ts, 908, 38)) + + {texto: "abusador", sentimento: -1, "abusador": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 909, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 909, 23)) +>"abusador" : Symbol("abusador", Decl(arrayLiteralTooComplex.ts, 909, 39)) + + {texto: "abusadora", sentimento: -1, "abusadora": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 910, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 910, 24)) +>"abusadora" : Symbol("abusadora", Decl(arrayLiteralTooComplex.ts, 910, 40)) + + {texto: "abusadoras", sentimento: -1, "abusadoras": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 911, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 911, 25)) +>"abusadoras" : Symbol("abusadoras", Decl(arrayLiteralTooComplex.ts, 911, 41)) + + {texto: "abusadores", sentimento: -1, "abusadores": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 912, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 912, 25)) +>"abusadores" : Symbol("abusadores", Decl(arrayLiteralTooComplex.ts, 912, 41)) + + {texto: "abusados", sentimento: -1, "abusados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 913, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 913, 23)) +>"abusados" : Symbol("abusados", Decl(arrayLiteralTooComplex.ts, 913, 39)) + + {texto: "abusar", sentimento: 1, "abusar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 914, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 914, 21)) +>"abusar" : Symbol("abusar", Decl(arrayLiteralTooComplex.ts, 914, 36)) + + {texto: "abusiva", sentimento: -1, "abusiva": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 915, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 915, 22)) +>"abusiva" : Symbol("abusiva", Decl(arrayLiteralTooComplex.ts, 915, 38)) + + {texto: "abusivas", sentimento: -1, "abusivas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 916, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 916, 23)) +>"abusivas" : Symbol("abusivas", Decl(arrayLiteralTooComplex.ts, 916, 39)) + + {texto: "abusivo", sentimento: -1, "abusivo": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 917, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 917, 22)) +>"abusivo" : Symbol("abusivo", Decl(arrayLiteralTooComplex.ts, 917, 38)) + + {texto: "abusivo", sentimento: -3, "abusivo": -3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 918, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 918, 22)) +>"abusivo" : Symbol("abusivo", Decl(arrayLiteralTooComplex.ts, 918, 38)) + + {texto: "abusivos", sentimento: -1, "abusivos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 919, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 919, 23)) +>"abusivos" : Symbol("abusivos", Decl(arrayLiteralTooComplex.ts, 919, 39)) + + {texto: "abuso", sentimento: -3, "abuso": -3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 920, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 920, 20)) +>"abuso" : Symbol("abuso", Decl(arrayLiteralTooComplex.ts, 920, 36)) + + {texto: "abusos", sentimento: -3, "abusos": -3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 921, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 921, 21)) +>"abusos" : Symbol("abusos", Decl(arrayLiteralTooComplex.ts, 921, 37)) + + {texto: "abuzinar", sentimento: 1, "abuzinar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 922, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 922, 23)) +>"abuzinar" : Symbol("abuzinar", Decl(arrayLiteralTooComplex.ts, 922, 38)) + + {texto: "acabada", sentimento: -1, "acabada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 923, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 923, 22)) +>"acabada" : Symbol("acabada", Decl(arrayLiteralTooComplex.ts, 923, 38)) + + {texto: "acabadas", sentimento: -1, "acabadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 924, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 924, 23)) +>"acabadas" : Symbol("acabadas", Decl(arrayLiteralTooComplex.ts, 924, 39)) + + {texto: "acabado", sentimento: -1, "acabado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 925, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 925, 22)) +>"acabado" : Symbol("acabado", Decl(arrayLiteralTooComplex.ts, 925, 38)) + + {texto: "acabados", sentimento: -1, "acabados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 926, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 926, 23)) +>"acabados" : Symbol("acabados", Decl(arrayLiteralTooComplex.ts, 926, 39)) + + {texto: "acabadota", sentimento: -1, "acabadota": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 927, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 927, 24)) +>"acabadota" : Symbol("acabadota", Decl(arrayLiteralTooComplex.ts, 927, 40)) + + {texto: "acabadotas", sentimento: -1, "acabadotas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 928, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 928, 25)) +>"acabadotas" : Symbol("acabadotas", Decl(arrayLiteralTooComplex.ts, 928, 41)) + + {texto: "acabadote", sentimento: -1, "acabadote": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 929, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 929, 24)) +>"acabadote" : Symbol("acabadote", Decl(arrayLiteralTooComplex.ts, 929, 40)) + + {texto: "acabadotes", sentimento: -1, "acabadotes": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 930, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 930, 25)) +>"acabadotes" : Symbol("acabadotes", Decl(arrayLiteralTooComplex.ts, 930, 41)) + + {texto: "acabamento", sentimento: 1, "acabamento": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 931, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 931, 25)) +>"acabamento" : Symbol("acabamento", Decl(arrayLiteralTooComplex.ts, 931, 40)) + + {texto: "acabar-se", sentimento: 0, "acabar-se": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 932, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 932, 24)) +>"acabar-se" : Symbol("acabar-se", Decl(arrayLiteralTooComplex.ts, 932, 39)) + + {texto: "acabar", sentimento: 0, "acabar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 933, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 933, 21)) +>"acabar" : Symbol("acabar", Decl(arrayLiteralTooComplex.ts, 933, 36)) + + {texto: "acabrunhada", sentimento: -1, "acabrunhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 934, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 934, 26)) +>"acabrunhada" : Symbol("acabrunhada", Decl(arrayLiteralTooComplex.ts, 934, 42)) + + {texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 935, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 935, 27)) +>"acabrunhadas" : Symbol("acabrunhadas", Decl(arrayLiteralTooComplex.ts, 935, 43)) + + {texto: "acabrunhado", sentimento: -1, "acabrunhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 936, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 936, 26)) +>"acabrunhado" : Symbol("acabrunhado", Decl(arrayLiteralTooComplex.ts, 936, 42)) + + {texto: "acabrunhados", sentimento: -1, "acabrunhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 937, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 937, 27)) +>"acabrunhados" : Symbol("acabrunhados", Decl(arrayLiteralTooComplex.ts, 937, 43)) + + {texto: "acabrunhar", sentimento: 0, "acabrunhar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 938, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 938, 25)) +>"acabrunhar" : Symbol("acabrunhar", Decl(arrayLiteralTooComplex.ts, 938, 40)) + + {texto: "açacalado", sentimento: 1, "açacalado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 939, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 939, 24)) +>"açacalado" : Symbol("açacalado", Decl(arrayLiteralTooComplex.ts, 939, 39)) + + {texto: "acaçapar", sentimento: 1, "acaçapar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 940, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 940, 23)) +>"acaçapar" : Symbol("acaçapar", Decl(arrayLiteralTooComplex.ts, 940, 38)) + + {texto: "acachar", sentimento: 1, "acachar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 941, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 941, 22)) +>"acachar" : Symbol("acachar", Decl(arrayLiteralTooComplex.ts, 941, 37)) + + {texto: "acaciana", sentimento: -1, "acaciana": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 942, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 942, 23)) +>"acaciana" : Symbol("acaciana", Decl(arrayLiteralTooComplex.ts, 942, 39)) + + {texto: "acacianas", sentimento: -1, "acacianas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 943, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 943, 24)) +>"acacianas" : Symbol("acacianas", Decl(arrayLiteralTooComplex.ts, 943, 40)) + + {texto: "acaciano", sentimento: -1, "acaciano": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 944, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 944, 23)) +>"acaciano" : Symbol("acaciano", Decl(arrayLiteralTooComplex.ts, 944, 39)) + + {texto: "acacianos", sentimento: -1, "acacianos": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 945, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 945, 24)) +>"acacianos" : Symbol("acacianos", Decl(arrayLiteralTooComplex.ts, 945, 40)) + + {texto: "académica", sentimento: 0, "académica": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 946, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 946, 24)) +>"académica" : Symbol("académica", Decl(arrayLiteralTooComplex.ts, 946, 39)) + + {texto: "acadêmica", sentimento: 0, "acadêmica": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 947, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 947, 24)) +>"acadêmica" : Symbol("acadêmica", Decl(arrayLiteralTooComplex.ts, 947, 39)) + + {texto: "académicas", sentimento: 0, "académicas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 948, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 948, 25)) +>"académicas" : Symbol("académicas", Decl(arrayLiteralTooComplex.ts, 948, 40)) + + {texto: "acadêmicas", sentimento: 0, "acadêmicas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 949, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 949, 25)) +>"acadêmicas" : Symbol("acadêmicas", Decl(arrayLiteralTooComplex.ts, 949, 40)) + + {texto: "académico", sentimento: 0, "académico": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 950, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 950, 24)) +>"académico" : Symbol("académico", Decl(arrayLiteralTooComplex.ts, 950, 39)) + + {texto: "acadêmico", sentimento: 0, "acadêmico": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 951, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 951, 24)) +>"acadêmico" : Symbol("acadêmico", Decl(arrayLiteralTooComplex.ts, 951, 39)) + + {texto: "académicos", sentimento: 0, "académicos": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 952, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 952, 25)) +>"académicos" : Symbol("académicos", Decl(arrayLiteralTooComplex.ts, 952, 40)) + + {texto: "acadêmicos", sentimento: 0, "acadêmicos": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 953, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 953, 25)) +>"acadêmicos" : Symbol("acadêmicos", Decl(arrayLiteralTooComplex.ts, 953, 40)) + + {texto: "acafelar", sentimento: 1, "acafelar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 954, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 954, 23)) +>"acafelar" : Symbol("acafelar", Decl(arrayLiteralTooComplex.ts, 954, 38)) + + {texto: "acaiçarado", sentimento: -1, "acaiçarado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 955, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 955, 25)) +>"acaiçarado" : Symbol("acaiçarado", Decl(arrayLiteralTooComplex.ts, 955, 41)) + + {texto: "açaimar", sentimento: 0, "açaimar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 956, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 956, 22)) +>"açaimar" : Symbol("açaimar", Decl(arrayLiteralTooComplex.ts, 956, 37)) + + {texto: "acalentando", sentimento: 2, "acalentando": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 957, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 957, 26)) +>"acalentando" : Symbol("acalentando", Decl(arrayLiteralTooComplex.ts, 957, 41)) + + {texto: "acalentar-se", sentimento: 1, "acalentar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 958, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 958, 27)) +>"acalentar-se" : Symbol("acalentar-se", Decl(arrayLiteralTooComplex.ts, 958, 42)) + + {texto: "acalentar", sentimento: 0, "acalentar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 959, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 959, 24)) +>"acalentar" : Symbol("acalentar", Decl(arrayLiteralTooComplex.ts, 959, 39)) + + {texto: "acalentar", sentimento: 2, "acalentar": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 960, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 960, 24)) +>"acalentar" : Symbol("acalentar", Decl(arrayLiteralTooComplex.ts, 960, 39)) + + {texto: "acalmada", sentimento: 3, "acalmada": 3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 961, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 961, 23)) +>"acalmada" : Symbol("acalmada", Decl(arrayLiteralTooComplex.ts, 961, 38)) + + {texto: "acalmado", sentimento: 2, "acalmado": 2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 962, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 962, 23)) +>"acalmado" : Symbol("acalmado", Decl(arrayLiteralTooComplex.ts, 962, 38)) + + {texto: "acalmar-se", sentimento: 1, "acalmar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 963, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 963, 25)) +>"acalmar-se" : Symbol("acalmar-se", Decl(arrayLiteralTooComplex.ts, 963, 40)) + + {texto: "acalmar", sentimento: 0, "acalmar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 964, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 964, 22)) +>"acalmar" : Symbol("acalmar", Decl(arrayLiteralTooComplex.ts, 964, 37)) + + {texto: "acalmar", sentimento: 3, "acalmar": 3}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 965, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 965, 22)) +>"acalmar" : Symbol("acalmar", Decl(arrayLiteralTooComplex.ts, 965, 37)) + + {texto: "acalorada", sentimento: 0, "acalorada": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 966, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 966, 24)) +>"acalorada" : Symbol("acalorada", Decl(arrayLiteralTooComplex.ts, 966, 39)) + + {texto: "acaloradas", sentimento: 0, "acaloradas": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 967, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 967, 25)) +>"acaloradas" : Symbol("acaloradas", Decl(arrayLiteralTooComplex.ts, 967, 40)) + + {texto: "acalorado", sentimento: 0, "acalorado": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 968, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 968, 24)) +>"acalorado" : Symbol("acalorado", Decl(arrayLiteralTooComplex.ts, 968, 39)) + + {texto: "acalorados", sentimento: 0, "acalorados": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 969, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 969, 25)) +>"acalorados" : Symbol("acalorados", Decl(arrayLiteralTooComplex.ts, 969, 40)) + + {texto: "acalorar-se", sentimento: 1, "acalorar-se": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 970, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 970, 26)) +>"acalorar-se" : Symbol("acalorar-se", Decl(arrayLiteralTooComplex.ts, 970, 41)) + + {texto: "acalorar", sentimento: 1, "acalorar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 971, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 971, 23)) +>"acalorar" : Symbol("acalorar", Decl(arrayLiteralTooComplex.ts, 971, 38)) + + {texto: "acamar", sentimento: 1, "acamar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 972, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 972, 21)) +>"acamar" : Symbol("acamar", Decl(arrayLiteralTooComplex.ts, 972, 36)) + + {texto: "açambarcador", sentimento: -1, "açambarcador": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 973, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 973, 27)) +>"açambarcador" : Symbol("açambarcador", Decl(arrayLiteralTooComplex.ts, 973, 43)) + + {texto: "açambarcadora", sentimento: -1, "açambarcadora": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 974, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 974, 28)) +>"açambarcadora" : Symbol("açambarcadora", Decl(arrayLiteralTooComplex.ts, 974, 44)) + + {texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 975, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 975, 29)) +>"açambarcadoras" : Symbol("açambarcadoras", Decl(arrayLiteralTooComplex.ts, 975, 45)) + + {texto: "açambarcadores", sentimento: -1, "açambarcadores": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 976, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 976, 29)) +>"açambarcadores" : Symbol("açambarcadores", Decl(arrayLiteralTooComplex.ts, 976, 45)) + + {texto: "açambarcar", sentimento: 0, "açambarcar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 977, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 977, 25)) +>"açambarcar" : Symbol("açambarcar", Decl(arrayLiteralTooComplex.ts, 977, 40)) + + {texto: "acambetar", sentimento: 0, "acambetar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 978, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 978, 24)) +>"acambetar" : Symbol("acambetar", Decl(arrayLiteralTooComplex.ts, 978, 39)) + + {texto: "acampanar", sentimento: 0, "acampanar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 979, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 979, 24)) +>"acampanar" : Symbol("acampanar", Decl(arrayLiteralTooComplex.ts, 979, 39)) + + {texto: "acanalar", sentimento: 0, "acanalar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 980, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 980, 23)) +>"acanalar" : Symbol("acanalar", Decl(arrayLiteralTooComplex.ts, 980, 38)) + + {texto: "acanalhar", sentimento: 1, "acanalhar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 981, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 981, 24)) +>"acanalhar" : Symbol("acanalhar", Decl(arrayLiteralTooComplex.ts, 981, 39)) + + {texto: "acanavear", sentimento: -1, "acanavear": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 982, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 982, 24)) +>"acanavear" : Symbol("acanavear", Decl(arrayLiteralTooComplex.ts, 982, 40)) + + {texto: "acanelar", sentimento: 0, "acanelar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 983, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 983, 23)) +>"acanelar" : Symbol("acanelar", Decl(arrayLiteralTooComplex.ts, 983, 38)) + + {texto: "acanhada", sentimento: -1, "acanhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 984, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 984, 23)) +>"acanhada" : Symbol("acanhada", Decl(arrayLiteralTooComplex.ts, 984, 39)) + + {texto: "acanhadas", sentimento: -1, "acanhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 985, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 985, 24)) +>"acanhadas" : Symbol("acanhadas", Decl(arrayLiteralTooComplex.ts, 985, 40)) + + {texto: "acanhado", sentimento: -1, "acanhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 986, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 986, 23)) +>"acanhado" : Symbol("acanhado", Decl(arrayLiteralTooComplex.ts, 986, 39)) + + {texto: "acanhados", sentimento: -1, "acanhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 987, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 987, 24)) +>"acanhados" : Symbol("acanhados", Decl(arrayLiteralTooComplex.ts, 987, 40)) + + {texto: "acanhar", sentimento: -1, "acanhar": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 988, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 988, 22)) +>"acanhar" : Symbol("acanhar", Decl(arrayLiteralTooComplex.ts, 988, 38)) + + {texto: "ação judicial", sentimento: -2, "ação judicial": -2}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 989, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 989, 28)) +>"ação judicial" : Symbol("ação judicial", Decl(arrayLiteralTooComplex.ts, 989, 44)) + + {texto: "acapelado", sentimento: 1, "acapelado": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 990, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 990, 24)) +>"acapelado" : Symbol("acapelado", Decl(arrayLiteralTooComplex.ts, 990, 39)) + + {texto: "acapelar", sentimento: 0, "acapelar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 991, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 991, 23)) +>"acapelar" : Symbol("acapelar", Decl(arrayLiteralTooComplex.ts, 991, 38)) + + {texto: "acarar", sentimento: 1, "acarar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 992, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 992, 21)) +>"acarar" : Symbol("acarar", Decl(arrayLiteralTooComplex.ts, 992, 36)) + + {texto: "acarear", sentimento: 1, "acarear": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 993, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 993, 22)) +>"acarear" : Symbol("acarear", Decl(arrayLiteralTooComplex.ts, 993, 37)) + + {texto: "acariciar", sentimento: 0, "acariciar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 994, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 994, 24)) +>"acariciar" : Symbol("acariciar", Decl(arrayLiteralTooComplex.ts, 994, 39)) + + {texto: "acarinhada", sentimento: -1, "acarinhada": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 995, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 995, 25)) +>"acarinhada" : Symbol("acarinhada", Decl(arrayLiteralTooComplex.ts, 995, 41)) + + {texto: "acarinhadas", sentimento: -1, "acarinhadas": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 996, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 996, 26)) +>"acarinhadas" : Symbol("acarinhadas", Decl(arrayLiteralTooComplex.ts, 996, 42)) + + {texto: "acarinhado", sentimento: -1, "acarinhado": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 997, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 997, 25)) +>"acarinhado" : Symbol("acarinhado", Decl(arrayLiteralTooComplex.ts, 997, 41)) + + {texto: "acarinhados", sentimento: -1, "acarinhados": -1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 998, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 998, 26)) +>"acarinhados" : Symbol("acarinhados", Decl(arrayLiteralTooComplex.ts, 998, 42)) + + {texto: "acarinhar", sentimento: 1, "acarinhar": 1}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 999, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 999, 24)) +>"acarinhar" : Symbol("acarinhar", Decl(arrayLiteralTooComplex.ts, 999, 39)) + + {texto: "acarminar", sentimento: 0, "acarminar": 0}, +>texto : Symbol(texto, Decl(arrayLiteralTooComplex.ts, 1000, 5)) +>sentimento : Symbol(sentimento, Decl(arrayLiteralTooComplex.ts, 1000, 24)) +>"acarminar" : Symbol("acarminar", Decl(arrayLiteralTooComplex.ts, 1000, 39)) + +]; diff --git a/tests/baselines/reference/arrayLiteralTooComplex.types b/tests/baselines/reference/arrayLiteralTooComplex.types new file mode 100644 index 0000000000000..780ffa692efb3 --- /dev/null +++ b/tests/baselines/reference/arrayLiteralTooComplex.types @@ -0,0 +1,10184 @@ +=== tests/cases/compiler/arrayLiteralTooComplex.ts === +let a = [ +>a : any[] +>[ {texto: ";)", sentimento: 1, ";)": 1}, {texto: ";@", sentimento: -1, ";@": -1}, {texto: ";*", sentimento: -1, ";*": -1}, {texto: ";**", sentimento: -1, ";**": -1}, {texto: ";~", sentimento: -1, ";~": -1}, {texto: ";D", sentimento: -1, ";D": -1}, {texto: ";P", sentimento: -1, ";P": -1}, {texto: ";p", sentimento: -1, ";p": -1}, {texto: ";x", sentimento: -1, ";x": -1}, {texto: ";xx", sentimento: -1, ";xx": -1}, {texto: ":'(", sentimento: -1, ":'(": -1}, {texto: ":')", sentimento: -1, ":')": -1}, {texto: ":(", sentimento: -1, ":(": -1}, {texto: ":)", sentimento: 1, ":)": 1}, {texto: ":)))", sentimento: 1, ":)))": 1}, {texto: ":]", sentimento: -1, ":]": -1}, {texto: ":@", sentimento: 0, ":@": 0}, {texto: ":*", sentimento: -1, ":*": -1}, {texto: ":<", sentimento: -1, ":<": -1}, {texto: ":~", sentimento: -1, ":~": -1}, {texto: ":$", sentimento: -1, ":$": -1}, {texto: ":D", sentimento: 1, ":D": 1}, {texto: ":p", sentimento: -1, ":p": -1}, {texto: ":P", sentimento: 0, ":P": 0}, {texto: ":x", sentimento: -1, ":x": -1}, {texto: ":x)", sentimento: 1, ":x)": 1}, {texto: "(:", sentimento: -1, "(:": -1}, {texto: "(=", sentimento: 1, "(=": 1}, {texto: "):", sentimento: -1, "):": -1}, {texto: ")):", sentimento: -1, ")):": -1}, {texto: "*:", sentimento: -1, "*:": -1}, {texto: "#2", sentimento: -1, "#2": -1}, {texto: "#2011", sentimento: -1, "#2011": -1}, {texto: "#2014", sentimento: -1, "#2014": -1}, {texto: "#4square", sentimento: -1, "#4square": -1}, {texto: "#64bit", sentimento: 1, "#64bit": 1}, {texto: "#adsl", sentimento: -1, "#adsl": -1}, {texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1}, {texto: "#afazenda", sentimento: -1, "#afazenda": -1}, {texto: "#aff", sentimento: -1, "#aff": -1}, {texto: "#again", sentimento: -1, "#again": -1}, {texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1}, {texto: "#agua", sentimento: 1, "#agua": 1}, {texto: "#aimeucora", sentimento: -1, "#aimeucora": -1}, {texto: "#alan", sentimento: -1, "#alan": -1}, {texto: "#aline", sentimento: -1, "#aline": -1}, {texto: "#amo", sentimento: 1, "#amo": 1}, {texto: "#amodoro", sentimento: 1, "#amodoro": 1}, {texto: "#amor", sentimento: -1, "#amor": -1}, {texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1}, {texto: "#an", sentimento: 1, "#an": 1}, {texto: "#android", sentimento: 1, "#android": 1}, {texto: "#animada", sentimento: -1, "#animada": -1}, {texto: "#apagao", sentimento: -1, "#apagao": -1}, {texto: "#apps", sentimento: -1, "#apps": -1}, {texto: "#aqu", sentimento: 1, "#aqu": 1}, {texto: "#ari", sentimento: -1, "#ari": -1}, {texto: "#ariane", sentimento: -1, "#ariane": -1}, {texto: "#bad", sentimento: -1, "#bad": -1}, {texto: "#bakugan", sentimento: -1, "#bakugan": -1}, {texto: "#bam", sentimento: 1, "#bam": 1}, {texto: "#bandida", sentimento: -1, "#bandida": -1}, {texto: "#bankonline", sentimento: 1, "#bankonline": 1}, {texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1}, {texto: "#beer", sentimento: 1, "#beer": 1}, {texto: "#beijo", sentimento: 1, "#beijo": 1}, {texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1}, {texto: "#bigmistake", sentimento: -1, "#bigmistake": -1}, {texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1}, {texto: "#bio", sentimento: 1, "#bio": 1}, {texto: "#biologia", sentimento: -1, "#biologia": -1}, {texto: "#birdbrain", sentimento: -1, "#birdbrain": -1}, {texto: "#blackberry", sentimento: -1, "#blackberry": -1}, {texto: "#blackhat", sentimento: -1, "#blackhat": -1}, {texto: "#blogprog", sentimento: -1, "#blogprog": -1}, {texto: "#bodareal", sentimento: -1, "#bodareal": -1}, {texto: "#bombando", sentimento: -1, "#bombando": -1}, {texto: "#bomdia", sentimento: -1, "#bomdia": -1}, {texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1}, {texto: "#boobs", sentimento: 1, "#boobs": 1}, {texto: "#boomsm", sentimento: 1, "#boomsm": 1}, {texto: "#boss", sentimento: 1, "#boss": 1}, {texto: "#brandsclub", sentimento: -1, "#brandsclub": -1}, {texto: "#brasil", sentimento: -1, "#brasil": -1}, {texto: "#brasilia", sentimento: -1, "#brasilia": -1}, {texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1}, {texto: "#brazilians", sentimento: -1, "#brazilians": -1}, {texto: "#bsb", sentimento: -1, "#bsb": -1}, {texto: "#bub", sentimento: -1, "#bub": -1}, {texto: "#buongiorno", sentimento: -1, "#buongiorno": -1}, {texto: "#burro", sentimento: -1, "#burro": -1}, {texto: "#cad", sentimento: -1, "#cad": -1}, {texto: "#caelum", sentimento: 1, "#caelum": 1}, {texto: "#cafeina", sentimento: -1, "#cafeina": -1}, {texto: "#caixa", sentimento: -1, "#caixa": -1}, {texto: "#cal", sentimento: 1, "#cal": 1}, {texto: "#camaradagem", sentimento: -1, "#camaradagem": -1}, {texto: "#camel", sentimento: 1, "#camel": 1}, {texto: "#capric", sentimento: -1, "#capric": -1}, {texto: "#carol", sentimento: -1, "#carol": -1}, {texto: "#carris", sentimento: -1, "#carris": -1}, {texto: "#cartolafc", sentimento: -1, "#cartolafc": -1}, {texto: "#catalao", sentimento: -1, "#catalao": -1}, {texto: "#cdlr", sentimento: 1, "#cdlr": 1}, {texto: "#cearasc", sentimento: -1, "#cearasc": -1}, {texto: "#centauro", sentimento: -1, "#centauro": -1}, {texto: "#certeza", sentimento: -1, "#certeza": -1}, {texto: "#cet", sentimento: -1, "#cet": -1}, {texto: "#charmeleon", sentimento: 1, "#charmeleon": 1}, {texto: "#chelas", sentimento: 1, "#chelas": 1}, {texto: "#chrome", sentimento: 1, "#chrome": 1}, {texto: "#cielo", sentimento: -1, "#cielo": -1}, {texto: "#cloaking", sentimento: -1, "#cloaking": -1}, {texto: "#cmteam", sentimento: 1, "#cmteam": 1}, {texto: "#comex", sentimento: -1, "#comex": -1}, {texto: "#comofas", sentimento: -1, "#comofas": -1}, {texto: "#compos", sentimento: -1, "#compos": -1}, {texto: "#conspira", sentimento: -1, "#conspira": -1}, {texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1}, {texto: "#contribuir", sentimento: 1, "#contribuir": 1}, {texto: "#conversos", sentimento: -1, "#conversos": -1}, {texto: "#copa", sentimento: -1, "#copa": -1}, {texto: "#corpoevida", sentimento: 1, "#corpoevida": 1}, {texto: "#correios", sentimento: -1, "#correios": -1}, {texto: "#cpco4", sentimento: 1, "#cpco4": 1}, {texto: "#cpfl", sentimento: -1, "#cpfl": -1}, {texto: "#cqc", sentimento: -1, "#cqc": -1}, {texto: "#cqteste", sentimento: -1, "#cqteste": -1}, {texto: "#cry", sentimento: -1, "#cry": -1}, {texto: "#cs1", sentimento: 1, "#cs1": 1}, {texto: "#csrio", sentimento: 1, "#csrio": 1}, {texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1}, {texto: "#curiosidades", sentimento: 1, "#curiosidades": 1}, {texto: "#curso", sentimento: -1, "#curso": -1}, {texto: "#d", sentimento: 1, "#d": 1}, {texto: "#dailyformula", sentimento: 1, "#dailyformula": 1}, {texto: "#datena", sentimento: -1, "#datena": -1}, {texto: "#declara", sentimento: -1, "#declara": -1}, {texto: "#defeito", sentimento: -1, "#defeito": -1}, {texto: "#desconfiado", sentimento: 1, "#desconfiado": 1}, {texto: "#desculpa", sentimento: -1, "#desculpa": -1}, {texto: "#deus", sentimento: 1, "#deus": 1}, {texto: "#di", sentimento: 1, "#di": 1}, {texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1}, {texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1}, {texto: "#diegocaash", sentimento: -1, "#diegocaash": -1}, {texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1}, {texto: "#digimon", sentimento: -1, "#digimon": -1}, {texto: "#digitalworld", sentimento: -1, "#digitalworld": -1}, {texto: "#django1", sentimento: 1, "#django1": 1}, {texto: "#dojorio", sentimento: 1, "#dojorio": 1}, {texto: "#dorgas", sentimento: -1, "#dorgas": -1}, {texto: "#dormir", sentimento: 1, "#dormir": 1}, {texto: "#e3", sentimento: -1, "#e3": -1}, {texto: "#e32011", sentimento: -1, "#e32011": -1}, {texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1}, {texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1}, {texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1}, {texto: "#ela", sentimento: -1, "#ela": -1}, {texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1}, {texto: "#elbotin", sentimento: 1, "#elbotin": 1}, {texto: "#elcorner", sentimento: -1, "#elcorner": -1}, {texto: "#ele", sentimento: -1, "#ele": -1}, {texto: "#eletromate", sentimento: -1, "#eletromate": -1}, {texto: "#emerson", sentimento: -1, "#emerson": -1}, {texto: "#enem", sentimento: -1, "#enem": -1}, {texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1}, {texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1}, {texto: "#epic", sentimento: -1, "#epic": -1}, {texto: "#epicwin", sentimento: 0, "#epicwin": 0}, {texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1}, {texto: "#eressexypero", sentimento: 1, "#eressexypero": 1}, {texto: "#errodotz", sentimento: -1, "#errodotz": -1}, {texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1}, {texto: "#escroto", sentimento: -1, "#escroto": -1}, {texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1}, {texto: "#estad", sentimento: -1, "#estad": -1}, {texto: "#estudar", sentimento: -1, "#estudar": -1}, {texto: "#etenildos", sentimento: -1, "#etenildos": -1}, {texto: "#eu", sentimento: -1, "#eu": -1}, {texto: "#eununca", sentimento: -1, "#eununca": -1}, {texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1}, {texto: "#evernote", sentimento: 1, "#evernote": 1}, {texto: "#exalta", sentimento: -1, "#exalta": -1}, {texto: "#expotch", sentimento: -1, "#expotch": -1}, {texto: "#facebook", sentimento: 1, "#facebook": 1}, {texto: "#fail", sentimento: -1, "#fail": -1}, {texto: "#faiooo", sentimento: -1, "#faiooo": -1}, {texto: "#fascinante", sentimento: 1, "#fascinante": 1}, {texto: "#fashion", sentimento: -1, "#fashion": -1}, {texto: "#fato", sentimento: -1, "#fato": -1}, {texto: "#fb", sentimento: 1, "#fb": 1}, {texto: "#feil", sentimento: -1, "#feil": -1}, {texto: "#feio", sentimento: -1, "#feio": -1}, {texto: "#fertagus", sentimento: 1, "#fertagus": 1}, {texto: "#ff", sentimento: 1, "#ff": 1}, {texto: "#fibra", sentimento: -1, "#fibra": -1}, {texto: "#ficadica", sentimento: -1, "#ficadica": -1}, {texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1}, {texto: "#fifa11", sentimento: 1, "#fifa11": 1}, {texto: "#fikdik", sentimento: -1, "#fikdik": -1}, {texto: "#filha", sentimento: -1, "#filha": -1}, {texto: "#finishh", sentimento: 1, "#finishh": 1}, {texto: "#firefox", sentimento: 1, "#firefox": 1}, {texto: "#fisl", sentimento: 1, "#fisl": 1}, {texto: "#flash", sentimento: 1, "#flash": 1}, {texto: "#flopou", sentimento: -1, "#flopou": -1}, {texto: "#fodaa", sentimento: -1, "#fodaa": -1}, {texto: "#fodao", sentimento: 1, "#fodao": 1}, {texto: "#fome", sentimento: 1, "#fome": 1}, {texto: "#foramicarla", sentimento: -1, "#foramicarla": -1}, {texto: "#forever", sentimento: 1, "#forever": 1}, {texto: "#foreveralone", sentimento: 1, "#foreveralone": 1}, {texto: "#forevergordo", sentimento: 1, "#forevergordo": 1}, {texto: "#fortaleza", sentimento: -1, "#fortaleza": -1}, {texto: "#frontinrio", sentimento: 1, "#frontinrio": 1}, {texto: "#fsoa", sentimento: 1, "#fsoa": 1}, {texto: "#fuckboy", sentimento: -1, "#fuckboy": -1}, {texto: "#fuckyea", sentimento: 1, "#fuckyea": 1}, {texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1}, {texto: "#funk", sentimento: -1, "#funk": -1}, {texto: "#gaga", sentimento: -1, "#gaga": -1}, {texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1}, {texto: "#gatos", sentimento: 1, "#gatos": 1}, {texto: "#generationteen", sentimento: -1, "#generationteen": -1}, {texto: "#gente", sentimento: -1, "#gente": -1}, {texto: "#genteque", sentimento: -1, "#genteque": -1}, {texto: "#ger", sentimento: -1, "#ger": -1}, {texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1}, {texto: "#gof9", sentimento: -1, "#gof9": -1}, {texto: "#gol", sentimento: 1, "#gol": 1}, {texto: "#golazo", sentimento: 1, "#golazo": 1}, {texto: "#google", sentimento: -1, "#google": -1}, {texto: "#googledoodle", sentimento: -1, "#googledoodle": -1}, {texto: "#gr", sentimento: -1, "#gr": -1}, {texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1}, {texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1}, {texto: "#gremio", sentimento: -1, "#gremio": -1}, {texto: "#guanabara", sentimento: 1, "#guanabara": 1}, {texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1}, {texto: "#guicostnn", sentimento: -1, "#guicostnn": -1}, {texto: "#harrypobre", sentimento: 1, "#harrypobre": 1}, {texto: "#hi5", sentimento: 1, "#hi5": 1}, {texto: "#historia", sentimento: -1, "#historia": -1}, {texto: "#horacerta", sentimento: -1, "#horacerta": -1}, {texto: "#hotmail", sentimento: -1, "#hotmail": -1}, {texto: "#html5", sentimento: 1, "#html5": 1}, {texto: "#humornegro", sentimento: 1, "#humornegro": 1}, {texto: "#icwd", sentimento: 1, "#icwd": 1}, {texto: "#ie", sentimento: 1, "#ie": 1}, {texto: "#ifce", sentimento: -1, "#ifce": -1}, {texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1}, {texto: "#imagens", sentimento: 1, "#imagens": 1}, {texto: "#infancia", sentimento: 1, "#infancia": 1}, {texto: "#infografia", sentimento: 1, "#infografia": 1}, {texto: "#inlove", sentimento: 1, "#inlove": 1}, {texto: "#insensatos2", sentimento: -1, "#insensatos2": -1}, {texto: "#internetbanking", sentimento: -1, "#internetbanking": -1}, {texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1}, {texto: "#intersystem", sentimento: -1, "#intersystem": -1}, {texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1}, {texto: "#ios5", sentimento: 1, "#ios5": 1}, {texto: "#itau", sentimento: -1, "#itau": -1}, {texto: "#j", sentimento: -1, "#j": -1}, {texto: "#jam", sentimento: -1, "#jam": -1}, {texto: "#jantar", sentimento: 1, "#jantar": 1}, {texto: "#jaspion", sentimento: 1, "#jaspion": 1}, {texto: "#jesse", sentimento: 1, "#jesse": 1}, {texto: "#jim", sentimento: 1, "#jim": 1}, {texto: "#joomla", sentimento: -1, "#joomla": -1}, {texto: "#josatan", sentimento: 1, "#josatan": 1}, {texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1}, {texto: "#jumbo", sentimento: 1, "#jumbo": 1}, {texto: "#kevin", sentimento: -1, "#kevin": -1}, {texto: "#lance", sentimento: 1, "#lance": 1}, {texto: "#le", sentimento: 1, "#le": 1}, {texto: "#leticia", sentimento: -1, "#leticia": -1}, {texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1}, {texto: "#lindo", sentimento: 1, "#lindo": 1}, {texto: "#linux", sentimento: 1, "#linux": 1}, {texto: "#lion", sentimento: 1, "#lion": 1}, {texto: "#lixo", sentimento: -1, "#lixo": -1}, {texto: "#lixofonica", sentimento: -1, "#lixofonica": -1}, {texto: "#lol", sentimento: -1, "#lol": -1}, {texto: "#looser", sentimento: 1, "#looser": 1}, {texto: "#luansantana", sentimento: -1, "#luansantana": -1}, {texto: "#lucasednir", sentimento: -1, "#lucasednir": -1}, {texto: "#mac", sentimento: -1, "#mac": -1}, {texto: "#maconha", sentimento: -1, "#maconha": -1}, {texto: "#madvma", sentimento: -1, "#madvma": -1}, {texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1}, {texto: "#magnocentro", sentimento: -1, "#magnocentro": -1}, {texto: "#malha", sentimento: -1, "#malha": -1}, {texto: "#manaus", sentimento: 1, "#manaus": 1}, {texto: "#mariabethania", sentimento: -1, "#mariabethania": -1}, {texto: "#marisa", sentimento: -1, "#marisa": -1}, {texto: "#may", sentimento: -1, "#may": -1}, {texto: "#mecaga", sentimento: -1, "#mecaga": -1}, {texto: "#megalagana", sentimento: 1, "#megalagana": 1}, {texto: "#megasena", sentimento: 1, "#megasena": 1}, {texto: "#melhores", sentimento: 1, "#melhores": 1}, {texto: "#melissa", sentimento: -1, "#melissa": -1}, {texto: "#melissahorn", sentimento: 1, "#melissahorn": 1}, {texto: "#memolesta", sentimento: -1, "#memolesta": -1}, {texto: "#metrosp", sentimento: -1, "#metrosp": -1}, {texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1}, {texto: "#meusonho", sentimento: -1, "#meusonho": -1}, {texto: "#microsoft", sentimento: -1, "#microsoft": -1}, {texto: "#mimimi", sentimento: 1, "#mimimi": 1}, {texto: "#mobile", sentimento: -1, "#mobile": -1}, {texto: "#mockery", sentimento: 1, "#mockery": 1}, {texto: "#mockito", sentimento: 1, "#mockito": 1}, {texto: "#monografia", sentimento: -1, "#monografia": -1}, {texto: "#montanagrill", sentimento: 1, "#montanagrill": 1}, {texto: "#monterrey", sentimento: -1, "#monterrey": -1}, {texto: "#morto", sentimento: -1, "#morto": -1}, {texto: "#motos", sentimento: -1, "#motos": -1}, {texto: "#movies", sentimento: 1, "#movies": 1}, {texto: "#msn", sentimento: -1, "#msn": -1}, {texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1}, {texto: "#myhero", sentimento: 1, "#myhero": 1}, {texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1}, {texto: "#naomais", sentimento: -1, "#naomais": -1}, {texto: "#nata", sentimento: -1, "#nata": -1}, {texto: "#nervoso", sentimento: 1, "#nervoso": 1}, {texto: "#net", sentimento: -1, "#net": -1}, {texto: "#netcombo", sentimento: -1, "#netcombo": -1}, {texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1}, {texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1}, {texto: "#nomamar", sentimento: -1, "#nomamar": -1}, {texto: "#not", sentimento: -1, "#not": -1}, {texto: "#oclone", sentimento: -1, "#oclone": -1}, {texto: "#oda", sentimento: -1, "#oda": -1}, {texto: "#odeio", sentimento: -1, "#odeio": -1}, {texto: "#oi", sentimento: -1, "#oi": -1}, {texto: "#old", sentimento: 1, "#old": 1}, {texto: "#omg", sentimento: -1, "#omg": -1}, {texto: "#opera", sentimento: 1, "#opera": 1}, {texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1}, {texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1}, {texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1}, {texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1}, {texto: "#pais", sentimento: -1, "#pais": -1}, {texto: "#palmeiras", sentimento: 1, "#palmeiras": 1}, {texto: "#palocci", sentimento: -1, "#palocci": -1}, {texto: "#panama", sentimento: 1, "#panama": 1}, {texto: "#panico", sentimento: 1, "#panico": 1}, {texto: "#parti", sentimento: -1, "#parti": -1}, {texto: "#partiu", sentimento: -1, "#partiu": -1}, {texto: "#patadeperro", sentimento: 1, "#patadeperro": 1}, {texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0}, {texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1}, {texto: "#photoshop", sentimento: -1, "#photoshop": -1}, {texto: "#php", sentimento: 1, "#php": 1}, {texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1}, {texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1}, {texto: "#planetmix", sentimento: -1, "#planetmix": -1}, {texto: "#plc122", sentimento: -1, "#plc122": -1}, {texto: "#plimplim", sentimento: -1, "#plimplim": -1}, {texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1}, {texto: "#poderir", sentimento: -1, "#poderir": -1}, {texto: "#pokemon", sentimento: -1, "#pokemon": -1}, {texto: "#polishop", sentimento: -1, "#polishop": -1}, {texto: "#politicagem", sentimento: -1, "#politicagem": -1}, {texto: "#polvilho", sentimento: -1, "#polvilho": -1}, {texto: "#popular", sentimento: -1, "#popular": -1}, {texto: "#poweroflove", sentimento: -1, "#poweroflove": -1}, {texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1}, {texto: "#pqp", sentimento: -1, "#pqp": -1}, {texto: "#prequi", sentimento: -1, "#prequi": -1}, {texto: "#profiss", sentimento: 1, "#profiss": 1}, {texto: "#programadojo", sentimento: -1, "#programadojo": -1}, {texto: "#promo", sentimento: -1, "#promo": -1}, {texto: "#prova", sentimento: -1, "#prova": -1}, {texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1}, {texto: "#ptt", sentimento: -1, "#ptt": -1}, {texto: "#pucrs", sentimento: -1, "#pucrs": -1}, {texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1}, {texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1}, {texto: "#qbomne", sentimento: -1, "#qbomne": -1}, {texto: "#qconsp", sentimento: 1, "#qconsp": 1}, {texto: "#quefasehein", sentimento: -1, "#quefasehein": -1}, {texto: "#quepena", sentimento: -1, "#quepena": -1}, {texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1}, {texto: "#quiz", sentimento: 1, "#quiz": 1}, {texto: "#ramon", sentimento: -1, "#ramon": -1}, {texto: "#receba", sentimento: -1, "#receba": -1}, {texto: "#reclame", sentimento: 1, "#reclame": 1}, {texto: "#redeglobo", sentimento: -1, "#redeglobo": -1}, {texto: "#referendum", sentimento: -1, "#referendum": -1}, {texto: "#referendum2011", sentimento: -1, "#referendum2011": -1}, {texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1}, {texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1}, {texto: "#revendatim", sentimento: -1, "#revendatim": -1}, {texto: "#reynosa", sentimento: -1, "#reynosa": -1}, {texto: "#riovermelho", sentimento: -1, "#riovermelho": -1}, {texto: "#riverplate", sentimento: 1, "#riverplate": 1}, {texto: "#rockrio", sentimento: -1, "#rockrio": -1}, {texto: "#s", sentimento: -1, "#s": -1}, {texto: "#sabado", sentimento: 1, "#sabado": 1}, {texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1}, {texto: "#safari", sentimento: 1, "#safari": 1}, {texto: "#samsung", sentimento: -1, "#samsung": -1}, {texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1}, {texto: "#santoantonio", sentimento: -1, "#santoantonio": -1}, {texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1}, {texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1}, {texto: "#semata", sentimento: -1, "#semata": -1}, {texto: "#seo", sentimento: 0, "#seo": 0}, {texto: "#seomoz", sentimento: 1, "#seomoz": 1}, {texto: "#ser", sentimento: -1, "#ser": -1}, {texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1}, {texto: "#sga", sentimento: -1, "#sga": -1}, {texto: "#sic", sentimento: 1, "#sic": 1}, {texto: "#sigam", sentimento: -1, "#sigam": -1}, {texto: "#signos", sentimento: -1, "#signos": -1}, {texto: "#signout", sentimento: -1, "#signout": -1}, {texto: "#site", sentimento: -1, "#site": -1}, {texto: "#smiles", sentimento: -1, "#smiles": -1}, {texto: "#sms", sentimento: -1, "#sms": -1}, {texto: "#sogra", sentimento: -1, "#sogra": -1}, {texto: "#sono", sentimento: -1, "#sono": -1}, {texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1}, {texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1}, {texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1}, {texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1}, {texto: "#soyadicto", sentimento: 1, "#soyadicto": 1}, {texto: "#speed", sentimento: -1, "#speed": -1}, {texto: "#speedy", sentimento: -1, "#speedy": -1}, {texto: "#spotv", sentimento: -1, "#spotv": -1}, {texto: "#submarino", sentimento: -1, "#submarino": -1}, {texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1}, {texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1}, {texto: "#tcc", sentimento: 1, "#tcc": 1}, {texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1}, {texto: "#teamo", sentimento: -1, "#teamo": -1}, {texto: "#tecnologia", sentimento: 1, "#tecnologia": 1}, {texto: "#telaquente", sentimento: -1, "#telaquente": -1}, {texto: "#telefoncia", sentimento: -1, "#telefoncia": -1}, {texto: "#telefonica", sentimento: -1, "#telefonica": -1}, {texto: "#tenso", sentimento: -1, "#tenso": -1}, {texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1}, {texto: "#ti", sentimento: -1, "#ti": -1}, {texto: "#tim", sentimento: -1, "#tim": -1}, {texto: "#time", sentimento: -1, "#time": -1}, {texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1}, {texto: "#todosadora", sentimento: -1, "#todosadora": -1}, {texto: "#topfive", sentimento: -1, "#topfive": -1}, {texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1}, {texto: "#totalyfail", sentimento: -1, "#totalyfail": -1}, {texto: "#tps", sentimento: -1, "#tps": -1}, {texto: "#transitosp", sentimento: -1, "#transitosp": -1}, {texto: "#travelmug", sentimento: 1, "#travelmug": 1}, {texto: "#travelw", sentimento: -1, "#travelw": -1}, {texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1}, {texto: "#treinaweb", sentimento: -1, "#treinaweb": -1}, {texto: "#trollar", sentimento: -1, "#trollar": -1}, {texto: "#trote", sentimento: -1, "#trote": -1}, {texto: "#true", sentimento: 1, "#true": 1}, {texto: "#tvi", sentimento: 1, "#tvi": 1}, {texto: "#twitcam", sentimento: -1, "#twitcam": -1}, {texto: "#twittcam", sentimento: -1, "#twittcam": -1}, {texto: "#twitter", sentimento: -1, "#twitter": -1}, {texto: "#uenf", sentimento: 1, "#uenf": 1}, {texto: "#unesp", sentimento: -1, "#unesp": -1}, {texto: "#uni", sentimento: -1, "#uni": -1}, {texto: "#unico", sentimento: -1, "#unico": -1}, {texto: "#unip", sentimento: -1, "#unip": -1}, {texto: "#v", sentimento: -1, "#v": -1}, {texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1}, {texto: "#valdir", sentimento: -1, "#valdir": -1}, {texto: "#valetudo", sentimento: -1, "#valetudo": -1}, {texto: "#valeurge", sentimento: -1, "#valeurge": -1}, {texto: "#vamp", sentimento: -1, "#vamp": -1}, {texto: "#vdm", sentimento: -1, "#vdm": -1}, {texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1}, {texto: "#verdade", sentimento: 0, "#verdade": 0}, {texto: "#vergonha", sentimento: -1, "#vergonha": -1}, {texto: "#viage", sentimento: -1, "#viage": -1}, {texto: "#vida", sentimento: -1, "#vida": -1}, {texto: "#viih", sentimento: -1, "#viih": -1}, {texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1}, {texto: "#vivo", sentimento: 0, "#vivo": 0}, {texto: "#vmb", sentimento: -1, "#vmb": -1}, {texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1}, {texto: "#voetrip", sentimento: -1, "#voetrip": -1}, {texto: "#volei", sentimento: -1, "#volei": -1}, {texto: "#vtnc", sentimento: -1, "#vtnc": -1}, {texto: "#vym", sentimento: -1, "#vym": -1}, {texto: "#w00t", sentimento: 1, "#w00t": 1}, {texto: "#win", sentimento: 1, "#win": 1}, {texto: "#windows", sentimento: 1, "#windows": 1}, {texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1}, {texto: "#winning", sentimento: 1, "#winning": 1}, {texto: "#wolfteam", sentimento: -1, "#wolfteam": -1}, {texto: "#wp7", sentimento: 1, "#wp7": 1}, {texto: "#x10", sentimento: -1, "#x10": -1}, {texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1}, {texto: "#youtube", sentimento: -1, "#youtube": -1}, {texto: "#z", sentimento: -1, "#z": -1}, {texto: "#zegotinha", sentimento: 1, "#zegotinha": 1}, {texto: "#zon", sentimento: 0, "#zon": 0}, {texto: "=[", sentimento: -1, "=[": -1}, {texto: "=@", sentimento: -1, "=@": -1}, {texto: "=D", sentimento: 1, "=D": 1}, {texto: "=d", sentimento: 1, "=d": 1}, {texto: "=P", sentimento: -1, "=P": -1}, {texto: "=p", sentimento: -1, "=p": -1}, {texto: "=x", sentimento: -1, "=x": -1}, {texto: ">:(", sentimento: -1, ">:(": -1}, {texto: "><", sentimento: -1, "><": -1}, {texto: "¬¬''", sentimento: -1, "¬¬''": -1}, {texto: "¬¬", sentimento: -1, "¬¬": -1}, {texto: "a comemorar", sentimento: 3, "a comemorar": 3}, {texto: "¬", sentimento: -1, "¬": -1}, {texto: "ab-rogar", sentimento: -1, "ab-rogar": -1}, {texto: "ababadar", sentimento: 0, "ababadar": 0}, {texto: "ababelar-se", sentimento: 1, "ababelar-se": 1}, {texto: "ababelar", sentimento: -1, "ababelar": -1}, {texto: "abaçanar", sentimento: 1, "abaçanar": 1}, {texto: "abacinar", sentimento: 1, "abacinar": 1}, {texto: "abafada", sentimento: -1, "abafada": -1}, {texto: "abafadas", sentimento: -1, "abafadas": -1}, {texto: "abafado", sentimento: -1, "abafado": -1}, {texto: "abafados", sentimento: -1, "abafados": -1}, {texto: "abafante", sentimento: -1, "abafante": -1}, {texto: "abafantes", sentimento: -1, "abafantes": -1}, {texto: "abafar", sentimento: -1, "abafar": -1}, {texto: "abafou", sentimento: -1, "abafou": -1}, {texto: "abaixada", sentimento: -1, "abaixada": -1}, {texto: "abaixadas", sentimento: -1, "abaixadas": -1}, {texto: "abaixado", sentimento: -1, "abaixado": -1}, {texto: "abaixados", sentimento: -1, "abaixados": -1}, {texto: "abaixar-se", sentimento: 0, "abaixar-se": 0}, {texto: "abaixar", sentimento: 0, "abaixar": 0}, {texto: "abalada", sentimento: -1, "abalada": -1}, {texto: "abaladas", sentimento: -1, "abaladas": -1}, {texto: "abalado", sentimento: -1, "abalado": -1}, {texto: "abalados", sentimento: -1, "abalados": -1}, {texto: "abalançado", sentimento: 1, "abalançado": 1}, {texto: "abalançar", sentimento: 1, "abalançar": 1}, {texto: "abalar-se", sentimento: 0, "abalar-se": 0}, {texto: "abalar", sentimento: 0, "abalar": 0}, {texto: "abalizada", sentimento: 1, "abalizada": 1}, {texto: "abalizadas", sentimento: 1, "abalizadas": 1}, {texto: "abalizado", sentimento: 1, "abalizado": 1}, {texto: "abalizados", sentimento: 1, "abalizados": 1}, {texto: "abalizar", sentimento: 0, "abalizar": 0}, {texto: "abalroar-se", sentimento: 1, "abalroar-se": 1}, {texto: "abalroar", sentimento: 0, "abalroar": 0}, {texto: "abanar", sentimento: 0, "abanar": 0}, {texto: "abandalhada", sentimento: -1, "abandalhada": -1}, {texto: "abandalhadas", sentimento: -1, "abandalhadas": -1}, {texto: "abandalhado", sentimento: -1, "abandalhado": -1}, {texto: "abandalhados", sentimento: -1, "abandalhados": -1}, {texto: "abandalhar", sentimento: 1, "abandalhar": 1}, {texto: "abandar", sentimento: -1, "abandar": -1}, {texto: "abandonada", sentimento: -1, "abandonada": -1}, {texto: "abandonadas", sentimento: -1, "abandonadas": -1}, {texto: "abandonado", sentimento: -1, "abandonado": -1}, {texto: "abandonado", sentimento: -2, "abandonado": -2}, {texto: "abandonados", sentimento: -1, "abandonados": -1}, {texto: "abandonar-se", sentimento: 0, "abandonar-se": 0}, {texto: "abandonar", sentimento: -1, "abandonar": -1}, {texto: "abandono", sentimento: -2, "abandono": -2}, {texto: "abandonos", sentimento: -2, "abandonos": -2}, {texto: "abarbar", sentimento: 1, "abarbar": 1}, {texto: "abarbarado", sentimento: 1, "abarbarado": 1}, {texto: "abarcante", sentimento: -1, "abarcante": -1}, {texto: "abarcantes", sentimento: -1, "abarcantes": -1}, {texto: "abarcar", sentimento: -1, "abarcar": -1}, {texto: "abarrancar", sentimento: -1, "abarrancar": -1}, {texto: "abarregar", sentimento: 1, "abarregar": 1}, {texto: "abarreirar", sentimento: -1, "abarreirar": -1}, {texto: "abarrocar", sentimento: -1, "abarrocar": -1}, {texto: "abarrotada", sentimento: -1, "abarrotada": -1}, {texto: "abarrotadas", sentimento: -1, "abarrotadas": -1}, {texto: "abarrotado", sentimento: -1, "abarrotado": -1}, {texto: "abarrotados", sentimento: -1, "abarrotados": -1}, {texto: "abarrotar", sentimento: 0, "abarrotar": 0}, {texto: "abasbacar", sentimento: 0, "abasbacar": 0}, {texto: "abastada", sentimento: 1, "abastada": 1}, {texto: "abastadas", sentimento: 1, "abastadas": 1}, {texto: "abastadear", sentimento: 1, "abastadear": 1}, {texto: "abastado", sentimento: 1, "abastado": 1}, {texto: "abastados", sentimento: 1, "abastados": 1}, {texto: "abastar", sentimento: -1, "abastar": -1}, {texto: "abastardar-se", sentimento: 1, "abastardar-se": 1}, {texto: "abastardar", sentimento: 1, "abastardar": 1}, {texto: "abastardear-se", sentimento: 1, "abastardear-se": 1}, {texto: "abastecer", sentimento: 1, "abastecer": 1}, {texto: "abastecida", sentimento: 0, "abastecida": 0}, {texto: "abastecidas", sentimento: 0, "abastecidas": 0}, {texto: "abastecido", sentimento: 0, "abastecido": 0}, {texto: "abastecidos", sentimento: 0, "abastecidos": 0}, {texto: "abastoso", sentimento: 1, "abastoso": 1}, {texto: "abater", sentimento: -1, "abater": -1}, {texto: "abatida", sentimento: -1, "abatida": -1}, {texto: "abatidas", sentimento: -1, "abatidas": -1}, {texto: "abatido", sentimento: -1, "abatido": -1}, {texto: "abatido", sentimento: -2, "abatido": -2}, {texto: "abatidos", sentimento: -1, "abatidos": -1}, {texto: "abatocar", sentimento: 1, "abatocar": 1}, {texto: "abdicar", sentimento: -1, "abdicar": -1}, {texto: "abdução", sentimento: -2, "abdução": -2}, {texto: "abduzir-se", sentimento: 1, "abduzir-se": 1}, {texto: "abduzir", sentimento: 0, "abduzir": 0}, {texto: "abeberar", sentimento: 0, "abeberar": 0}, {texto: "abeirar-se", sentimento: 1, "abeirar-se": 1}, {texto: "abeirar", sentimento: 0, "abeirar": 0}, {texto: "abelhuda", sentimento: -1, "abelhuda": -1}, {texto: "abelhudar", sentimento: 0, "abelhudar": 0}, {texto: "abelhudas", sentimento: -1, "abelhudas": -1}, {texto: "abelhudo", sentimento: -1, "abelhudo": -1}, {texto: "abelhudos", sentimento: -1, "abelhudos": -1}, {texto: "abemolar", sentimento: 0, "abemolar": 0}, {texto: "abençoa", sentimento: 2, "abençoa": 2}, {texto: "abençoada", sentimento: 1, "abençoada": 1}, {texto: "abençoadas", sentimento: 1, "abençoadas": 1}, {texto: "abençoado", sentimento: 1, "abençoado": 1}, {texto: "abençoados", sentimento: 1, "abençoados": 1}, {texto: "abençoar", sentimento: 0, "abençoar": 0}, {texto: "abençoar", sentimento: 2, "abençoar": 2}, {texto: "aberrante", sentimento: -1, "aberrante": -1}, {texto: "aberrantes", sentimento: -1, "aberrantes": -1}, {texto: "aberrativa", sentimento: -1, "aberrativa": -1}, {texto: "aberrativas", sentimento: -1, "aberrativas": -1}, {texto: "aberrativo", sentimento: -1, "aberrativo": -1}, {texto: "aberrativos", sentimento: -1, "aberrativos": -1}, {texto: "aberratório", sentimento: 1, "aberratório": 1}, {texto: "aberta", sentimento: 0, "aberta": 0}, {texto: "abertão", sentimento: 1, "abertão": 1}, {texto: "abertas", sentimento: 0, "abertas": 0}, {texto: "aberto", sentimento: 0, "aberto": 0}, {texto: "abertos", sentimento: 0, "abertos": 0}, {texto: "abespinhada", sentimento: -1, "abespinhada": -1}, {texto: "abespinhadas", sentimento: -1, "abespinhadas": -1}, {texto: "abespinhado", sentimento: -1, "abespinhado": -1}, {texto: "abespinhados", sentimento: -1, "abespinhados": -1}, {texto: "abespinhar", sentimento: -1, "abespinhar": -1}, {texto: "abestalhada", sentimento: -1, "abestalhada": -1}, {texto: "abestalhadas", sentimento: -1, "abestalhadas": -1}, {texto: "abestalhado", sentimento: -1, "abestalhado": -1}, {texto: "abestalhados", sentimento: -1, "abestalhados": -1}, {texto: "abetumado", sentimento: -1, "abetumado": -1}, {texto: "abetumar", sentimento: 0, "abetumar": 0}, {texto: "abicar", sentimento: 0, "abicar": 0}, {texto: "abichar", sentimento: 0, "abichar": 0}, {texto: "abilolada", sentimento: -1, "abilolada": -1}, {texto: "abiloladas", sentimento: -1, "abiloladas": -1}, {texto: "abilolado", sentimento: -1, "abilolado": -1}, {texto: "abilolados", sentimento: -1, "abilolados": -1}, {texto: "abiscoitar", sentimento: 0, "abiscoitar": 0}, {texto: "abiselar", sentimento: 1, "abiselar": 1}, {texto: "abismada", sentimento: -1, "abismada": -1}, {texto: "abismadas", sentimento: -1, "abismadas": -1}, {texto: "abismado", sentimento: -1, "abismado": -1}, {texto: "abismados", sentimento: -1, "abismados": -1}, {texto: "abismais", sentimento: -1, "abismais": -1}, {texto: "abismal", sentimento: -1, "abismal": -1}, {texto: "abismar", sentimento: 1, "abismar": 1}, {texto: "abjecta", sentimento: -1, "abjecta": -1}, {texto: "abjectas", sentimento: -1, "abjectas": -1}, {texto: "abjecto", sentimento: -1, "abjecto": -1}, {texto: "abjectos", sentimento: -1, "abjectos": -1}, {texto: "abjeta", sentimento: -1, "abjeta": -1}, {texto: "abjetas", sentimento: -1, "abjetas": -1}, {texto: "abjeto", sentimento: -1, "abjeto": -1}, {texto: "abjetos", sentimento: -1, "abjetos": -1}, {texto: "abjugar-se", sentimento: 1, "abjugar-se": 1}, {texto: "abjugar", sentimento: 0, "abjugar": 0}, {texto: "abjurar", sentimento: 1, "abjurar": 1}, {texto: "ablegar-se", sentimento: 1, "ablegar-se": 1}, {texto: "ablegar", sentimento: 1, "ablegar": 1}, {texto: "abluir", sentimento: 0, "abluir": 0}, {texto: "abnegada", sentimento: 1, "abnegada": 1}, {texto: "abnegadas", sentimento: 1, "abnegadas": 1}, {texto: "abnegado", sentimento: 1, "abnegado": 1}, {texto: "abnegados", sentimento: 1, "abnegados": 1}, {texto: "abnegar", sentimento: 1, "abnegar": 1}, {texto: "abnoitar", sentimento: 1, "abnoitar": 1}, {texto: "abnormal", sentimento: 1, "abnormal": 1}, {texto: "abnóxio", sentimento: 1, "abnóxio": 1}, {texto: "abnuir", sentimento: 1, "abnuir": 1}, {texto: "abobada", sentimento: -1, "abobada": -1}, {texto: "abobadar", sentimento: 0, "abobadar": 0}, {texto: "abobadas", sentimento: -1, "abobadas": -1}, {texto: "abobado", sentimento: -1, "abobado": -1}, {texto: "abobados", sentimento: -1, "abobados": -1}, {texto: "abobalhada", sentimento: -1, "abobalhada": -1}, {texto: "abobalhadas", sentimento: -1, "abobalhadas": -1}, {texto: "abobalhado", sentimento: -1, "abobalhado": -1}, {texto: "abobalhados", sentimento: -1, "abobalhados": -1}, {texto: "abobalhar", sentimento: 1, "abobalhar": 1}, {texto: "abocanhar", sentimento: -1, "abocanhar": -1}, {texto: "abocar", sentimento: -1, "abocar": -1}, {texto: "abodegado", sentimento: -1, "abodegado": -1}, {texto: "abodegar", sentimento: -1, "abodegar": -1}, {texto: "abolachar", sentimento: 0, "abolachar": 0}, {texto: "abolar", sentimento: -1, "abolar": -1}, {texto: "abolçar", sentimento: 0, "abolçar": 0}, {texto: "aboleimar", sentimento: 0, "aboleimar": 0}, {texto: "aboletar", sentimento: 0, "aboletar": 0}, {texto: "abolicionista", sentimento: 0, "abolicionista": 0}, {texto: "abolicionistas", sentimento: 0, "abolicionistas": 0}, {texto: "abolida", sentimento: -1, "abolida": -1}, {texto: "abolidas", sentimento: -1, "abolidas": -1}, {texto: "abolido", sentimento: -1, "abolido": -1}, {texto: "abolidos", sentimento: -1, "abolidos": -1}, {texto: "abolir", sentimento: -1, "abolir": -1}, {texto: "abolorecer", sentimento: 1, "abolorecer": 1}, {texto: "abolorentar", sentimento: 1, "abolorentar": 1}, {texto: "abolsar", sentimento: 1, "abolsar": 1}, {texto: "abomina", sentimento: -3, "abomina": -3}, {texto: "abominado", sentimento: -1, "abominado": -1}, {texto: "abominador", sentimento: -1, "abominador": -1}, {texto: "abominadora", sentimento: -1, "abominadora": -1}, {texto: "abominadoras", sentimento: -1, "abominadoras": -1}, {texto: "abominadores", sentimento: -1, "abominadores": -1}, {texto: "abominanda", sentimento: -1, "abominanda": -1}, {texto: "abominandas", sentimento: -1, "abominandas": -1}, {texto: "abominando", sentimento: -1, "abominando": -1}, {texto: "abominandos", sentimento: -1, "abominandos": -1}, {texto: "abominar", sentimento: -3, "abominar": -3}, {texto: "abomináveis", sentimento: -1, "abomináveis": -1}, {texto: "abominável", sentimento: -1, "abominável": -1}, {texto: "abominoso", sentimento: -1, "abominoso": -1}, {texto: "abominou", sentimento: -3, "abominou": -3}, {texto: "abonada", sentimento: 1, "abonada": 1}, {texto: "abonadas", sentimento: 1, "abonadas": 1}, {texto: "abonado", sentimento: 1, "abonado": 1}, {texto: "abonados", sentimento: 1, "abonados": 1}, {texto: "abonançar-se", sentimento: 1, "abonançar-se": 1}, {texto: "abonançar", sentimento: 0, "abonançar": 0}, {texto: "abonar", sentimento: 0, "abonar": 0}, {texto: "abonatória", sentimento: 1, "abonatória": 1}, {texto: "abonatórias", sentimento: 1, "abonatórias": 1}, {texto: "abonatório", sentimento: 1, "abonatório": 1}, {texto: "abonatórios", sentimento: 1, "abonatórios": 1}, {texto: "abonecada", sentimento: 0, "abonecada": 0}, {texto: "abonecadas", sentimento: 0, "abonecadas": 0}, {texto: "abonecado", sentimento: 0, "abonecado": 0}, {texto: "abonecados", sentimento: 0, "abonecados": 0}, {texto: "aboquejar", sentimento: -1, "aboquejar": -1}, {texto: "aborcar", sentimento: -1, "aborcar": -1}, {texto: "abordar", sentimento: 0, "abordar": 0}, {texto: "aborígene", sentimento: -1, "aborígene": -1}, {texto: "aborígenes", sentimento: -1, "aborígenes": -1}, {texto: "aborrecedor", sentimento: -1, "aborrecedor": -1}, {texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1}, {texto: "aborrecer", sentimento: -1, "aborrecer": -1}, {texto: "aborrecida", sentimento: -1, "aborrecida": -1}, {texto: "aborrecidas", sentimento: -1, "aborrecidas": -1}, {texto: "aborrecido", sentimento: -1, "aborrecido": -1}, {texto: "aborrecido", sentimento: -2, "aborrecido": -2}, {texto: "aborrecidos", sentimento: -1, "aborrecidos": -1}, {texto: "aborrecimento", sentimento: -2, "aborrecimento": -2}, {texto: "aborrecível", sentimento: -1, "aborrecível": -1}, {texto: "aborrido", sentimento: -1, "aborrido": -1}, {texto: "aborrível", sentimento: -1, "aborrível": -1}, {texto: "abortada", sentimento: -1, "abortada": -1}, {texto: "abortadas", sentimento: -1, "abortadas": -1}, {texto: "abortado", sentimento: -1, "abortado": -1}, {texto: "abortados", sentimento: -1, "abortados": -1}, {texto: "abortar", sentimento: -1, "abortar": -1}, {texto: "abotoar", sentimento: 0, "abotoar": 0}, {texto: "abraçada", sentimento: 1, "abraçada": 1}, {texto: "abracadabrante", sentimento: 1, "abracadabrante": 1}, {texto: "abracadábrico", sentimento: 1, "abracadábrico": 1}, {texto: "abraçadas", sentimento: 1, "abraçadas": 1}, {texto: "abraçado", sentimento: 1, "abraçado": 1}, {texto: "abraçados", sentimento: 1, "abraçados": 1}, {texto: "abraçar-se", sentimento: 1, "abraçar-se": 1}, {texto: "abraçar", sentimento: 0, "abraçar": 0}, {texto: "abraço", sentimento: 1, "abraço": 1}, {texto: "abraço", sentimento: 2, "abraço": 2}, {texto: "abraços", sentimento: 2, "abraços": 2}, {texto: "abrancar", sentimento: 1, "abrancar": 1}, {texto: "abrandar-se", sentimento: 1, "abrandar-se": 1}, {texto: "abrandar", sentimento: 0, "abrandar": 0}, {texto: "abrangente", sentimento: 1, "abrangente": 1}, {texto: "abrangentes", sentimento: 1, "abrangentes": 1}, {texto: "abranger", sentimento: 0, "abranger": 0}, {texto: "abrangida", sentimento: -1, "abrangida": -1}, {texto: "abrangidas", sentimento: -1, "abrangidas": -1}, {texto: "abrangido", sentimento: -1, "abrangido": -1}, {texto: "abrangidos", sentimento: -1, "abrangidos": -1}, {texto: "abrasar-se", sentimento: 1, "abrasar-se": 1}, {texto: "abrasar", sentimento: 0, "abrasar": 0}, {texto: "abrasear", sentimento: -1, "abrasear": -1}, {texto: "abrasileirada", sentimento: 0, "abrasileirada": 0}, {texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0}, {texto: "abrasileirado", sentimento: 0, "abrasileirado": 0}, {texto: "abrasileirados", sentimento: 0, "abrasileirados": 0}, {texto: "abrejar", sentimento: 1, "abrejar": 1}, {texto: "abreviar", sentimento: 0, "abreviar": 0}, {texto: "abrigada", sentimento: 0, "abrigada": 0}, {texto: "abrigadas", sentimento: 0, "abrigadas": 0}, {texto: "abrigado", sentimento: 0, "abrigado": 0}, {texto: "abrigados", sentimento: 0, "abrigados": 0}, {texto: "abrigar", sentimento: -1, "abrigar": -1}, {texto: "abrilhantada", sentimento: 1, "abrilhantada": 1}, {texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1}, {texto: "abrilhantado", sentimento: 1, "abrilhantado": 1}, {texto: "abrilhantados", sentimento: 1, "abrilhantados": 1}, {texto: "abrilhantar", sentimento: 0, "abrilhantar": 0}, {texto: "abrir mão de", sentimento: -1, "abrir mão de": -1}, {texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1}, {texto: "abrir-se", sentimento: -1, "abrir-se": -1}, {texto: "abrir", sentimento: -1, "abrir": -1}, {texto: "abrolhar", sentimento: 0, "abrolhar": 0}, {texto: "abrupta", sentimento: -1, "abrupta": -1}, {texto: "abruptas", sentimento: -1, "abruptas": -1}, {texto: "abrupto", sentimento: -1, "abrupto": -1}, {texto: "abruptos", sentimento: -1, "abruptos": -1}, {texto: "abrutado", sentimento: -1, "abrutado": -1}, {texto: "abrutalhada", sentimento: -1, "abrutalhada": -1}, {texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1}, {texto: "abrutalhado", sentimento: -1, "abrutalhado": -1}, {texto: "abrutalhados", sentimento: -1, "abrutalhados": -1}, {texto: "abrutalhar", sentimento: 1, "abrutalhar": 1}, {texto: "abrutar", sentimento: 1, "abrutar": 1}, {texto: "abscidar-se", sentimento: 1, "abscidar-se": 1}, {texto: "absentista", sentimento: -1, "absentista": -1}, {texto: "absentistas", sentimento: -1, "absentistas": -1}, {texto: "absoluta", sentimento: 1, "absoluta": 1}, {texto: "absolutas", sentimento: 1, "absolutas": 1}, {texto: "absolutista", sentimento: 0, "absolutista": 0}, {texto: "absolutistas", sentimento: 0, "absolutistas": 0}, {texto: "absoluto", sentimento: 1, "absoluto": 1}, {texto: "absolutos", sentimento: 1, "absolutos": 1}, {texto: "absolve", sentimento: 2, "absolve": 2}, {texto: "absolvendo", sentimento: 2, "absolvendo": 2}, {texto: "absolver", sentimento: -1, "absolver": -1}, {texto: "absolver", sentimento: 2, "absolver": 2}, {texto: "absolvida", sentimento: 0, "absolvida": 0}, {texto: "absolvidas", sentimento: 0, "absolvidas": 0}, {texto: "absolvido", sentimento: 0, "absolvido": 0}, {texto: "absolvido", sentimento: 2, "absolvido": 2}, {texto: "absolvidos", sentimento: 0, "absolvidos": 0}, {texto: "absolvidos", sentimento: 2, "absolvidos": 2}, {texto: "absonar", sentimento: -1, "absonar": -1}, {texto: "absorta", sentimento: -1, "absorta": -1}, {texto: "absortas", sentimento: -1, "absortas": -1}, {texto: "absorto", sentimento: -1, "absorto": -1}, {texto: "absortos", sentimento: -1, "absortos": -1}, {texto: "absortos", sentimento: 1, "absortos": 1}, {texto: "absorvente", sentimento: 1, "absorvente": 1}, {texto: "absorventes", sentimento: 1, "absorventes": 1}, {texto: "absorver-se", sentimento: 1, "absorver-se": 1}, {texto: "absorver", sentimento: -1, "absorver": -1}, {texto: "absorvido", sentimento: 1, "absorvido": 1}, {texto: "abstémia", sentimento: 1, "abstémia": 1}, {texto: "abstémias", sentimento: 1, "abstémias": 1}, {texto: "abstémica", sentimento: 1, "abstémica": 1}, {texto: "abstémicas", sentimento: 1, "abstémicas": 1}, {texto: "abstémico", sentimento: 1, "abstémico": 1}, {texto: "abstémicos", sentimento: 1, "abstémicos": 1}, {texto: "abstémio", sentimento: 1, "abstémio": 1}, {texto: "abstémios", sentimento: 1, "abstémios": 1}, {texto: "abstencionista", sentimento: 0, "abstencionista": 0}, {texto: "abstencionistas", sentimento: 0, "abstencionistas": 0}, {texto: "abster-se", sentimento: 0, "abster-se": 0}, {texto: "abstinente", sentimento: 0, "abstinente": 0}, {texto: "abstinentes", sentimento: 0, "abstinentes": 0}, {texto: "abstraccionista", sentimento: 0, "abstraccionista": 0}, {texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0}, {texto: "abstracta", sentimento: -1, "abstracta": -1}, {texto: "abstractas", sentimento: -1, "abstractas": -1}, {texto: "abstracto", sentimento: -1, "abstracto": -1}, {texto: "abstractos", sentimento: -1, "abstractos": -1}, {texto: "abstraída", sentimento: -1, "abstraída": -1}, {texto: "abstraídas", sentimento: -1, "abstraídas": -1}, {texto: "abstraído", sentimento: -1, "abstraído": -1}, {texto: "abstraídos", sentimento: -1, "abstraídos": -1}, {texto: "abstrair-se", sentimento: 0, "abstrair-se": 0}, {texto: "abstrair", sentimento: 1, "abstrair": 1}, {texto: "abstrata", sentimento: -1, "abstrata": -1}, {texto: "abstratas", sentimento: -1, "abstratas": -1}, {texto: "abstrato", sentimento: -1, "abstrato": -1}, {texto: "abstratos", sentimento: -1, "abstratos": -1}, {texto: "abstrusa", sentimento: -1, "abstrusa": -1}, {texto: "abstrusas", sentimento: -1, "abstrusas": -1}, {texto: "abstruso", sentimento: -1, "abstruso": -1}, {texto: "abstrusos", sentimento: -1, "abstrusos": -1}, {texto: "absumir", sentimento: -1, "absumir": -1}, {texto: "absurda", sentimento: -1, "absurda": -1}, {texto: "absurdas", sentimento: -1, "absurdas": -1}, {texto: "absurdo", sentimento: -1, "absurdo": -1}, {texto: "absurdo", sentimento: -2, "absurdo": -2}, {texto: "absurdos", sentimento: -1, "absurdos": -1}, {texto: "abugalhar", sentimento: 1, "abugalhar": 1}, {texto: "abúlica", sentimento: -1, "abúlica": -1}, {texto: "abúlicas", sentimento: -1, "abúlicas": -1}, {texto: "abúlico", sentimento: -1, "abúlico": -1}, {texto: "abúlicos", sentimento: -1, "abúlicos": -1}, {texto: "abundante", sentimento: 1, "abundante": 1}, {texto: "abundar", sentimento: 1, "abundar": 1}, {texto: "abundoso", sentimento: 1, "abundoso": 1}, {texto: "aburacar", sentimento: 1, "aburacar": 1}, {texto: "aburguesada", sentimento: 0, "aburguesada": 0}, {texto: "aburguesadas", sentimento: 0, "aburguesadas": 0}, {texto: "aburguesado", sentimento: 0, "aburguesado": 0}, {texto: "aburguesados", sentimento: 0, "aburguesados": 0}, {texto: "abusada", sentimento: -1, "abusada": -1}, {texto: "abusadas", sentimento: -1, "abusadas": -1}, {texto: "abusado", sentimento: -1, "abusado": -1}, {texto: "abusado", sentimento: -3, "abusado": -3}, {texto: "abusador", sentimento: -1, "abusador": -1}, {texto: "abusadora", sentimento: -1, "abusadora": -1}, {texto: "abusadoras", sentimento: -1, "abusadoras": -1}, {texto: "abusadores", sentimento: -1, "abusadores": -1}, {texto: "abusados", sentimento: -1, "abusados": -1}, {texto: "abusar", sentimento: 1, "abusar": 1}, {texto: "abusiva", sentimento: -1, "abusiva": -1}, {texto: "abusivas", sentimento: -1, "abusivas": -1}, {texto: "abusivo", sentimento: -1, "abusivo": -1}, {texto: "abusivo", sentimento: -3, "abusivo": -3}, {texto: "abusivos", sentimento: -1, "abusivos": -1}, {texto: "abuso", sentimento: -3, "abuso": -3}, {texto: "abusos", sentimento: -3, "abusos": -3}, {texto: "abuzinar", sentimento: 1, "abuzinar": 1}, {texto: "acabada", sentimento: -1, "acabada": -1}, {texto: "acabadas", sentimento: -1, "acabadas": -1}, {texto: "acabado", sentimento: -1, "acabado": -1}, {texto: "acabados", sentimento: -1, "acabados": -1}, {texto: "acabadota", sentimento: -1, "acabadota": -1}, {texto: "acabadotas", sentimento: -1, "acabadotas": -1}, {texto: "acabadote", sentimento: -1, "acabadote": -1}, {texto: "acabadotes", sentimento: -1, "acabadotes": -1}, {texto: "acabamento", sentimento: 1, "acabamento": 1}, {texto: "acabar-se", sentimento: 0, "acabar-se": 0}, {texto: "acabar", sentimento: 0, "acabar": 0}, {texto: "acabrunhada", sentimento: -1, "acabrunhada": -1}, {texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1}, {texto: "acabrunhado", sentimento: -1, "acabrunhado": -1}, {texto: "acabrunhados", sentimento: -1, "acabrunhados": -1}, {texto: "acabrunhar", sentimento: 0, "acabrunhar": 0}, {texto: "açacalado", sentimento: 1, "açacalado": 1}, {texto: "acaçapar", sentimento: 1, "acaçapar": 1}, {texto: "acachar", sentimento: 1, "acachar": 1}, {texto: "acaciana", sentimento: -1, "acaciana": -1}, {texto: "acacianas", sentimento: -1, "acacianas": -1}, {texto: "acaciano", sentimento: -1, "acaciano": -1}, {texto: "acacianos", sentimento: -1, "acacianos": -1}, {texto: "académica", sentimento: 0, "académica": 0}, {texto: "acadêmica", sentimento: 0, "acadêmica": 0}, {texto: "académicas", sentimento: 0, "académicas": 0}, {texto: "acadêmicas", sentimento: 0, "acadêmicas": 0}, {texto: "académico", sentimento: 0, "académico": 0}, {texto: "acadêmico", sentimento: 0, "acadêmico": 0}, {texto: "académicos", sentimento: 0, "académicos": 0}, {texto: "acadêmicos", sentimento: 0, "acadêmicos": 0}, {texto: "acafelar", sentimento: 1, "acafelar": 1}, {texto: "acaiçarado", sentimento: -1, "acaiçarado": -1}, {texto: "açaimar", sentimento: 0, "açaimar": 0}, {texto: "acalentando", sentimento: 2, "acalentando": 2}, {texto: "acalentar-se", sentimento: 1, "acalentar-se": 1}, {texto: "acalentar", sentimento: 0, "acalentar": 0}, {texto: "acalentar", sentimento: 2, "acalentar": 2}, {texto: "acalmada", sentimento: 3, "acalmada": 3}, {texto: "acalmado", sentimento: 2, "acalmado": 2}, {texto: "acalmar-se", sentimento: 1, "acalmar-se": 1}, {texto: "acalmar", sentimento: 0, "acalmar": 0}, {texto: "acalmar", sentimento: 3, "acalmar": 3}, {texto: "acalorada", sentimento: 0, "acalorada": 0}, {texto: "acaloradas", sentimento: 0, "acaloradas": 0}, {texto: "acalorado", sentimento: 0, "acalorado": 0}, {texto: "acalorados", sentimento: 0, "acalorados": 0}, {texto: "acalorar-se", sentimento: 1, "acalorar-se": 1}, {texto: "acalorar", sentimento: 1, "acalorar": 1}, {texto: "acamar", sentimento: 1, "acamar": 1}, {texto: "açambarcador", sentimento: -1, "açambarcador": -1}, {texto: "açambarcadora", sentimento: -1, "açambarcadora": -1}, {texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1}, {texto: "açambarcadores", sentimento: -1, "açambarcadores": -1}, {texto: "açambarcar", sentimento: 0, "açambarcar": 0}, {texto: "acambetar", sentimento: 0, "acambetar": 0}, {texto: "acampanar", sentimento: 0, "acampanar": 0}, {texto: "acanalar", sentimento: 0, "acanalar": 0}, {texto: "acanalhar", sentimento: 1, "acanalhar": 1}, {texto: "acanavear", sentimento: -1, "acanavear": -1}, {texto: "acanelar", sentimento: 0, "acanelar": 0}, {texto: "acanhada", sentimento: -1, "acanhada": -1}, {texto: "acanhadas", sentimento: -1, "acanhadas": -1}, {texto: "acanhado", sentimento: -1, "acanhado": -1}, {texto: "acanhados", sentimento: -1, "acanhados": -1}, {texto: "acanhar", sentimento: -1, "acanhar": -1}, {texto: "ação judicial", sentimento: -2, "ação judicial": -2}, {texto: "acapelado", sentimento: 1, "acapelado": 1}, {texto: "acapelar", sentimento: 0, "acapelar": 0}, {texto: "acarar", sentimento: 1, "acarar": 1}, {texto: "acarear", sentimento: 1, "acarear": 1}, {texto: "acariciar", sentimento: 0, "acariciar": 0}, {texto: "acarinhada", sentimento: -1, "acarinhada": -1}, {texto: "acarinhadas", sentimento: -1, "acarinhadas": -1}, {texto: "acarinhado", sentimento: -1, "acarinhado": -1}, {texto: "acarinhados", sentimento: -1, "acarinhados": -1}, {texto: "acarinhar", sentimento: 1, "acarinhar": 1}, {texto: "acarminar", sentimento: 0, "acarminar": 0},] : any[] + + {texto: ";)", sentimento: 1, ";)": 1}, +>{texto: ";)", sentimento: 1, ";)": 1} : { texto: string; sentimento: number; ";)": number; } +>texto : string +>";)" : ";)" +>sentimento : number +>1 : 1 +>";)" : number +>1 : 1 + + {texto: ";@", sentimento: -1, ";@": -1}, +>{texto: ";@", sentimento: -1, ";@": -1} : { texto: string; sentimento: number; ";@": number; } +>texto : string +>";@" : ";@" +>sentimento : number +>-1 : -1 +>1 : 1 +>";@" : number +>-1 : -1 +>1 : 1 + + {texto: ";*", sentimento: -1, ";*": -1}, +>{texto: ";*", sentimento: -1, ";*": -1} : { texto: string; sentimento: number; ";*": number; } +>texto : string +>";*" : ";*" +>sentimento : number +>-1 : -1 +>1 : 1 +>";*" : number +>-1 : -1 +>1 : 1 + + {texto: ";**", sentimento: -1, ";**": -1}, +>{texto: ";**", sentimento: -1, ";**": -1} : { texto: string; sentimento: number; ";**": number; } +>texto : string +>";**" : ";**" +>sentimento : number +>-1 : -1 +>1 : 1 +>";**" : number +>-1 : -1 +>1 : 1 + + {texto: ";~", sentimento: -1, ";~": -1}, +>{texto: ";~", sentimento: -1, ";~": -1} : { texto: string; sentimento: number; ";~": number; } +>texto : string +>";~" : ";~" +>sentimento : number +>-1 : -1 +>1 : 1 +>";~" : number +>-1 : -1 +>1 : 1 + + {texto: ";D", sentimento: -1, ";D": -1}, +>{texto: ";D", sentimento: -1, ";D": -1} : { texto: string; sentimento: number; ";D": number; } +>texto : string +>";D" : ";D" +>sentimento : number +>-1 : -1 +>1 : 1 +>";D" : number +>-1 : -1 +>1 : 1 + + {texto: ";P", sentimento: -1, ";P": -1}, +>{texto: ";P", sentimento: -1, ";P": -1} : { texto: string; sentimento: number; ";P": number; } +>texto : string +>";P" : ";P" +>sentimento : number +>-1 : -1 +>1 : 1 +>";P" : number +>-1 : -1 +>1 : 1 + + {texto: ";p", sentimento: -1, ";p": -1}, +>{texto: ";p", sentimento: -1, ";p": -1} : { texto: string; sentimento: number; ";p": number; } +>texto : string +>";p" : ";p" +>sentimento : number +>-1 : -1 +>1 : 1 +>";p" : number +>-1 : -1 +>1 : 1 + + {texto: ";x", sentimento: -1, ";x": -1}, +>{texto: ";x", sentimento: -1, ";x": -1} : { texto: string; sentimento: number; ";x": number; } +>texto : string +>";x" : ";x" +>sentimento : number +>-1 : -1 +>1 : 1 +>";x" : number +>-1 : -1 +>1 : 1 + + {texto: ";xx", sentimento: -1, ";xx": -1}, +>{texto: ";xx", sentimento: -1, ";xx": -1} : { texto: string; sentimento: number; ";xx": number; } +>texto : string +>";xx" : ";xx" +>sentimento : number +>-1 : -1 +>1 : 1 +>";xx" : number +>-1 : -1 +>1 : 1 + + {texto: ":'(", sentimento: -1, ":'(": -1}, +>{texto: ":'(", sentimento: -1, ":'(": -1} : { texto: string; sentimento: number; ":'(": number; } +>texto : string +>":'(" : ":'(" +>sentimento : number +>-1 : -1 +>1 : 1 +>":'(" : number +>-1 : -1 +>1 : 1 + + {texto: ":')", sentimento: -1, ":')": -1}, +>{texto: ":')", sentimento: -1, ":')": -1} : { texto: string; sentimento: number; ":')": number; } +>texto : string +>":')" : ":')" +>sentimento : number +>-1 : -1 +>1 : 1 +>":')" : number +>-1 : -1 +>1 : 1 + + {texto: ":(", sentimento: -1, ":(": -1}, +>{texto: ":(", sentimento: -1, ":(": -1} : { texto: string; sentimento: number; ":(": number; } +>texto : string +>":(" : ":(" +>sentimento : number +>-1 : -1 +>1 : 1 +>":(" : number +>-1 : -1 +>1 : 1 + + {texto: ":)", sentimento: 1, ":)": 1}, +>{texto: ":)", sentimento: 1, ":)": 1} : { texto: string; sentimento: number; ":)": number; } +>texto : string +>":)" : ":)" +>sentimento : number +>1 : 1 +>":)" : number +>1 : 1 + + {texto: ":)))", sentimento: 1, ":)))": 1}, +>{texto: ":)))", sentimento: 1, ":)))": 1} : { texto: string; sentimento: number; ":)))": number; } +>texto : string +>":)))" : ":)))" +>sentimento : number +>1 : 1 +>":)))" : number +>1 : 1 + + {texto: ":]", sentimento: -1, ":]": -1}, +>{texto: ":]", sentimento: -1, ":]": -1} : { texto: string; sentimento: number; ":]": number; } +>texto : string +>":]" : ":]" +>sentimento : number +>-1 : -1 +>1 : 1 +>":]" : number +>-1 : -1 +>1 : 1 + + {texto: ":@", sentimento: 0, ":@": 0}, +>{texto: ":@", sentimento: 0, ":@": 0} : { texto: string; sentimento: number; ":@": number; } +>texto : string +>":@" : ":@" +>sentimento : number +>0 : 0 +>":@" : number +>0 : 0 + + {texto: ":*", sentimento: -1, ":*": -1}, +>{texto: ":*", sentimento: -1, ":*": -1} : { texto: string; sentimento: number; ":*": number; } +>texto : string +>":*" : ":*" +>sentimento : number +>-1 : -1 +>1 : 1 +>":*" : number +>-1 : -1 +>1 : 1 + + {texto: ":<", sentimento: -1, ":<": -1}, +>{texto: ":<", sentimento: -1, ":<": -1} : { texto: string; sentimento: number; ":<": number; } +>texto : string +>":<" : ":<" +>sentimento : number +>-1 : -1 +>1 : 1 +>":<" : number +>-1 : -1 +>1 : 1 + + {texto: ":~", sentimento: -1, ":~": -1}, +>{texto: ":~", sentimento: -1, ":~": -1} : { texto: string; sentimento: number; ":~": number; } +>texto : string +>":~" : ":~" +>sentimento : number +>-1 : -1 +>1 : 1 +>":~" : number +>-1 : -1 +>1 : 1 + + {texto: ":$", sentimento: -1, ":$": -1}, +>{texto: ":$", sentimento: -1, ":$": -1} : { texto: string; sentimento: number; ":$": number; } +>texto : string +>":$" : ":$" +>sentimento : number +>-1 : -1 +>1 : 1 +>":$" : number +>-1 : -1 +>1 : 1 + + {texto: ":D", sentimento: 1, ":D": 1}, +>{texto: ":D", sentimento: 1, ":D": 1} : { texto: string; sentimento: number; ":D": number; } +>texto : string +>":D" : ":D" +>sentimento : number +>1 : 1 +>":D" : number +>1 : 1 + + {texto: ":p", sentimento: -1, ":p": -1}, +>{texto: ":p", sentimento: -1, ":p": -1} : { texto: string; sentimento: number; ":p": number; } +>texto : string +>":p" : ":p" +>sentimento : number +>-1 : -1 +>1 : 1 +>":p" : number +>-1 : -1 +>1 : 1 + + {texto: ":P", sentimento: 0, ":P": 0}, +>{texto: ":P", sentimento: 0, ":P": 0} : { texto: string; sentimento: number; ":P": number; } +>texto : string +>":P" : ":P" +>sentimento : number +>0 : 0 +>":P" : number +>0 : 0 + + {texto: ":x", sentimento: -1, ":x": -1}, +>{texto: ":x", sentimento: -1, ":x": -1} : { texto: string; sentimento: number; ":x": number; } +>texto : string +>":x" : ":x" +>sentimento : number +>-1 : -1 +>1 : 1 +>":x" : number +>-1 : -1 +>1 : 1 + + {texto: ":x)", sentimento: 1, ":x)": 1}, +>{texto: ":x)", sentimento: 1, ":x)": 1} : { texto: string; sentimento: number; ":x)": number; } +>texto : string +>":x)" : ":x)" +>sentimento : number +>1 : 1 +>":x)" : number +>1 : 1 + + {texto: "(:", sentimento: -1, "(:": -1}, +>{texto: "(:", sentimento: -1, "(:": -1} : { texto: string; sentimento: number; "(:": number; } +>texto : string +>"(:" : "(:" +>sentimento : number +>-1 : -1 +>1 : 1 +>"(:" : number +>-1 : -1 +>1 : 1 + + {texto: "(=", sentimento: 1, "(=": 1}, +>{texto: "(=", sentimento: 1, "(=": 1} : { texto: string; sentimento: number; "(=": number; } +>texto : string +>"(=" : "(=" +>sentimento : number +>1 : 1 +>"(=" : number +>1 : 1 + + {texto: "):", sentimento: -1, "):": -1}, +>{texto: "):", sentimento: -1, "):": -1} : { texto: string; sentimento: number; "):": number; } +>texto : string +>"):" : "):" +>sentimento : number +>-1 : -1 +>1 : 1 +>"):" : number +>-1 : -1 +>1 : 1 + + {texto: ")):", sentimento: -1, ")):": -1}, +>{texto: ")):", sentimento: -1, ")):": -1} : { texto: string; sentimento: number; ")):": number; } +>texto : string +>")):" : ")):" +>sentimento : number +>-1 : -1 +>1 : 1 +>")):" : number +>-1 : -1 +>1 : 1 + + {texto: "*:", sentimento: -1, "*:": -1}, +>{texto: "*:", sentimento: -1, "*:": -1} : { texto: string; sentimento: number; "*:": number; } +>texto : string +>"*:" : "*:" +>sentimento : number +>-1 : -1 +>1 : 1 +>"*:" : number +>-1 : -1 +>1 : 1 + + {texto: "#2", sentimento: -1, "#2": -1}, +>{texto: "#2", sentimento: -1, "#2": -1} : { texto: string; sentimento: number; "#2": number; } +>texto : string +>"#2" : "#2" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#2" : number +>-1 : -1 +>1 : 1 + + {texto: "#2011", sentimento: -1, "#2011": -1}, +>{texto: "#2011", sentimento: -1, "#2011": -1} : { texto: string; sentimento: number; "#2011": number; } +>texto : string +>"#2011" : "#2011" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#2011" : number +>-1 : -1 +>1 : 1 + + {texto: "#2014", sentimento: -1, "#2014": -1}, +>{texto: "#2014", sentimento: -1, "#2014": -1} : { texto: string; sentimento: number; "#2014": number; } +>texto : string +>"#2014" : "#2014" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#2014" : number +>-1 : -1 +>1 : 1 + + {texto: "#4square", sentimento: -1, "#4square": -1}, +>{texto: "#4square", sentimento: -1, "#4square": -1} : { texto: string; sentimento: number; "#4square": number; } +>texto : string +>"#4square" : "#4square" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#4square" : number +>-1 : -1 +>1 : 1 + + {texto: "#64bit", sentimento: 1, "#64bit": 1}, +>{texto: "#64bit", sentimento: 1, "#64bit": 1} : { texto: string; sentimento: number; "#64bit": number; } +>texto : string +>"#64bit" : "#64bit" +>sentimento : number +>1 : 1 +>"#64bit" : number +>1 : 1 + + {texto: "#adsl", sentimento: -1, "#adsl": -1}, +>{texto: "#adsl", sentimento: -1, "#adsl": -1} : { texto: string; sentimento: number; "#adsl": number; } +>texto : string +>"#adsl" : "#adsl" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#adsl" : number +>-1 : -1 +>1 : 1 + + {texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1}, +>{texto: "#aduvirientregate", sentimento: 1, "#aduvirientregate": 1} : { texto: string; sentimento: number; "#aduvirientregate": number; } +>texto : string +>"#aduvirientregate" : "#aduvirientregate" +>sentimento : number +>1 : 1 +>"#aduvirientregate" : number +>1 : 1 + + {texto: "#afazenda", sentimento: -1, "#afazenda": -1}, +>{texto: "#afazenda", sentimento: -1, "#afazenda": -1} : { texto: string; sentimento: number; "#afazenda": number; } +>texto : string +>"#afazenda" : "#afazenda" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#afazenda" : number +>-1 : -1 +>1 : 1 + + {texto: "#aff", sentimento: -1, "#aff": -1}, +>{texto: "#aff", sentimento: -1, "#aff": -1} : { texto: string; sentimento: number; "#aff": number; } +>texto : string +>"#aff" : "#aff" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#aff" : number +>-1 : -1 +>1 : 1 + + {texto: "#again", sentimento: -1, "#again": -1}, +>{texto: "#again", sentimento: -1, "#again": -1} : { texto: string; sentimento: number; "#again": number; } +>texto : string +>"#again" : "#again" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#again" : number +>-1 : -1 +>1 : 1 + + {texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1}, +>{texto: "#agendadeldia", sentimento: 1, "#agendadeldia": 1} : { texto: string; sentimento: number; "#agendadeldia": number; } +>texto : string +>"#agendadeldia" : "#agendadeldia" +>sentimento : number +>1 : 1 +>"#agendadeldia" : number +>1 : 1 + + {texto: "#agua", sentimento: 1, "#agua": 1}, +>{texto: "#agua", sentimento: 1, "#agua": 1} : { texto: string; sentimento: number; "#agua": number; } +>texto : string +>"#agua" : "#agua" +>sentimento : number +>1 : 1 +>"#agua" : number +>1 : 1 + + {texto: "#aimeucora", sentimento: -1, "#aimeucora": -1}, +>{texto: "#aimeucora", sentimento: -1, "#aimeucora": -1} : { texto: string; sentimento: number; "#aimeucora": number; } +>texto : string +>"#aimeucora" : "#aimeucora" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#aimeucora" : number +>-1 : -1 +>1 : 1 + + {texto: "#alan", sentimento: -1, "#alan": -1}, +>{texto: "#alan", sentimento: -1, "#alan": -1} : { texto: string; sentimento: number; "#alan": number; } +>texto : string +>"#alan" : "#alan" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#alan" : number +>-1 : -1 +>1 : 1 + + {texto: "#aline", sentimento: -1, "#aline": -1}, +>{texto: "#aline", sentimento: -1, "#aline": -1} : { texto: string; sentimento: number; "#aline": number; } +>texto : string +>"#aline" : "#aline" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#aline" : number +>-1 : -1 +>1 : 1 + + {texto: "#amo", sentimento: 1, "#amo": 1}, +>{texto: "#amo", sentimento: 1, "#amo": 1} : { texto: string; sentimento: number; "#amo": number; } +>texto : string +>"#amo" : "#amo" +>sentimento : number +>1 : 1 +>"#amo" : number +>1 : 1 + + {texto: "#amodoro", sentimento: 1, "#amodoro": 1}, +>{texto: "#amodoro", sentimento: 1, "#amodoro": 1} : { texto: string; sentimento: number; "#amodoro": number; } +>texto : string +>"#amodoro" : "#amodoro" +>sentimento : number +>1 : 1 +>"#amodoro" : number +>1 : 1 + + {texto: "#amor", sentimento: -1, "#amor": -1}, +>{texto: "#amor", sentimento: -1, "#amor": -1} : { texto: string; sentimento: number; "#amor": number; } +>texto : string +>"#amor" : "#amor" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#amor" : number +>-1 : -1 +>1 : 1 + + {texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1}, +>{texto: "#amorposmoderno", sentimento: 1, "#amorposmoderno": 1} : { texto: string; sentimento: number; "#amorposmoderno": number; } +>texto : string +>"#amorposmoderno" : "#amorposmoderno" +>sentimento : number +>1 : 1 +>"#amorposmoderno" : number +>1 : 1 + + {texto: "#an", sentimento: 1, "#an": 1}, +>{texto: "#an", sentimento: 1, "#an": 1} : { texto: string; sentimento: number; "#an": number; } +>texto : string +>"#an" : "#an" +>sentimento : number +>1 : 1 +>"#an" : number +>1 : 1 + + {texto: "#android", sentimento: 1, "#android": 1}, +>{texto: "#android", sentimento: 1, "#android": 1} : { texto: string; sentimento: number; "#android": number; } +>texto : string +>"#android" : "#android" +>sentimento : number +>1 : 1 +>"#android" : number +>1 : 1 + + {texto: "#animada", sentimento: -1, "#animada": -1}, +>{texto: "#animada", sentimento: -1, "#animada": -1} : { texto: string; sentimento: number; "#animada": number; } +>texto : string +>"#animada" : "#animada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#animada" : number +>-1 : -1 +>1 : 1 + + {texto: "#apagao", sentimento: -1, "#apagao": -1}, +>{texto: "#apagao", sentimento: -1, "#apagao": -1} : { texto: string; sentimento: number; "#apagao": number; } +>texto : string +>"#apagao" : "#apagao" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#apagao" : number +>-1 : -1 +>1 : 1 + + {texto: "#apps", sentimento: -1, "#apps": -1}, +>{texto: "#apps", sentimento: -1, "#apps": -1} : { texto: string; sentimento: number; "#apps": number; } +>texto : string +>"#apps" : "#apps" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#apps" : number +>-1 : -1 +>1 : 1 + + {texto: "#aqu", sentimento: 1, "#aqu": 1}, +>{texto: "#aqu", sentimento: 1, "#aqu": 1} : { texto: string; sentimento: number; "#aqu": number; } +>texto : string +>"#aqu" : "#aqu" +>sentimento : number +>1 : 1 +>"#aqu" : number +>1 : 1 + + {texto: "#ari", sentimento: -1, "#ari": -1}, +>{texto: "#ari", sentimento: -1, "#ari": -1} : { texto: string; sentimento: number; "#ari": number; } +>texto : string +>"#ari" : "#ari" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ari" : number +>-1 : -1 +>1 : 1 + + {texto: "#ariane", sentimento: -1, "#ariane": -1}, +>{texto: "#ariane", sentimento: -1, "#ariane": -1} : { texto: string; sentimento: number; "#ariane": number; } +>texto : string +>"#ariane" : "#ariane" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ariane" : number +>-1 : -1 +>1 : 1 + + {texto: "#bad", sentimento: -1, "#bad": -1}, +>{texto: "#bad", sentimento: -1, "#bad": -1} : { texto: string; sentimento: number; "#bad": number; } +>texto : string +>"#bad" : "#bad" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bad" : number +>-1 : -1 +>1 : 1 + + {texto: "#bakugan", sentimento: -1, "#bakugan": -1}, +>{texto: "#bakugan", sentimento: -1, "#bakugan": -1} : { texto: string; sentimento: number; "#bakugan": number; } +>texto : string +>"#bakugan" : "#bakugan" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bakugan" : number +>-1 : -1 +>1 : 1 + + {texto: "#bam", sentimento: 1, "#bam": 1}, +>{texto: "#bam", sentimento: 1, "#bam": 1} : { texto: string; sentimento: number; "#bam": number; } +>texto : string +>"#bam" : "#bam" +>sentimento : number +>1 : 1 +>"#bam" : number +>1 : 1 + + {texto: "#bandida", sentimento: -1, "#bandida": -1}, +>{texto: "#bandida", sentimento: -1, "#bandida": -1} : { texto: string; sentimento: number; "#bandida": number; } +>texto : string +>"#bandida" : "#bandida" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bandida" : number +>-1 : -1 +>1 : 1 + + {texto: "#bankonline", sentimento: 1, "#bankonline": 1}, +>{texto: "#bankonline", sentimento: 1, "#bankonline": 1} : { texto: string; sentimento: number; "#bankonline": number; } +>texto : string +>"#bankonline" : "#bankonline" +>sentimento : number +>1 : 1 +>"#bankonline" : number +>1 : 1 + + {texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1}, +>{texto: "#batalhanerd", sentimento: 1, "#batalhanerd": 1} : { texto: string; sentimento: number; "#batalhanerd": number; } +>texto : string +>"#batalhanerd" : "#batalhanerd" +>sentimento : number +>1 : 1 +>"#batalhanerd" : number +>1 : 1 + + {texto: "#beer", sentimento: 1, "#beer": 1}, +>{texto: "#beer", sentimento: 1, "#beer": 1} : { texto: string; sentimento: number; "#beer": number; } +>texto : string +>"#beer" : "#beer" +>sentimento : number +>1 : 1 +>"#beer" : number +>1 : 1 + + {texto: "#beijo", sentimento: 1, "#beijo": 1}, +>{texto: "#beijo", sentimento: 1, "#beijo": 1} : { texto: string; sentimento: number; "#beijo": number; } +>texto : string +>"#beijo" : "#beijo" +>sentimento : number +>1 : 1 +>"#beijo" : number +>1 : 1 + + {texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1}, +>{texto: "#belemfeelings", sentimento: -1, "#belemfeelings": -1} : { texto: string; sentimento: number; "#belemfeelings": number; } +>texto : string +>"#belemfeelings" : "#belemfeelings" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#belemfeelings" : number +>-1 : -1 +>1 : 1 + + {texto: "#bigmistake", sentimento: -1, "#bigmistake": -1}, +>{texto: "#bigmistake", sentimento: -1, "#bigmistake": -1} : { texto: string; sentimento: number; "#bigmistake": number; } +>texto : string +>"#bigmistake" : "#bigmistake" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bigmistake" : number +>-1 : -1 +>1 : 1 + + {texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1}, +>{texto: "#bigsuprise", sentimento: 1, "#bigsuprise": 1} : { texto: string; sentimento: number; "#bigsuprise": number; } +>texto : string +>"#bigsuprise" : "#bigsuprise" +>sentimento : number +>1 : 1 +>"#bigsuprise" : number +>1 : 1 + + {texto: "#bio", sentimento: 1, "#bio": 1}, +>{texto: "#bio", sentimento: 1, "#bio": 1} : { texto: string; sentimento: number; "#bio": number; } +>texto : string +>"#bio" : "#bio" +>sentimento : number +>1 : 1 +>"#bio" : number +>1 : 1 + + {texto: "#biologia", sentimento: -1, "#biologia": -1}, +>{texto: "#biologia", sentimento: -1, "#biologia": -1} : { texto: string; sentimento: number; "#biologia": number; } +>texto : string +>"#biologia" : "#biologia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#biologia" : number +>-1 : -1 +>1 : 1 + + {texto: "#birdbrain", sentimento: -1, "#birdbrain": -1}, +>{texto: "#birdbrain", sentimento: -1, "#birdbrain": -1} : { texto: string; sentimento: number; "#birdbrain": number; } +>texto : string +>"#birdbrain" : "#birdbrain" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#birdbrain" : number +>-1 : -1 +>1 : 1 + + {texto: "#blackberry", sentimento: -1, "#blackberry": -1}, +>{texto: "#blackberry", sentimento: -1, "#blackberry": -1} : { texto: string; sentimento: number; "#blackberry": number; } +>texto : string +>"#blackberry" : "#blackberry" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#blackberry" : number +>-1 : -1 +>1 : 1 + + {texto: "#blackhat", sentimento: -1, "#blackhat": -1}, +>{texto: "#blackhat", sentimento: -1, "#blackhat": -1} : { texto: string; sentimento: number; "#blackhat": number; } +>texto : string +>"#blackhat" : "#blackhat" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#blackhat" : number +>-1 : -1 +>1 : 1 + + {texto: "#blogprog", sentimento: -1, "#blogprog": -1}, +>{texto: "#blogprog", sentimento: -1, "#blogprog": -1} : { texto: string; sentimento: number; "#blogprog": number; } +>texto : string +>"#blogprog" : "#blogprog" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#blogprog" : number +>-1 : -1 +>1 : 1 + + {texto: "#bodareal", sentimento: -1, "#bodareal": -1}, +>{texto: "#bodareal", sentimento: -1, "#bodareal": -1} : { texto: string; sentimento: number; "#bodareal": number; } +>texto : string +>"#bodareal" : "#bodareal" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bodareal" : number +>-1 : -1 +>1 : 1 + + {texto: "#bombando", sentimento: -1, "#bombando": -1}, +>{texto: "#bombando", sentimento: -1, "#bombando": -1} : { texto: string; sentimento: number; "#bombando": number; } +>texto : string +>"#bombando" : "#bombando" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bombando" : number +>-1 : -1 +>1 : 1 + + {texto: "#bomdia", sentimento: -1, "#bomdia": -1}, +>{texto: "#bomdia", sentimento: -1, "#bomdia": -1} : { texto: string; sentimento: number; "#bomdia": number; } +>texto : string +>"#bomdia" : "#bomdia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bomdia" : number +>-1 : -1 +>1 : 1 + + {texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1}, +>{texto: "#bomdiabrasil", sentimento: -1, "#bomdiabrasil": -1} : { texto: string; sentimento: number; "#bomdiabrasil": number; } +>texto : string +>"#bomdiabrasil" : "#bomdiabrasil" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bomdiabrasil" : number +>-1 : -1 +>1 : 1 + + {texto: "#boobs", sentimento: 1, "#boobs": 1}, +>{texto: "#boobs", sentimento: 1, "#boobs": 1} : { texto: string; sentimento: number; "#boobs": number; } +>texto : string +>"#boobs" : "#boobs" +>sentimento : number +>1 : 1 +>"#boobs" : number +>1 : 1 + + {texto: "#boomsm", sentimento: 1, "#boomsm": 1}, +>{texto: "#boomsm", sentimento: 1, "#boomsm": 1} : { texto: string; sentimento: number; "#boomsm": number; } +>texto : string +>"#boomsm" : "#boomsm" +>sentimento : number +>1 : 1 +>"#boomsm" : number +>1 : 1 + + {texto: "#boss", sentimento: 1, "#boss": 1}, +>{texto: "#boss", sentimento: 1, "#boss": 1} : { texto: string; sentimento: number; "#boss": number; } +>texto : string +>"#boss" : "#boss" +>sentimento : number +>1 : 1 +>"#boss" : number +>1 : 1 + + {texto: "#brandsclub", sentimento: -1, "#brandsclub": -1}, +>{texto: "#brandsclub", sentimento: -1, "#brandsclub": -1} : { texto: string; sentimento: number; "#brandsclub": number; } +>texto : string +>"#brandsclub" : "#brandsclub" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#brandsclub" : number +>-1 : -1 +>1 : 1 + + {texto: "#brasil", sentimento: -1, "#brasil": -1}, +>{texto: "#brasil", sentimento: -1, "#brasil": -1} : { texto: string; sentimento: number; "#brasil": number; } +>texto : string +>"#brasil" : "#brasil" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#brasil" : number +>-1 : -1 +>1 : 1 + + {texto: "#brasilia", sentimento: -1, "#brasilia": -1}, +>{texto: "#brasilia", sentimento: -1, "#brasilia": -1} : { texto: string; sentimento: number; "#brasilia": number; } +>texto : string +>"#brasilia" : "#brasilia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#brasilia" : number +>-1 : -1 +>1 : 1 + + {texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1}, +>{texto: "#brasilsilsil", sentimento: -1, "#brasilsilsil": -1} : { texto: string; sentimento: number; "#brasilsilsil": number; } +>texto : string +>"#brasilsilsil" : "#brasilsilsil" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#brasilsilsil" : number +>-1 : -1 +>1 : 1 + + {texto: "#brazilians", sentimento: -1, "#brazilians": -1}, +>{texto: "#brazilians", sentimento: -1, "#brazilians": -1} : { texto: string; sentimento: number; "#brazilians": number; } +>texto : string +>"#brazilians" : "#brazilians" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#brazilians" : number +>-1 : -1 +>1 : 1 + + {texto: "#bsb", sentimento: -1, "#bsb": -1}, +>{texto: "#bsb", sentimento: -1, "#bsb": -1} : { texto: string; sentimento: number; "#bsb": number; } +>texto : string +>"#bsb" : "#bsb" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bsb" : number +>-1 : -1 +>1 : 1 + + {texto: "#bub", sentimento: -1, "#bub": -1}, +>{texto: "#bub", sentimento: -1, "#bub": -1} : { texto: string; sentimento: number; "#bub": number; } +>texto : string +>"#bub" : "#bub" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#bub" : number +>-1 : -1 +>1 : 1 + + {texto: "#buongiorno", sentimento: -1, "#buongiorno": -1}, +>{texto: "#buongiorno", sentimento: -1, "#buongiorno": -1} : { texto: string; sentimento: number; "#buongiorno": number; } +>texto : string +>"#buongiorno" : "#buongiorno" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#buongiorno" : number +>-1 : -1 +>1 : 1 + + {texto: "#burro", sentimento: -1, "#burro": -1}, +>{texto: "#burro", sentimento: -1, "#burro": -1} : { texto: string; sentimento: number; "#burro": number; } +>texto : string +>"#burro" : "#burro" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#burro" : number +>-1 : -1 +>1 : 1 + + {texto: "#cad", sentimento: -1, "#cad": -1}, +>{texto: "#cad", sentimento: -1, "#cad": -1} : { texto: string; sentimento: number; "#cad": number; } +>texto : string +>"#cad" : "#cad" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cad" : number +>-1 : -1 +>1 : 1 + + {texto: "#caelum", sentimento: 1, "#caelum": 1}, +>{texto: "#caelum", sentimento: 1, "#caelum": 1} : { texto: string; sentimento: number; "#caelum": number; } +>texto : string +>"#caelum" : "#caelum" +>sentimento : number +>1 : 1 +>"#caelum" : number +>1 : 1 + + {texto: "#cafeina", sentimento: -1, "#cafeina": -1}, +>{texto: "#cafeina", sentimento: -1, "#cafeina": -1} : { texto: string; sentimento: number; "#cafeina": number; } +>texto : string +>"#cafeina" : "#cafeina" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cafeina" : number +>-1 : -1 +>1 : 1 + + {texto: "#caixa", sentimento: -1, "#caixa": -1}, +>{texto: "#caixa", sentimento: -1, "#caixa": -1} : { texto: string; sentimento: number; "#caixa": number; } +>texto : string +>"#caixa" : "#caixa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#caixa" : number +>-1 : -1 +>1 : 1 + + {texto: "#cal", sentimento: 1, "#cal": 1}, +>{texto: "#cal", sentimento: 1, "#cal": 1} : { texto: string; sentimento: number; "#cal": number; } +>texto : string +>"#cal" : "#cal" +>sentimento : number +>1 : 1 +>"#cal" : number +>1 : 1 + + {texto: "#camaradagem", sentimento: -1, "#camaradagem": -1}, +>{texto: "#camaradagem", sentimento: -1, "#camaradagem": -1} : { texto: string; sentimento: number; "#camaradagem": number; } +>texto : string +>"#camaradagem" : "#camaradagem" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#camaradagem" : number +>-1 : -1 +>1 : 1 + + {texto: "#camel", sentimento: 1, "#camel": 1}, +>{texto: "#camel", sentimento: 1, "#camel": 1} : { texto: string; sentimento: number; "#camel": number; } +>texto : string +>"#camel" : "#camel" +>sentimento : number +>1 : 1 +>"#camel" : number +>1 : 1 + + {texto: "#capric", sentimento: -1, "#capric": -1}, +>{texto: "#capric", sentimento: -1, "#capric": -1} : { texto: string; sentimento: number; "#capric": number; } +>texto : string +>"#capric" : "#capric" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#capric" : number +>-1 : -1 +>1 : 1 + + {texto: "#carol", sentimento: -1, "#carol": -1}, +>{texto: "#carol", sentimento: -1, "#carol": -1} : { texto: string; sentimento: number; "#carol": number; } +>texto : string +>"#carol" : "#carol" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#carol" : number +>-1 : -1 +>1 : 1 + + {texto: "#carris", sentimento: -1, "#carris": -1}, +>{texto: "#carris", sentimento: -1, "#carris": -1} : { texto: string; sentimento: number; "#carris": number; } +>texto : string +>"#carris" : "#carris" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#carris" : number +>-1 : -1 +>1 : 1 + + {texto: "#cartolafc", sentimento: -1, "#cartolafc": -1}, +>{texto: "#cartolafc", sentimento: -1, "#cartolafc": -1} : { texto: string; sentimento: number; "#cartolafc": number; } +>texto : string +>"#cartolafc" : "#cartolafc" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cartolafc" : number +>-1 : -1 +>1 : 1 + + {texto: "#catalao", sentimento: -1, "#catalao": -1}, +>{texto: "#catalao", sentimento: -1, "#catalao": -1} : { texto: string; sentimento: number; "#catalao": number; } +>texto : string +>"#catalao" : "#catalao" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#catalao" : number +>-1 : -1 +>1 : 1 + + {texto: "#cdlr", sentimento: 1, "#cdlr": 1}, +>{texto: "#cdlr", sentimento: 1, "#cdlr": 1} : { texto: string; sentimento: number; "#cdlr": number; } +>texto : string +>"#cdlr" : "#cdlr" +>sentimento : number +>1 : 1 +>"#cdlr" : number +>1 : 1 + + {texto: "#cearasc", sentimento: -1, "#cearasc": -1}, +>{texto: "#cearasc", sentimento: -1, "#cearasc": -1} : { texto: string; sentimento: number; "#cearasc": number; } +>texto : string +>"#cearasc" : "#cearasc" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cearasc" : number +>-1 : -1 +>1 : 1 + + {texto: "#centauro", sentimento: -1, "#centauro": -1}, +>{texto: "#centauro", sentimento: -1, "#centauro": -1} : { texto: string; sentimento: number; "#centauro": number; } +>texto : string +>"#centauro" : "#centauro" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#centauro" : number +>-1 : -1 +>1 : 1 + + {texto: "#certeza", sentimento: -1, "#certeza": -1}, +>{texto: "#certeza", sentimento: -1, "#certeza": -1} : { texto: string; sentimento: number; "#certeza": number; } +>texto : string +>"#certeza" : "#certeza" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#certeza" : number +>-1 : -1 +>1 : 1 + + {texto: "#cet", sentimento: -1, "#cet": -1}, +>{texto: "#cet", sentimento: -1, "#cet": -1} : { texto: string; sentimento: number; "#cet": number; } +>texto : string +>"#cet" : "#cet" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cet" : number +>-1 : -1 +>1 : 1 + + {texto: "#charmeleon", sentimento: 1, "#charmeleon": 1}, +>{texto: "#charmeleon", sentimento: 1, "#charmeleon": 1} : { texto: string; sentimento: number; "#charmeleon": number; } +>texto : string +>"#charmeleon" : "#charmeleon" +>sentimento : number +>1 : 1 +>"#charmeleon" : number +>1 : 1 + + {texto: "#chelas", sentimento: 1, "#chelas": 1}, +>{texto: "#chelas", sentimento: 1, "#chelas": 1} : { texto: string; sentimento: number; "#chelas": number; } +>texto : string +>"#chelas" : "#chelas" +>sentimento : number +>1 : 1 +>"#chelas" : number +>1 : 1 + + {texto: "#chrome", sentimento: 1, "#chrome": 1}, +>{texto: "#chrome", sentimento: 1, "#chrome": 1} : { texto: string; sentimento: number; "#chrome": number; } +>texto : string +>"#chrome" : "#chrome" +>sentimento : number +>1 : 1 +>"#chrome" : number +>1 : 1 + + {texto: "#cielo", sentimento: -1, "#cielo": -1}, +>{texto: "#cielo", sentimento: -1, "#cielo": -1} : { texto: string; sentimento: number; "#cielo": number; } +>texto : string +>"#cielo" : "#cielo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cielo" : number +>-1 : -1 +>1 : 1 + + {texto: "#cloaking", sentimento: -1, "#cloaking": -1}, +>{texto: "#cloaking", sentimento: -1, "#cloaking": -1} : { texto: string; sentimento: number; "#cloaking": number; } +>texto : string +>"#cloaking" : "#cloaking" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cloaking" : number +>-1 : -1 +>1 : 1 + + {texto: "#cmteam", sentimento: 1, "#cmteam": 1}, +>{texto: "#cmteam", sentimento: 1, "#cmteam": 1} : { texto: string; sentimento: number; "#cmteam": number; } +>texto : string +>"#cmteam" : "#cmteam" +>sentimento : number +>1 : 1 +>"#cmteam" : number +>1 : 1 + + {texto: "#comex", sentimento: -1, "#comex": -1}, +>{texto: "#comex", sentimento: -1, "#comex": -1} : { texto: string; sentimento: number; "#comex": number; } +>texto : string +>"#comex" : "#comex" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#comex" : number +>-1 : -1 +>1 : 1 + + {texto: "#comofas", sentimento: -1, "#comofas": -1}, +>{texto: "#comofas", sentimento: -1, "#comofas": -1} : { texto: string; sentimento: number; "#comofas": number; } +>texto : string +>"#comofas" : "#comofas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#comofas" : number +>-1 : -1 +>1 : 1 + + {texto: "#compos", sentimento: -1, "#compos": -1}, +>{texto: "#compos", sentimento: -1, "#compos": -1} : { texto: string; sentimento: number; "#compos": number; } +>texto : string +>"#compos" : "#compos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#compos" : number +>-1 : -1 +>1 : 1 + + {texto: "#conspira", sentimento: -1, "#conspira": -1}, +>{texto: "#conspira", sentimento: -1, "#conspira": -1} : { texto: string; sentimento: number; "#conspira": number; } +>texto : string +>"#conspira" : "#conspira" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#conspira" : number +>-1 : -1 +>1 : 1 + + {texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1}, +>{texto: "#contabilidadeempresarial", sentimento: 1, "#contabilidadeempresarial": 1} : { texto: string; sentimento: number; "#contabilidadeempresarial": number; } +>texto : string +>"#contabilidadeempresarial" : "#contabilidadeempresarial" +>sentimento : number +>1 : 1 +>"#contabilidadeempresarial" : number +>1 : 1 + + {texto: "#contribuir", sentimento: 1, "#contribuir": 1}, +>{texto: "#contribuir", sentimento: 1, "#contribuir": 1} : { texto: string; sentimento: number; "#contribuir": number; } +>texto : string +>"#contribuir" : "#contribuir" +>sentimento : number +>1 : 1 +>"#contribuir" : number +>1 : 1 + + {texto: "#conversos", sentimento: -1, "#conversos": -1}, +>{texto: "#conversos", sentimento: -1, "#conversos": -1} : { texto: string; sentimento: number; "#conversos": number; } +>texto : string +>"#conversos" : "#conversos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#conversos" : number +>-1 : -1 +>1 : 1 + + {texto: "#copa", sentimento: -1, "#copa": -1}, +>{texto: "#copa", sentimento: -1, "#copa": -1} : { texto: string; sentimento: number; "#copa": number; } +>texto : string +>"#copa" : "#copa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#copa" : number +>-1 : -1 +>1 : 1 + + {texto: "#corpoevida", sentimento: 1, "#corpoevida": 1}, +>{texto: "#corpoevida", sentimento: 1, "#corpoevida": 1} : { texto: string; sentimento: number; "#corpoevida": number; } +>texto : string +>"#corpoevida" : "#corpoevida" +>sentimento : number +>1 : 1 +>"#corpoevida" : number +>1 : 1 + + {texto: "#correios", sentimento: -1, "#correios": -1}, +>{texto: "#correios", sentimento: -1, "#correios": -1} : { texto: string; sentimento: number; "#correios": number; } +>texto : string +>"#correios" : "#correios" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#correios" : number +>-1 : -1 +>1 : 1 + + {texto: "#cpco4", sentimento: 1, "#cpco4": 1}, +>{texto: "#cpco4", sentimento: 1, "#cpco4": 1} : { texto: string; sentimento: number; "#cpco4": number; } +>texto : string +>"#cpco4" : "#cpco4" +>sentimento : number +>1 : 1 +>"#cpco4" : number +>1 : 1 + + {texto: "#cpfl", sentimento: -1, "#cpfl": -1}, +>{texto: "#cpfl", sentimento: -1, "#cpfl": -1} : { texto: string; sentimento: number; "#cpfl": number; } +>texto : string +>"#cpfl" : "#cpfl" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cpfl" : number +>-1 : -1 +>1 : 1 + + {texto: "#cqc", sentimento: -1, "#cqc": -1}, +>{texto: "#cqc", sentimento: -1, "#cqc": -1} : { texto: string; sentimento: number; "#cqc": number; } +>texto : string +>"#cqc" : "#cqc" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cqc" : number +>-1 : -1 +>1 : 1 + + {texto: "#cqteste", sentimento: -1, "#cqteste": -1}, +>{texto: "#cqteste", sentimento: -1, "#cqteste": -1} : { texto: string; sentimento: number; "#cqteste": number; } +>texto : string +>"#cqteste" : "#cqteste" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cqteste" : number +>-1 : -1 +>1 : 1 + + {texto: "#cry", sentimento: -1, "#cry": -1}, +>{texto: "#cry", sentimento: -1, "#cry": -1} : { texto: string; sentimento: number; "#cry": number; } +>texto : string +>"#cry" : "#cry" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cry" : number +>-1 : -1 +>1 : 1 + + {texto: "#cs1", sentimento: 1, "#cs1": 1}, +>{texto: "#cs1", sentimento: 1, "#cs1": 1} : { texto: string; sentimento: number; "#cs1": number; } +>texto : string +>"#cs1" : "#cs1" +>sentimento : number +>1 : 1 +>"#cs1" : number +>1 : 1 + + {texto: "#csrio", sentimento: 1, "#csrio": 1}, +>{texto: "#csrio", sentimento: 1, "#csrio": 1} : { texto: string; sentimento: number; "#csrio": number; } +>texto : string +>"#csrio" : "#csrio" +>sentimento : number +>1 : 1 +>"#csrio" : number +>1 : 1 + + {texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1}, +>{texto: "#cuandoerani", sentimento: -1, "#cuandoerani": -1} : { texto: string; sentimento: number; "#cuandoerani": number; } +>texto : string +>"#cuandoerani" : "#cuandoerani" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#cuandoerani" : number +>-1 : -1 +>1 : 1 + + {texto: "#curiosidades", sentimento: 1, "#curiosidades": 1}, +>{texto: "#curiosidades", sentimento: 1, "#curiosidades": 1} : { texto: string; sentimento: number; "#curiosidades": number; } +>texto : string +>"#curiosidades" : "#curiosidades" +>sentimento : number +>1 : 1 +>"#curiosidades" : number +>1 : 1 + + {texto: "#curso", sentimento: -1, "#curso": -1}, +>{texto: "#curso", sentimento: -1, "#curso": -1} : { texto: string; sentimento: number; "#curso": number; } +>texto : string +>"#curso" : "#curso" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#curso" : number +>-1 : -1 +>1 : 1 + + {texto: "#d", sentimento: 1, "#d": 1}, +>{texto: "#d", sentimento: 1, "#d": 1} : { texto: string; sentimento: number; "#d": number; } +>texto : string +>"#d" : "#d" +>sentimento : number +>1 : 1 +>"#d" : number +>1 : 1 + + {texto: "#dailyformula", sentimento: 1, "#dailyformula": 1}, +>{texto: "#dailyformula", sentimento: 1, "#dailyformula": 1} : { texto: string; sentimento: number; "#dailyformula": number; } +>texto : string +>"#dailyformula" : "#dailyformula" +>sentimento : number +>1 : 1 +>"#dailyformula" : number +>1 : 1 + + {texto: "#datena", sentimento: -1, "#datena": -1}, +>{texto: "#datena", sentimento: -1, "#datena": -1} : { texto: string; sentimento: number; "#datena": number; } +>texto : string +>"#datena" : "#datena" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#datena" : number +>-1 : -1 +>1 : 1 + + {texto: "#declara", sentimento: -1, "#declara": -1}, +>{texto: "#declara", sentimento: -1, "#declara": -1} : { texto: string; sentimento: number; "#declara": number; } +>texto : string +>"#declara" : "#declara" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#declara" : number +>-1 : -1 +>1 : 1 + + {texto: "#defeito", sentimento: -1, "#defeito": -1}, +>{texto: "#defeito", sentimento: -1, "#defeito": -1} : { texto: string; sentimento: number; "#defeito": number; } +>texto : string +>"#defeito" : "#defeito" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#defeito" : number +>-1 : -1 +>1 : 1 + + {texto: "#desconfiado", sentimento: 1, "#desconfiado": 1}, +>{texto: "#desconfiado", sentimento: 1, "#desconfiado": 1} : { texto: string; sentimento: number; "#desconfiado": number; } +>texto : string +>"#desconfiado" : "#desconfiado" +>sentimento : number +>1 : 1 +>"#desconfiado" : number +>1 : 1 + + {texto: "#desculpa", sentimento: -1, "#desculpa": -1}, +>{texto: "#desculpa", sentimento: -1, "#desculpa": -1} : { texto: string; sentimento: number; "#desculpa": number; } +>texto : string +>"#desculpa" : "#desculpa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#desculpa" : number +>-1 : -1 +>1 : 1 + + {texto: "#deus", sentimento: 1, "#deus": 1}, +>{texto: "#deus", sentimento: 1, "#deus": 1} : { texto: string; sentimento: number; "#deus": number; } +>texto : string +>"#deus" : "#deus" +>sentimento : number +>1 : 1 +>"#deus" : number +>1 : 1 + + {texto: "#di", sentimento: 1, "#di": 1}, +>{texto: "#di", sentimento: 1, "#di": 1} : { texto: string; sentimento: number; "#di": number; } +>texto : string +>"#di" : "#di" +>sentimento : number +>1 : 1 +>"#di" : number +>1 : 1 + + {texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1}, +>{texto: "#diadosnamorados", sentimento: -1, "#diadosnamorados": -1} : { texto: string; sentimento: number; "#diadosnamorados": number; } +>texto : string +>"#diadosnamorados" : "#diadosnamorados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#diadosnamorados" : number +>-1 : -1 +>1 : 1 + + {texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1}, +>{texto: "#diariosdovampiro", sentimento: -1, "#diariosdovampiro": -1} : { texto: string; sentimento: number; "#diariosdovampiro": number; } +>texto : string +>"#diariosdovampiro" : "#diariosdovampiro" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#diariosdovampiro" : number +>-1 : -1 +>1 : 1 + + {texto: "#diegocaash", sentimento: -1, "#diegocaash": -1}, +>{texto: "#diegocaash", sentimento: -1, "#diegocaash": -1} : { texto: string; sentimento: number; "#diegocaash": number; } +>texto : string +>"#diegocaash" : "#diegocaash" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#diegocaash" : number +>-1 : -1 +>1 : 1 + + {texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1}, +>{texto: "#diezcanseconojodas", sentimento: 1, "#diezcanseconojodas": 1} : { texto: string; sentimento: number; "#diezcanseconojodas": number; } +>texto : string +>"#diezcanseconojodas" : "#diezcanseconojodas" +>sentimento : number +>1 : 1 +>"#diezcanseconojodas" : number +>1 : 1 + + {texto: "#digimon", sentimento: -1, "#digimon": -1}, +>{texto: "#digimon", sentimento: -1, "#digimon": -1} : { texto: string; sentimento: number; "#digimon": number; } +>texto : string +>"#digimon" : "#digimon" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#digimon" : number +>-1 : -1 +>1 : 1 + + {texto: "#digitalworld", sentimento: -1, "#digitalworld": -1}, +>{texto: "#digitalworld", sentimento: -1, "#digitalworld": -1} : { texto: string; sentimento: number; "#digitalworld": number; } +>texto : string +>"#digitalworld" : "#digitalworld" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#digitalworld" : number +>-1 : -1 +>1 : 1 + + {texto: "#django1", sentimento: 1, "#django1": 1}, +>{texto: "#django1", sentimento: 1, "#django1": 1} : { texto: string; sentimento: number; "#django1": number; } +>texto : string +>"#django1" : "#django1" +>sentimento : number +>1 : 1 +>"#django1" : number +>1 : 1 + + {texto: "#dojorio", sentimento: 1, "#dojorio": 1}, +>{texto: "#dojorio", sentimento: 1, "#dojorio": 1} : { texto: string; sentimento: number; "#dojorio": number; } +>texto : string +>"#dojorio" : "#dojorio" +>sentimento : number +>1 : 1 +>"#dojorio" : number +>1 : 1 + + {texto: "#dorgas", sentimento: -1, "#dorgas": -1}, +>{texto: "#dorgas", sentimento: -1, "#dorgas": -1} : { texto: string; sentimento: number; "#dorgas": number; } +>texto : string +>"#dorgas" : "#dorgas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#dorgas" : number +>-1 : -1 +>1 : 1 + + {texto: "#dormir", sentimento: 1, "#dormir": 1}, +>{texto: "#dormir", sentimento: 1, "#dormir": 1} : { texto: string; sentimento: number; "#dormir": number; } +>texto : string +>"#dormir" : "#dormir" +>sentimento : number +>1 : 1 +>"#dormir" : number +>1 : 1 + + {texto: "#e3", sentimento: -1, "#e3": -1}, +>{texto: "#e3", sentimento: -1, "#e3": -1} : { texto: string; sentimento: number; "#e3": number; } +>texto : string +>"#e3" : "#e3" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#e3" : number +>-1 : -1 +>1 : 1 + + {texto: "#e32011", sentimento: -1, "#e32011": -1}, +>{texto: "#e32011", sentimento: -1, "#e32011": -1} : { texto: string; sentimento: number; "#e32011": number; } +>texto : string +>"#e32011" : "#e32011" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#e32011" : number +>-1 : -1 +>1 : 1 + + {texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1}, +>{texto: "#eaidoutor", sentimento: -1, "#eaidoutor": -1} : { texto: string; sentimento: number; "#eaidoutor": number; } +>texto : string +>"#eaidoutor" : "#eaidoutor" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eaidoutor" : number +>-1 : -1 +>1 : 1 + + {texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1}, +>{texto: "#edwardpobre", sentimento: 1, "#edwardpobre": 1} : { texto: string; sentimento: number; "#edwardpobre": number; } +>texto : string +>"#edwardpobre" : "#edwardpobre" +>sentimento : number +>1 : 1 +>"#edwardpobre" : number +>1 : 1 + + {texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1}, +>{texto: "#eeeeeeeuridemais", sentimento: -1, "#eeeeeeeuridemais": -1} : { texto: string; sentimento: number; "#eeeeeeeuridemais": number; } +>texto : string +>"#eeeeeeeuridemais" : "#eeeeeeeuridemais" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eeeeeeeuridemais" : number +>-1 : -1 +>1 : 1 + + {texto: "#ela", sentimento: -1, "#ela": -1}, +>{texto: "#ela", sentimento: -1, "#ela": -1} : { texto: string; sentimento: number; "#ela": number; } +>texto : string +>"#ela" : "#ela" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ela" : number +>-1 : -1 +>1 : 1 + + {texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1}, +>{texto: "#elanaodeixa", sentimento: -1, "#elanaodeixa": -1} : { texto: string; sentimento: number; "#elanaodeixa": number; } +>texto : string +>"#elanaodeixa" : "#elanaodeixa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#elanaodeixa" : number +>-1 : -1 +>1 : 1 + + {texto: "#elbotin", sentimento: 1, "#elbotin": 1}, +>{texto: "#elbotin", sentimento: 1, "#elbotin": 1} : { texto: string; sentimento: number; "#elbotin": number; } +>texto : string +>"#elbotin" : "#elbotin" +>sentimento : number +>1 : 1 +>"#elbotin" : number +>1 : 1 + + {texto: "#elcorner", sentimento: -1, "#elcorner": -1}, +>{texto: "#elcorner", sentimento: -1, "#elcorner": -1} : { texto: string; sentimento: number; "#elcorner": number; } +>texto : string +>"#elcorner" : "#elcorner" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#elcorner" : number +>-1 : -1 +>1 : 1 + + {texto: "#ele", sentimento: -1, "#ele": -1}, +>{texto: "#ele", sentimento: -1, "#ele": -1} : { texto: string; sentimento: number; "#ele": number; } +>texto : string +>"#ele" : "#ele" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ele" : number +>-1 : -1 +>1 : 1 + + {texto: "#eletromate", sentimento: -1, "#eletromate": -1}, +>{texto: "#eletromate", sentimento: -1, "#eletromate": -1} : { texto: string; sentimento: number; "#eletromate": number; } +>texto : string +>"#eletromate" : "#eletromate" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eletromate" : number +>-1 : -1 +>1 : 1 + + {texto: "#emerson", sentimento: -1, "#emerson": -1}, +>{texto: "#emerson", sentimento: -1, "#emerson": -1} : { texto: string; sentimento: number; "#emerson": number; } +>texto : string +>"#emerson" : "#emerson" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#emerson" : number +>-1 : -1 +>1 : 1 + + {texto: "#enem", sentimento: -1, "#enem": -1}, +>{texto: "#enem", sentimento: -1, "#enem": -1} : { texto: string; sentimento: number; "#enem": number; } +>texto : string +>"#enem" : "#enem" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#enem" : number +>-1 : -1 +>1 : 1 + + {texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1}, +>{texto: "#eospisicopatasdaoretwitt", sentimento: -1, "#eospisicopatasdaoretwitt": -1} : { texto: string; sentimento: number; "#eospisicopatasdaoretwitt": number; } +>texto : string +>"#eospisicopatasdaoretwitt" : "#eospisicopatasdaoretwitt" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eospisicopatasdaoretwitt" : number +>-1 : -1 +>1 : 1 + + {texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1}, +>{texto: "#eossemeduca", sentimento: -1, "#eossemeduca": -1} : { texto: string; sentimento: number; "#eossemeduca": number; } +>texto : string +>"#eossemeduca" : "#eossemeduca" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eossemeduca" : number +>-1 : -1 +>1 : 1 + + {texto: "#epic", sentimento: -1, "#epic": -1}, +>{texto: "#epic", sentimento: -1, "#epic": -1} : { texto: string; sentimento: number; "#epic": number; } +>texto : string +>"#epic" : "#epic" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#epic" : number +>-1 : -1 +>1 : 1 + + {texto: "#epicwin", sentimento: 0, "#epicwin": 0}, +>{texto: "#epicwin", sentimento: 0, "#epicwin": 0} : { texto: string; sentimento: number; "#epicwin": number; } +>texto : string +>"#epicwin" : "#epicwin" +>sentimento : number +>0 : 0 +>"#epicwin" : number +>0 : 0 + + {texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1}, +>{texto: "#eraseunavez", sentimento: 1, "#eraseunavez": 1} : { texto: string; sentimento: number; "#eraseunavez": number; } +>texto : string +>"#eraseunavez" : "#eraseunavez" +>sentimento : number +>1 : 1 +>"#eraseunavez" : number +>1 : 1 + + {texto: "#eressexypero", sentimento: 1, "#eressexypero": 1}, +>{texto: "#eressexypero", sentimento: 1, "#eressexypero": 1} : { texto: string; sentimento: number; "#eressexypero": number; } +>texto : string +>"#eressexypero" : "#eressexypero" +>sentimento : number +>1 : 1 +>"#eressexypero" : number +>1 : 1 + + {texto: "#errodotz", sentimento: -1, "#errodotz": -1}, +>{texto: "#errodotz", sentimento: -1, "#errodotz": -1} : { texto: string; sentimento: number; "#errodotz": number; } +>texto : string +>"#errodotz" : "#errodotz" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#errodotz" : number +>-1 : -1 +>1 : 1 + + {texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1}, +>{texto: "#esassonpurasmentiras", sentimento: 1, "#esassonpurasmentiras": 1} : { texto: string; sentimento: number; "#esassonpurasmentiras": number; } +>texto : string +>"#esassonpurasmentiras" : "#esassonpurasmentiras" +>sentimento : number +>1 : 1 +>"#esassonpurasmentiras" : number +>1 : 1 + + {texto: "#escroto", sentimento: -1, "#escroto": -1}, +>{texto: "#escroto", sentimento: -1, "#escroto": -1} : { texto: string; sentimento: number; "#escroto": number; } +>texto : string +>"#escroto" : "#escroto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#escroto" : number +>-1 : -1 +>1 : 1 + + {texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1}, +>{texto: "#espiritosanto", sentimento: -1, "#espiritosanto": -1} : { texto: string; sentimento: number; "#espiritosanto": number; } +>texto : string +>"#espiritosanto" : "#espiritosanto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#espiritosanto" : number +>-1 : -1 +>1 : 1 + + {texto: "#estad", sentimento: -1, "#estad": -1}, +>{texto: "#estad", sentimento: -1, "#estad": -1} : { texto: string; sentimento: number; "#estad": number; } +>texto : string +>"#estad" : "#estad" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#estad" : number +>-1 : -1 +>1 : 1 + + {texto: "#estudar", sentimento: -1, "#estudar": -1}, +>{texto: "#estudar", sentimento: -1, "#estudar": -1} : { texto: string; sentimento: number; "#estudar": number; } +>texto : string +>"#estudar" : "#estudar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#estudar" : number +>-1 : -1 +>1 : 1 + + {texto: "#etenildos", sentimento: -1, "#etenildos": -1}, +>{texto: "#etenildos", sentimento: -1, "#etenildos": -1} : { texto: string; sentimento: number; "#etenildos": number; } +>texto : string +>"#etenildos" : "#etenildos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#etenildos" : number +>-1 : -1 +>1 : 1 + + {texto: "#eu", sentimento: -1, "#eu": -1}, +>{texto: "#eu", sentimento: -1, "#eu": -1} : { texto: string; sentimento: number; "#eu": number; } +>texto : string +>"#eu" : "#eu" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eu" : number +>-1 : -1 +>1 : 1 + + {texto: "#eununca", sentimento: -1, "#eununca": -1}, +>{texto: "#eununca", sentimento: -1, "#eununca": -1} : { texto: string; sentimento: number; "#eununca": number; } +>texto : string +>"#eununca" : "#eununca" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eununca" : number +>-1 : -1 +>1 : 1 + + {texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1}, +>{texto: "#eutenhoumamigo", sentimento: -1, "#eutenhoumamigo": -1} : { texto: string; sentimento: number; "#eutenhoumamigo": number; } +>texto : string +>"#eutenhoumamigo" : "#eutenhoumamigo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#eutenhoumamigo" : number +>-1 : -1 +>1 : 1 + + {texto: "#evernote", sentimento: 1, "#evernote": 1}, +>{texto: "#evernote", sentimento: 1, "#evernote": 1} : { texto: string; sentimento: number; "#evernote": number; } +>texto : string +>"#evernote" : "#evernote" +>sentimento : number +>1 : 1 +>"#evernote" : number +>1 : 1 + + {texto: "#exalta", sentimento: -1, "#exalta": -1}, +>{texto: "#exalta", sentimento: -1, "#exalta": -1} : { texto: string; sentimento: number; "#exalta": number; } +>texto : string +>"#exalta" : "#exalta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#exalta" : number +>-1 : -1 +>1 : 1 + + {texto: "#expotch", sentimento: -1, "#expotch": -1}, +>{texto: "#expotch", sentimento: -1, "#expotch": -1} : { texto: string; sentimento: number; "#expotch": number; } +>texto : string +>"#expotch" : "#expotch" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#expotch" : number +>-1 : -1 +>1 : 1 + + {texto: "#facebook", sentimento: 1, "#facebook": 1}, +>{texto: "#facebook", sentimento: 1, "#facebook": 1} : { texto: string; sentimento: number; "#facebook": number; } +>texto : string +>"#facebook" : "#facebook" +>sentimento : number +>1 : 1 +>"#facebook" : number +>1 : 1 + + {texto: "#fail", sentimento: -1, "#fail": -1}, +>{texto: "#fail", sentimento: -1, "#fail": -1} : { texto: string; sentimento: number; "#fail": number; } +>texto : string +>"#fail" : "#fail" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fail" : number +>-1 : -1 +>1 : 1 + + {texto: "#faiooo", sentimento: -1, "#faiooo": -1}, +>{texto: "#faiooo", sentimento: -1, "#faiooo": -1} : { texto: string; sentimento: number; "#faiooo": number; } +>texto : string +>"#faiooo" : "#faiooo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#faiooo" : number +>-1 : -1 +>1 : 1 + + {texto: "#fascinante", sentimento: 1, "#fascinante": 1}, +>{texto: "#fascinante", sentimento: 1, "#fascinante": 1} : { texto: string; sentimento: number; "#fascinante": number; } +>texto : string +>"#fascinante" : "#fascinante" +>sentimento : number +>1 : 1 +>"#fascinante" : number +>1 : 1 + + {texto: "#fashion", sentimento: -1, "#fashion": -1}, +>{texto: "#fashion", sentimento: -1, "#fashion": -1} : { texto: string; sentimento: number; "#fashion": number; } +>texto : string +>"#fashion" : "#fashion" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fashion" : number +>-1 : -1 +>1 : 1 + + {texto: "#fato", sentimento: -1, "#fato": -1}, +>{texto: "#fato", sentimento: -1, "#fato": -1} : { texto: string; sentimento: number; "#fato": number; } +>texto : string +>"#fato" : "#fato" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fato" : number +>-1 : -1 +>1 : 1 + + {texto: "#fb", sentimento: 1, "#fb": 1}, +>{texto: "#fb", sentimento: 1, "#fb": 1} : { texto: string; sentimento: number; "#fb": number; } +>texto : string +>"#fb" : "#fb" +>sentimento : number +>1 : 1 +>"#fb" : number +>1 : 1 + + {texto: "#feil", sentimento: -1, "#feil": -1}, +>{texto: "#feil", sentimento: -1, "#feil": -1} : { texto: string; sentimento: number; "#feil": number; } +>texto : string +>"#feil" : "#feil" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#feil" : number +>-1 : -1 +>1 : 1 + + {texto: "#feio", sentimento: -1, "#feio": -1}, +>{texto: "#feio", sentimento: -1, "#feio": -1} : { texto: string; sentimento: number; "#feio": number; } +>texto : string +>"#feio" : "#feio" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#feio" : number +>-1 : -1 +>1 : 1 + + {texto: "#fertagus", sentimento: 1, "#fertagus": 1}, +>{texto: "#fertagus", sentimento: 1, "#fertagus": 1} : { texto: string; sentimento: number; "#fertagus": number; } +>texto : string +>"#fertagus" : "#fertagus" +>sentimento : number +>1 : 1 +>"#fertagus" : number +>1 : 1 + + {texto: "#ff", sentimento: 1, "#ff": 1}, +>{texto: "#ff", sentimento: 1, "#ff": 1} : { texto: string; sentimento: number; "#ff": number; } +>texto : string +>"#ff" : "#ff" +>sentimento : number +>1 : 1 +>"#ff" : number +>1 : 1 + + {texto: "#fibra", sentimento: -1, "#fibra": -1}, +>{texto: "#fibra", sentimento: -1, "#fibra": -1} : { texto: string; sentimento: number; "#fibra": number; } +>texto : string +>"#fibra" : "#fibra" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fibra" : number +>-1 : -1 +>1 : 1 + + {texto: "#ficadica", sentimento: -1, "#ficadica": -1}, +>{texto: "#ficadica", sentimento: -1, "#ficadica": -1} : { texto: string; sentimento: number; "#ficadica": number; } +>texto : string +>"#ficadica" : "#ficadica" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ficadica" : number +>-1 : -1 +>1 : 1 + + {texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1}, +>{texto: "#fidalidadesmiles", sentimento: -1, "#fidalidadesmiles": -1} : { texto: string; sentimento: number; "#fidalidadesmiles": number; } +>texto : string +>"#fidalidadesmiles" : "#fidalidadesmiles" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fidalidadesmiles" : number +>-1 : -1 +>1 : 1 + + {texto: "#fifa11", sentimento: 1, "#fifa11": 1}, +>{texto: "#fifa11", sentimento: 1, "#fifa11": 1} : { texto: string; sentimento: number; "#fifa11": number; } +>texto : string +>"#fifa11" : "#fifa11" +>sentimento : number +>1 : 1 +>"#fifa11" : number +>1 : 1 + + {texto: "#fikdik", sentimento: -1, "#fikdik": -1}, +>{texto: "#fikdik", sentimento: -1, "#fikdik": -1} : { texto: string; sentimento: number; "#fikdik": number; } +>texto : string +>"#fikdik" : "#fikdik" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fikdik" : number +>-1 : -1 +>1 : 1 + + {texto: "#filha", sentimento: -1, "#filha": -1}, +>{texto: "#filha", sentimento: -1, "#filha": -1} : { texto: string; sentimento: number; "#filha": number; } +>texto : string +>"#filha" : "#filha" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#filha" : number +>-1 : -1 +>1 : 1 + + {texto: "#finishh", sentimento: 1, "#finishh": 1}, +>{texto: "#finishh", sentimento: 1, "#finishh": 1} : { texto: string; sentimento: number; "#finishh": number; } +>texto : string +>"#finishh" : "#finishh" +>sentimento : number +>1 : 1 +>"#finishh" : number +>1 : 1 + + {texto: "#firefox", sentimento: 1, "#firefox": 1}, +>{texto: "#firefox", sentimento: 1, "#firefox": 1} : { texto: string; sentimento: number; "#firefox": number; } +>texto : string +>"#firefox" : "#firefox" +>sentimento : number +>1 : 1 +>"#firefox" : number +>1 : 1 + + {texto: "#fisl", sentimento: 1, "#fisl": 1}, +>{texto: "#fisl", sentimento: 1, "#fisl": 1} : { texto: string; sentimento: number; "#fisl": number; } +>texto : string +>"#fisl" : "#fisl" +>sentimento : number +>1 : 1 +>"#fisl" : number +>1 : 1 + + {texto: "#flash", sentimento: 1, "#flash": 1}, +>{texto: "#flash", sentimento: 1, "#flash": 1} : { texto: string; sentimento: number; "#flash": number; } +>texto : string +>"#flash" : "#flash" +>sentimento : number +>1 : 1 +>"#flash" : number +>1 : 1 + + {texto: "#flopou", sentimento: -1, "#flopou": -1}, +>{texto: "#flopou", sentimento: -1, "#flopou": -1} : { texto: string; sentimento: number; "#flopou": number; } +>texto : string +>"#flopou" : "#flopou" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#flopou" : number +>-1 : -1 +>1 : 1 + + {texto: "#fodaa", sentimento: -1, "#fodaa": -1}, +>{texto: "#fodaa", sentimento: -1, "#fodaa": -1} : { texto: string; sentimento: number; "#fodaa": number; } +>texto : string +>"#fodaa" : "#fodaa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fodaa" : number +>-1 : -1 +>1 : 1 + + {texto: "#fodao", sentimento: 1, "#fodao": 1}, +>{texto: "#fodao", sentimento: 1, "#fodao": 1} : { texto: string; sentimento: number; "#fodao": number; } +>texto : string +>"#fodao" : "#fodao" +>sentimento : number +>1 : 1 +>"#fodao" : number +>1 : 1 + + {texto: "#fome", sentimento: 1, "#fome": 1}, +>{texto: "#fome", sentimento: 1, "#fome": 1} : { texto: string; sentimento: number; "#fome": number; } +>texto : string +>"#fome" : "#fome" +>sentimento : number +>1 : 1 +>"#fome" : number +>1 : 1 + + {texto: "#foramicarla", sentimento: -1, "#foramicarla": -1}, +>{texto: "#foramicarla", sentimento: -1, "#foramicarla": -1} : { texto: string; sentimento: number; "#foramicarla": number; } +>texto : string +>"#foramicarla" : "#foramicarla" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#foramicarla" : number +>-1 : -1 +>1 : 1 + + {texto: "#forever", sentimento: 1, "#forever": 1}, +>{texto: "#forever", sentimento: 1, "#forever": 1} : { texto: string; sentimento: number; "#forever": number; } +>texto : string +>"#forever" : "#forever" +>sentimento : number +>1 : 1 +>"#forever" : number +>1 : 1 + + {texto: "#foreveralone", sentimento: 1, "#foreveralone": 1}, +>{texto: "#foreveralone", sentimento: 1, "#foreveralone": 1} : { texto: string; sentimento: number; "#foreveralone": number; } +>texto : string +>"#foreveralone" : "#foreveralone" +>sentimento : number +>1 : 1 +>"#foreveralone" : number +>1 : 1 + + {texto: "#forevergordo", sentimento: 1, "#forevergordo": 1}, +>{texto: "#forevergordo", sentimento: 1, "#forevergordo": 1} : { texto: string; sentimento: number; "#forevergordo": number; } +>texto : string +>"#forevergordo" : "#forevergordo" +>sentimento : number +>1 : 1 +>"#forevergordo" : number +>1 : 1 + + {texto: "#fortaleza", sentimento: -1, "#fortaleza": -1}, +>{texto: "#fortaleza", sentimento: -1, "#fortaleza": -1} : { texto: string; sentimento: number; "#fortaleza": number; } +>texto : string +>"#fortaleza" : "#fortaleza" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fortaleza" : number +>-1 : -1 +>1 : 1 + + {texto: "#frontinrio", sentimento: 1, "#frontinrio": 1}, +>{texto: "#frontinrio", sentimento: 1, "#frontinrio": 1} : { texto: string; sentimento: number; "#frontinrio": number; } +>texto : string +>"#frontinrio" : "#frontinrio" +>sentimento : number +>1 : 1 +>"#frontinrio" : number +>1 : 1 + + {texto: "#fsoa", sentimento: 1, "#fsoa": 1}, +>{texto: "#fsoa", sentimento: 1, "#fsoa": 1} : { texto: string; sentimento: number; "#fsoa": number; } +>texto : string +>"#fsoa" : "#fsoa" +>sentimento : number +>1 : 1 +>"#fsoa" : number +>1 : 1 + + {texto: "#fuckboy", sentimento: -1, "#fuckboy": -1}, +>{texto: "#fuckboy", sentimento: -1, "#fuckboy": -1} : { texto: string; sentimento: number; "#fuckboy": number; } +>texto : string +>"#fuckboy" : "#fuckboy" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fuckboy" : number +>-1 : -1 +>1 : 1 + + {texto: "#fuckyea", sentimento: 1, "#fuckyea": 1}, +>{texto: "#fuckyea", sentimento: 1, "#fuckyea": 1} : { texto: string; sentimento: number; "#fuckyea": number; } +>texto : string +>"#fuckyea" : "#fuckyea" +>sentimento : number +>1 : 1 +>"#fuckyea" : number +>1 : 1 + + {texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1}, +>{texto: "#fudeugeral", sentimento: -1, "#fudeugeral": -1} : { texto: string; sentimento: number; "#fudeugeral": number; } +>texto : string +>"#fudeugeral" : "#fudeugeral" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#fudeugeral" : number +>-1 : -1 +>1 : 1 + + {texto: "#funk", sentimento: -1, "#funk": -1}, +>{texto: "#funk", sentimento: -1, "#funk": -1} : { texto: string; sentimento: number; "#funk": number; } +>texto : string +>"#funk" : "#funk" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#funk" : number +>-1 : -1 +>1 : 1 + + {texto: "#gaga", sentimento: -1, "#gaga": -1}, +>{texto: "#gaga", sentimento: -1, "#gaga": -1} : { texto: string; sentimento: number; "#gaga": number; } +>texto : string +>"#gaga" : "#gaga" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#gaga" : number +>-1 : -1 +>1 : 1 + + {texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1}, +>{texto: "#galvaobueno", sentimento: -1, "#galvaobueno": -1} : { texto: string; sentimento: number; "#galvaobueno": number; } +>texto : string +>"#galvaobueno" : "#galvaobueno" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#galvaobueno" : number +>-1 : -1 +>1 : 1 + + {texto: "#gatos", sentimento: 1, "#gatos": 1}, +>{texto: "#gatos", sentimento: 1, "#gatos": 1} : { texto: string; sentimento: number; "#gatos": number; } +>texto : string +>"#gatos" : "#gatos" +>sentimento : number +>1 : 1 +>"#gatos" : number +>1 : 1 + + {texto: "#generationteen", sentimento: -1, "#generationteen": -1}, +>{texto: "#generationteen", sentimento: -1, "#generationteen": -1} : { texto: string; sentimento: number; "#generationteen": number; } +>texto : string +>"#generationteen" : "#generationteen" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#generationteen" : number +>-1 : -1 +>1 : 1 + + {texto: "#gente", sentimento: -1, "#gente": -1}, +>{texto: "#gente", sentimento: -1, "#gente": -1} : { texto: string; sentimento: number; "#gente": number; } +>texto : string +>"#gente" : "#gente" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#gente" : number +>-1 : -1 +>1 : 1 + + {texto: "#genteque", sentimento: -1, "#genteque": -1}, +>{texto: "#genteque", sentimento: -1, "#genteque": -1} : { texto: string; sentimento: number; "#genteque": number; } +>texto : string +>"#genteque" : "#genteque" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#genteque" : number +>-1 : -1 +>1 : 1 + + {texto: "#ger", sentimento: -1, "#ger": -1}, +>{texto: "#ger", sentimento: -1, "#ger": -1} : { texto: string; sentimento: number; "#ger": number; } +>texto : string +>"#ger" : "#ger" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ger" : number +>-1 : -1 +>1 : 1 + + {texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1}, +>{texto: "#giovanealmeida", sentimento: -1, "#giovanealmeida": -1} : { texto: string; sentimento: number; "#giovanealmeida": number; } +>texto : string +>"#giovanealmeida" : "#giovanealmeida" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#giovanealmeida" : number +>-1 : -1 +>1 : 1 + + {texto: "#gof9", sentimento: -1, "#gof9": -1}, +>{texto: "#gof9", sentimento: -1, "#gof9": -1} : { texto: string; sentimento: number; "#gof9": number; } +>texto : string +>"#gof9" : "#gof9" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#gof9" : number +>-1 : -1 +>1 : 1 + + {texto: "#gol", sentimento: 1, "#gol": 1}, +>{texto: "#gol", sentimento: 1, "#gol": 1} : { texto: string; sentimento: number; "#gol": number; } +>texto : string +>"#gol" : "#gol" +>sentimento : number +>1 : 1 +>"#gol" : number +>1 : 1 + + {texto: "#golazo", sentimento: 1, "#golazo": 1}, +>{texto: "#golazo", sentimento: 1, "#golazo": 1} : { texto: string; sentimento: number; "#golazo": number; } +>texto : string +>"#golazo" : "#golazo" +>sentimento : number +>1 : 1 +>"#golazo" : number +>1 : 1 + + {texto: "#google", sentimento: -1, "#google": -1}, +>{texto: "#google", sentimento: -1, "#google": -1} : { texto: string; sentimento: number; "#google": number; } +>texto : string +>"#google" : "#google" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#google" : number +>-1 : -1 +>1 : 1 + + {texto: "#googledoodle", sentimento: -1, "#googledoodle": -1}, +>{texto: "#googledoodle", sentimento: -1, "#googledoodle": -1} : { texto: string; sentimento: number; "#googledoodle": number; } +>texto : string +>"#googledoodle" : "#googledoodle" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#googledoodle" : number +>-1 : -1 +>1 : 1 + + {texto: "#gr", sentimento: -1, "#gr": -1}, +>{texto: "#gr", sentimento: -1, "#gr": -1} : { texto: string; sentimento: number; "#gr": number; } +>texto : string +>"#gr" : "#gr" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#gr" : number +>-1 : -1 +>1 : 1 + + {texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1}, +>{texto: "#graciasdiosito", sentimento: 1, "#graciasdiosito": 1} : { texto: string; sentimento: number; "#graciasdiosito": number; } +>texto : string +>"#graciasdiosito" : "#graciasdiosito" +>sentimento : number +>1 : 1 +>"#graciasdiosito" : number +>1 : 1 + + {texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1}, +>{texto: "#grandesmentiras", sentimento: -1, "#grandesmentiras": -1} : { texto: string; sentimento: number; "#grandesmentiras": number; } +>texto : string +>"#grandesmentiras" : "#grandesmentiras" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#grandesmentiras" : number +>-1 : -1 +>1 : 1 + + {texto: "#gremio", sentimento: -1, "#gremio": -1}, +>{texto: "#gremio", sentimento: -1, "#gremio": -1} : { texto: string; sentimento: number; "#gremio": number; } +>texto : string +>"#gremio" : "#gremio" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#gremio" : number +>-1 : -1 +>1 : 1 + + {texto: "#guanabara", sentimento: 1, "#guanabara": 1}, +>{texto: "#guanabara", sentimento: 1, "#guanabara": 1} : { texto: string; sentimento: number; "#guanabara": number; } +>texto : string +>"#guanabara" : "#guanabara" +>sentimento : number +>1 : 1 +>"#guanabara" : number +>1 : 1 + + {texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1}, +>{texto: "#guardomagoa", sentimento: 1, "#guardomagoa": 1} : { texto: string; sentimento: number; "#guardomagoa": number; } +>texto : string +>"#guardomagoa" : "#guardomagoa" +>sentimento : number +>1 : 1 +>"#guardomagoa" : number +>1 : 1 + + {texto: "#guicostnn", sentimento: -1, "#guicostnn": -1}, +>{texto: "#guicostnn", sentimento: -1, "#guicostnn": -1} : { texto: string; sentimento: number; "#guicostnn": number; } +>texto : string +>"#guicostnn" : "#guicostnn" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#guicostnn" : number +>-1 : -1 +>1 : 1 + + {texto: "#harrypobre", sentimento: 1, "#harrypobre": 1}, +>{texto: "#harrypobre", sentimento: 1, "#harrypobre": 1} : { texto: string; sentimento: number; "#harrypobre": number; } +>texto : string +>"#harrypobre" : "#harrypobre" +>sentimento : number +>1 : 1 +>"#harrypobre" : number +>1 : 1 + + {texto: "#hi5", sentimento: 1, "#hi5": 1}, +>{texto: "#hi5", sentimento: 1, "#hi5": 1} : { texto: string; sentimento: number; "#hi5": number; } +>texto : string +>"#hi5" : "#hi5" +>sentimento : number +>1 : 1 +>"#hi5" : number +>1 : 1 + + {texto: "#historia", sentimento: -1, "#historia": -1}, +>{texto: "#historia", sentimento: -1, "#historia": -1} : { texto: string; sentimento: number; "#historia": number; } +>texto : string +>"#historia" : "#historia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#historia" : number +>-1 : -1 +>1 : 1 + + {texto: "#horacerta", sentimento: -1, "#horacerta": -1}, +>{texto: "#horacerta", sentimento: -1, "#horacerta": -1} : { texto: string; sentimento: number; "#horacerta": number; } +>texto : string +>"#horacerta" : "#horacerta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#horacerta" : number +>-1 : -1 +>1 : 1 + + {texto: "#hotmail", sentimento: -1, "#hotmail": -1}, +>{texto: "#hotmail", sentimento: -1, "#hotmail": -1} : { texto: string; sentimento: number; "#hotmail": number; } +>texto : string +>"#hotmail" : "#hotmail" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#hotmail" : number +>-1 : -1 +>1 : 1 + + {texto: "#html5", sentimento: 1, "#html5": 1}, +>{texto: "#html5", sentimento: 1, "#html5": 1} : { texto: string; sentimento: number; "#html5": number; } +>texto : string +>"#html5" : "#html5" +>sentimento : number +>1 : 1 +>"#html5" : number +>1 : 1 + + {texto: "#humornegro", sentimento: 1, "#humornegro": 1}, +>{texto: "#humornegro", sentimento: 1, "#humornegro": 1} : { texto: string; sentimento: number; "#humornegro": number; } +>texto : string +>"#humornegro" : "#humornegro" +>sentimento : number +>1 : 1 +>"#humornegro" : number +>1 : 1 + + {texto: "#icwd", sentimento: 1, "#icwd": 1}, +>{texto: "#icwd", sentimento: 1, "#icwd": 1} : { texto: string; sentimento: number; "#icwd": number; } +>texto : string +>"#icwd" : "#icwd" +>sentimento : number +>1 : 1 +>"#icwd" : number +>1 : 1 + + {texto: "#ie", sentimento: 1, "#ie": 1}, +>{texto: "#ie", sentimento: 1, "#ie": 1} : { texto: string; sentimento: number; "#ie": number; } +>texto : string +>"#ie" : "#ie" +>sentimento : number +>1 : 1 +>"#ie" : number +>1 : 1 + + {texto: "#ifce", sentimento: -1, "#ifce": -1}, +>{texto: "#ifce", sentimento: -1, "#ifce": -1} : { texto: string; sentimento: number; "#ifce": number; } +>texto : string +>"#ifce" : "#ifce" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ifce" : number +>-1 : -1 +>1 : 1 + + {texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1}, +>{texto: "#ifdesenvolve", sentimento: -1, "#ifdesenvolve": -1} : { texto: string; sentimento: number; "#ifdesenvolve": number; } +>texto : string +>"#ifdesenvolve" : "#ifdesenvolve" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ifdesenvolve" : number +>-1 : -1 +>1 : 1 + + {texto: "#imagens", sentimento: 1, "#imagens": 1}, +>{texto: "#imagens", sentimento: 1, "#imagens": 1} : { texto: string; sentimento: number; "#imagens": number; } +>texto : string +>"#imagens" : "#imagens" +>sentimento : number +>1 : 1 +>"#imagens" : number +>1 : 1 + + {texto: "#infancia", sentimento: 1, "#infancia": 1}, +>{texto: "#infancia", sentimento: 1, "#infancia": 1} : { texto: string; sentimento: number; "#infancia": number; } +>texto : string +>"#infancia" : "#infancia" +>sentimento : number +>1 : 1 +>"#infancia" : number +>1 : 1 + + {texto: "#infografia", sentimento: 1, "#infografia": 1}, +>{texto: "#infografia", sentimento: 1, "#infografia": 1} : { texto: string; sentimento: number; "#infografia": number; } +>texto : string +>"#infografia" : "#infografia" +>sentimento : number +>1 : 1 +>"#infografia" : number +>1 : 1 + + {texto: "#inlove", sentimento: 1, "#inlove": 1}, +>{texto: "#inlove", sentimento: 1, "#inlove": 1} : { texto: string; sentimento: number; "#inlove": number; } +>texto : string +>"#inlove" : "#inlove" +>sentimento : number +>1 : 1 +>"#inlove" : number +>1 : 1 + + {texto: "#insensatos2", sentimento: -1, "#insensatos2": -1}, +>{texto: "#insensatos2", sentimento: -1, "#insensatos2": -1} : { texto: string; sentimento: number; "#insensatos2": number; } +>texto : string +>"#insensatos2" : "#insensatos2" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#insensatos2" : number +>-1 : -1 +>1 : 1 + + {texto: "#internetbanking", sentimento: -1, "#internetbanking": -1}, +>{texto: "#internetbanking", sentimento: -1, "#internetbanking": -1} : { texto: string; sentimento: number; "#internetbanking": number; } +>texto : string +>"#internetbanking" : "#internetbanking" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#internetbanking" : number +>-1 : -1 +>1 : 1 + + {texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1}, +>{texto: "#interpolnobrasil", sentimento: -1, "#interpolnobrasil": -1} : { texto: string; sentimento: number; "#interpolnobrasil": number; } +>texto : string +>"#interpolnobrasil" : "#interpolnobrasil" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#interpolnobrasil" : number +>-1 : -1 +>1 : 1 + + {texto: "#intersystem", sentimento: -1, "#intersystem": -1}, +>{texto: "#intersystem", sentimento: -1, "#intersystem": -1} : { texto: string; sentimento: number; "#intersystem": number; } +>texto : string +>"#intersystem" : "#intersystem" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#intersystem" : number +>-1 : -1 +>1 : 1 + + {texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1}, +>{texto: "#intimatelybeckham", sentimento: 1, "#intimatelybeckham": 1} : { texto: string; sentimento: number; "#intimatelybeckham": number; } +>texto : string +>"#intimatelybeckham" : "#intimatelybeckham" +>sentimento : number +>1 : 1 +>"#intimatelybeckham" : number +>1 : 1 + + {texto: "#ios5", sentimento: 1, "#ios5": 1}, +>{texto: "#ios5", sentimento: 1, "#ios5": 1} : { texto: string; sentimento: number; "#ios5": number; } +>texto : string +>"#ios5" : "#ios5" +>sentimento : number +>1 : 1 +>"#ios5" : number +>1 : 1 + + {texto: "#itau", sentimento: -1, "#itau": -1}, +>{texto: "#itau", sentimento: -1, "#itau": -1} : { texto: string; sentimento: number; "#itau": number; } +>texto : string +>"#itau" : "#itau" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#itau" : number +>-1 : -1 +>1 : 1 + + {texto: "#j", sentimento: -1, "#j": -1}, +>{texto: "#j", sentimento: -1, "#j": -1} : { texto: string; sentimento: number; "#j": number; } +>texto : string +>"#j" : "#j" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#j" : number +>-1 : -1 +>1 : 1 + + {texto: "#jam", sentimento: -1, "#jam": -1}, +>{texto: "#jam", sentimento: -1, "#jam": -1} : { texto: string; sentimento: number; "#jam": number; } +>texto : string +>"#jam" : "#jam" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#jam" : number +>-1 : -1 +>1 : 1 + + {texto: "#jantar", sentimento: 1, "#jantar": 1}, +>{texto: "#jantar", sentimento: 1, "#jantar": 1} : { texto: string; sentimento: number; "#jantar": number; } +>texto : string +>"#jantar" : "#jantar" +>sentimento : number +>1 : 1 +>"#jantar" : number +>1 : 1 + + {texto: "#jaspion", sentimento: 1, "#jaspion": 1}, +>{texto: "#jaspion", sentimento: 1, "#jaspion": 1} : { texto: string; sentimento: number; "#jaspion": number; } +>texto : string +>"#jaspion" : "#jaspion" +>sentimento : number +>1 : 1 +>"#jaspion" : number +>1 : 1 + + {texto: "#jesse", sentimento: 1, "#jesse": 1}, +>{texto: "#jesse", sentimento: 1, "#jesse": 1} : { texto: string; sentimento: number; "#jesse": number; } +>texto : string +>"#jesse" : "#jesse" +>sentimento : number +>1 : 1 +>"#jesse" : number +>1 : 1 + + {texto: "#jim", sentimento: 1, "#jim": 1}, +>{texto: "#jim", sentimento: 1, "#jim": 1} : { texto: string; sentimento: number; "#jim": number; } +>texto : string +>"#jim" : "#jim" +>sentimento : number +>1 : 1 +>"#jim" : number +>1 : 1 + + {texto: "#joomla", sentimento: -1, "#joomla": -1}, +>{texto: "#joomla", sentimento: -1, "#joomla": -1} : { texto: string; sentimento: number; "#joomla": number; } +>texto : string +>"#joomla" : "#joomla" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#joomla" : number +>-1 : -1 +>1 : 1 + + {texto: "#josatan", sentimento: 1, "#josatan": 1}, +>{texto: "#josatan", sentimento: 1, "#josatan": 1} : { texto: string; sentimento: number; "#josatan": number; } +>texto : string +>"#josatan" : "#josatan" +>sentimento : number +>1 : 1 +>"#josatan" : number +>1 : 1 + + {texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1}, +>{texto: "#juevesfeliz", sentimento: 1, "#juevesfeliz": 1} : { texto: string; sentimento: number; "#juevesfeliz": number; } +>texto : string +>"#juevesfeliz" : "#juevesfeliz" +>sentimento : number +>1 : 1 +>"#juevesfeliz" : number +>1 : 1 + + {texto: "#jumbo", sentimento: 1, "#jumbo": 1}, +>{texto: "#jumbo", sentimento: 1, "#jumbo": 1} : { texto: string; sentimento: number; "#jumbo": number; } +>texto : string +>"#jumbo" : "#jumbo" +>sentimento : number +>1 : 1 +>"#jumbo" : number +>1 : 1 + + {texto: "#kevin", sentimento: -1, "#kevin": -1}, +>{texto: "#kevin", sentimento: -1, "#kevin": -1} : { texto: string; sentimento: number; "#kevin": number; } +>texto : string +>"#kevin" : "#kevin" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#kevin" : number +>-1 : -1 +>1 : 1 + + {texto: "#lance", sentimento: 1, "#lance": 1}, +>{texto: "#lance", sentimento: 1, "#lance": 1} : { texto: string; sentimento: number; "#lance": number; } +>texto : string +>"#lance" : "#lance" +>sentimento : number +>1 : 1 +>"#lance" : number +>1 : 1 + + {texto: "#le", sentimento: 1, "#le": 1}, +>{texto: "#le", sentimento: 1, "#le": 1} : { texto: string; sentimento: number; "#le": number; } +>texto : string +>"#le" : "#le" +>sentimento : number +>1 : 1 +>"#le" : number +>1 : 1 + + {texto: "#leticia", sentimento: -1, "#leticia": -1}, +>{texto: "#leticia", sentimento: -1, "#leticia": -1} : { texto: string; sentimento: number; "#leticia": number; } +>texto : string +>"#leticia" : "#leticia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#leticia" : number +>-1 : -1 +>1 : 1 + + {texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1}, +>{texto: "#lifebuoy", sentimento: -1, "#lifebuoy": -1} : { texto: string; sentimento: number; "#lifebuoy": number; } +>texto : string +>"#lifebuoy" : "#lifebuoy" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#lifebuoy" : number +>-1 : -1 +>1 : 1 + + {texto: "#lindo", sentimento: 1, "#lindo": 1}, +>{texto: "#lindo", sentimento: 1, "#lindo": 1} : { texto: string; sentimento: number; "#lindo": number; } +>texto : string +>"#lindo" : "#lindo" +>sentimento : number +>1 : 1 +>"#lindo" : number +>1 : 1 + + {texto: "#linux", sentimento: 1, "#linux": 1}, +>{texto: "#linux", sentimento: 1, "#linux": 1} : { texto: string; sentimento: number; "#linux": number; } +>texto : string +>"#linux" : "#linux" +>sentimento : number +>1 : 1 +>"#linux" : number +>1 : 1 + + {texto: "#lion", sentimento: 1, "#lion": 1}, +>{texto: "#lion", sentimento: 1, "#lion": 1} : { texto: string; sentimento: number; "#lion": number; } +>texto : string +>"#lion" : "#lion" +>sentimento : number +>1 : 1 +>"#lion" : number +>1 : 1 + + {texto: "#lixo", sentimento: -1, "#lixo": -1}, +>{texto: "#lixo", sentimento: -1, "#lixo": -1} : { texto: string; sentimento: number; "#lixo": number; } +>texto : string +>"#lixo" : "#lixo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#lixo" : number +>-1 : -1 +>1 : 1 + + {texto: "#lixofonica", sentimento: -1, "#lixofonica": -1}, +>{texto: "#lixofonica", sentimento: -1, "#lixofonica": -1} : { texto: string; sentimento: number; "#lixofonica": number; } +>texto : string +>"#lixofonica" : "#lixofonica" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#lixofonica" : number +>-1 : -1 +>1 : 1 + + {texto: "#lol", sentimento: -1, "#lol": -1}, +>{texto: "#lol", sentimento: -1, "#lol": -1} : { texto: string; sentimento: number; "#lol": number; } +>texto : string +>"#lol" : "#lol" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#lol" : number +>-1 : -1 +>1 : 1 + + {texto: "#looser", sentimento: 1, "#looser": 1}, +>{texto: "#looser", sentimento: 1, "#looser": 1} : { texto: string; sentimento: number; "#looser": number; } +>texto : string +>"#looser" : "#looser" +>sentimento : number +>1 : 1 +>"#looser" : number +>1 : 1 + + {texto: "#luansantana", sentimento: -1, "#luansantana": -1}, +>{texto: "#luansantana", sentimento: -1, "#luansantana": -1} : { texto: string; sentimento: number; "#luansantana": number; } +>texto : string +>"#luansantana" : "#luansantana" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#luansantana" : number +>-1 : -1 +>1 : 1 + + {texto: "#lucasednir", sentimento: -1, "#lucasednir": -1}, +>{texto: "#lucasednir", sentimento: -1, "#lucasednir": -1} : { texto: string; sentimento: number; "#lucasednir": number; } +>texto : string +>"#lucasednir" : "#lucasednir" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#lucasednir" : number +>-1 : -1 +>1 : 1 + + {texto: "#mac", sentimento: -1, "#mac": -1}, +>{texto: "#mac", sentimento: -1, "#mac": -1} : { texto: string; sentimento: number; "#mac": number; } +>texto : string +>"#mac" : "#mac" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#mac" : number +>-1 : -1 +>1 : 1 + + {texto: "#maconha", sentimento: -1, "#maconha": -1}, +>{texto: "#maconha", sentimento: -1, "#maconha": -1} : { texto: string; sentimento: number; "#maconha": number; } +>texto : string +>"#maconha" : "#maconha" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#maconha" : number +>-1 : -1 +>1 : 1 + + {texto: "#madvma", sentimento: -1, "#madvma": -1}, +>{texto: "#madvma", sentimento: -1, "#madvma": -1} : { texto: string; sentimento: number; "#madvma": number; } +>texto : string +>"#madvma" : "#madvma" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#madvma" : number +>-1 : -1 +>1 : 1 + + {texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1}, +>{texto: "#magazineluiza", sentimento: -1, "#magazineluiza": -1} : { texto: string; sentimento: number; "#magazineluiza": number; } +>texto : string +>"#magazineluiza" : "#magazineluiza" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#magazineluiza" : number +>-1 : -1 +>1 : 1 + + {texto: "#magnocentro", sentimento: -1, "#magnocentro": -1}, +>{texto: "#magnocentro", sentimento: -1, "#magnocentro": -1} : { texto: string; sentimento: number; "#magnocentro": number; } +>texto : string +>"#magnocentro" : "#magnocentro" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#magnocentro" : number +>-1 : -1 +>1 : 1 + + {texto: "#malha", sentimento: -1, "#malha": -1}, +>{texto: "#malha", sentimento: -1, "#malha": -1} : { texto: string; sentimento: number; "#malha": number; } +>texto : string +>"#malha" : "#malha" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#malha" : number +>-1 : -1 +>1 : 1 + + {texto: "#manaus", sentimento: 1, "#manaus": 1}, +>{texto: "#manaus", sentimento: 1, "#manaus": 1} : { texto: string; sentimento: number; "#manaus": number; } +>texto : string +>"#manaus" : "#manaus" +>sentimento : number +>1 : 1 +>"#manaus" : number +>1 : 1 + + {texto: "#mariabethania", sentimento: -1, "#mariabethania": -1}, +>{texto: "#mariabethania", sentimento: -1, "#mariabethania": -1} : { texto: string; sentimento: number; "#mariabethania": number; } +>texto : string +>"#mariabethania" : "#mariabethania" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#mariabethania" : number +>-1 : -1 +>1 : 1 + + {texto: "#marisa", sentimento: -1, "#marisa": -1}, +>{texto: "#marisa", sentimento: -1, "#marisa": -1} : { texto: string; sentimento: number; "#marisa": number; } +>texto : string +>"#marisa" : "#marisa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#marisa" : number +>-1 : -1 +>1 : 1 + + {texto: "#may", sentimento: -1, "#may": -1}, +>{texto: "#may", sentimento: -1, "#may": -1} : { texto: string; sentimento: number; "#may": number; } +>texto : string +>"#may" : "#may" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#may" : number +>-1 : -1 +>1 : 1 + + {texto: "#mecaga", sentimento: -1, "#mecaga": -1}, +>{texto: "#mecaga", sentimento: -1, "#mecaga": -1} : { texto: string; sentimento: number; "#mecaga": number; } +>texto : string +>"#mecaga" : "#mecaga" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#mecaga" : number +>-1 : -1 +>1 : 1 + + {texto: "#megalagana", sentimento: 1, "#megalagana": 1}, +>{texto: "#megalagana", sentimento: 1, "#megalagana": 1} : { texto: string; sentimento: number; "#megalagana": number; } +>texto : string +>"#megalagana" : "#megalagana" +>sentimento : number +>1 : 1 +>"#megalagana" : number +>1 : 1 + + {texto: "#megasena", sentimento: 1, "#megasena": 1}, +>{texto: "#megasena", sentimento: 1, "#megasena": 1} : { texto: string; sentimento: number; "#megasena": number; } +>texto : string +>"#megasena" : "#megasena" +>sentimento : number +>1 : 1 +>"#megasena" : number +>1 : 1 + + {texto: "#melhores", sentimento: 1, "#melhores": 1}, +>{texto: "#melhores", sentimento: 1, "#melhores": 1} : { texto: string; sentimento: number; "#melhores": number; } +>texto : string +>"#melhores" : "#melhores" +>sentimento : number +>1 : 1 +>"#melhores" : number +>1 : 1 + + {texto: "#melissa", sentimento: -1, "#melissa": -1}, +>{texto: "#melissa", sentimento: -1, "#melissa": -1} : { texto: string; sentimento: number; "#melissa": number; } +>texto : string +>"#melissa" : "#melissa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#melissa" : number +>-1 : -1 +>1 : 1 + + {texto: "#melissahorn", sentimento: 1, "#melissahorn": 1}, +>{texto: "#melissahorn", sentimento: 1, "#melissahorn": 1} : { texto: string; sentimento: number; "#melissahorn": number; } +>texto : string +>"#melissahorn" : "#melissahorn" +>sentimento : number +>1 : 1 +>"#melissahorn" : number +>1 : 1 + + {texto: "#memolesta", sentimento: -1, "#memolesta": -1}, +>{texto: "#memolesta", sentimento: -1, "#memolesta": -1} : { texto: string; sentimento: number; "#memolesta": number; } +>texto : string +>"#memolesta" : "#memolesta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#memolesta" : number +>-1 : -1 +>1 : 1 + + {texto: "#metrosp", sentimento: -1, "#metrosp": -1}, +>{texto: "#metrosp", sentimento: -1, "#metrosp": -1} : { texto: string; sentimento: number; "#metrosp": number; } +>texto : string +>"#metrosp" : "#metrosp" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#metrosp" : number +>-1 : -1 +>1 : 1 + + {texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1}, +>{texto: "#meuchapeu", sentimento: -1, "#meuchapeu": -1} : { texto: string; sentimento: number; "#meuchapeu": number; } +>texto : string +>"#meuchapeu" : "#meuchapeu" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#meuchapeu" : number +>-1 : -1 +>1 : 1 + + {texto: "#meusonho", sentimento: -1, "#meusonho": -1}, +>{texto: "#meusonho", sentimento: -1, "#meusonho": -1} : { texto: string; sentimento: number; "#meusonho": number; } +>texto : string +>"#meusonho" : "#meusonho" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#meusonho" : number +>-1 : -1 +>1 : 1 + + {texto: "#microsoft", sentimento: -1, "#microsoft": -1}, +>{texto: "#microsoft", sentimento: -1, "#microsoft": -1} : { texto: string; sentimento: number; "#microsoft": number; } +>texto : string +>"#microsoft" : "#microsoft" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#microsoft" : number +>-1 : -1 +>1 : 1 + + {texto: "#mimimi", sentimento: 1, "#mimimi": 1}, +>{texto: "#mimimi", sentimento: 1, "#mimimi": 1} : { texto: string; sentimento: number; "#mimimi": number; } +>texto : string +>"#mimimi" : "#mimimi" +>sentimento : number +>1 : 1 +>"#mimimi" : number +>1 : 1 + + {texto: "#mobile", sentimento: -1, "#mobile": -1}, +>{texto: "#mobile", sentimento: -1, "#mobile": -1} : { texto: string; sentimento: number; "#mobile": number; } +>texto : string +>"#mobile" : "#mobile" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#mobile" : number +>-1 : -1 +>1 : 1 + + {texto: "#mockery", sentimento: 1, "#mockery": 1}, +>{texto: "#mockery", sentimento: 1, "#mockery": 1} : { texto: string; sentimento: number; "#mockery": number; } +>texto : string +>"#mockery" : "#mockery" +>sentimento : number +>1 : 1 +>"#mockery" : number +>1 : 1 + + {texto: "#mockito", sentimento: 1, "#mockito": 1}, +>{texto: "#mockito", sentimento: 1, "#mockito": 1} : { texto: string; sentimento: number; "#mockito": number; } +>texto : string +>"#mockito" : "#mockito" +>sentimento : number +>1 : 1 +>"#mockito" : number +>1 : 1 + + {texto: "#monografia", sentimento: -1, "#monografia": -1}, +>{texto: "#monografia", sentimento: -1, "#monografia": -1} : { texto: string; sentimento: number; "#monografia": number; } +>texto : string +>"#monografia" : "#monografia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#monografia" : number +>-1 : -1 +>1 : 1 + + {texto: "#montanagrill", sentimento: 1, "#montanagrill": 1}, +>{texto: "#montanagrill", sentimento: 1, "#montanagrill": 1} : { texto: string; sentimento: number; "#montanagrill": number; } +>texto : string +>"#montanagrill" : "#montanagrill" +>sentimento : number +>1 : 1 +>"#montanagrill" : number +>1 : 1 + + {texto: "#monterrey", sentimento: -1, "#monterrey": -1}, +>{texto: "#monterrey", sentimento: -1, "#monterrey": -1} : { texto: string; sentimento: number; "#monterrey": number; } +>texto : string +>"#monterrey" : "#monterrey" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#monterrey" : number +>-1 : -1 +>1 : 1 + + {texto: "#morto", sentimento: -1, "#morto": -1}, +>{texto: "#morto", sentimento: -1, "#morto": -1} : { texto: string; sentimento: number; "#morto": number; } +>texto : string +>"#morto" : "#morto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#morto" : number +>-1 : -1 +>1 : 1 + + {texto: "#motos", sentimento: -1, "#motos": -1}, +>{texto: "#motos", sentimento: -1, "#motos": -1} : { texto: string; sentimento: number; "#motos": number; } +>texto : string +>"#motos" : "#motos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#motos" : number +>-1 : -1 +>1 : 1 + + {texto: "#movies", sentimento: 1, "#movies": 1}, +>{texto: "#movies", sentimento: 1, "#movies": 1} : { texto: string; sentimento: number; "#movies": number; } +>texto : string +>"#movies" : "#movies" +>sentimento : number +>1 : 1 +>"#movies" : number +>1 : 1 + + {texto: "#msn", sentimento: -1, "#msn": -1}, +>{texto: "#msn", sentimento: -1, "#msn": -1} : { texto: string; sentimento: number; "#msn": number; } +>texto : string +>"#msn" : "#msn" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#msn" : number +>-1 : -1 +>1 : 1 + + {texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1}, +>{texto: "#mueremalditodesgraciado", sentimento: -1, "#mueremalditodesgraciado": -1} : { texto: string; sentimento: number; "#mueremalditodesgraciado": number; } +>texto : string +>"#mueremalditodesgraciado" : "#mueremalditodesgraciado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#mueremalditodesgraciado" : number +>-1 : -1 +>1 : 1 + + {texto: "#myhero", sentimento: 1, "#myhero": 1}, +>{texto: "#myhero", sentimento: 1, "#myhero": 1} : { texto: string; sentimento: number; "#myhero": number; } +>texto : string +>"#myhero" : "#myhero" +>sentimento : number +>1 : 1 +>"#myhero" : number +>1 : 1 + + {texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1}, +>{texto: "#nameyourpeniswithamovie", sentimento: 1, "#nameyourpeniswithamovie": 1} : { texto: string; sentimento: number; "#nameyourpeniswithamovie": number; } +>texto : string +>"#nameyourpeniswithamovie" : "#nameyourpeniswithamovie" +>sentimento : number +>1 : 1 +>"#nameyourpeniswithamovie" : number +>1 : 1 + + {texto: "#naomais", sentimento: -1, "#naomais": -1}, +>{texto: "#naomais", sentimento: -1, "#naomais": -1} : { texto: string; sentimento: number; "#naomais": number; } +>texto : string +>"#naomais" : "#naomais" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#naomais" : number +>-1 : -1 +>1 : 1 + + {texto: "#nata", sentimento: -1, "#nata": -1}, +>{texto: "#nata", sentimento: -1, "#nata": -1} : { texto: string; sentimento: number; "#nata": number; } +>texto : string +>"#nata" : "#nata" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#nata" : number +>-1 : -1 +>1 : 1 + + {texto: "#nervoso", sentimento: 1, "#nervoso": 1}, +>{texto: "#nervoso", sentimento: 1, "#nervoso": 1} : { texto: string; sentimento: number; "#nervoso": number; } +>texto : string +>"#nervoso" : "#nervoso" +>sentimento : number +>1 : 1 +>"#nervoso" : number +>1 : 1 + + {texto: "#net", sentimento: -1, "#net": -1}, +>{texto: "#net", sentimento: -1, "#net": -1} : { texto: string; sentimento: number; "#net": number; } +>texto : string +>"#net" : "#net" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#net" : number +>-1 : -1 +>1 : 1 + + {texto: "#netcombo", sentimento: -1, "#netcombo": -1}, +>{texto: "#netcombo", sentimento: -1, "#netcombo": -1} : { texto: string; sentimento: number; "#netcombo": number; } +>texto : string +>"#netcombo" : "#netcombo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#netcombo" : number +>-1 : -1 +>1 : 1 + + {texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1}, +>{texto: "#neymarcaicai", sentimento: 1, "#neymarcaicai": 1} : { texto: string; sentimento: number; "#neymarcaicai": number; } +>texto : string +>"#neymarcaicai" : "#neymarcaicai" +>sentimento : number +>1 : 1 +>"#neymarcaicai" : number +>1 : 1 + + {texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1}, +>{texto: "#nhlnaespn", sentimento: -1, "#nhlnaespn": -1} : { texto: string; sentimento: number; "#nhlnaespn": number; } +>texto : string +>"#nhlnaespn" : "#nhlnaespn" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#nhlnaespn" : number +>-1 : -1 +>1 : 1 + + {texto: "#nomamar", sentimento: -1, "#nomamar": -1}, +>{texto: "#nomamar", sentimento: -1, "#nomamar": -1} : { texto: string; sentimento: number; "#nomamar": number; } +>texto : string +>"#nomamar" : "#nomamar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#nomamar" : number +>-1 : -1 +>1 : 1 + + {texto: "#not", sentimento: -1, "#not": -1}, +>{texto: "#not", sentimento: -1, "#not": -1} : { texto: string; sentimento: number; "#not": number; } +>texto : string +>"#not" : "#not" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#not" : number +>-1 : -1 +>1 : 1 + + {texto: "#oclone", sentimento: -1, "#oclone": -1}, +>{texto: "#oclone", sentimento: -1, "#oclone": -1} : { texto: string; sentimento: number; "#oclone": number; } +>texto : string +>"#oclone" : "#oclone" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#oclone" : number +>-1 : -1 +>1 : 1 + + {texto: "#oda", sentimento: -1, "#oda": -1}, +>{texto: "#oda", sentimento: -1, "#oda": -1} : { texto: string; sentimento: number; "#oda": number; } +>texto : string +>"#oda" : "#oda" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#oda" : number +>-1 : -1 +>1 : 1 + + {texto: "#odeio", sentimento: -1, "#odeio": -1}, +>{texto: "#odeio", sentimento: -1, "#odeio": -1} : { texto: string; sentimento: number; "#odeio": number; } +>texto : string +>"#odeio" : "#odeio" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#odeio" : number +>-1 : -1 +>1 : 1 + + {texto: "#oi", sentimento: -1, "#oi": -1}, +>{texto: "#oi", sentimento: -1, "#oi": -1} : { texto: string; sentimento: number; "#oi": number; } +>texto : string +>"#oi" : "#oi" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#oi" : number +>-1 : -1 +>1 : 1 + + {texto: "#old", sentimento: 1, "#old": 1}, +>{texto: "#old", sentimento: 1, "#old": 1} : { texto: string; sentimento: number; "#old": number; } +>texto : string +>"#old" : "#old" +>sentimento : number +>1 : 1 +>"#old" : number +>1 : 1 + + {texto: "#omg", sentimento: -1, "#omg": -1}, +>{texto: "#omg", sentimento: -1, "#omg": -1} : { texto: string; sentimento: number; "#omg": number; } +>texto : string +>"#omg" : "#omg" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#omg" : number +>-1 : -1 +>1 : 1 + + {texto: "#opera", sentimento: 1, "#opera": 1}, +>{texto: "#opera", sentimento: 1, "#opera": 1} : { texto: string; sentimento: number; "#opera": number; } +>texto : string +>"#opera" : "#opera" +>sentimento : number +>1 : 1 +>"#opera" : number +>1 : 1 + + {texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1}, +>{texto: "#orgulhoafro", sentimento: -1, "#orgulhoafro": -1} : { texto: string; sentimento: number; "#orgulhoafro": number; } +>texto : string +>"#orgulhoafro" : "#orgulhoafro" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#orgulhoafro" : number +>-1 : -1 +>1 : 1 + + {texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1}, +>{texto: "#orkutaovivo", sentimento: -1, "#orkutaovivo": -1} : { texto: string; sentimento: number; "#orkutaovivo": number; } +>texto : string +>"#orkutaovivo" : "#orkutaovivo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#orkutaovivo" : number +>-1 : -1 +>1 : 1 + + {texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1}, +>{texto: "#oseducadosrespondem", sentimento: -1, "#oseducadosrespondem": -1} : { texto: string; sentimento: number; "#oseducadosrespondem": number; } +>texto : string +>"#oseducadosrespondem" : "#oseducadosrespondem" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#oseducadosrespondem" : number +>-1 : -1 +>1 : 1 + + {texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1}, +>{texto: "#ossimpsons", sentimento: -1, "#ossimpsons": -1} : { texto: string; sentimento: number; "#ossimpsons": number; } +>texto : string +>"#ossimpsons" : "#ossimpsons" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ossimpsons" : number +>-1 : -1 +>1 : 1 + + {texto: "#pais", sentimento: -1, "#pais": -1}, +>{texto: "#pais", sentimento: -1, "#pais": -1} : { texto: string; sentimento: number; "#pais": number; } +>texto : string +>"#pais" : "#pais" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#pais" : number +>-1 : -1 +>1 : 1 + + {texto: "#palmeiras", sentimento: 1, "#palmeiras": 1}, +>{texto: "#palmeiras", sentimento: 1, "#palmeiras": 1} : { texto: string; sentimento: number; "#palmeiras": number; } +>texto : string +>"#palmeiras" : "#palmeiras" +>sentimento : number +>1 : 1 +>"#palmeiras" : number +>1 : 1 + + {texto: "#palocci", sentimento: -1, "#palocci": -1}, +>{texto: "#palocci", sentimento: -1, "#palocci": -1} : { texto: string; sentimento: number; "#palocci": number; } +>texto : string +>"#palocci" : "#palocci" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#palocci" : number +>-1 : -1 +>1 : 1 + + {texto: "#panama", sentimento: 1, "#panama": 1}, +>{texto: "#panama", sentimento: 1, "#panama": 1} : { texto: string; sentimento: number; "#panama": number; } +>texto : string +>"#panama" : "#panama" +>sentimento : number +>1 : 1 +>"#panama" : number +>1 : 1 + + {texto: "#panico", sentimento: 1, "#panico": 1}, +>{texto: "#panico", sentimento: 1, "#panico": 1} : { texto: string; sentimento: number; "#panico": number; } +>texto : string +>"#panico" : "#panico" +>sentimento : number +>1 : 1 +>"#panico" : number +>1 : 1 + + {texto: "#parti", sentimento: -1, "#parti": -1}, +>{texto: "#parti", sentimento: -1, "#parti": -1} : { texto: string; sentimento: number; "#parti": number; } +>texto : string +>"#parti" : "#parti" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#parti" : number +>-1 : -1 +>1 : 1 + + {texto: "#partiu", sentimento: -1, "#partiu": -1}, +>{texto: "#partiu", sentimento: -1, "#partiu": -1} : { texto: string; sentimento: number; "#partiu": number; } +>texto : string +>"#partiu" : "#partiu" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#partiu" : number +>-1 : -1 +>1 : 1 + + {texto: "#patadeperro", sentimento: 1, "#patadeperro": 1}, +>{texto: "#patadeperro", sentimento: 1, "#patadeperro": 1} : { texto: string; sentimento: number; "#patadeperro": number; } +>texto : string +>"#patadeperro" : "#patadeperro" +>sentimento : number +>1 : 1 +>"#patadeperro" : number +>1 : 1 + + {texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0}, +>{texto: "#paulafernandes", sentimento: 0, "#paulafernandes": 0} : { texto: string; sentimento: number; "#paulafernandes": number; } +>texto : string +>"#paulafernandes" : "#paulafernandes" +>sentimento : number +>0 : 0 +>"#paulafernandes" : number +>0 : 0 + + {texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1}, +>{texto: "#peliculaspizzeras", sentimento: 1, "#peliculaspizzeras": 1} : { texto: string; sentimento: number; "#peliculaspizzeras": number; } +>texto : string +>"#peliculaspizzeras" : "#peliculaspizzeras" +>sentimento : number +>1 : 1 +>"#peliculaspizzeras" : number +>1 : 1 + + {texto: "#photoshop", sentimento: -1, "#photoshop": -1}, +>{texto: "#photoshop", sentimento: -1, "#photoshop": -1} : { texto: string; sentimento: number; "#photoshop": number; } +>texto : string +>"#photoshop" : "#photoshop" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#photoshop" : number +>-1 : -1 +>1 : 1 + + {texto: "#php", sentimento: 1, "#php": 1}, +>{texto: "#php", sentimento: 1, "#php": 1} : { texto: string; sentimento: number; "#php": number; } +>texto : string +>"#php" : "#php" +>sentimento : number +>1 : 1 +>"#php" : number +>1 : 1 + + {texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1}, +>{texto: "#piadasdacarol", sentimento: -1, "#piadasdacarol": -1} : { texto: string; sentimento: number; "#piadasdacarol": number; } +>texto : string +>"#piadasdacarol" : "#piadasdacarol" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#piadasdacarol" : number +>-1 : -1 +>1 : 1 + + {texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1}, +>{texto: "#piadassobrepiadas", sentimento: 1, "#piadassobrepiadas": 1} : { texto: string; sentimento: number; "#piadassobrepiadas": number; } +>texto : string +>"#piadassobrepiadas" : "#piadassobrepiadas" +>sentimento : number +>1 : 1 +>"#piadassobrepiadas" : number +>1 : 1 + + {texto: "#planetmix", sentimento: -1, "#planetmix": -1}, +>{texto: "#planetmix", sentimento: -1, "#planetmix": -1} : { texto: string; sentimento: number; "#planetmix": number; } +>texto : string +>"#planetmix" : "#planetmix" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#planetmix" : number +>-1 : -1 +>1 : 1 + + {texto: "#plc122", sentimento: -1, "#plc122": -1}, +>{texto: "#plc122", sentimento: -1, "#plc122": -1} : { texto: string; sentimento: number; "#plc122": number; } +>texto : string +>"#plc122" : "#plc122" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#plc122" : number +>-1 : -1 +>1 : 1 + + {texto: "#plimplim", sentimento: -1, "#plimplim": -1}, +>{texto: "#plimplim", sentimento: -1, "#plimplim": -1} : { texto: string; sentimento: number; "#plimplim": number; } +>texto : string +>"#plimplim" : "#plimplim" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#plimplim" : number +>-1 : -1 +>1 : 1 + + {texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1}, +>{texto: "#pobrefeelings", sentimento: -1, "#pobrefeelings": -1} : { texto: string; sentimento: number; "#pobrefeelings": number; } +>texto : string +>"#pobrefeelings" : "#pobrefeelings" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#pobrefeelings" : number +>-1 : -1 +>1 : 1 + + {texto: "#poderir", sentimento: -1, "#poderir": -1}, +>{texto: "#poderir", sentimento: -1, "#poderir": -1} : { texto: string; sentimento: number; "#poderir": number; } +>texto : string +>"#poderir" : "#poderir" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#poderir" : number +>-1 : -1 +>1 : 1 + + {texto: "#pokemon", sentimento: -1, "#pokemon": -1}, +>{texto: "#pokemon", sentimento: -1, "#pokemon": -1} : { texto: string; sentimento: number; "#pokemon": number; } +>texto : string +>"#pokemon" : "#pokemon" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#pokemon" : number +>-1 : -1 +>1 : 1 + + {texto: "#polishop", sentimento: -1, "#polishop": -1}, +>{texto: "#polishop", sentimento: -1, "#polishop": -1} : { texto: string; sentimento: number; "#polishop": number; } +>texto : string +>"#polishop" : "#polishop" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#polishop" : number +>-1 : -1 +>1 : 1 + + {texto: "#politicagem", sentimento: -1, "#politicagem": -1}, +>{texto: "#politicagem", sentimento: -1, "#politicagem": -1} : { texto: string; sentimento: number; "#politicagem": number; } +>texto : string +>"#politicagem" : "#politicagem" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#politicagem" : number +>-1 : -1 +>1 : 1 + + {texto: "#polvilho", sentimento: -1, "#polvilho": -1}, +>{texto: "#polvilho", sentimento: -1, "#polvilho": -1} : { texto: string; sentimento: number; "#polvilho": number; } +>texto : string +>"#polvilho" : "#polvilho" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#polvilho" : number +>-1 : -1 +>1 : 1 + + {texto: "#popular", sentimento: -1, "#popular": -1}, +>{texto: "#popular", sentimento: -1, "#popular": -1} : { texto: string; sentimento: number; "#popular": number; } +>texto : string +>"#popular" : "#popular" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#popular" : number +>-1 : -1 +>1 : 1 + + {texto: "#poweroflove", sentimento: -1, "#poweroflove": -1}, +>{texto: "#poweroflove", sentimento: -1, "#poweroflove": -1} : { texto: string; sentimento: number; "#poweroflove": number; } +>texto : string +>"#poweroflove" : "#poweroflove" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#poweroflove" : number +>-1 : -1 +>1 : 1 + + {texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1}, +>{texto: "#poxagoogle", sentimento: -1, "#poxagoogle": -1} : { texto: string; sentimento: number; "#poxagoogle": number; } +>texto : string +>"#poxagoogle" : "#poxagoogle" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#poxagoogle" : number +>-1 : -1 +>1 : 1 + + {texto: "#pqp", sentimento: -1, "#pqp": -1}, +>{texto: "#pqp", sentimento: -1, "#pqp": -1} : { texto: string; sentimento: number; "#pqp": number; } +>texto : string +>"#pqp" : "#pqp" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#pqp" : number +>-1 : -1 +>1 : 1 + + {texto: "#prequi", sentimento: -1, "#prequi": -1}, +>{texto: "#prequi", sentimento: -1, "#prequi": -1} : { texto: string; sentimento: number; "#prequi": number; } +>texto : string +>"#prequi" : "#prequi" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#prequi" : number +>-1 : -1 +>1 : 1 + + {texto: "#profiss", sentimento: 1, "#profiss": 1}, +>{texto: "#profiss", sentimento: 1, "#profiss": 1} : { texto: string; sentimento: number; "#profiss": number; } +>texto : string +>"#profiss" : "#profiss" +>sentimento : number +>1 : 1 +>"#profiss" : number +>1 : 1 + + {texto: "#programadojo", sentimento: -1, "#programadojo": -1}, +>{texto: "#programadojo", sentimento: -1, "#programadojo": -1} : { texto: string; sentimento: number; "#programadojo": number; } +>texto : string +>"#programadojo" : "#programadojo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#programadojo" : number +>-1 : -1 +>1 : 1 + + {texto: "#promo", sentimento: -1, "#promo": -1}, +>{texto: "#promo", sentimento: -1, "#promo": -1} : { texto: string; sentimento: number; "#promo": number; } +>texto : string +>"#promo" : "#promo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#promo" : number +>-1 : -1 +>1 : 1 + + {texto: "#prova", sentimento: -1, "#prova": -1}, +>{texto: "#prova", sentimento: -1, "#prova": -1} : { texto: string; sentimento: number; "#prova": number; } +>texto : string +>"#prova" : "#prova" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#prova" : number +>-1 : -1 +>1 : 1 + + {texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1}, +>{texto: "#pseudociencia", sentimento: -1, "#pseudociencia": -1} : { texto: string; sentimento: number; "#pseudociencia": number; } +>texto : string +>"#pseudociencia" : "#pseudociencia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#pseudociencia" : number +>-1 : -1 +>1 : 1 + + {texto: "#ptt", sentimento: -1, "#ptt": -1}, +>{texto: "#ptt", sentimento: -1, "#ptt": -1} : { texto: string; sentimento: number; "#ptt": number; } +>texto : string +>"#ptt" : "#ptt" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ptt" : number +>-1 : -1 +>1 : 1 + + {texto: "#pucrs", sentimento: -1, "#pucrs": -1}, +>{texto: "#pucrs", sentimento: -1, "#pucrs": -1} : { texto: string; sentimento: number; "#pucrs": number; } +>texto : string +>"#pucrs" : "#pucrs" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#pucrs" : number +>-1 : -1 +>1 : 1 + + {texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1}, +>{texto: "#putafaltadesacanagem", sentimento: -1, "#putafaltadesacanagem": -1} : { texto: string; sentimento: number; "#putafaltadesacanagem": number; } +>texto : string +>"#putafaltadesacanagem" : "#putafaltadesacanagem" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#putafaltadesacanagem" : number +>-1 : -1 +>1 : 1 + + {texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1}, +>{texto: "#putaquepariu", sentimento: -1, "#putaquepariu": -1} : { texto: string; sentimento: number; "#putaquepariu": number; } +>texto : string +>"#putaquepariu" : "#putaquepariu" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#putaquepariu" : number +>-1 : -1 +>1 : 1 + + {texto: "#qbomne", sentimento: -1, "#qbomne": -1}, +>{texto: "#qbomne", sentimento: -1, "#qbomne": -1} : { texto: string; sentimento: number; "#qbomne": number; } +>texto : string +>"#qbomne" : "#qbomne" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#qbomne" : number +>-1 : -1 +>1 : 1 + + {texto: "#qconsp", sentimento: 1, "#qconsp": 1}, +>{texto: "#qconsp", sentimento: 1, "#qconsp": 1} : { texto: string; sentimento: number; "#qconsp": number; } +>texto : string +>"#qconsp" : "#qconsp" +>sentimento : number +>1 : 1 +>"#qconsp" : number +>1 : 1 + + {texto: "#quefasehein", sentimento: -1, "#quefasehein": -1}, +>{texto: "#quefasehein", sentimento: -1, "#quefasehein": -1} : { texto: string; sentimento: number; "#quefasehein": number; } +>texto : string +>"#quefasehein" : "#quefasehein" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#quefasehein" : number +>-1 : -1 +>1 : 1 + + {texto: "#quepena", sentimento: -1, "#quepena": -1}, +>{texto: "#quepena", sentimento: -1, "#quepena": -1} : { texto: string; sentimento: number; "#quepena": number; } +>texto : string +>"#quepena" : "#quepena" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#quepena" : number +>-1 : -1 +>1 : 1 + + {texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1}, +>{texto: "#quitesmoking", sentimento: 1, "#quitesmoking": 1} : { texto: string; sentimento: number; "#quitesmoking": number; } +>texto : string +>"#quitesmoking" : "#quitesmoking" +>sentimento : number +>1 : 1 +>"#quitesmoking" : number +>1 : 1 + + {texto: "#quiz", sentimento: 1, "#quiz": 1}, +>{texto: "#quiz", sentimento: 1, "#quiz": 1} : { texto: string; sentimento: number; "#quiz": number; } +>texto : string +>"#quiz" : "#quiz" +>sentimento : number +>1 : 1 +>"#quiz" : number +>1 : 1 + + {texto: "#ramon", sentimento: -1, "#ramon": -1}, +>{texto: "#ramon", sentimento: -1, "#ramon": -1} : { texto: string; sentimento: number; "#ramon": number; } +>texto : string +>"#ramon" : "#ramon" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ramon" : number +>-1 : -1 +>1 : 1 + + {texto: "#receba", sentimento: -1, "#receba": -1}, +>{texto: "#receba", sentimento: -1, "#receba": -1} : { texto: string; sentimento: number; "#receba": number; } +>texto : string +>"#receba" : "#receba" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#receba" : number +>-1 : -1 +>1 : 1 + + {texto: "#reclame", sentimento: 1, "#reclame": 1}, +>{texto: "#reclame", sentimento: 1, "#reclame": 1} : { texto: string; sentimento: number; "#reclame": number; } +>texto : string +>"#reclame" : "#reclame" +>sentimento : number +>1 : 1 +>"#reclame" : number +>1 : 1 + + {texto: "#redeglobo", sentimento: -1, "#redeglobo": -1}, +>{texto: "#redeglobo", sentimento: -1, "#redeglobo": -1} : { texto: string; sentimento: number; "#redeglobo": number; } +>texto : string +>"#redeglobo" : "#redeglobo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#redeglobo" : number +>-1 : -1 +>1 : 1 + + {texto: "#referendum", sentimento: -1, "#referendum": -1}, +>{texto: "#referendum", sentimento: -1, "#referendum": -1} : { texto: string; sentimento: number; "#referendum": number; } +>texto : string +>"#referendum" : "#referendum" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#referendum" : number +>-1 : -1 +>1 : 1 + + {texto: "#referendum2011", sentimento: -1, "#referendum2011": -1}, +>{texto: "#referendum2011", sentimento: -1, "#referendum2011": -1} : { texto: string; sentimento: number; "#referendum2011": number; } +>texto : string +>"#referendum2011" : "#referendum2011" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#referendum2011" : number +>-1 : -1 +>1 : 1 + + {texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1}, +>{texto: "#refugiodosanjos", sentimento: 1, "#refugiodosanjos": 1} : { texto: string; sentimento: number; "#refugiodosanjos": number; } +>texto : string +>"#refugiodosanjos" : "#refugiodosanjos" +>sentimento : number +>1 : 1 +>"#refugiodosanjos" : number +>1 : 1 + + {texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1}, +>{texto: "#reginaldorossi", sentimento: -1, "#reginaldorossi": -1} : { texto: string; sentimento: number; "#reginaldorossi": number; } +>texto : string +>"#reginaldorossi" : "#reginaldorossi" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#reginaldorossi" : number +>-1 : -1 +>1 : 1 + + {texto: "#revendatim", sentimento: -1, "#revendatim": -1}, +>{texto: "#revendatim", sentimento: -1, "#revendatim": -1} : { texto: string; sentimento: number; "#revendatim": number; } +>texto : string +>"#revendatim" : "#revendatim" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#revendatim" : number +>-1 : -1 +>1 : 1 + + {texto: "#reynosa", sentimento: -1, "#reynosa": -1}, +>{texto: "#reynosa", sentimento: -1, "#reynosa": -1} : { texto: string; sentimento: number; "#reynosa": number; } +>texto : string +>"#reynosa" : "#reynosa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#reynosa" : number +>-1 : -1 +>1 : 1 + + {texto: "#riovermelho", sentimento: -1, "#riovermelho": -1}, +>{texto: "#riovermelho", sentimento: -1, "#riovermelho": -1} : { texto: string; sentimento: number; "#riovermelho": number; } +>texto : string +>"#riovermelho" : "#riovermelho" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#riovermelho" : number +>-1 : -1 +>1 : 1 + + {texto: "#riverplate", sentimento: 1, "#riverplate": 1}, +>{texto: "#riverplate", sentimento: 1, "#riverplate": 1} : { texto: string; sentimento: number; "#riverplate": number; } +>texto : string +>"#riverplate" : "#riverplate" +>sentimento : number +>1 : 1 +>"#riverplate" : number +>1 : 1 + + {texto: "#rockrio", sentimento: -1, "#rockrio": -1}, +>{texto: "#rockrio", sentimento: -1, "#rockrio": -1} : { texto: string; sentimento: number; "#rockrio": number; } +>texto : string +>"#rockrio" : "#rockrio" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#rockrio" : number +>-1 : -1 +>1 : 1 + + {texto: "#s", sentimento: -1, "#s": -1}, +>{texto: "#s", sentimento: -1, "#s": -1} : { texto: string; sentimento: number; "#s": number; } +>texto : string +>"#s" : "#s" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#s" : number +>-1 : -1 +>1 : 1 + + {texto: "#sabado", sentimento: 1, "#sabado": 1}, +>{texto: "#sabado", sentimento: 1, "#sabado": 1} : { texto: string; sentimento: number; "#sabado": number; } +>texto : string +>"#sabado" : "#sabado" +>sentimento : number +>1 : 1 +>"#sabado" : number +>1 : 1 + + {texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1}, +>{texto: "#sabesqueestasgordo", sentimento: -1, "#sabesqueestasgordo": -1} : { texto: string; sentimento: number; "#sabesqueestasgordo": number; } +>texto : string +>"#sabesqueestasgordo" : "#sabesqueestasgordo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sabesqueestasgordo" : number +>-1 : -1 +>1 : 1 + + {texto: "#safari", sentimento: 1, "#safari": 1}, +>{texto: "#safari", sentimento: 1, "#safari": 1} : { texto: string; sentimento: number; "#safari": number; } +>texto : string +>"#safari" : "#safari" +>sentimento : number +>1 : 1 +>"#safari" : number +>1 : 1 + + {texto: "#samsung", sentimento: -1, "#samsung": -1}, +>{texto: "#samsung", sentimento: -1, "#samsung": -1} : { texto: string; sentimento: number; "#samsung": number; } +>texto : string +>"#samsung" : "#samsung" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#samsung" : number +>-1 : -1 +>1 : 1 + + {texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1}, +>{texto: "#sanantoniodecabeza", sentimento: -1, "#sanantoniodecabeza": -1} : { texto: string; sentimento: number; "#sanantoniodecabeza": number; } +>texto : string +>"#sanantoniodecabeza" : "#sanantoniodecabeza" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sanantoniodecabeza" : number +>-1 : -1 +>1 : 1 + + {texto: "#santoantonio", sentimento: -1, "#santoantonio": -1}, +>{texto: "#santoantonio", sentimento: -1, "#santoantonio": -1} : { texto: string; sentimento: number; "#santoantonio": number; } +>texto : string +>"#santoantonio" : "#santoantonio" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#santoantonio" : number +>-1 : -1 +>1 : 1 + + {texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1}, +>{texto: "#sapevatelo", sentimento: -1, "#sapevatelo": -1} : { texto: string; sentimento: number; "#sapevatelo": number; } +>texto : string +>"#sapevatelo" : "#sapevatelo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sapevatelo" : number +>-1 : -1 +>1 : 1 + + {texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1}, +>{texto: "#seladygagafossebrasileira", sentimento: -1, "#seladygagafossebrasileira": -1} : { texto: string; sentimento: number; "#seladygagafossebrasileira": number; } +>texto : string +>"#seladygagafossebrasileira" : "#seladygagafossebrasileira" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#seladygagafossebrasileira" : number +>-1 : -1 +>1 : 1 + + {texto: "#semata", sentimento: -1, "#semata": -1}, +>{texto: "#semata", sentimento: -1, "#semata": -1} : { texto: string; sentimento: number; "#semata": number; } +>texto : string +>"#semata" : "#semata" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#semata" : number +>-1 : -1 +>1 : 1 + + {texto: "#seo", sentimento: 0, "#seo": 0}, +>{texto: "#seo", sentimento: 0, "#seo": 0} : { texto: string; sentimento: number; "#seo": number; } +>texto : string +>"#seo" : "#seo" +>sentimento : number +>0 : 0 +>"#seo" : number +>0 : 0 + + {texto: "#seomoz", sentimento: 1, "#seomoz": 1}, +>{texto: "#seomoz", sentimento: 1, "#seomoz": 1} : { texto: string; sentimento: number; "#seomoz": number; } +>texto : string +>"#seomoz" : "#seomoz" +>sentimento : number +>1 : 1 +>"#seomoz" : number +>1 : 1 + + {texto: "#ser", sentimento: -1, "#ser": -1}, +>{texto: "#ser", sentimento: -1, "#ser": -1} : { texto: string; sentimento: number; "#ser": number; } +>texto : string +>"#ser" : "#ser" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ser" : number +>-1 : -1 +>1 : 1 + + {texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1}, +>{texto: "#serepitelahistoria", sentimento: 1, "#serepitelahistoria": 1} : { texto: string; sentimento: number; "#serepitelahistoria": number; } +>texto : string +>"#serepitelahistoria" : "#serepitelahistoria" +>sentimento : number +>1 : 1 +>"#serepitelahistoria" : number +>1 : 1 + + {texto: "#sga", sentimento: -1, "#sga": -1}, +>{texto: "#sga", sentimento: -1, "#sga": -1} : { texto: string; sentimento: number; "#sga": number; } +>texto : string +>"#sga" : "#sga" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sga" : number +>-1 : -1 +>1 : 1 + + {texto: "#sic", sentimento: 1, "#sic": 1}, +>{texto: "#sic", sentimento: 1, "#sic": 1} : { texto: string; sentimento: number; "#sic": number; } +>texto : string +>"#sic" : "#sic" +>sentimento : number +>1 : 1 +>"#sic" : number +>1 : 1 + + {texto: "#sigam", sentimento: -1, "#sigam": -1}, +>{texto: "#sigam", sentimento: -1, "#sigam": -1} : { texto: string; sentimento: number; "#sigam": number; } +>texto : string +>"#sigam" : "#sigam" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sigam" : number +>-1 : -1 +>1 : 1 + + {texto: "#signos", sentimento: -1, "#signos": -1}, +>{texto: "#signos", sentimento: -1, "#signos": -1} : { texto: string; sentimento: number; "#signos": number; } +>texto : string +>"#signos" : "#signos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#signos" : number +>-1 : -1 +>1 : 1 + + {texto: "#signout", sentimento: -1, "#signout": -1}, +>{texto: "#signout", sentimento: -1, "#signout": -1} : { texto: string; sentimento: number; "#signout": number; } +>texto : string +>"#signout" : "#signout" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#signout" : number +>-1 : -1 +>1 : 1 + + {texto: "#site", sentimento: -1, "#site": -1}, +>{texto: "#site", sentimento: -1, "#site": -1} : { texto: string; sentimento: number; "#site": number; } +>texto : string +>"#site" : "#site" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#site" : number +>-1 : -1 +>1 : 1 + + {texto: "#smiles", sentimento: -1, "#smiles": -1}, +>{texto: "#smiles", sentimento: -1, "#smiles": -1} : { texto: string; sentimento: number; "#smiles": number; } +>texto : string +>"#smiles" : "#smiles" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#smiles" : number +>-1 : -1 +>1 : 1 + + {texto: "#sms", sentimento: -1, "#sms": -1}, +>{texto: "#sms", sentimento: -1, "#sms": -1} : { texto: string; sentimento: number; "#sms": number; } +>texto : string +>"#sms" : "#sms" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sms" : number +>-1 : -1 +>1 : 1 + + {texto: "#sogra", sentimento: -1, "#sogra": -1}, +>{texto: "#sogra", sentimento: -1, "#sogra": -1} : { texto: string; sentimento: number; "#sogra": number; } +>texto : string +>"#sogra" : "#sogra" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sogra" : number +>-1 : -1 +>1 : 1 + + {texto: "#sono", sentimento: -1, "#sono": -1}, +>{texto: "#sono", sentimento: -1, "#sono": -1} : { texto: string; sentimento: number; "#sono": number; } +>texto : string +>"#sono" : "#sono" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sono" : number +>-1 : -1 +>1 : 1 + + {texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1}, +>{texto: "#sonyericsson", sentimento: -1, "#sonyericsson": -1} : { texto: string; sentimento: number; "#sonyericsson": number; } +>texto : string +>"#sonyericsson" : "#sonyericsson" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sonyericsson" : number +>-1 : -1 +>1 : 1 + + {texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1}, +>{texto: "#sorteiomanual", sentimento: -1, "#sorteiomanual": -1} : { texto: string; sentimento: number; "#sorteiomanual": number; } +>texto : string +>"#sorteiomanual" : "#sorteiomanual" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sorteiomanual" : number +>-1 : -1 +>1 : 1 + + {texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1}, +>{texto: "#sosbombeiros", sentimento: -1, "#sosbombeiros": -1} : { texto: string; sentimento: number; "#sosbombeiros": number; } +>texto : string +>"#sosbombeiros" : "#sosbombeiros" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#sosbombeiros" : number +>-1 : -1 +>1 : 1 + + {texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1}, +>{texto: "#soumaiseu", sentimento: 1, "#soumaiseu": 1} : { texto: string; sentimento: number; "#soumaiseu": number; } +>texto : string +>"#soumaiseu" : "#soumaiseu" +>sentimento : number +>1 : 1 +>"#soumaiseu" : number +>1 : 1 + + {texto: "#soyadicto", sentimento: 1, "#soyadicto": 1}, +>{texto: "#soyadicto", sentimento: 1, "#soyadicto": 1} : { texto: string; sentimento: number; "#soyadicto": number; } +>texto : string +>"#soyadicto" : "#soyadicto" +>sentimento : number +>1 : 1 +>"#soyadicto" : number +>1 : 1 + + {texto: "#speed", sentimento: -1, "#speed": -1}, +>{texto: "#speed", sentimento: -1, "#speed": -1} : { texto: string; sentimento: number; "#speed": number; } +>texto : string +>"#speed" : "#speed" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#speed" : number +>-1 : -1 +>1 : 1 + + {texto: "#speedy", sentimento: -1, "#speedy": -1}, +>{texto: "#speedy", sentimento: -1, "#speedy": -1} : { texto: string; sentimento: number; "#speedy": number; } +>texto : string +>"#speedy" : "#speedy" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#speedy" : number +>-1 : -1 +>1 : 1 + + {texto: "#spotv", sentimento: -1, "#spotv": -1}, +>{texto: "#spotv", sentimento: -1, "#spotv": -1} : { texto: string; sentimento: number; "#spotv": number; } +>texto : string +>"#spotv" : "#spotv" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#spotv" : number +>-1 : -1 +>1 : 1 + + {texto: "#submarino", sentimento: -1, "#submarino": -1}, +>{texto: "#submarino", sentimento: -1, "#submarino": -1} : { texto: string; sentimento: number; "#submarino": number; } +>texto : string +>"#submarino" : "#submarino" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#submarino" : number +>-1 : -1 +>1 : 1 + + {texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1}, +>{texto: "#tadimdemim", sentimento: -1, "#tadimdemim": -1} : { texto: string; sentimento: number; "#tadimdemim": number; } +>texto : string +>"#tadimdemim" : "#tadimdemim" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#tadimdemim" : number +>-1 : -1 +>1 : 1 + + {texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1}, +>{texto: "#taxiamigo", sentimento: 1, "#taxiamigo": 1} : { texto: string; sentimento: number; "#taxiamigo": number; } +>texto : string +>"#taxiamigo" : "#taxiamigo" +>sentimento : number +>1 : 1 +>"#taxiamigo" : number +>1 : 1 + + {texto: "#tcc", sentimento: 1, "#tcc": 1}, +>{texto: "#tcc", sentimento: 1, "#tcc": 1} : { texto: string; sentimento: number; "#tcc": number; } +>texto : string +>"#tcc" : "#tcc" +>sentimento : number +>1 : 1 +>"#tcc" : number +>1 : 1 + + {texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1}, +>{texto: "#teamfollowback", sentimento: -1, "#teamfollowback": -1} : { texto: string; sentimento: number; "#teamfollowback": number; } +>texto : string +>"#teamfollowback" : "#teamfollowback" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#teamfollowback" : number +>-1 : -1 +>1 : 1 + + {texto: "#teamo", sentimento: -1, "#teamo": -1}, +>{texto: "#teamo", sentimento: -1, "#teamo": -1} : { texto: string; sentimento: number; "#teamo": number; } +>texto : string +>"#teamo" : "#teamo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#teamo" : number +>-1 : -1 +>1 : 1 + + {texto: "#tecnologia", sentimento: 1, "#tecnologia": 1}, +>{texto: "#tecnologia", sentimento: 1, "#tecnologia": 1} : { texto: string; sentimento: number; "#tecnologia": number; } +>texto : string +>"#tecnologia" : "#tecnologia" +>sentimento : number +>1 : 1 +>"#tecnologia" : number +>1 : 1 + + {texto: "#telaquente", sentimento: -1, "#telaquente": -1}, +>{texto: "#telaquente", sentimento: -1, "#telaquente": -1} : { texto: string; sentimento: number; "#telaquente": number; } +>texto : string +>"#telaquente" : "#telaquente" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#telaquente" : number +>-1 : -1 +>1 : 1 + + {texto: "#telefoncia", sentimento: -1, "#telefoncia": -1}, +>{texto: "#telefoncia", sentimento: -1, "#telefoncia": -1} : { texto: string; sentimento: number; "#telefoncia": number; } +>texto : string +>"#telefoncia" : "#telefoncia" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#telefoncia" : number +>-1 : -1 +>1 : 1 + + {texto: "#telefonica", sentimento: -1, "#telefonica": -1}, +>{texto: "#telefonica", sentimento: -1, "#telefonica": -1} : { texto: string; sentimento: number; "#telefonica": number; } +>texto : string +>"#telefonica" : "#telefonica" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#telefonica" : number +>-1 : -1 +>1 : 1 + + {texto: "#tenso", sentimento: -1, "#tenso": -1}, +>{texto: "#tenso", sentimento: -1, "#tenso": -1} : { texto: string; sentimento: number; "#tenso": number; } +>texto : string +>"#tenso" : "#tenso" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#tenso" : number +>-1 : -1 +>1 : 1 + + {texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1}, +>{texto: "#thaismaracorr", sentimento: -1, "#thaismaracorr": -1} : { texto: string; sentimento: number; "#thaismaracorr": number; } +>texto : string +>"#thaismaracorr" : "#thaismaracorr" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#thaismaracorr" : number +>-1 : -1 +>1 : 1 + + {texto: "#ti", sentimento: -1, "#ti": -1}, +>{texto: "#ti", sentimento: -1, "#ti": -1} : { texto: string; sentimento: number; "#ti": number; } +>texto : string +>"#ti" : "#ti" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#ti" : number +>-1 : -1 +>1 : 1 + + {texto: "#tim", sentimento: -1, "#tim": -1}, +>{texto: "#tim", sentimento: -1, "#tim": -1} : { texto: string; sentimento: number; "#tim": number; } +>texto : string +>"#tim" : "#tim" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#tim" : number +>-1 : -1 +>1 : 1 + + {texto: "#time", sentimento: -1, "#time": -1}, +>{texto: "#time", sentimento: -1, "#time": -1} : { texto: string; sentimento: number; "#time": number; } +>texto : string +>"#time" : "#time" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#time" : number +>-1 : -1 +>1 : 1 + + {texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1}, +>{texto: "#todayillbesimple", sentimento: -1, "#todayillbesimple": -1} : { texto: string; sentimento: number; "#todayillbesimple": number; } +>texto : string +>"#todayillbesimple" : "#todayillbesimple" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#todayillbesimple" : number +>-1 : -1 +>1 : 1 + + {texto: "#todosadora", sentimento: -1, "#todosadora": -1}, +>{texto: "#todosadora", sentimento: -1, "#todosadora": -1} : { texto: string; sentimento: number; "#todosadora": number; } +>texto : string +>"#todosadora" : "#todosadora" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#todosadora" : number +>-1 : -1 +>1 : 1 + + {texto: "#topfive", sentimento: -1, "#topfive": -1}, +>{texto: "#topfive", sentimento: -1, "#topfive": -1} : { texto: string; sentimento: number; "#topfive": number; } +>texto : string +>"#topfive" : "#topfive" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#topfive" : number +>-1 : -1 +>1 : 1 + + {texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1}, +>{texto: "#tosempiquenenhum", sentimento: -1, "#tosempiquenenhum": -1} : { texto: string; sentimento: number; "#tosempiquenenhum": number; } +>texto : string +>"#tosempiquenenhum" : "#tosempiquenenhum" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#tosempiquenenhum" : number +>-1 : -1 +>1 : 1 + + {texto: "#totalyfail", sentimento: -1, "#totalyfail": -1}, +>{texto: "#totalyfail", sentimento: -1, "#totalyfail": -1} : { texto: string; sentimento: number; "#totalyfail": number; } +>texto : string +>"#totalyfail" : "#totalyfail" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#totalyfail" : number +>-1 : -1 +>1 : 1 + + {texto: "#tps", sentimento: -1, "#tps": -1}, +>{texto: "#tps", sentimento: -1, "#tps": -1} : { texto: string; sentimento: number; "#tps": number; } +>texto : string +>"#tps" : "#tps" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#tps" : number +>-1 : -1 +>1 : 1 + + {texto: "#transitosp", sentimento: -1, "#transitosp": -1}, +>{texto: "#transitosp", sentimento: -1, "#transitosp": -1} : { texto: string; sentimento: number; "#transitosp": number; } +>texto : string +>"#transitosp" : "#transitosp" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#transitosp" : number +>-1 : -1 +>1 : 1 + + {texto: "#travelmug", sentimento: 1, "#travelmug": 1}, +>{texto: "#travelmug", sentimento: 1, "#travelmug": 1} : { texto: string; sentimento: number; "#travelmug": number; } +>texto : string +>"#travelmug" : "#travelmug" +>sentimento : number +>1 : 1 +>"#travelmug" : number +>1 : 1 + + {texto: "#travelw", sentimento: -1, "#travelw": -1}, +>{texto: "#travelw", sentimento: -1, "#travelw": -1} : { texto: string; sentimento: number; "#travelw": number; } +>texto : string +>"#travelw" : "#travelw" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#travelw" : number +>-1 : -1 +>1 : 1 + + {texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1}, +>{texto: "#trecho15reais", sentimento: -1, "#trecho15reais": -1} : { texto: string; sentimento: number; "#trecho15reais": number; } +>texto : string +>"#trecho15reais" : "#trecho15reais" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#trecho15reais" : number +>-1 : -1 +>1 : 1 + + {texto: "#treinaweb", sentimento: -1, "#treinaweb": -1}, +>{texto: "#treinaweb", sentimento: -1, "#treinaweb": -1} : { texto: string; sentimento: number; "#treinaweb": number; } +>texto : string +>"#treinaweb" : "#treinaweb" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#treinaweb" : number +>-1 : -1 +>1 : 1 + + {texto: "#trollar", sentimento: -1, "#trollar": -1}, +>{texto: "#trollar", sentimento: -1, "#trollar": -1} : { texto: string; sentimento: number; "#trollar": number; } +>texto : string +>"#trollar" : "#trollar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#trollar" : number +>-1 : -1 +>1 : 1 + + {texto: "#trote", sentimento: -1, "#trote": -1}, +>{texto: "#trote", sentimento: -1, "#trote": -1} : { texto: string; sentimento: number; "#trote": number; } +>texto : string +>"#trote" : "#trote" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#trote" : number +>-1 : -1 +>1 : 1 + + {texto: "#true", sentimento: 1, "#true": 1}, +>{texto: "#true", sentimento: 1, "#true": 1} : { texto: string; sentimento: number; "#true": number; } +>texto : string +>"#true" : "#true" +>sentimento : number +>1 : 1 +>"#true" : number +>1 : 1 + + {texto: "#tvi", sentimento: 1, "#tvi": 1}, +>{texto: "#tvi", sentimento: 1, "#tvi": 1} : { texto: string; sentimento: number; "#tvi": number; } +>texto : string +>"#tvi" : "#tvi" +>sentimento : number +>1 : 1 +>"#tvi" : number +>1 : 1 + + {texto: "#twitcam", sentimento: -1, "#twitcam": -1}, +>{texto: "#twitcam", sentimento: -1, "#twitcam": -1} : { texto: string; sentimento: number; "#twitcam": number; } +>texto : string +>"#twitcam" : "#twitcam" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#twitcam" : number +>-1 : -1 +>1 : 1 + + {texto: "#twittcam", sentimento: -1, "#twittcam": -1}, +>{texto: "#twittcam", sentimento: -1, "#twittcam": -1} : { texto: string; sentimento: number; "#twittcam": number; } +>texto : string +>"#twittcam" : "#twittcam" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#twittcam" : number +>-1 : -1 +>1 : 1 + + {texto: "#twitter", sentimento: -1, "#twitter": -1}, +>{texto: "#twitter", sentimento: -1, "#twitter": -1} : { texto: string; sentimento: number; "#twitter": number; } +>texto : string +>"#twitter" : "#twitter" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#twitter" : number +>-1 : -1 +>1 : 1 + + {texto: "#uenf", sentimento: 1, "#uenf": 1}, +>{texto: "#uenf", sentimento: 1, "#uenf": 1} : { texto: string; sentimento: number; "#uenf": number; } +>texto : string +>"#uenf" : "#uenf" +>sentimento : number +>1 : 1 +>"#uenf" : number +>1 : 1 + + {texto: "#unesp", sentimento: -1, "#unesp": -1}, +>{texto: "#unesp", sentimento: -1, "#unesp": -1} : { texto: string; sentimento: number; "#unesp": number; } +>texto : string +>"#unesp" : "#unesp" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#unesp" : number +>-1 : -1 +>1 : 1 + + {texto: "#uni", sentimento: -1, "#uni": -1}, +>{texto: "#uni", sentimento: -1, "#uni": -1} : { texto: string; sentimento: number; "#uni": number; } +>texto : string +>"#uni" : "#uni" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#uni" : number +>-1 : -1 +>1 : 1 + + {texto: "#unico", sentimento: -1, "#unico": -1}, +>{texto: "#unico", sentimento: -1, "#unico": -1} : { texto: string; sentimento: number; "#unico": number; } +>texto : string +>"#unico" : "#unico" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#unico" : number +>-1 : -1 +>1 : 1 + + {texto: "#unip", sentimento: -1, "#unip": -1}, +>{texto: "#unip", sentimento: -1, "#unip": -1} : { texto: string; sentimento: number; "#unip": number; } +>texto : string +>"#unip" : "#unip" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#unip" : number +>-1 : -1 +>1 : 1 + + {texto: "#v", sentimento: -1, "#v": -1}, +>{texto: "#v", sentimento: -1, "#v": -1} : { texto: string; sentimento: number; "#v": number; } +>texto : string +>"#v" : "#v" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#v" : number +>-1 : -1 +>1 : 1 + + {texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1}, +>{texto: "#vaisonhando", sentimento: 1, "#vaisonhando": 1} : { texto: string; sentimento: number; "#vaisonhando": number; } +>texto : string +>"#vaisonhando" : "#vaisonhando" +>sentimento : number +>1 : 1 +>"#vaisonhando" : number +>1 : 1 + + {texto: "#valdir", sentimento: -1, "#valdir": -1}, +>{texto: "#valdir", sentimento: -1, "#valdir": -1} : { texto: string; sentimento: number; "#valdir": number; } +>texto : string +>"#valdir" : "#valdir" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#valdir" : number +>-1 : -1 +>1 : 1 + + {texto: "#valetudo", sentimento: -1, "#valetudo": -1}, +>{texto: "#valetudo", sentimento: -1, "#valetudo": -1} : { texto: string; sentimento: number; "#valetudo": number; } +>texto : string +>"#valetudo" : "#valetudo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#valetudo" : number +>-1 : -1 +>1 : 1 + + {texto: "#valeurge", sentimento: -1, "#valeurge": -1}, +>{texto: "#valeurge", sentimento: -1, "#valeurge": -1} : { texto: string; sentimento: number; "#valeurge": number; } +>texto : string +>"#valeurge" : "#valeurge" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#valeurge" : number +>-1 : -1 +>1 : 1 + + {texto: "#vamp", sentimento: -1, "#vamp": -1}, +>{texto: "#vamp", sentimento: -1, "#vamp": -1} : { texto: string; sentimento: number; "#vamp": number; } +>texto : string +>"#vamp" : "#vamp" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vamp" : number +>-1 : -1 +>1 : 1 + + {texto: "#vdm", sentimento: -1, "#vdm": -1}, +>{texto: "#vdm", sentimento: -1, "#vdm": -1} : { texto: string; sentimento: number; "#vdm": number; } +>texto : string +>"#vdm" : "#vdm" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vdm" : number +>-1 : -1 +>1 : 1 + + {texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1}, +>{texto: "#vengodelfuturo", sentimento: -1, "#vengodelfuturo": -1} : { texto: string; sentimento: number; "#vengodelfuturo": number; } +>texto : string +>"#vengodelfuturo" : "#vengodelfuturo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vengodelfuturo" : number +>-1 : -1 +>1 : 1 + + {texto: "#verdade", sentimento: 0, "#verdade": 0}, +>{texto: "#verdade", sentimento: 0, "#verdade": 0} : { texto: string; sentimento: number; "#verdade": number; } +>texto : string +>"#verdade" : "#verdade" +>sentimento : number +>0 : 0 +>"#verdade" : number +>0 : 0 + + {texto: "#vergonha", sentimento: -1, "#vergonha": -1}, +>{texto: "#vergonha", sentimento: -1, "#vergonha": -1} : { texto: string; sentimento: number; "#vergonha": number; } +>texto : string +>"#vergonha" : "#vergonha" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vergonha" : number +>-1 : -1 +>1 : 1 + + {texto: "#viage", sentimento: -1, "#viage": -1}, +>{texto: "#viage", sentimento: -1, "#viage": -1} : { texto: string; sentimento: number; "#viage": number; } +>texto : string +>"#viage" : "#viage" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#viage" : number +>-1 : -1 +>1 : 1 + + {texto: "#vida", sentimento: -1, "#vida": -1}, +>{texto: "#vida", sentimento: -1, "#vida": -1} : { texto: string; sentimento: number; "#vida": number; } +>texto : string +>"#vida" : "#vida" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vida" : number +>-1 : -1 +>1 : 1 + + {texto: "#viih", sentimento: -1, "#viih": -1}, +>{texto: "#viih", sentimento: -1, "#viih": -1} : { texto: string; sentimento: number; "#viih": number; } +>texto : string +>"#viih" : "#viih" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#viih" : number +>-1 : -1 +>1 : 1 + + {texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1}, +>{texto: "#virgenalos40", sentimento: -1, "#virgenalos40": -1} : { texto: string; sentimento: number; "#virgenalos40": number; } +>texto : string +>"#virgenalos40" : "#virgenalos40" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#virgenalos40" : number +>-1 : -1 +>1 : 1 + + {texto: "#vivo", sentimento: 0, "#vivo": 0}, +>{texto: "#vivo", sentimento: 0, "#vivo": 0} : { texto: string; sentimento: number; "#vivo": number; } +>texto : string +>"#vivo" : "#vivo" +>sentimento : number +>0 : 0 +>"#vivo" : number +>0 : 0 + + {texto: "#vmb", sentimento: -1, "#vmb": -1}, +>{texto: "#vmb", sentimento: -1, "#vmb": -1} : { texto: string; sentimento: number; "#vmb": number; } +>texto : string +>"#vmb" : "#vmb" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vmb" : number +>-1 : -1 +>1 : 1 + + {texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1}, +>{texto: "#voegoloficial", sentimento: -1, "#voegoloficial": -1} : { texto: string; sentimento: number; "#voegoloficial": number; } +>texto : string +>"#voegoloficial" : "#voegoloficial" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#voegoloficial" : number +>-1 : -1 +>1 : 1 + + {texto: "#voetrip", sentimento: -1, "#voetrip": -1}, +>{texto: "#voetrip", sentimento: -1, "#voetrip": -1} : { texto: string; sentimento: number; "#voetrip": number; } +>texto : string +>"#voetrip" : "#voetrip" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#voetrip" : number +>-1 : -1 +>1 : 1 + + {texto: "#volei", sentimento: -1, "#volei": -1}, +>{texto: "#volei", sentimento: -1, "#volei": -1} : { texto: string; sentimento: number; "#volei": number; } +>texto : string +>"#volei" : "#volei" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#volei" : number +>-1 : -1 +>1 : 1 + + {texto: "#vtnc", sentimento: -1, "#vtnc": -1}, +>{texto: "#vtnc", sentimento: -1, "#vtnc": -1} : { texto: string; sentimento: number; "#vtnc": number; } +>texto : string +>"#vtnc" : "#vtnc" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vtnc" : number +>-1 : -1 +>1 : 1 + + {texto: "#vym", sentimento: -1, "#vym": -1}, +>{texto: "#vym", sentimento: -1, "#vym": -1} : { texto: string; sentimento: number; "#vym": number; } +>texto : string +>"#vym" : "#vym" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#vym" : number +>-1 : -1 +>1 : 1 + + {texto: "#w00t", sentimento: 1, "#w00t": 1}, +>{texto: "#w00t", sentimento: 1, "#w00t": 1} : { texto: string; sentimento: number; "#w00t": number; } +>texto : string +>"#w00t" : "#w00t" +>sentimento : number +>1 : 1 +>"#w00t" : number +>1 : 1 + + {texto: "#win", sentimento: 1, "#win": 1}, +>{texto: "#win", sentimento: 1, "#win": 1} : { texto: string; sentimento: number; "#win": number; } +>texto : string +>"#win" : "#win" +>sentimento : number +>1 : 1 +>"#win" : number +>1 : 1 + + {texto: "#windows", sentimento: 1, "#windows": 1}, +>{texto: "#windows", sentimento: 1, "#windows": 1} : { texto: string; sentimento: number; "#windows": number; } +>texto : string +>"#windows" : "#windows" +>sentimento : number +>1 : 1 +>"#windows" : number +>1 : 1 + + {texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1}, +>{texto: "#windowsphonemango", sentimento: 1, "#windowsphonemango": 1} : { texto: string; sentimento: number; "#windowsphonemango": number; } +>texto : string +>"#windowsphonemango" : "#windowsphonemango" +>sentimento : number +>1 : 1 +>"#windowsphonemango" : number +>1 : 1 + + {texto: "#winning", sentimento: 1, "#winning": 1}, +>{texto: "#winning", sentimento: 1, "#winning": 1} : { texto: string; sentimento: number; "#winning": number; } +>texto : string +>"#winning" : "#winning" +>sentimento : number +>1 : 1 +>"#winning" : number +>1 : 1 + + {texto: "#wolfteam", sentimento: -1, "#wolfteam": -1}, +>{texto: "#wolfteam", sentimento: -1, "#wolfteam": -1} : { texto: string; sentimento: number; "#wolfteam": number; } +>texto : string +>"#wolfteam" : "#wolfteam" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#wolfteam" : number +>-1 : -1 +>1 : 1 + + {texto: "#wp7", sentimento: 1, "#wp7": 1}, +>{texto: "#wp7", sentimento: 1, "#wp7": 1} : { texto: string; sentimento: number; "#wp7": number; } +>texto : string +>"#wp7" : "#wp7" +>sentimento : number +>1 : 1 +>"#wp7" : number +>1 : 1 + + {texto: "#x10", sentimento: -1, "#x10": -1}, +>{texto: "#x10", sentimento: -1, "#x10": -1} : { texto: string; sentimento: number; "#x10": number; } +>texto : string +>"#x10" : "#x10" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#x10" : number +>-1 : -1 +>1 : 1 + + {texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1}, +>{texto: "#xoinsetos", sentimento: -1, "#xoinsetos": -1} : { texto: string; sentimento: number; "#xoinsetos": number; } +>texto : string +>"#xoinsetos" : "#xoinsetos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#xoinsetos" : number +>-1 : -1 +>1 : 1 + + {texto: "#youtube", sentimento: -1, "#youtube": -1}, +>{texto: "#youtube", sentimento: -1, "#youtube": -1} : { texto: string; sentimento: number; "#youtube": number; } +>texto : string +>"#youtube" : "#youtube" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#youtube" : number +>-1 : -1 +>1 : 1 + + {texto: "#z", sentimento: -1, "#z": -1}, +>{texto: "#z", sentimento: -1, "#z": -1} : { texto: string; sentimento: number; "#z": number; } +>texto : string +>"#z" : "#z" +>sentimento : number +>-1 : -1 +>1 : 1 +>"#z" : number +>-1 : -1 +>1 : 1 + + {texto: "#zegotinha", sentimento: 1, "#zegotinha": 1}, +>{texto: "#zegotinha", sentimento: 1, "#zegotinha": 1} : { texto: string; sentimento: number; "#zegotinha": number; } +>texto : string +>"#zegotinha" : "#zegotinha" +>sentimento : number +>1 : 1 +>"#zegotinha" : number +>1 : 1 + + {texto: "#zon", sentimento: 0, "#zon": 0}, +>{texto: "#zon", sentimento: 0, "#zon": 0} : { texto: string; sentimento: number; "#zon": number; } +>texto : string +>"#zon" : "#zon" +>sentimento : number +>0 : 0 +>"#zon" : number +>0 : 0 + + {texto: "=[", sentimento: -1, "=[": -1}, +>{texto: "=[", sentimento: -1, "=[": -1} : { texto: string; sentimento: number; "=[": number; } +>texto : string +>"=[" : "=[" +>sentimento : number +>-1 : -1 +>1 : 1 +>"=[" : number +>-1 : -1 +>1 : 1 + + {texto: "=@", sentimento: -1, "=@": -1}, +>{texto: "=@", sentimento: -1, "=@": -1} : { texto: string; sentimento: number; "=@": number; } +>texto : string +>"=@" : "=@" +>sentimento : number +>-1 : -1 +>1 : 1 +>"=@" : number +>-1 : -1 +>1 : 1 + + {texto: "=D", sentimento: 1, "=D": 1}, +>{texto: "=D", sentimento: 1, "=D": 1} : { texto: string; sentimento: number; "=D": number; } +>texto : string +>"=D" : "=D" +>sentimento : number +>1 : 1 +>"=D" : number +>1 : 1 + + {texto: "=d", sentimento: 1, "=d": 1}, +>{texto: "=d", sentimento: 1, "=d": 1} : { texto: string; sentimento: number; "=d": number; } +>texto : string +>"=d" : "=d" +>sentimento : number +>1 : 1 +>"=d" : number +>1 : 1 + + {texto: "=P", sentimento: -1, "=P": -1}, +>{texto: "=P", sentimento: -1, "=P": -1} : { texto: string; sentimento: number; "=P": number; } +>texto : string +>"=P" : "=P" +>sentimento : number +>-1 : -1 +>1 : 1 +>"=P" : number +>-1 : -1 +>1 : 1 + + {texto: "=p", sentimento: -1, "=p": -1}, +>{texto: "=p", sentimento: -1, "=p": -1} : { texto: string; sentimento: number; "=p": number; } +>texto : string +>"=p" : "=p" +>sentimento : number +>-1 : -1 +>1 : 1 +>"=p" : number +>-1 : -1 +>1 : 1 + + {texto: "=x", sentimento: -1, "=x": -1}, +>{texto: "=x", sentimento: -1, "=x": -1} : { texto: string; sentimento: number; "=x": number; } +>texto : string +>"=x" : "=x" +>sentimento : number +>-1 : -1 +>1 : 1 +>"=x" : number +>-1 : -1 +>1 : 1 + + {texto: ">:(", sentimento: -1, ">:(": -1}, +>{texto: ">:(", sentimento: -1, ">:(": -1} : { texto: string; sentimento: number; ">:(": number; } +>texto : string +>">:(" : ">:(" +>sentimento : number +>-1 : -1 +>1 : 1 +>">:(" : number +>-1 : -1 +>1 : 1 + + {texto: "><", sentimento: -1, "><": -1}, +>{texto: "><", sentimento: -1, "><": -1} : { texto: string; sentimento: number; "><": number; } +>texto : string +>"><" : "><" +>sentimento : number +>-1 : -1 +>1 : 1 +>"><" : number +>-1 : -1 +>1 : 1 + + {texto: "¬¬''", sentimento: -1, "¬¬''": -1}, +>{texto: "¬¬''", sentimento: -1, "¬¬''": -1} : { texto: string; sentimento: number; "¬¬''": number; } +>texto : string +>"¬¬''" : "¬¬''" +>sentimento : number +>-1 : -1 +>1 : 1 +>"¬¬''" : number +>-1 : -1 +>1 : 1 + + {texto: "¬¬", sentimento: -1, "¬¬": -1}, +>{texto: "¬¬", sentimento: -1, "¬¬": -1} : { texto: string; sentimento: number; "¬¬": number; } +>texto : string +>"¬¬" : "¬¬" +>sentimento : number +>-1 : -1 +>1 : 1 +>"¬¬" : number +>-1 : -1 +>1 : 1 + + {texto: "a comemorar", sentimento: 3, "a comemorar": 3}, +>{texto: "a comemorar", sentimento: 3, "a comemorar": 3} : { texto: string; sentimento: number; "a comemorar": number; } +>texto : string +>"a comemorar" : "a comemorar" +>sentimento : number +>3 : 3 +>"a comemorar" : number +>3 : 3 + + {texto: "¬", sentimento: -1, "¬": -1}, +>{texto: "¬", sentimento: -1, "¬": -1} : { texto: string; sentimento: number; "¬": number; } +>texto : string +>"¬" : "¬" +>sentimento : number +>-1 : -1 +>1 : 1 +>"¬" : number +>-1 : -1 +>1 : 1 + + {texto: "ab-rogar", sentimento: -1, "ab-rogar": -1}, +>{texto: "ab-rogar", sentimento: -1, "ab-rogar": -1} : { texto: string; sentimento: number; "ab-rogar": number; } +>texto : string +>"ab-rogar" : "ab-rogar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"ab-rogar" : number +>-1 : -1 +>1 : 1 + + {texto: "ababadar", sentimento: 0, "ababadar": 0}, +>{texto: "ababadar", sentimento: 0, "ababadar": 0} : { texto: string; sentimento: number; "ababadar": number; } +>texto : string +>"ababadar" : "ababadar" +>sentimento : number +>0 : 0 +>"ababadar" : number +>0 : 0 + + {texto: "ababelar-se", sentimento: 1, "ababelar-se": 1}, +>{texto: "ababelar-se", sentimento: 1, "ababelar-se": 1} : { texto: string; sentimento: number; "ababelar-se": number; } +>texto : string +>"ababelar-se" : "ababelar-se" +>sentimento : number +>1 : 1 +>"ababelar-se" : number +>1 : 1 + + {texto: "ababelar", sentimento: -1, "ababelar": -1}, +>{texto: "ababelar", sentimento: -1, "ababelar": -1} : { texto: string; sentimento: number; "ababelar": number; } +>texto : string +>"ababelar" : "ababelar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"ababelar" : number +>-1 : -1 +>1 : 1 + + {texto: "abaçanar", sentimento: 1, "abaçanar": 1}, +>{texto: "abaçanar", sentimento: 1, "abaçanar": 1} : { texto: string; sentimento: number; "abaçanar": number; } +>texto : string +>"abaçanar" : "abaçanar" +>sentimento : number +>1 : 1 +>"abaçanar" : number +>1 : 1 + + {texto: "abacinar", sentimento: 1, "abacinar": 1}, +>{texto: "abacinar", sentimento: 1, "abacinar": 1} : { texto: string; sentimento: number; "abacinar": number; } +>texto : string +>"abacinar" : "abacinar" +>sentimento : number +>1 : 1 +>"abacinar" : number +>1 : 1 + + {texto: "abafada", sentimento: -1, "abafada": -1}, +>{texto: "abafada", sentimento: -1, "abafada": -1} : { texto: string; sentimento: number; "abafada": number; } +>texto : string +>"abafada" : "abafada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafada" : number +>-1 : -1 +>1 : 1 + + {texto: "abafadas", sentimento: -1, "abafadas": -1}, +>{texto: "abafadas", sentimento: -1, "abafadas": -1} : { texto: string; sentimento: number; "abafadas": number; } +>texto : string +>"abafadas" : "abafadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abafado", sentimento: -1, "abafado": -1}, +>{texto: "abafado", sentimento: -1, "abafado": -1} : { texto: string; sentimento: number; "abafado": number; } +>texto : string +>"abafado" : "abafado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafado" : number +>-1 : -1 +>1 : 1 + + {texto: "abafados", sentimento: -1, "abafados": -1}, +>{texto: "abafados", sentimento: -1, "abafados": -1} : { texto: string; sentimento: number; "abafados": number; } +>texto : string +>"abafados" : "abafados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafados" : number +>-1 : -1 +>1 : 1 + + {texto: "abafante", sentimento: -1, "abafante": -1}, +>{texto: "abafante", sentimento: -1, "abafante": -1} : { texto: string; sentimento: number; "abafante": number; } +>texto : string +>"abafante" : "abafante" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafante" : number +>-1 : -1 +>1 : 1 + + {texto: "abafantes", sentimento: -1, "abafantes": -1}, +>{texto: "abafantes", sentimento: -1, "abafantes": -1} : { texto: string; sentimento: number; "abafantes": number; } +>texto : string +>"abafantes" : "abafantes" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafantes" : number +>-1 : -1 +>1 : 1 + + {texto: "abafar", sentimento: -1, "abafar": -1}, +>{texto: "abafar", sentimento: -1, "abafar": -1} : { texto: string; sentimento: number; "abafar": number; } +>texto : string +>"abafar" : "abafar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafar" : number +>-1 : -1 +>1 : 1 + + {texto: "abafou", sentimento: -1, "abafou": -1}, +>{texto: "abafou", sentimento: -1, "abafou": -1} : { texto: string; sentimento: number; "abafou": number; } +>texto : string +>"abafou" : "abafou" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abafou" : number +>-1 : -1 +>1 : 1 + + {texto: "abaixada", sentimento: -1, "abaixada": -1}, +>{texto: "abaixada", sentimento: -1, "abaixada": -1} : { texto: string; sentimento: number; "abaixada": number; } +>texto : string +>"abaixada" : "abaixada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abaixada" : number +>-1 : -1 +>1 : 1 + + {texto: "abaixadas", sentimento: -1, "abaixadas": -1}, +>{texto: "abaixadas", sentimento: -1, "abaixadas": -1} : { texto: string; sentimento: number; "abaixadas": number; } +>texto : string +>"abaixadas" : "abaixadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abaixadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abaixado", sentimento: -1, "abaixado": -1}, +>{texto: "abaixado", sentimento: -1, "abaixado": -1} : { texto: string; sentimento: number; "abaixado": number; } +>texto : string +>"abaixado" : "abaixado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abaixado" : number +>-1 : -1 +>1 : 1 + + {texto: "abaixados", sentimento: -1, "abaixados": -1}, +>{texto: "abaixados", sentimento: -1, "abaixados": -1} : { texto: string; sentimento: number; "abaixados": number; } +>texto : string +>"abaixados" : "abaixados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abaixados" : number +>-1 : -1 +>1 : 1 + + {texto: "abaixar-se", sentimento: 0, "abaixar-se": 0}, +>{texto: "abaixar-se", sentimento: 0, "abaixar-se": 0} : { texto: string; sentimento: number; "abaixar-se": number; } +>texto : string +>"abaixar-se" : "abaixar-se" +>sentimento : number +>0 : 0 +>"abaixar-se" : number +>0 : 0 + + {texto: "abaixar", sentimento: 0, "abaixar": 0}, +>{texto: "abaixar", sentimento: 0, "abaixar": 0} : { texto: string; sentimento: number; "abaixar": number; } +>texto : string +>"abaixar" : "abaixar" +>sentimento : number +>0 : 0 +>"abaixar" : number +>0 : 0 + + {texto: "abalada", sentimento: -1, "abalada": -1}, +>{texto: "abalada", sentimento: -1, "abalada": -1} : { texto: string; sentimento: number; "abalada": number; } +>texto : string +>"abalada" : "abalada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abalada" : number +>-1 : -1 +>1 : 1 + + {texto: "abaladas", sentimento: -1, "abaladas": -1}, +>{texto: "abaladas", sentimento: -1, "abaladas": -1} : { texto: string; sentimento: number; "abaladas": number; } +>texto : string +>"abaladas" : "abaladas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abaladas" : number +>-1 : -1 +>1 : 1 + + {texto: "abalado", sentimento: -1, "abalado": -1}, +>{texto: "abalado", sentimento: -1, "abalado": -1} : { texto: string; sentimento: number; "abalado": number; } +>texto : string +>"abalado" : "abalado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abalado" : number +>-1 : -1 +>1 : 1 + + {texto: "abalados", sentimento: -1, "abalados": -1}, +>{texto: "abalados", sentimento: -1, "abalados": -1} : { texto: string; sentimento: number; "abalados": number; } +>texto : string +>"abalados" : "abalados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abalados" : number +>-1 : -1 +>1 : 1 + + {texto: "abalançado", sentimento: 1, "abalançado": 1}, +>{texto: "abalançado", sentimento: 1, "abalançado": 1} : { texto: string; sentimento: number; "abalançado": number; } +>texto : string +>"abalançado" : "abalançado" +>sentimento : number +>1 : 1 +>"abalançado" : number +>1 : 1 + + {texto: "abalançar", sentimento: 1, "abalançar": 1}, +>{texto: "abalançar", sentimento: 1, "abalançar": 1} : { texto: string; sentimento: number; "abalançar": number; } +>texto : string +>"abalançar" : "abalançar" +>sentimento : number +>1 : 1 +>"abalançar" : number +>1 : 1 + + {texto: "abalar-se", sentimento: 0, "abalar-se": 0}, +>{texto: "abalar-se", sentimento: 0, "abalar-se": 0} : { texto: string; sentimento: number; "abalar-se": number; } +>texto : string +>"abalar-se" : "abalar-se" +>sentimento : number +>0 : 0 +>"abalar-se" : number +>0 : 0 + + {texto: "abalar", sentimento: 0, "abalar": 0}, +>{texto: "abalar", sentimento: 0, "abalar": 0} : { texto: string; sentimento: number; "abalar": number; } +>texto : string +>"abalar" : "abalar" +>sentimento : number +>0 : 0 +>"abalar" : number +>0 : 0 + + {texto: "abalizada", sentimento: 1, "abalizada": 1}, +>{texto: "abalizada", sentimento: 1, "abalizada": 1} : { texto: string; sentimento: number; "abalizada": number; } +>texto : string +>"abalizada" : "abalizada" +>sentimento : number +>1 : 1 +>"abalizada" : number +>1 : 1 + + {texto: "abalizadas", sentimento: 1, "abalizadas": 1}, +>{texto: "abalizadas", sentimento: 1, "abalizadas": 1} : { texto: string; sentimento: number; "abalizadas": number; } +>texto : string +>"abalizadas" : "abalizadas" +>sentimento : number +>1 : 1 +>"abalizadas" : number +>1 : 1 + + {texto: "abalizado", sentimento: 1, "abalizado": 1}, +>{texto: "abalizado", sentimento: 1, "abalizado": 1} : { texto: string; sentimento: number; "abalizado": number; } +>texto : string +>"abalizado" : "abalizado" +>sentimento : number +>1 : 1 +>"abalizado" : number +>1 : 1 + + {texto: "abalizados", sentimento: 1, "abalizados": 1}, +>{texto: "abalizados", sentimento: 1, "abalizados": 1} : { texto: string; sentimento: number; "abalizados": number; } +>texto : string +>"abalizados" : "abalizados" +>sentimento : number +>1 : 1 +>"abalizados" : number +>1 : 1 + + {texto: "abalizar", sentimento: 0, "abalizar": 0}, +>{texto: "abalizar", sentimento: 0, "abalizar": 0} : { texto: string; sentimento: number; "abalizar": number; } +>texto : string +>"abalizar" : "abalizar" +>sentimento : number +>0 : 0 +>"abalizar" : number +>0 : 0 + + {texto: "abalroar-se", sentimento: 1, "abalroar-se": 1}, +>{texto: "abalroar-se", sentimento: 1, "abalroar-se": 1} : { texto: string; sentimento: number; "abalroar-se": number; } +>texto : string +>"abalroar-se" : "abalroar-se" +>sentimento : number +>1 : 1 +>"abalroar-se" : number +>1 : 1 + + {texto: "abalroar", sentimento: 0, "abalroar": 0}, +>{texto: "abalroar", sentimento: 0, "abalroar": 0} : { texto: string; sentimento: number; "abalroar": number; } +>texto : string +>"abalroar" : "abalroar" +>sentimento : number +>0 : 0 +>"abalroar" : number +>0 : 0 + + {texto: "abanar", sentimento: 0, "abanar": 0}, +>{texto: "abanar", sentimento: 0, "abanar": 0} : { texto: string; sentimento: number; "abanar": number; } +>texto : string +>"abanar" : "abanar" +>sentimento : number +>0 : 0 +>"abanar" : number +>0 : 0 + + {texto: "abandalhada", sentimento: -1, "abandalhada": -1}, +>{texto: "abandalhada", sentimento: -1, "abandalhada": -1} : { texto: string; sentimento: number; "abandalhada": number; } +>texto : string +>"abandalhada" : "abandalhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandalhada" : number +>-1 : -1 +>1 : 1 + + {texto: "abandalhadas", sentimento: -1, "abandalhadas": -1}, +>{texto: "abandalhadas", sentimento: -1, "abandalhadas": -1} : { texto: string; sentimento: number; "abandalhadas": number; } +>texto : string +>"abandalhadas" : "abandalhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandalhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abandalhado", sentimento: -1, "abandalhado": -1}, +>{texto: "abandalhado", sentimento: -1, "abandalhado": -1} : { texto: string; sentimento: number; "abandalhado": number; } +>texto : string +>"abandalhado" : "abandalhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandalhado" : number +>-1 : -1 +>1 : 1 + + {texto: "abandalhados", sentimento: -1, "abandalhados": -1}, +>{texto: "abandalhados", sentimento: -1, "abandalhados": -1} : { texto: string; sentimento: number; "abandalhados": number; } +>texto : string +>"abandalhados" : "abandalhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandalhados" : number +>-1 : -1 +>1 : 1 + + {texto: "abandalhar", sentimento: 1, "abandalhar": 1}, +>{texto: "abandalhar", sentimento: 1, "abandalhar": 1} : { texto: string; sentimento: number; "abandalhar": number; } +>texto : string +>"abandalhar" : "abandalhar" +>sentimento : number +>1 : 1 +>"abandalhar" : number +>1 : 1 + + {texto: "abandar", sentimento: -1, "abandar": -1}, +>{texto: "abandar", sentimento: -1, "abandar": -1} : { texto: string; sentimento: number; "abandar": number; } +>texto : string +>"abandar" : "abandar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandar" : number +>-1 : -1 +>1 : 1 + + {texto: "abandonada", sentimento: -1, "abandonada": -1}, +>{texto: "abandonada", sentimento: -1, "abandonada": -1} : { texto: string; sentimento: number; "abandonada": number; } +>texto : string +>"abandonada" : "abandonada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandonada" : number +>-1 : -1 +>1 : 1 + + {texto: "abandonadas", sentimento: -1, "abandonadas": -1}, +>{texto: "abandonadas", sentimento: -1, "abandonadas": -1} : { texto: string; sentimento: number; "abandonadas": number; } +>texto : string +>"abandonadas" : "abandonadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandonadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abandonado", sentimento: -1, "abandonado": -1}, +>{texto: "abandonado", sentimento: -1, "abandonado": -1} : { texto: string; sentimento: number; "abandonado": number; } +>texto : string +>"abandonado" : "abandonado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandonado" : number +>-1 : -1 +>1 : 1 + + {texto: "abandonado", sentimento: -2, "abandonado": -2}, +>{texto: "abandonado", sentimento: -2, "abandonado": -2} : { texto: string; sentimento: number; "abandonado": number; } +>texto : string +>"abandonado" : "abandonado" +>sentimento : number +>-2 : -2 +>2 : 2 +>"abandonado" : number +>-2 : -2 +>2 : 2 + + {texto: "abandonados", sentimento: -1, "abandonados": -1}, +>{texto: "abandonados", sentimento: -1, "abandonados": -1} : { texto: string; sentimento: number; "abandonados": number; } +>texto : string +>"abandonados" : "abandonados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandonados" : number +>-1 : -1 +>1 : 1 + + {texto: "abandonar-se", sentimento: 0, "abandonar-se": 0}, +>{texto: "abandonar-se", sentimento: 0, "abandonar-se": 0} : { texto: string; sentimento: number; "abandonar-se": number; } +>texto : string +>"abandonar-se" : "abandonar-se" +>sentimento : number +>0 : 0 +>"abandonar-se" : number +>0 : 0 + + {texto: "abandonar", sentimento: -1, "abandonar": -1}, +>{texto: "abandonar", sentimento: -1, "abandonar": -1} : { texto: string; sentimento: number; "abandonar": number; } +>texto : string +>"abandonar" : "abandonar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abandonar" : number +>-1 : -1 +>1 : 1 + + {texto: "abandono", sentimento: -2, "abandono": -2}, +>{texto: "abandono", sentimento: -2, "abandono": -2} : { texto: string; sentimento: number; "abandono": number; } +>texto : string +>"abandono" : "abandono" +>sentimento : number +>-2 : -2 +>2 : 2 +>"abandono" : number +>-2 : -2 +>2 : 2 + + {texto: "abandonos", sentimento: -2, "abandonos": -2}, +>{texto: "abandonos", sentimento: -2, "abandonos": -2} : { texto: string; sentimento: number; "abandonos": number; } +>texto : string +>"abandonos" : "abandonos" +>sentimento : number +>-2 : -2 +>2 : 2 +>"abandonos" : number +>-2 : -2 +>2 : 2 + + {texto: "abarbar", sentimento: 1, "abarbar": 1}, +>{texto: "abarbar", sentimento: 1, "abarbar": 1} : { texto: string; sentimento: number; "abarbar": number; } +>texto : string +>"abarbar" : "abarbar" +>sentimento : number +>1 : 1 +>"abarbar" : number +>1 : 1 + + {texto: "abarbarado", sentimento: 1, "abarbarado": 1}, +>{texto: "abarbarado", sentimento: 1, "abarbarado": 1} : { texto: string; sentimento: number; "abarbarado": number; } +>texto : string +>"abarbarado" : "abarbarado" +>sentimento : number +>1 : 1 +>"abarbarado" : number +>1 : 1 + + {texto: "abarcante", sentimento: -1, "abarcante": -1}, +>{texto: "abarcante", sentimento: -1, "abarcante": -1} : { texto: string; sentimento: number; "abarcante": number; } +>texto : string +>"abarcante" : "abarcante" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarcante" : number +>-1 : -1 +>1 : 1 + + {texto: "abarcantes", sentimento: -1, "abarcantes": -1}, +>{texto: "abarcantes", sentimento: -1, "abarcantes": -1} : { texto: string; sentimento: number; "abarcantes": number; } +>texto : string +>"abarcantes" : "abarcantes" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarcantes" : number +>-1 : -1 +>1 : 1 + + {texto: "abarcar", sentimento: -1, "abarcar": -1}, +>{texto: "abarcar", sentimento: -1, "abarcar": -1} : { texto: string; sentimento: number; "abarcar": number; } +>texto : string +>"abarcar" : "abarcar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarcar" : number +>-1 : -1 +>1 : 1 + + {texto: "abarrancar", sentimento: -1, "abarrancar": -1}, +>{texto: "abarrancar", sentimento: -1, "abarrancar": -1} : { texto: string; sentimento: number; "abarrancar": number; } +>texto : string +>"abarrancar" : "abarrancar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarrancar" : number +>-1 : -1 +>1 : 1 + + {texto: "abarregar", sentimento: 1, "abarregar": 1}, +>{texto: "abarregar", sentimento: 1, "abarregar": 1} : { texto: string; sentimento: number; "abarregar": number; } +>texto : string +>"abarregar" : "abarregar" +>sentimento : number +>1 : 1 +>"abarregar" : number +>1 : 1 + + {texto: "abarreirar", sentimento: -1, "abarreirar": -1}, +>{texto: "abarreirar", sentimento: -1, "abarreirar": -1} : { texto: string; sentimento: number; "abarreirar": number; } +>texto : string +>"abarreirar" : "abarreirar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarreirar" : number +>-1 : -1 +>1 : 1 + + {texto: "abarrocar", sentimento: -1, "abarrocar": -1}, +>{texto: "abarrocar", sentimento: -1, "abarrocar": -1} : { texto: string; sentimento: number; "abarrocar": number; } +>texto : string +>"abarrocar" : "abarrocar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarrocar" : number +>-1 : -1 +>1 : 1 + + {texto: "abarrotada", sentimento: -1, "abarrotada": -1}, +>{texto: "abarrotada", sentimento: -1, "abarrotada": -1} : { texto: string; sentimento: number; "abarrotada": number; } +>texto : string +>"abarrotada" : "abarrotada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarrotada" : number +>-1 : -1 +>1 : 1 + + {texto: "abarrotadas", sentimento: -1, "abarrotadas": -1}, +>{texto: "abarrotadas", sentimento: -1, "abarrotadas": -1} : { texto: string; sentimento: number; "abarrotadas": number; } +>texto : string +>"abarrotadas" : "abarrotadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarrotadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abarrotado", sentimento: -1, "abarrotado": -1}, +>{texto: "abarrotado", sentimento: -1, "abarrotado": -1} : { texto: string; sentimento: number; "abarrotado": number; } +>texto : string +>"abarrotado" : "abarrotado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarrotado" : number +>-1 : -1 +>1 : 1 + + {texto: "abarrotados", sentimento: -1, "abarrotados": -1}, +>{texto: "abarrotados", sentimento: -1, "abarrotados": -1} : { texto: string; sentimento: number; "abarrotados": number; } +>texto : string +>"abarrotados" : "abarrotados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abarrotados" : number +>-1 : -1 +>1 : 1 + + {texto: "abarrotar", sentimento: 0, "abarrotar": 0}, +>{texto: "abarrotar", sentimento: 0, "abarrotar": 0} : { texto: string; sentimento: number; "abarrotar": number; } +>texto : string +>"abarrotar" : "abarrotar" +>sentimento : number +>0 : 0 +>"abarrotar" : number +>0 : 0 + + {texto: "abasbacar", sentimento: 0, "abasbacar": 0}, +>{texto: "abasbacar", sentimento: 0, "abasbacar": 0} : { texto: string; sentimento: number; "abasbacar": number; } +>texto : string +>"abasbacar" : "abasbacar" +>sentimento : number +>0 : 0 +>"abasbacar" : number +>0 : 0 + + {texto: "abastada", sentimento: 1, "abastada": 1}, +>{texto: "abastada", sentimento: 1, "abastada": 1} : { texto: string; sentimento: number; "abastada": number; } +>texto : string +>"abastada" : "abastada" +>sentimento : number +>1 : 1 +>"abastada" : number +>1 : 1 + + {texto: "abastadas", sentimento: 1, "abastadas": 1}, +>{texto: "abastadas", sentimento: 1, "abastadas": 1} : { texto: string; sentimento: number; "abastadas": number; } +>texto : string +>"abastadas" : "abastadas" +>sentimento : number +>1 : 1 +>"abastadas" : number +>1 : 1 + + {texto: "abastadear", sentimento: 1, "abastadear": 1}, +>{texto: "abastadear", sentimento: 1, "abastadear": 1} : { texto: string; sentimento: number; "abastadear": number; } +>texto : string +>"abastadear" : "abastadear" +>sentimento : number +>1 : 1 +>"abastadear" : number +>1 : 1 + + {texto: "abastado", sentimento: 1, "abastado": 1}, +>{texto: "abastado", sentimento: 1, "abastado": 1} : { texto: string; sentimento: number; "abastado": number; } +>texto : string +>"abastado" : "abastado" +>sentimento : number +>1 : 1 +>"abastado" : number +>1 : 1 + + {texto: "abastados", sentimento: 1, "abastados": 1}, +>{texto: "abastados", sentimento: 1, "abastados": 1} : { texto: string; sentimento: number; "abastados": number; } +>texto : string +>"abastados" : "abastados" +>sentimento : number +>1 : 1 +>"abastados" : number +>1 : 1 + + {texto: "abastar", sentimento: -1, "abastar": -1}, +>{texto: "abastar", sentimento: -1, "abastar": -1} : { texto: string; sentimento: number; "abastar": number; } +>texto : string +>"abastar" : "abastar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abastar" : number +>-1 : -1 +>1 : 1 + + {texto: "abastardar-se", sentimento: 1, "abastardar-se": 1}, +>{texto: "abastardar-se", sentimento: 1, "abastardar-se": 1} : { texto: string; sentimento: number; "abastardar-se": number; } +>texto : string +>"abastardar-se" : "abastardar-se" +>sentimento : number +>1 : 1 +>"abastardar-se" : number +>1 : 1 + + {texto: "abastardar", sentimento: 1, "abastardar": 1}, +>{texto: "abastardar", sentimento: 1, "abastardar": 1} : { texto: string; sentimento: number; "abastardar": number; } +>texto : string +>"abastardar" : "abastardar" +>sentimento : number +>1 : 1 +>"abastardar" : number +>1 : 1 + + {texto: "abastardear-se", sentimento: 1, "abastardear-se": 1}, +>{texto: "abastardear-se", sentimento: 1, "abastardear-se": 1} : { texto: string; sentimento: number; "abastardear-se": number; } +>texto : string +>"abastardear-se" : "abastardear-se" +>sentimento : number +>1 : 1 +>"abastardear-se" : number +>1 : 1 + + {texto: "abastecer", sentimento: 1, "abastecer": 1}, +>{texto: "abastecer", sentimento: 1, "abastecer": 1} : { texto: string; sentimento: number; "abastecer": number; } +>texto : string +>"abastecer" : "abastecer" +>sentimento : number +>1 : 1 +>"abastecer" : number +>1 : 1 + + {texto: "abastecida", sentimento: 0, "abastecida": 0}, +>{texto: "abastecida", sentimento: 0, "abastecida": 0} : { texto: string; sentimento: number; "abastecida": number; } +>texto : string +>"abastecida" : "abastecida" +>sentimento : number +>0 : 0 +>"abastecida" : number +>0 : 0 + + {texto: "abastecidas", sentimento: 0, "abastecidas": 0}, +>{texto: "abastecidas", sentimento: 0, "abastecidas": 0} : { texto: string; sentimento: number; "abastecidas": number; } +>texto : string +>"abastecidas" : "abastecidas" +>sentimento : number +>0 : 0 +>"abastecidas" : number +>0 : 0 + + {texto: "abastecido", sentimento: 0, "abastecido": 0}, +>{texto: "abastecido", sentimento: 0, "abastecido": 0} : { texto: string; sentimento: number; "abastecido": number; } +>texto : string +>"abastecido" : "abastecido" +>sentimento : number +>0 : 0 +>"abastecido" : number +>0 : 0 + + {texto: "abastecidos", sentimento: 0, "abastecidos": 0}, +>{texto: "abastecidos", sentimento: 0, "abastecidos": 0} : { texto: string; sentimento: number; "abastecidos": number; } +>texto : string +>"abastecidos" : "abastecidos" +>sentimento : number +>0 : 0 +>"abastecidos" : number +>0 : 0 + + {texto: "abastoso", sentimento: 1, "abastoso": 1}, +>{texto: "abastoso", sentimento: 1, "abastoso": 1} : { texto: string; sentimento: number; "abastoso": number; } +>texto : string +>"abastoso" : "abastoso" +>sentimento : number +>1 : 1 +>"abastoso" : number +>1 : 1 + + {texto: "abater", sentimento: -1, "abater": -1}, +>{texto: "abater", sentimento: -1, "abater": -1} : { texto: string; sentimento: number; "abater": number; } +>texto : string +>"abater" : "abater" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abater" : number +>-1 : -1 +>1 : 1 + + {texto: "abatida", sentimento: -1, "abatida": -1}, +>{texto: "abatida", sentimento: -1, "abatida": -1} : { texto: string; sentimento: number; "abatida": number; } +>texto : string +>"abatida" : "abatida" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abatida" : number +>-1 : -1 +>1 : 1 + + {texto: "abatidas", sentimento: -1, "abatidas": -1}, +>{texto: "abatidas", sentimento: -1, "abatidas": -1} : { texto: string; sentimento: number; "abatidas": number; } +>texto : string +>"abatidas" : "abatidas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abatidas" : number +>-1 : -1 +>1 : 1 + + {texto: "abatido", sentimento: -1, "abatido": -1}, +>{texto: "abatido", sentimento: -1, "abatido": -1} : { texto: string; sentimento: number; "abatido": number; } +>texto : string +>"abatido" : "abatido" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abatido" : number +>-1 : -1 +>1 : 1 + + {texto: "abatido", sentimento: -2, "abatido": -2}, +>{texto: "abatido", sentimento: -2, "abatido": -2} : { texto: string; sentimento: number; "abatido": number; } +>texto : string +>"abatido" : "abatido" +>sentimento : number +>-2 : -2 +>2 : 2 +>"abatido" : number +>-2 : -2 +>2 : 2 + + {texto: "abatidos", sentimento: -1, "abatidos": -1}, +>{texto: "abatidos", sentimento: -1, "abatidos": -1} : { texto: string; sentimento: number; "abatidos": number; } +>texto : string +>"abatidos" : "abatidos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abatidos" : number +>-1 : -1 +>1 : 1 + + {texto: "abatocar", sentimento: 1, "abatocar": 1}, +>{texto: "abatocar", sentimento: 1, "abatocar": 1} : { texto: string; sentimento: number; "abatocar": number; } +>texto : string +>"abatocar" : "abatocar" +>sentimento : number +>1 : 1 +>"abatocar" : number +>1 : 1 + + {texto: "abdicar", sentimento: -1, "abdicar": -1}, +>{texto: "abdicar", sentimento: -1, "abdicar": -1} : { texto: string; sentimento: number; "abdicar": number; } +>texto : string +>"abdicar" : "abdicar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abdicar" : number +>-1 : -1 +>1 : 1 + + {texto: "abdução", sentimento: -2, "abdução": -2}, +>{texto: "abdução", sentimento: -2, "abdução": -2} : { texto: string; sentimento: number; "abdução": number; } +>texto : string +>"abdução" : "abdução" +>sentimento : number +>-2 : -2 +>2 : 2 +>"abdução" : number +>-2 : -2 +>2 : 2 + + {texto: "abduzir-se", sentimento: 1, "abduzir-se": 1}, +>{texto: "abduzir-se", sentimento: 1, "abduzir-se": 1} : { texto: string; sentimento: number; "abduzir-se": number; } +>texto : string +>"abduzir-se" : "abduzir-se" +>sentimento : number +>1 : 1 +>"abduzir-se" : number +>1 : 1 + + {texto: "abduzir", sentimento: 0, "abduzir": 0}, +>{texto: "abduzir", sentimento: 0, "abduzir": 0} : { texto: string; sentimento: number; "abduzir": number; } +>texto : string +>"abduzir" : "abduzir" +>sentimento : number +>0 : 0 +>"abduzir" : number +>0 : 0 + + {texto: "abeberar", sentimento: 0, "abeberar": 0}, +>{texto: "abeberar", sentimento: 0, "abeberar": 0} : { texto: string; sentimento: number; "abeberar": number; } +>texto : string +>"abeberar" : "abeberar" +>sentimento : number +>0 : 0 +>"abeberar" : number +>0 : 0 + + {texto: "abeirar-se", sentimento: 1, "abeirar-se": 1}, +>{texto: "abeirar-se", sentimento: 1, "abeirar-se": 1} : { texto: string; sentimento: number; "abeirar-se": number; } +>texto : string +>"abeirar-se" : "abeirar-se" +>sentimento : number +>1 : 1 +>"abeirar-se" : number +>1 : 1 + + {texto: "abeirar", sentimento: 0, "abeirar": 0}, +>{texto: "abeirar", sentimento: 0, "abeirar": 0} : { texto: string; sentimento: number; "abeirar": number; } +>texto : string +>"abeirar" : "abeirar" +>sentimento : number +>0 : 0 +>"abeirar" : number +>0 : 0 + + {texto: "abelhuda", sentimento: -1, "abelhuda": -1}, +>{texto: "abelhuda", sentimento: -1, "abelhuda": -1} : { texto: string; sentimento: number; "abelhuda": number; } +>texto : string +>"abelhuda" : "abelhuda" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abelhuda" : number +>-1 : -1 +>1 : 1 + + {texto: "abelhudar", sentimento: 0, "abelhudar": 0}, +>{texto: "abelhudar", sentimento: 0, "abelhudar": 0} : { texto: string; sentimento: number; "abelhudar": number; } +>texto : string +>"abelhudar" : "abelhudar" +>sentimento : number +>0 : 0 +>"abelhudar" : number +>0 : 0 + + {texto: "abelhudas", sentimento: -1, "abelhudas": -1}, +>{texto: "abelhudas", sentimento: -1, "abelhudas": -1} : { texto: string; sentimento: number; "abelhudas": number; } +>texto : string +>"abelhudas" : "abelhudas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abelhudas" : number +>-1 : -1 +>1 : 1 + + {texto: "abelhudo", sentimento: -1, "abelhudo": -1}, +>{texto: "abelhudo", sentimento: -1, "abelhudo": -1} : { texto: string; sentimento: number; "abelhudo": number; } +>texto : string +>"abelhudo" : "abelhudo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abelhudo" : number +>-1 : -1 +>1 : 1 + + {texto: "abelhudos", sentimento: -1, "abelhudos": -1}, +>{texto: "abelhudos", sentimento: -1, "abelhudos": -1} : { texto: string; sentimento: number; "abelhudos": number; } +>texto : string +>"abelhudos" : "abelhudos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abelhudos" : number +>-1 : -1 +>1 : 1 + + {texto: "abemolar", sentimento: 0, "abemolar": 0}, +>{texto: "abemolar", sentimento: 0, "abemolar": 0} : { texto: string; sentimento: number; "abemolar": number; } +>texto : string +>"abemolar" : "abemolar" +>sentimento : number +>0 : 0 +>"abemolar" : number +>0 : 0 + + {texto: "abençoa", sentimento: 2, "abençoa": 2}, +>{texto: "abençoa", sentimento: 2, "abençoa": 2} : { texto: string; sentimento: number; "abençoa": number; } +>texto : string +>"abençoa" : "abençoa" +>sentimento : number +>2 : 2 +>"abençoa" : number +>2 : 2 + + {texto: "abençoada", sentimento: 1, "abençoada": 1}, +>{texto: "abençoada", sentimento: 1, "abençoada": 1} : { texto: string; sentimento: number; "abençoada": number; } +>texto : string +>"abençoada" : "abençoada" +>sentimento : number +>1 : 1 +>"abençoada" : number +>1 : 1 + + {texto: "abençoadas", sentimento: 1, "abençoadas": 1}, +>{texto: "abençoadas", sentimento: 1, "abençoadas": 1} : { texto: string; sentimento: number; "abençoadas": number; } +>texto : string +>"abençoadas" : "abençoadas" +>sentimento : number +>1 : 1 +>"abençoadas" : number +>1 : 1 + + {texto: "abençoado", sentimento: 1, "abençoado": 1}, +>{texto: "abençoado", sentimento: 1, "abençoado": 1} : { texto: string; sentimento: number; "abençoado": number; } +>texto : string +>"abençoado" : "abençoado" +>sentimento : number +>1 : 1 +>"abençoado" : number +>1 : 1 + + {texto: "abençoados", sentimento: 1, "abençoados": 1}, +>{texto: "abençoados", sentimento: 1, "abençoados": 1} : { texto: string; sentimento: number; "abençoados": number; } +>texto : string +>"abençoados" : "abençoados" +>sentimento : number +>1 : 1 +>"abençoados" : number +>1 : 1 + + {texto: "abençoar", sentimento: 0, "abençoar": 0}, +>{texto: "abençoar", sentimento: 0, "abençoar": 0} : { texto: string; sentimento: number; "abençoar": number; } +>texto : string +>"abençoar" : "abençoar" +>sentimento : number +>0 : 0 +>"abençoar" : number +>0 : 0 + + {texto: "abençoar", sentimento: 2, "abençoar": 2}, +>{texto: "abençoar", sentimento: 2, "abençoar": 2} : { texto: string; sentimento: number; "abençoar": number; } +>texto : string +>"abençoar" : "abençoar" +>sentimento : number +>2 : 2 +>"abençoar" : number +>2 : 2 + + {texto: "aberrante", sentimento: -1, "aberrante": -1}, +>{texto: "aberrante", sentimento: -1, "aberrante": -1} : { texto: string; sentimento: number; "aberrante": number; } +>texto : string +>"aberrante" : "aberrante" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aberrante" : number +>-1 : -1 +>1 : 1 + + {texto: "aberrantes", sentimento: -1, "aberrantes": -1}, +>{texto: "aberrantes", sentimento: -1, "aberrantes": -1} : { texto: string; sentimento: number; "aberrantes": number; } +>texto : string +>"aberrantes" : "aberrantes" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aberrantes" : number +>-1 : -1 +>1 : 1 + + {texto: "aberrativa", sentimento: -1, "aberrativa": -1}, +>{texto: "aberrativa", sentimento: -1, "aberrativa": -1} : { texto: string; sentimento: number; "aberrativa": number; } +>texto : string +>"aberrativa" : "aberrativa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aberrativa" : number +>-1 : -1 +>1 : 1 + + {texto: "aberrativas", sentimento: -1, "aberrativas": -1}, +>{texto: "aberrativas", sentimento: -1, "aberrativas": -1} : { texto: string; sentimento: number; "aberrativas": number; } +>texto : string +>"aberrativas" : "aberrativas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aberrativas" : number +>-1 : -1 +>1 : 1 + + {texto: "aberrativo", sentimento: -1, "aberrativo": -1}, +>{texto: "aberrativo", sentimento: -1, "aberrativo": -1} : { texto: string; sentimento: number; "aberrativo": number; } +>texto : string +>"aberrativo" : "aberrativo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aberrativo" : number +>-1 : -1 +>1 : 1 + + {texto: "aberrativos", sentimento: -1, "aberrativos": -1}, +>{texto: "aberrativos", sentimento: -1, "aberrativos": -1} : { texto: string; sentimento: number; "aberrativos": number; } +>texto : string +>"aberrativos" : "aberrativos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aberrativos" : number +>-1 : -1 +>1 : 1 + + {texto: "aberratório", sentimento: 1, "aberratório": 1}, +>{texto: "aberratório", sentimento: 1, "aberratório": 1} : { texto: string; sentimento: number; "aberratório": number; } +>texto : string +>"aberratório" : "aberratório" +>sentimento : number +>1 : 1 +>"aberratório" : number +>1 : 1 + + {texto: "aberta", sentimento: 0, "aberta": 0}, +>{texto: "aberta", sentimento: 0, "aberta": 0} : { texto: string; sentimento: number; "aberta": number; } +>texto : string +>"aberta" : "aberta" +>sentimento : number +>0 : 0 +>"aberta" : number +>0 : 0 + + {texto: "abertão", sentimento: 1, "abertão": 1}, +>{texto: "abertão", sentimento: 1, "abertão": 1} : { texto: string; sentimento: number; "abertão": number; } +>texto : string +>"abertão" : "abertão" +>sentimento : number +>1 : 1 +>"abertão" : number +>1 : 1 + + {texto: "abertas", sentimento: 0, "abertas": 0}, +>{texto: "abertas", sentimento: 0, "abertas": 0} : { texto: string; sentimento: number; "abertas": number; } +>texto : string +>"abertas" : "abertas" +>sentimento : number +>0 : 0 +>"abertas" : number +>0 : 0 + + {texto: "aberto", sentimento: 0, "aberto": 0}, +>{texto: "aberto", sentimento: 0, "aberto": 0} : { texto: string; sentimento: number; "aberto": number; } +>texto : string +>"aberto" : "aberto" +>sentimento : number +>0 : 0 +>"aberto" : number +>0 : 0 + + {texto: "abertos", sentimento: 0, "abertos": 0}, +>{texto: "abertos", sentimento: 0, "abertos": 0} : { texto: string; sentimento: number; "abertos": number; } +>texto : string +>"abertos" : "abertos" +>sentimento : number +>0 : 0 +>"abertos" : number +>0 : 0 + + {texto: "abespinhada", sentimento: -1, "abespinhada": -1}, +>{texto: "abespinhada", sentimento: -1, "abespinhada": -1} : { texto: string; sentimento: number; "abespinhada": number; } +>texto : string +>"abespinhada" : "abespinhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abespinhada" : number +>-1 : -1 +>1 : 1 + + {texto: "abespinhadas", sentimento: -1, "abespinhadas": -1}, +>{texto: "abespinhadas", sentimento: -1, "abespinhadas": -1} : { texto: string; sentimento: number; "abespinhadas": number; } +>texto : string +>"abespinhadas" : "abespinhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abespinhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abespinhado", sentimento: -1, "abespinhado": -1}, +>{texto: "abespinhado", sentimento: -1, "abespinhado": -1} : { texto: string; sentimento: number; "abespinhado": number; } +>texto : string +>"abespinhado" : "abespinhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abespinhado" : number +>-1 : -1 +>1 : 1 + + {texto: "abespinhados", sentimento: -1, "abespinhados": -1}, +>{texto: "abespinhados", sentimento: -1, "abespinhados": -1} : { texto: string; sentimento: number; "abespinhados": number; } +>texto : string +>"abespinhados" : "abespinhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abespinhados" : number +>-1 : -1 +>1 : 1 + + {texto: "abespinhar", sentimento: -1, "abespinhar": -1}, +>{texto: "abespinhar", sentimento: -1, "abespinhar": -1} : { texto: string; sentimento: number; "abespinhar": number; } +>texto : string +>"abespinhar" : "abespinhar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abespinhar" : number +>-1 : -1 +>1 : 1 + + {texto: "abestalhada", sentimento: -1, "abestalhada": -1}, +>{texto: "abestalhada", sentimento: -1, "abestalhada": -1} : { texto: string; sentimento: number; "abestalhada": number; } +>texto : string +>"abestalhada" : "abestalhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abestalhada" : number +>-1 : -1 +>1 : 1 + + {texto: "abestalhadas", sentimento: -1, "abestalhadas": -1}, +>{texto: "abestalhadas", sentimento: -1, "abestalhadas": -1} : { texto: string; sentimento: number; "abestalhadas": number; } +>texto : string +>"abestalhadas" : "abestalhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abestalhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abestalhado", sentimento: -1, "abestalhado": -1}, +>{texto: "abestalhado", sentimento: -1, "abestalhado": -1} : { texto: string; sentimento: number; "abestalhado": number; } +>texto : string +>"abestalhado" : "abestalhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abestalhado" : number +>-1 : -1 +>1 : 1 + + {texto: "abestalhados", sentimento: -1, "abestalhados": -1}, +>{texto: "abestalhados", sentimento: -1, "abestalhados": -1} : { texto: string; sentimento: number; "abestalhados": number; } +>texto : string +>"abestalhados" : "abestalhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abestalhados" : number +>-1 : -1 +>1 : 1 + + {texto: "abetumado", sentimento: -1, "abetumado": -1}, +>{texto: "abetumado", sentimento: -1, "abetumado": -1} : { texto: string; sentimento: number; "abetumado": number; } +>texto : string +>"abetumado" : "abetumado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abetumado" : number +>-1 : -1 +>1 : 1 + + {texto: "abetumar", sentimento: 0, "abetumar": 0}, +>{texto: "abetumar", sentimento: 0, "abetumar": 0} : { texto: string; sentimento: number; "abetumar": number; } +>texto : string +>"abetumar" : "abetumar" +>sentimento : number +>0 : 0 +>"abetumar" : number +>0 : 0 + + {texto: "abicar", sentimento: 0, "abicar": 0}, +>{texto: "abicar", sentimento: 0, "abicar": 0} : { texto: string; sentimento: number; "abicar": number; } +>texto : string +>"abicar" : "abicar" +>sentimento : number +>0 : 0 +>"abicar" : number +>0 : 0 + + {texto: "abichar", sentimento: 0, "abichar": 0}, +>{texto: "abichar", sentimento: 0, "abichar": 0} : { texto: string; sentimento: number; "abichar": number; } +>texto : string +>"abichar" : "abichar" +>sentimento : number +>0 : 0 +>"abichar" : number +>0 : 0 + + {texto: "abilolada", sentimento: -1, "abilolada": -1}, +>{texto: "abilolada", sentimento: -1, "abilolada": -1} : { texto: string; sentimento: number; "abilolada": number; } +>texto : string +>"abilolada" : "abilolada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abilolada" : number +>-1 : -1 +>1 : 1 + + {texto: "abiloladas", sentimento: -1, "abiloladas": -1}, +>{texto: "abiloladas", sentimento: -1, "abiloladas": -1} : { texto: string; sentimento: number; "abiloladas": number; } +>texto : string +>"abiloladas" : "abiloladas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abiloladas" : number +>-1 : -1 +>1 : 1 + + {texto: "abilolado", sentimento: -1, "abilolado": -1}, +>{texto: "abilolado", sentimento: -1, "abilolado": -1} : { texto: string; sentimento: number; "abilolado": number; } +>texto : string +>"abilolado" : "abilolado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abilolado" : number +>-1 : -1 +>1 : 1 + + {texto: "abilolados", sentimento: -1, "abilolados": -1}, +>{texto: "abilolados", sentimento: -1, "abilolados": -1} : { texto: string; sentimento: number; "abilolados": number; } +>texto : string +>"abilolados" : "abilolados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abilolados" : number +>-1 : -1 +>1 : 1 + + {texto: "abiscoitar", sentimento: 0, "abiscoitar": 0}, +>{texto: "abiscoitar", sentimento: 0, "abiscoitar": 0} : { texto: string; sentimento: number; "abiscoitar": number; } +>texto : string +>"abiscoitar" : "abiscoitar" +>sentimento : number +>0 : 0 +>"abiscoitar" : number +>0 : 0 + + {texto: "abiselar", sentimento: 1, "abiselar": 1}, +>{texto: "abiselar", sentimento: 1, "abiselar": 1} : { texto: string; sentimento: number; "abiselar": number; } +>texto : string +>"abiselar" : "abiselar" +>sentimento : number +>1 : 1 +>"abiselar" : number +>1 : 1 + + {texto: "abismada", sentimento: -1, "abismada": -1}, +>{texto: "abismada", sentimento: -1, "abismada": -1} : { texto: string; sentimento: number; "abismada": number; } +>texto : string +>"abismada" : "abismada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abismada" : number +>-1 : -1 +>1 : 1 + + {texto: "abismadas", sentimento: -1, "abismadas": -1}, +>{texto: "abismadas", sentimento: -1, "abismadas": -1} : { texto: string; sentimento: number; "abismadas": number; } +>texto : string +>"abismadas" : "abismadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abismadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abismado", sentimento: -1, "abismado": -1}, +>{texto: "abismado", sentimento: -1, "abismado": -1} : { texto: string; sentimento: number; "abismado": number; } +>texto : string +>"abismado" : "abismado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abismado" : number +>-1 : -1 +>1 : 1 + + {texto: "abismados", sentimento: -1, "abismados": -1}, +>{texto: "abismados", sentimento: -1, "abismados": -1} : { texto: string; sentimento: number; "abismados": number; } +>texto : string +>"abismados" : "abismados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abismados" : number +>-1 : -1 +>1 : 1 + + {texto: "abismais", sentimento: -1, "abismais": -1}, +>{texto: "abismais", sentimento: -1, "abismais": -1} : { texto: string; sentimento: number; "abismais": number; } +>texto : string +>"abismais" : "abismais" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abismais" : number +>-1 : -1 +>1 : 1 + + {texto: "abismal", sentimento: -1, "abismal": -1}, +>{texto: "abismal", sentimento: -1, "abismal": -1} : { texto: string; sentimento: number; "abismal": number; } +>texto : string +>"abismal" : "abismal" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abismal" : number +>-1 : -1 +>1 : 1 + + {texto: "abismar", sentimento: 1, "abismar": 1}, +>{texto: "abismar", sentimento: 1, "abismar": 1} : { texto: string; sentimento: number; "abismar": number; } +>texto : string +>"abismar" : "abismar" +>sentimento : number +>1 : 1 +>"abismar" : number +>1 : 1 + + {texto: "abjecta", sentimento: -1, "abjecta": -1}, +>{texto: "abjecta", sentimento: -1, "abjecta": -1} : { texto: string; sentimento: number; "abjecta": number; } +>texto : string +>"abjecta" : "abjecta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjecta" : number +>-1 : -1 +>1 : 1 + + {texto: "abjectas", sentimento: -1, "abjectas": -1}, +>{texto: "abjectas", sentimento: -1, "abjectas": -1} : { texto: string; sentimento: number; "abjectas": number; } +>texto : string +>"abjectas" : "abjectas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjectas" : number +>-1 : -1 +>1 : 1 + + {texto: "abjecto", sentimento: -1, "abjecto": -1}, +>{texto: "abjecto", sentimento: -1, "abjecto": -1} : { texto: string; sentimento: number; "abjecto": number; } +>texto : string +>"abjecto" : "abjecto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjecto" : number +>-1 : -1 +>1 : 1 + + {texto: "abjectos", sentimento: -1, "abjectos": -1}, +>{texto: "abjectos", sentimento: -1, "abjectos": -1} : { texto: string; sentimento: number; "abjectos": number; } +>texto : string +>"abjectos" : "abjectos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjectos" : number +>-1 : -1 +>1 : 1 + + {texto: "abjeta", sentimento: -1, "abjeta": -1}, +>{texto: "abjeta", sentimento: -1, "abjeta": -1} : { texto: string; sentimento: number; "abjeta": number; } +>texto : string +>"abjeta" : "abjeta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjeta" : number +>-1 : -1 +>1 : 1 + + {texto: "abjetas", sentimento: -1, "abjetas": -1}, +>{texto: "abjetas", sentimento: -1, "abjetas": -1} : { texto: string; sentimento: number; "abjetas": number; } +>texto : string +>"abjetas" : "abjetas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjetas" : number +>-1 : -1 +>1 : 1 + + {texto: "abjeto", sentimento: -1, "abjeto": -1}, +>{texto: "abjeto", sentimento: -1, "abjeto": -1} : { texto: string; sentimento: number; "abjeto": number; } +>texto : string +>"abjeto" : "abjeto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjeto" : number +>-1 : -1 +>1 : 1 + + {texto: "abjetos", sentimento: -1, "abjetos": -1}, +>{texto: "abjetos", sentimento: -1, "abjetos": -1} : { texto: string; sentimento: number; "abjetos": number; } +>texto : string +>"abjetos" : "abjetos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abjetos" : number +>-1 : -1 +>1 : 1 + + {texto: "abjugar-se", sentimento: 1, "abjugar-se": 1}, +>{texto: "abjugar-se", sentimento: 1, "abjugar-se": 1} : { texto: string; sentimento: number; "abjugar-se": number; } +>texto : string +>"abjugar-se" : "abjugar-se" +>sentimento : number +>1 : 1 +>"abjugar-se" : number +>1 : 1 + + {texto: "abjugar", sentimento: 0, "abjugar": 0}, +>{texto: "abjugar", sentimento: 0, "abjugar": 0} : { texto: string; sentimento: number; "abjugar": number; } +>texto : string +>"abjugar" : "abjugar" +>sentimento : number +>0 : 0 +>"abjugar" : number +>0 : 0 + + {texto: "abjurar", sentimento: 1, "abjurar": 1}, +>{texto: "abjurar", sentimento: 1, "abjurar": 1} : { texto: string; sentimento: number; "abjurar": number; } +>texto : string +>"abjurar" : "abjurar" +>sentimento : number +>1 : 1 +>"abjurar" : number +>1 : 1 + + {texto: "ablegar-se", sentimento: 1, "ablegar-se": 1}, +>{texto: "ablegar-se", sentimento: 1, "ablegar-se": 1} : { texto: string; sentimento: number; "ablegar-se": number; } +>texto : string +>"ablegar-se" : "ablegar-se" +>sentimento : number +>1 : 1 +>"ablegar-se" : number +>1 : 1 + + {texto: "ablegar", sentimento: 1, "ablegar": 1}, +>{texto: "ablegar", sentimento: 1, "ablegar": 1} : { texto: string; sentimento: number; "ablegar": number; } +>texto : string +>"ablegar" : "ablegar" +>sentimento : number +>1 : 1 +>"ablegar" : number +>1 : 1 + + {texto: "abluir", sentimento: 0, "abluir": 0}, +>{texto: "abluir", sentimento: 0, "abluir": 0} : { texto: string; sentimento: number; "abluir": number; } +>texto : string +>"abluir" : "abluir" +>sentimento : number +>0 : 0 +>"abluir" : number +>0 : 0 + + {texto: "abnegada", sentimento: 1, "abnegada": 1}, +>{texto: "abnegada", sentimento: 1, "abnegada": 1} : { texto: string; sentimento: number; "abnegada": number; } +>texto : string +>"abnegada" : "abnegada" +>sentimento : number +>1 : 1 +>"abnegada" : number +>1 : 1 + + {texto: "abnegadas", sentimento: 1, "abnegadas": 1}, +>{texto: "abnegadas", sentimento: 1, "abnegadas": 1} : { texto: string; sentimento: number; "abnegadas": number; } +>texto : string +>"abnegadas" : "abnegadas" +>sentimento : number +>1 : 1 +>"abnegadas" : number +>1 : 1 + + {texto: "abnegado", sentimento: 1, "abnegado": 1}, +>{texto: "abnegado", sentimento: 1, "abnegado": 1} : { texto: string; sentimento: number; "abnegado": number; } +>texto : string +>"abnegado" : "abnegado" +>sentimento : number +>1 : 1 +>"abnegado" : number +>1 : 1 + + {texto: "abnegados", sentimento: 1, "abnegados": 1}, +>{texto: "abnegados", sentimento: 1, "abnegados": 1} : { texto: string; sentimento: number; "abnegados": number; } +>texto : string +>"abnegados" : "abnegados" +>sentimento : number +>1 : 1 +>"abnegados" : number +>1 : 1 + + {texto: "abnegar", sentimento: 1, "abnegar": 1}, +>{texto: "abnegar", sentimento: 1, "abnegar": 1} : { texto: string; sentimento: number; "abnegar": number; } +>texto : string +>"abnegar" : "abnegar" +>sentimento : number +>1 : 1 +>"abnegar" : number +>1 : 1 + + {texto: "abnoitar", sentimento: 1, "abnoitar": 1}, +>{texto: "abnoitar", sentimento: 1, "abnoitar": 1} : { texto: string; sentimento: number; "abnoitar": number; } +>texto : string +>"abnoitar" : "abnoitar" +>sentimento : number +>1 : 1 +>"abnoitar" : number +>1 : 1 + + {texto: "abnormal", sentimento: 1, "abnormal": 1}, +>{texto: "abnormal", sentimento: 1, "abnormal": 1} : { texto: string; sentimento: number; "abnormal": number; } +>texto : string +>"abnormal" : "abnormal" +>sentimento : number +>1 : 1 +>"abnormal" : number +>1 : 1 + + {texto: "abnóxio", sentimento: 1, "abnóxio": 1}, +>{texto: "abnóxio", sentimento: 1, "abnóxio": 1} : { texto: string; sentimento: number; "abnóxio": number; } +>texto : string +>"abnóxio" : "abnóxio" +>sentimento : number +>1 : 1 +>"abnóxio" : number +>1 : 1 + + {texto: "abnuir", sentimento: 1, "abnuir": 1}, +>{texto: "abnuir", sentimento: 1, "abnuir": 1} : { texto: string; sentimento: number; "abnuir": number; } +>texto : string +>"abnuir" : "abnuir" +>sentimento : number +>1 : 1 +>"abnuir" : number +>1 : 1 + + {texto: "abobada", sentimento: -1, "abobada": -1}, +>{texto: "abobada", sentimento: -1, "abobada": -1} : { texto: string; sentimento: number; "abobada": number; } +>texto : string +>"abobada" : "abobada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobada" : number +>-1 : -1 +>1 : 1 + + {texto: "abobadar", sentimento: 0, "abobadar": 0}, +>{texto: "abobadar", sentimento: 0, "abobadar": 0} : { texto: string; sentimento: number; "abobadar": number; } +>texto : string +>"abobadar" : "abobadar" +>sentimento : number +>0 : 0 +>"abobadar" : number +>0 : 0 + + {texto: "abobadas", sentimento: -1, "abobadas": -1}, +>{texto: "abobadas", sentimento: -1, "abobadas": -1} : { texto: string; sentimento: number; "abobadas": number; } +>texto : string +>"abobadas" : "abobadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abobado", sentimento: -1, "abobado": -1}, +>{texto: "abobado", sentimento: -1, "abobado": -1} : { texto: string; sentimento: number; "abobado": number; } +>texto : string +>"abobado" : "abobado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobado" : number +>-1 : -1 +>1 : 1 + + {texto: "abobados", sentimento: -1, "abobados": -1}, +>{texto: "abobados", sentimento: -1, "abobados": -1} : { texto: string; sentimento: number; "abobados": number; } +>texto : string +>"abobados" : "abobados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobados" : number +>-1 : -1 +>1 : 1 + + {texto: "abobalhada", sentimento: -1, "abobalhada": -1}, +>{texto: "abobalhada", sentimento: -1, "abobalhada": -1} : { texto: string; sentimento: number; "abobalhada": number; } +>texto : string +>"abobalhada" : "abobalhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobalhada" : number +>-1 : -1 +>1 : 1 + + {texto: "abobalhadas", sentimento: -1, "abobalhadas": -1}, +>{texto: "abobalhadas", sentimento: -1, "abobalhadas": -1} : { texto: string; sentimento: number; "abobalhadas": number; } +>texto : string +>"abobalhadas" : "abobalhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobalhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abobalhado", sentimento: -1, "abobalhado": -1}, +>{texto: "abobalhado", sentimento: -1, "abobalhado": -1} : { texto: string; sentimento: number; "abobalhado": number; } +>texto : string +>"abobalhado" : "abobalhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobalhado" : number +>-1 : -1 +>1 : 1 + + {texto: "abobalhados", sentimento: -1, "abobalhados": -1}, +>{texto: "abobalhados", sentimento: -1, "abobalhados": -1} : { texto: string; sentimento: number; "abobalhados": number; } +>texto : string +>"abobalhados" : "abobalhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abobalhados" : number +>-1 : -1 +>1 : 1 + + {texto: "abobalhar", sentimento: 1, "abobalhar": 1}, +>{texto: "abobalhar", sentimento: 1, "abobalhar": 1} : { texto: string; sentimento: number; "abobalhar": number; } +>texto : string +>"abobalhar" : "abobalhar" +>sentimento : number +>1 : 1 +>"abobalhar" : number +>1 : 1 + + {texto: "abocanhar", sentimento: -1, "abocanhar": -1}, +>{texto: "abocanhar", sentimento: -1, "abocanhar": -1} : { texto: string; sentimento: number; "abocanhar": number; } +>texto : string +>"abocanhar" : "abocanhar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abocanhar" : number +>-1 : -1 +>1 : 1 + + {texto: "abocar", sentimento: -1, "abocar": -1}, +>{texto: "abocar", sentimento: -1, "abocar": -1} : { texto: string; sentimento: number; "abocar": number; } +>texto : string +>"abocar" : "abocar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abocar" : number +>-1 : -1 +>1 : 1 + + {texto: "abodegado", sentimento: -1, "abodegado": -1}, +>{texto: "abodegado", sentimento: -1, "abodegado": -1} : { texto: string; sentimento: number; "abodegado": number; } +>texto : string +>"abodegado" : "abodegado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abodegado" : number +>-1 : -1 +>1 : 1 + + {texto: "abodegar", sentimento: -1, "abodegar": -1}, +>{texto: "abodegar", sentimento: -1, "abodegar": -1} : { texto: string; sentimento: number; "abodegar": number; } +>texto : string +>"abodegar" : "abodegar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abodegar" : number +>-1 : -1 +>1 : 1 + + {texto: "abolachar", sentimento: 0, "abolachar": 0}, +>{texto: "abolachar", sentimento: 0, "abolachar": 0} : { texto: string; sentimento: number; "abolachar": number; } +>texto : string +>"abolachar" : "abolachar" +>sentimento : number +>0 : 0 +>"abolachar" : number +>0 : 0 + + {texto: "abolar", sentimento: -1, "abolar": -1}, +>{texto: "abolar", sentimento: -1, "abolar": -1} : { texto: string; sentimento: number; "abolar": number; } +>texto : string +>"abolar" : "abolar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abolar" : number +>-1 : -1 +>1 : 1 + + {texto: "abolçar", sentimento: 0, "abolçar": 0}, +>{texto: "abolçar", sentimento: 0, "abolçar": 0} : { texto: string; sentimento: number; "abolçar": number; } +>texto : string +>"abolçar" : "abolçar" +>sentimento : number +>0 : 0 +>"abolçar" : number +>0 : 0 + + {texto: "aboleimar", sentimento: 0, "aboleimar": 0}, +>{texto: "aboleimar", sentimento: 0, "aboleimar": 0} : { texto: string; sentimento: number; "aboleimar": number; } +>texto : string +>"aboleimar" : "aboleimar" +>sentimento : number +>0 : 0 +>"aboleimar" : number +>0 : 0 + + {texto: "aboletar", sentimento: 0, "aboletar": 0}, +>{texto: "aboletar", sentimento: 0, "aboletar": 0} : { texto: string; sentimento: number; "aboletar": number; } +>texto : string +>"aboletar" : "aboletar" +>sentimento : number +>0 : 0 +>"aboletar" : number +>0 : 0 + + {texto: "abolicionista", sentimento: 0, "abolicionista": 0}, +>{texto: "abolicionista", sentimento: 0, "abolicionista": 0} : { texto: string; sentimento: number; "abolicionista": number; } +>texto : string +>"abolicionista" : "abolicionista" +>sentimento : number +>0 : 0 +>"abolicionista" : number +>0 : 0 + + {texto: "abolicionistas", sentimento: 0, "abolicionistas": 0}, +>{texto: "abolicionistas", sentimento: 0, "abolicionistas": 0} : { texto: string; sentimento: number; "abolicionistas": number; } +>texto : string +>"abolicionistas" : "abolicionistas" +>sentimento : number +>0 : 0 +>"abolicionistas" : number +>0 : 0 + + {texto: "abolida", sentimento: -1, "abolida": -1}, +>{texto: "abolida", sentimento: -1, "abolida": -1} : { texto: string; sentimento: number; "abolida": number; } +>texto : string +>"abolida" : "abolida" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abolida" : number +>-1 : -1 +>1 : 1 + + {texto: "abolidas", sentimento: -1, "abolidas": -1}, +>{texto: "abolidas", sentimento: -1, "abolidas": -1} : { texto: string; sentimento: number; "abolidas": number; } +>texto : string +>"abolidas" : "abolidas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abolidas" : number +>-1 : -1 +>1 : 1 + + {texto: "abolido", sentimento: -1, "abolido": -1}, +>{texto: "abolido", sentimento: -1, "abolido": -1} : { texto: string; sentimento: number; "abolido": number; } +>texto : string +>"abolido" : "abolido" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abolido" : number +>-1 : -1 +>1 : 1 + + {texto: "abolidos", sentimento: -1, "abolidos": -1}, +>{texto: "abolidos", sentimento: -1, "abolidos": -1} : { texto: string; sentimento: number; "abolidos": number; } +>texto : string +>"abolidos" : "abolidos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abolidos" : number +>-1 : -1 +>1 : 1 + + {texto: "abolir", sentimento: -1, "abolir": -1}, +>{texto: "abolir", sentimento: -1, "abolir": -1} : { texto: string; sentimento: number; "abolir": number; } +>texto : string +>"abolir" : "abolir" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abolir" : number +>-1 : -1 +>1 : 1 + + {texto: "abolorecer", sentimento: 1, "abolorecer": 1}, +>{texto: "abolorecer", sentimento: 1, "abolorecer": 1} : { texto: string; sentimento: number; "abolorecer": number; } +>texto : string +>"abolorecer" : "abolorecer" +>sentimento : number +>1 : 1 +>"abolorecer" : number +>1 : 1 + + {texto: "abolorentar", sentimento: 1, "abolorentar": 1}, +>{texto: "abolorentar", sentimento: 1, "abolorentar": 1} : { texto: string; sentimento: number; "abolorentar": number; } +>texto : string +>"abolorentar" : "abolorentar" +>sentimento : number +>1 : 1 +>"abolorentar" : number +>1 : 1 + + {texto: "abolsar", sentimento: 1, "abolsar": 1}, +>{texto: "abolsar", sentimento: 1, "abolsar": 1} : { texto: string; sentimento: number; "abolsar": number; } +>texto : string +>"abolsar" : "abolsar" +>sentimento : number +>1 : 1 +>"abolsar" : number +>1 : 1 + + {texto: "abomina", sentimento: -3, "abomina": -3}, +>{texto: "abomina", sentimento: -3, "abomina": -3} : { texto: string; sentimento: number; "abomina": number; } +>texto : string +>"abomina" : "abomina" +>sentimento : number +>-3 : -3 +>3 : 3 +>"abomina" : number +>-3 : -3 +>3 : 3 + + {texto: "abominado", sentimento: -1, "abominado": -1}, +>{texto: "abominado", sentimento: -1, "abominado": -1} : { texto: string; sentimento: number; "abominado": number; } +>texto : string +>"abominado" : "abominado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominado" : number +>-1 : -1 +>1 : 1 + + {texto: "abominador", sentimento: -1, "abominador": -1}, +>{texto: "abominador", sentimento: -1, "abominador": -1} : { texto: string; sentimento: number; "abominador": number; } +>texto : string +>"abominador" : "abominador" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominador" : number +>-1 : -1 +>1 : 1 + + {texto: "abominadora", sentimento: -1, "abominadora": -1}, +>{texto: "abominadora", sentimento: -1, "abominadora": -1} : { texto: string; sentimento: number; "abominadora": number; } +>texto : string +>"abominadora" : "abominadora" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominadora" : number +>-1 : -1 +>1 : 1 + + {texto: "abominadoras", sentimento: -1, "abominadoras": -1}, +>{texto: "abominadoras", sentimento: -1, "abominadoras": -1} : { texto: string; sentimento: number; "abominadoras": number; } +>texto : string +>"abominadoras" : "abominadoras" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominadoras" : number +>-1 : -1 +>1 : 1 + + {texto: "abominadores", sentimento: -1, "abominadores": -1}, +>{texto: "abominadores", sentimento: -1, "abominadores": -1} : { texto: string; sentimento: number; "abominadores": number; } +>texto : string +>"abominadores" : "abominadores" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominadores" : number +>-1 : -1 +>1 : 1 + + {texto: "abominanda", sentimento: -1, "abominanda": -1}, +>{texto: "abominanda", sentimento: -1, "abominanda": -1} : { texto: string; sentimento: number; "abominanda": number; } +>texto : string +>"abominanda" : "abominanda" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominanda" : number +>-1 : -1 +>1 : 1 + + {texto: "abominandas", sentimento: -1, "abominandas": -1}, +>{texto: "abominandas", sentimento: -1, "abominandas": -1} : { texto: string; sentimento: number; "abominandas": number; } +>texto : string +>"abominandas" : "abominandas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominandas" : number +>-1 : -1 +>1 : 1 + + {texto: "abominando", sentimento: -1, "abominando": -1}, +>{texto: "abominando", sentimento: -1, "abominando": -1} : { texto: string; sentimento: number; "abominando": number; } +>texto : string +>"abominando" : "abominando" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominando" : number +>-1 : -1 +>1 : 1 + + {texto: "abominandos", sentimento: -1, "abominandos": -1}, +>{texto: "abominandos", sentimento: -1, "abominandos": -1} : { texto: string; sentimento: number; "abominandos": number; } +>texto : string +>"abominandos" : "abominandos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominandos" : number +>-1 : -1 +>1 : 1 + + {texto: "abominar", sentimento: -3, "abominar": -3}, +>{texto: "abominar", sentimento: -3, "abominar": -3} : { texto: string; sentimento: number; "abominar": number; } +>texto : string +>"abominar" : "abominar" +>sentimento : number +>-3 : -3 +>3 : 3 +>"abominar" : number +>-3 : -3 +>3 : 3 + + {texto: "abomináveis", sentimento: -1, "abomináveis": -1}, +>{texto: "abomináveis", sentimento: -1, "abomináveis": -1} : { texto: string; sentimento: number; "abomináveis": number; } +>texto : string +>"abomináveis" : "abomináveis" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abomináveis" : number +>-1 : -1 +>1 : 1 + + {texto: "abominável", sentimento: -1, "abominável": -1}, +>{texto: "abominável", sentimento: -1, "abominável": -1} : { texto: string; sentimento: number; "abominável": number; } +>texto : string +>"abominável" : "abominável" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominável" : number +>-1 : -1 +>1 : 1 + + {texto: "abominoso", sentimento: -1, "abominoso": -1}, +>{texto: "abominoso", sentimento: -1, "abominoso": -1} : { texto: string; sentimento: number; "abominoso": number; } +>texto : string +>"abominoso" : "abominoso" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abominoso" : number +>-1 : -1 +>1 : 1 + + {texto: "abominou", sentimento: -3, "abominou": -3}, +>{texto: "abominou", sentimento: -3, "abominou": -3} : { texto: string; sentimento: number; "abominou": number; } +>texto : string +>"abominou" : "abominou" +>sentimento : number +>-3 : -3 +>3 : 3 +>"abominou" : number +>-3 : -3 +>3 : 3 + + {texto: "abonada", sentimento: 1, "abonada": 1}, +>{texto: "abonada", sentimento: 1, "abonada": 1} : { texto: string; sentimento: number; "abonada": number; } +>texto : string +>"abonada" : "abonada" +>sentimento : number +>1 : 1 +>"abonada" : number +>1 : 1 + + {texto: "abonadas", sentimento: 1, "abonadas": 1}, +>{texto: "abonadas", sentimento: 1, "abonadas": 1} : { texto: string; sentimento: number; "abonadas": number; } +>texto : string +>"abonadas" : "abonadas" +>sentimento : number +>1 : 1 +>"abonadas" : number +>1 : 1 + + {texto: "abonado", sentimento: 1, "abonado": 1}, +>{texto: "abonado", sentimento: 1, "abonado": 1} : { texto: string; sentimento: number; "abonado": number; } +>texto : string +>"abonado" : "abonado" +>sentimento : number +>1 : 1 +>"abonado" : number +>1 : 1 + + {texto: "abonados", sentimento: 1, "abonados": 1}, +>{texto: "abonados", sentimento: 1, "abonados": 1} : { texto: string; sentimento: number; "abonados": number; } +>texto : string +>"abonados" : "abonados" +>sentimento : number +>1 : 1 +>"abonados" : number +>1 : 1 + + {texto: "abonançar-se", sentimento: 1, "abonançar-se": 1}, +>{texto: "abonançar-se", sentimento: 1, "abonançar-se": 1} : { texto: string; sentimento: number; "abonançar-se": number; } +>texto : string +>"abonançar-se" : "abonançar-se" +>sentimento : number +>1 : 1 +>"abonançar-se" : number +>1 : 1 + + {texto: "abonançar", sentimento: 0, "abonançar": 0}, +>{texto: "abonançar", sentimento: 0, "abonançar": 0} : { texto: string; sentimento: number; "abonançar": number; } +>texto : string +>"abonançar" : "abonançar" +>sentimento : number +>0 : 0 +>"abonançar" : number +>0 : 0 + + {texto: "abonar", sentimento: 0, "abonar": 0}, +>{texto: "abonar", sentimento: 0, "abonar": 0} : { texto: string; sentimento: number; "abonar": number; } +>texto : string +>"abonar" : "abonar" +>sentimento : number +>0 : 0 +>"abonar" : number +>0 : 0 + + {texto: "abonatória", sentimento: 1, "abonatória": 1}, +>{texto: "abonatória", sentimento: 1, "abonatória": 1} : { texto: string; sentimento: number; "abonatória": number; } +>texto : string +>"abonatória" : "abonatória" +>sentimento : number +>1 : 1 +>"abonatória" : number +>1 : 1 + + {texto: "abonatórias", sentimento: 1, "abonatórias": 1}, +>{texto: "abonatórias", sentimento: 1, "abonatórias": 1} : { texto: string; sentimento: number; "abonatórias": number; } +>texto : string +>"abonatórias" : "abonatórias" +>sentimento : number +>1 : 1 +>"abonatórias" : number +>1 : 1 + + {texto: "abonatório", sentimento: 1, "abonatório": 1}, +>{texto: "abonatório", sentimento: 1, "abonatório": 1} : { texto: string; sentimento: number; "abonatório": number; } +>texto : string +>"abonatório" : "abonatório" +>sentimento : number +>1 : 1 +>"abonatório" : number +>1 : 1 + + {texto: "abonatórios", sentimento: 1, "abonatórios": 1}, +>{texto: "abonatórios", sentimento: 1, "abonatórios": 1} : { texto: string; sentimento: number; "abonatórios": number; } +>texto : string +>"abonatórios" : "abonatórios" +>sentimento : number +>1 : 1 +>"abonatórios" : number +>1 : 1 + + {texto: "abonecada", sentimento: 0, "abonecada": 0}, +>{texto: "abonecada", sentimento: 0, "abonecada": 0} : { texto: string; sentimento: number; "abonecada": number; } +>texto : string +>"abonecada" : "abonecada" +>sentimento : number +>0 : 0 +>"abonecada" : number +>0 : 0 + + {texto: "abonecadas", sentimento: 0, "abonecadas": 0}, +>{texto: "abonecadas", sentimento: 0, "abonecadas": 0} : { texto: string; sentimento: number; "abonecadas": number; } +>texto : string +>"abonecadas" : "abonecadas" +>sentimento : number +>0 : 0 +>"abonecadas" : number +>0 : 0 + + {texto: "abonecado", sentimento: 0, "abonecado": 0}, +>{texto: "abonecado", sentimento: 0, "abonecado": 0} : { texto: string; sentimento: number; "abonecado": number; } +>texto : string +>"abonecado" : "abonecado" +>sentimento : number +>0 : 0 +>"abonecado" : number +>0 : 0 + + {texto: "abonecados", sentimento: 0, "abonecados": 0}, +>{texto: "abonecados", sentimento: 0, "abonecados": 0} : { texto: string; sentimento: number; "abonecados": number; } +>texto : string +>"abonecados" : "abonecados" +>sentimento : number +>0 : 0 +>"abonecados" : number +>0 : 0 + + {texto: "aboquejar", sentimento: -1, "aboquejar": -1}, +>{texto: "aboquejar", sentimento: -1, "aboquejar": -1} : { texto: string; sentimento: number; "aboquejar": number; } +>texto : string +>"aboquejar" : "aboquejar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aboquejar" : number +>-1 : -1 +>1 : 1 + + {texto: "aborcar", sentimento: -1, "aborcar": -1}, +>{texto: "aborcar", sentimento: -1, "aborcar": -1} : { texto: string; sentimento: number; "aborcar": number; } +>texto : string +>"aborcar" : "aborcar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborcar" : number +>-1 : -1 +>1 : 1 + + {texto: "abordar", sentimento: 0, "abordar": 0}, +>{texto: "abordar", sentimento: 0, "abordar": 0} : { texto: string; sentimento: number; "abordar": number; } +>texto : string +>"abordar" : "abordar" +>sentimento : number +>0 : 0 +>"abordar" : number +>0 : 0 + + {texto: "aborígene", sentimento: -1, "aborígene": -1}, +>{texto: "aborígene", sentimento: -1, "aborígene": -1} : { texto: string; sentimento: number; "aborígene": number; } +>texto : string +>"aborígene" : "aborígene" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborígene" : number +>-1 : -1 +>1 : 1 + + {texto: "aborígenes", sentimento: -1, "aborígenes": -1}, +>{texto: "aborígenes", sentimento: -1, "aborígenes": -1} : { texto: string; sentimento: number; "aborígenes": number; } +>texto : string +>"aborígenes" : "aborígenes" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborígenes" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrecedor", sentimento: -1, "aborrecedor": -1}, +>{texto: "aborrecedor", sentimento: -1, "aborrecedor": -1} : { texto: string; sentimento: number; "aborrecedor": number; } +>texto : string +>"aborrecedor" : "aborrecedor" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrecedor" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1}, +>{texto: "aborrecer-se", sentimento: 1, "aborrecer-se": 1} : { texto: string; sentimento: number; "aborrecer-se": number; } +>texto : string +>"aborrecer-se" : "aborrecer-se" +>sentimento : number +>1 : 1 +>"aborrecer-se" : number +>1 : 1 + + {texto: "aborrecer", sentimento: -1, "aborrecer": -1}, +>{texto: "aborrecer", sentimento: -1, "aborrecer": -1} : { texto: string; sentimento: number; "aborrecer": number; } +>texto : string +>"aborrecer" : "aborrecer" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrecer" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrecida", sentimento: -1, "aborrecida": -1}, +>{texto: "aborrecida", sentimento: -1, "aborrecida": -1} : { texto: string; sentimento: number; "aborrecida": number; } +>texto : string +>"aborrecida" : "aborrecida" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrecida" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrecidas", sentimento: -1, "aborrecidas": -1}, +>{texto: "aborrecidas", sentimento: -1, "aborrecidas": -1} : { texto: string; sentimento: number; "aborrecidas": number; } +>texto : string +>"aborrecidas" : "aborrecidas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrecidas" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrecido", sentimento: -1, "aborrecido": -1}, +>{texto: "aborrecido", sentimento: -1, "aborrecido": -1} : { texto: string; sentimento: number; "aborrecido": number; } +>texto : string +>"aborrecido" : "aborrecido" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrecido" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrecido", sentimento: -2, "aborrecido": -2}, +>{texto: "aborrecido", sentimento: -2, "aborrecido": -2} : { texto: string; sentimento: number; "aborrecido": number; } +>texto : string +>"aborrecido" : "aborrecido" +>sentimento : number +>-2 : -2 +>2 : 2 +>"aborrecido" : number +>-2 : -2 +>2 : 2 + + {texto: "aborrecidos", sentimento: -1, "aborrecidos": -1}, +>{texto: "aborrecidos", sentimento: -1, "aborrecidos": -1} : { texto: string; sentimento: number; "aborrecidos": number; } +>texto : string +>"aborrecidos" : "aborrecidos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrecidos" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrecimento", sentimento: -2, "aborrecimento": -2}, +>{texto: "aborrecimento", sentimento: -2, "aborrecimento": -2} : { texto: string; sentimento: number; "aborrecimento": number; } +>texto : string +>"aborrecimento" : "aborrecimento" +>sentimento : number +>-2 : -2 +>2 : 2 +>"aborrecimento" : number +>-2 : -2 +>2 : 2 + + {texto: "aborrecível", sentimento: -1, "aborrecível": -1}, +>{texto: "aborrecível", sentimento: -1, "aborrecível": -1} : { texto: string; sentimento: number; "aborrecível": number; } +>texto : string +>"aborrecível" : "aborrecível" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrecível" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrido", sentimento: -1, "aborrido": -1}, +>{texto: "aborrido", sentimento: -1, "aborrido": -1} : { texto: string; sentimento: number; "aborrido": number; } +>texto : string +>"aborrido" : "aborrido" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrido" : number +>-1 : -1 +>1 : 1 + + {texto: "aborrível", sentimento: -1, "aborrível": -1}, +>{texto: "aborrível", sentimento: -1, "aborrível": -1} : { texto: string; sentimento: number; "aborrível": number; } +>texto : string +>"aborrível" : "aborrível" +>sentimento : number +>-1 : -1 +>1 : 1 +>"aborrível" : number +>-1 : -1 +>1 : 1 + + {texto: "abortada", sentimento: -1, "abortada": -1}, +>{texto: "abortada", sentimento: -1, "abortada": -1} : { texto: string; sentimento: number; "abortada": number; } +>texto : string +>"abortada" : "abortada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abortada" : number +>-1 : -1 +>1 : 1 + + {texto: "abortadas", sentimento: -1, "abortadas": -1}, +>{texto: "abortadas", sentimento: -1, "abortadas": -1} : { texto: string; sentimento: number; "abortadas": number; } +>texto : string +>"abortadas" : "abortadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abortadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abortado", sentimento: -1, "abortado": -1}, +>{texto: "abortado", sentimento: -1, "abortado": -1} : { texto: string; sentimento: number; "abortado": number; } +>texto : string +>"abortado" : "abortado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abortado" : number +>-1 : -1 +>1 : 1 + + {texto: "abortados", sentimento: -1, "abortados": -1}, +>{texto: "abortados", sentimento: -1, "abortados": -1} : { texto: string; sentimento: number; "abortados": number; } +>texto : string +>"abortados" : "abortados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abortados" : number +>-1 : -1 +>1 : 1 + + {texto: "abortar", sentimento: -1, "abortar": -1}, +>{texto: "abortar", sentimento: -1, "abortar": -1} : { texto: string; sentimento: number; "abortar": number; } +>texto : string +>"abortar" : "abortar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abortar" : number +>-1 : -1 +>1 : 1 + + {texto: "abotoar", sentimento: 0, "abotoar": 0}, +>{texto: "abotoar", sentimento: 0, "abotoar": 0} : { texto: string; sentimento: number; "abotoar": number; } +>texto : string +>"abotoar" : "abotoar" +>sentimento : number +>0 : 0 +>"abotoar" : number +>0 : 0 + + {texto: "abraçada", sentimento: 1, "abraçada": 1}, +>{texto: "abraçada", sentimento: 1, "abraçada": 1} : { texto: string; sentimento: number; "abraçada": number; } +>texto : string +>"abraçada" : "abraçada" +>sentimento : number +>1 : 1 +>"abraçada" : number +>1 : 1 + + {texto: "abracadabrante", sentimento: 1, "abracadabrante": 1}, +>{texto: "abracadabrante", sentimento: 1, "abracadabrante": 1} : { texto: string; sentimento: number; "abracadabrante": number; } +>texto : string +>"abracadabrante" : "abracadabrante" +>sentimento : number +>1 : 1 +>"abracadabrante" : number +>1 : 1 + + {texto: "abracadábrico", sentimento: 1, "abracadábrico": 1}, +>{texto: "abracadábrico", sentimento: 1, "abracadábrico": 1} : { texto: string; sentimento: number; "abracadábrico": number; } +>texto : string +>"abracadábrico" : "abracadábrico" +>sentimento : number +>1 : 1 +>"abracadábrico" : number +>1 : 1 + + {texto: "abraçadas", sentimento: 1, "abraçadas": 1}, +>{texto: "abraçadas", sentimento: 1, "abraçadas": 1} : { texto: string; sentimento: number; "abraçadas": number; } +>texto : string +>"abraçadas" : "abraçadas" +>sentimento : number +>1 : 1 +>"abraçadas" : number +>1 : 1 + + {texto: "abraçado", sentimento: 1, "abraçado": 1}, +>{texto: "abraçado", sentimento: 1, "abraçado": 1} : { texto: string; sentimento: number; "abraçado": number; } +>texto : string +>"abraçado" : "abraçado" +>sentimento : number +>1 : 1 +>"abraçado" : number +>1 : 1 + + {texto: "abraçados", sentimento: 1, "abraçados": 1}, +>{texto: "abraçados", sentimento: 1, "abraçados": 1} : { texto: string; sentimento: number; "abraçados": number; } +>texto : string +>"abraçados" : "abraçados" +>sentimento : number +>1 : 1 +>"abraçados" : number +>1 : 1 + + {texto: "abraçar-se", sentimento: 1, "abraçar-se": 1}, +>{texto: "abraçar-se", sentimento: 1, "abraçar-se": 1} : { texto: string; sentimento: number; "abraçar-se": number; } +>texto : string +>"abraçar-se" : "abraçar-se" +>sentimento : number +>1 : 1 +>"abraçar-se" : number +>1 : 1 + + {texto: "abraçar", sentimento: 0, "abraçar": 0}, +>{texto: "abraçar", sentimento: 0, "abraçar": 0} : { texto: string; sentimento: number; "abraçar": number; } +>texto : string +>"abraçar" : "abraçar" +>sentimento : number +>0 : 0 +>"abraçar" : number +>0 : 0 + + {texto: "abraço", sentimento: 1, "abraço": 1}, +>{texto: "abraço", sentimento: 1, "abraço": 1} : { texto: string; sentimento: number; "abraço": number; } +>texto : string +>"abraço" : "abraço" +>sentimento : number +>1 : 1 +>"abraço" : number +>1 : 1 + + {texto: "abraço", sentimento: 2, "abraço": 2}, +>{texto: "abraço", sentimento: 2, "abraço": 2} : { texto: string; sentimento: number; "abraço": number; } +>texto : string +>"abraço" : "abraço" +>sentimento : number +>2 : 2 +>"abraço" : number +>2 : 2 + + {texto: "abraços", sentimento: 2, "abraços": 2}, +>{texto: "abraços", sentimento: 2, "abraços": 2} : { texto: string; sentimento: number; "abraços": number; } +>texto : string +>"abraços" : "abraços" +>sentimento : number +>2 : 2 +>"abraços" : number +>2 : 2 + + {texto: "abrancar", sentimento: 1, "abrancar": 1}, +>{texto: "abrancar", sentimento: 1, "abrancar": 1} : { texto: string; sentimento: number; "abrancar": number; } +>texto : string +>"abrancar" : "abrancar" +>sentimento : number +>1 : 1 +>"abrancar" : number +>1 : 1 + + {texto: "abrandar-se", sentimento: 1, "abrandar-se": 1}, +>{texto: "abrandar-se", sentimento: 1, "abrandar-se": 1} : { texto: string; sentimento: number; "abrandar-se": number; } +>texto : string +>"abrandar-se" : "abrandar-se" +>sentimento : number +>1 : 1 +>"abrandar-se" : number +>1 : 1 + + {texto: "abrandar", sentimento: 0, "abrandar": 0}, +>{texto: "abrandar", sentimento: 0, "abrandar": 0} : { texto: string; sentimento: number; "abrandar": number; } +>texto : string +>"abrandar" : "abrandar" +>sentimento : number +>0 : 0 +>"abrandar" : number +>0 : 0 + + {texto: "abrangente", sentimento: 1, "abrangente": 1}, +>{texto: "abrangente", sentimento: 1, "abrangente": 1} : { texto: string; sentimento: number; "abrangente": number; } +>texto : string +>"abrangente" : "abrangente" +>sentimento : number +>1 : 1 +>"abrangente" : number +>1 : 1 + + {texto: "abrangentes", sentimento: 1, "abrangentes": 1}, +>{texto: "abrangentes", sentimento: 1, "abrangentes": 1} : { texto: string; sentimento: number; "abrangentes": number; } +>texto : string +>"abrangentes" : "abrangentes" +>sentimento : number +>1 : 1 +>"abrangentes" : number +>1 : 1 + + {texto: "abranger", sentimento: 0, "abranger": 0}, +>{texto: "abranger", sentimento: 0, "abranger": 0} : { texto: string; sentimento: number; "abranger": number; } +>texto : string +>"abranger" : "abranger" +>sentimento : number +>0 : 0 +>"abranger" : number +>0 : 0 + + {texto: "abrangida", sentimento: -1, "abrangida": -1}, +>{texto: "abrangida", sentimento: -1, "abrangida": -1} : { texto: string; sentimento: number; "abrangida": number; } +>texto : string +>"abrangida" : "abrangida" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrangida" : number +>-1 : -1 +>1 : 1 + + {texto: "abrangidas", sentimento: -1, "abrangidas": -1}, +>{texto: "abrangidas", sentimento: -1, "abrangidas": -1} : { texto: string; sentimento: number; "abrangidas": number; } +>texto : string +>"abrangidas" : "abrangidas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrangidas" : number +>-1 : -1 +>1 : 1 + + {texto: "abrangido", sentimento: -1, "abrangido": -1}, +>{texto: "abrangido", sentimento: -1, "abrangido": -1} : { texto: string; sentimento: number; "abrangido": number; } +>texto : string +>"abrangido" : "abrangido" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrangido" : number +>-1 : -1 +>1 : 1 + + {texto: "abrangidos", sentimento: -1, "abrangidos": -1}, +>{texto: "abrangidos", sentimento: -1, "abrangidos": -1} : { texto: string; sentimento: number; "abrangidos": number; } +>texto : string +>"abrangidos" : "abrangidos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrangidos" : number +>-1 : -1 +>1 : 1 + + {texto: "abrasar-se", sentimento: 1, "abrasar-se": 1}, +>{texto: "abrasar-se", sentimento: 1, "abrasar-se": 1} : { texto: string; sentimento: number; "abrasar-se": number; } +>texto : string +>"abrasar-se" : "abrasar-se" +>sentimento : number +>1 : 1 +>"abrasar-se" : number +>1 : 1 + + {texto: "abrasar", sentimento: 0, "abrasar": 0}, +>{texto: "abrasar", sentimento: 0, "abrasar": 0} : { texto: string; sentimento: number; "abrasar": number; } +>texto : string +>"abrasar" : "abrasar" +>sentimento : number +>0 : 0 +>"abrasar" : number +>0 : 0 + + {texto: "abrasear", sentimento: -1, "abrasear": -1}, +>{texto: "abrasear", sentimento: -1, "abrasear": -1} : { texto: string; sentimento: number; "abrasear": number; } +>texto : string +>"abrasear" : "abrasear" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrasear" : number +>-1 : -1 +>1 : 1 + + {texto: "abrasileirada", sentimento: 0, "abrasileirada": 0}, +>{texto: "abrasileirada", sentimento: 0, "abrasileirada": 0} : { texto: string; sentimento: number; "abrasileirada": number; } +>texto : string +>"abrasileirada" : "abrasileirada" +>sentimento : number +>0 : 0 +>"abrasileirada" : number +>0 : 0 + + {texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0}, +>{texto: "abrasileiradas", sentimento: 0, "abrasileiradas": 0} : { texto: string; sentimento: number; "abrasileiradas": number; } +>texto : string +>"abrasileiradas" : "abrasileiradas" +>sentimento : number +>0 : 0 +>"abrasileiradas" : number +>0 : 0 + + {texto: "abrasileirado", sentimento: 0, "abrasileirado": 0}, +>{texto: "abrasileirado", sentimento: 0, "abrasileirado": 0} : { texto: string; sentimento: number; "abrasileirado": number; } +>texto : string +>"abrasileirado" : "abrasileirado" +>sentimento : number +>0 : 0 +>"abrasileirado" : number +>0 : 0 + + {texto: "abrasileirados", sentimento: 0, "abrasileirados": 0}, +>{texto: "abrasileirados", sentimento: 0, "abrasileirados": 0} : { texto: string; sentimento: number; "abrasileirados": number; } +>texto : string +>"abrasileirados" : "abrasileirados" +>sentimento : number +>0 : 0 +>"abrasileirados" : number +>0 : 0 + + {texto: "abrejar", sentimento: 1, "abrejar": 1}, +>{texto: "abrejar", sentimento: 1, "abrejar": 1} : { texto: string; sentimento: number; "abrejar": number; } +>texto : string +>"abrejar" : "abrejar" +>sentimento : number +>1 : 1 +>"abrejar" : number +>1 : 1 + + {texto: "abreviar", sentimento: 0, "abreviar": 0}, +>{texto: "abreviar", sentimento: 0, "abreviar": 0} : { texto: string; sentimento: number; "abreviar": number; } +>texto : string +>"abreviar" : "abreviar" +>sentimento : number +>0 : 0 +>"abreviar" : number +>0 : 0 + + {texto: "abrigada", sentimento: 0, "abrigada": 0}, +>{texto: "abrigada", sentimento: 0, "abrigada": 0} : { texto: string; sentimento: number; "abrigada": number; } +>texto : string +>"abrigada" : "abrigada" +>sentimento : number +>0 : 0 +>"abrigada" : number +>0 : 0 + + {texto: "abrigadas", sentimento: 0, "abrigadas": 0}, +>{texto: "abrigadas", sentimento: 0, "abrigadas": 0} : { texto: string; sentimento: number; "abrigadas": number; } +>texto : string +>"abrigadas" : "abrigadas" +>sentimento : number +>0 : 0 +>"abrigadas" : number +>0 : 0 + + {texto: "abrigado", sentimento: 0, "abrigado": 0}, +>{texto: "abrigado", sentimento: 0, "abrigado": 0} : { texto: string; sentimento: number; "abrigado": number; } +>texto : string +>"abrigado" : "abrigado" +>sentimento : number +>0 : 0 +>"abrigado" : number +>0 : 0 + + {texto: "abrigados", sentimento: 0, "abrigados": 0}, +>{texto: "abrigados", sentimento: 0, "abrigados": 0} : { texto: string; sentimento: number; "abrigados": number; } +>texto : string +>"abrigados" : "abrigados" +>sentimento : number +>0 : 0 +>"abrigados" : number +>0 : 0 + + {texto: "abrigar", sentimento: -1, "abrigar": -1}, +>{texto: "abrigar", sentimento: -1, "abrigar": -1} : { texto: string; sentimento: number; "abrigar": number; } +>texto : string +>"abrigar" : "abrigar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrigar" : number +>-1 : -1 +>1 : 1 + + {texto: "abrilhantada", sentimento: 1, "abrilhantada": 1}, +>{texto: "abrilhantada", sentimento: 1, "abrilhantada": 1} : { texto: string; sentimento: number; "abrilhantada": number; } +>texto : string +>"abrilhantada" : "abrilhantada" +>sentimento : number +>1 : 1 +>"abrilhantada" : number +>1 : 1 + + {texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1}, +>{texto: "abrilhantadas", sentimento: 1, "abrilhantadas": 1} : { texto: string; sentimento: number; "abrilhantadas": number; } +>texto : string +>"abrilhantadas" : "abrilhantadas" +>sentimento : number +>1 : 1 +>"abrilhantadas" : number +>1 : 1 + + {texto: "abrilhantado", sentimento: 1, "abrilhantado": 1}, +>{texto: "abrilhantado", sentimento: 1, "abrilhantado": 1} : { texto: string; sentimento: number; "abrilhantado": number; } +>texto : string +>"abrilhantado" : "abrilhantado" +>sentimento : number +>1 : 1 +>"abrilhantado" : number +>1 : 1 + + {texto: "abrilhantados", sentimento: 1, "abrilhantados": 1}, +>{texto: "abrilhantados", sentimento: 1, "abrilhantados": 1} : { texto: string; sentimento: number; "abrilhantados": number; } +>texto : string +>"abrilhantados" : "abrilhantados" +>sentimento : number +>1 : 1 +>"abrilhantados" : number +>1 : 1 + + {texto: "abrilhantar", sentimento: 0, "abrilhantar": 0}, +>{texto: "abrilhantar", sentimento: 0, "abrilhantar": 0} : { texto: string; sentimento: number; "abrilhantar": number; } +>texto : string +>"abrilhantar" : "abrilhantar" +>sentimento : number +>0 : 0 +>"abrilhantar" : number +>0 : 0 + + {texto: "abrir mão de", sentimento: -1, "abrir mão de": -1}, +>{texto: "abrir mão de", sentimento: -1, "abrir mão de": -1} : { texto: string; sentimento: number; "abrir mão de": number; } +>texto : string +>"abrir mão de" : "abrir mão de" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrir mão de" : number +>-1 : -1 +>1 : 1 + + {texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1}, +>{texto: "abrir o possibilidade de", sentimento: 1, "abrir o possibilidade de": 1} : { texto: string; sentimento: number; "abrir o possibilidade de": number; } +>texto : string +>"abrir o possibilidade de" : "abrir o possibilidade de" +>sentimento : number +>1 : 1 +>"abrir o possibilidade de" : number +>1 : 1 + + {texto: "abrir-se", sentimento: -1, "abrir-se": -1}, +>{texto: "abrir-se", sentimento: -1, "abrir-se": -1} : { texto: string; sentimento: number; "abrir-se": number; } +>texto : string +>"abrir-se" : "abrir-se" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrir-se" : number +>-1 : -1 +>1 : 1 + + {texto: "abrir", sentimento: -1, "abrir": -1}, +>{texto: "abrir", sentimento: -1, "abrir": -1} : { texto: string; sentimento: number; "abrir": number; } +>texto : string +>"abrir" : "abrir" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrir" : number +>-1 : -1 +>1 : 1 + + {texto: "abrolhar", sentimento: 0, "abrolhar": 0}, +>{texto: "abrolhar", sentimento: 0, "abrolhar": 0} : { texto: string; sentimento: number; "abrolhar": number; } +>texto : string +>"abrolhar" : "abrolhar" +>sentimento : number +>0 : 0 +>"abrolhar" : number +>0 : 0 + + {texto: "abrupta", sentimento: -1, "abrupta": -1}, +>{texto: "abrupta", sentimento: -1, "abrupta": -1} : { texto: string; sentimento: number; "abrupta": number; } +>texto : string +>"abrupta" : "abrupta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrupta" : number +>-1 : -1 +>1 : 1 + + {texto: "abruptas", sentimento: -1, "abruptas": -1}, +>{texto: "abruptas", sentimento: -1, "abruptas": -1} : { texto: string; sentimento: number; "abruptas": number; } +>texto : string +>"abruptas" : "abruptas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abruptas" : number +>-1 : -1 +>1 : 1 + + {texto: "abrupto", sentimento: -1, "abrupto": -1}, +>{texto: "abrupto", sentimento: -1, "abrupto": -1} : { texto: string; sentimento: number; "abrupto": number; } +>texto : string +>"abrupto" : "abrupto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrupto" : number +>-1 : -1 +>1 : 1 + + {texto: "abruptos", sentimento: -1, "abruptos": -1}, +>{texto: "abruptos", sentimento: -1, "abruptos": -1} : { texto: string; sentimento: number; "abruptos": number; } +>texto : string +>"abruptos" : "abruptos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abruptos" : number +>-1 : -1 +>1 : 1 + + {texto: "abrutado", sentimento: -1, "abrutado": -1}, +>{texto: "abrutado", sentimento: -1, "abrutado": -1} : { texto: string; sentimento: number; "abrutado": number; } +>texto : string +>"abrutado" : "abrutado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrutado" : number +>-1 : -1 +>1 : 1 + + {texto: "abrutalhada", sentimento: -1, "abrutalhada": -1}, +>{texto: "abrutalhada", sentimento: -1, "abrutalhada": -1} : { texto: string; sentimento: number; "abrutalhada": number; } +>texto : string +>"abrutalhada" : "abrutalhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrutalhada" : number +>-1 : -1 +>1 : 1 + + {texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1}, +>{texto: "abrutalhadas", sentimento: -1, "abrutalhadas": -1} : { texto: string; sentimento: number; "abrutalhadas": number; } +>texto : string +>"abrutalhadas" : "abrutalhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrutalhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abrutalhado", sentimento: -1, "abrutalhado": -1}, +>{texto: "abrutalhado", sentimento: -1, "abrutalhado": -1} : { texto: string; sentimento: number; "abrutalhado": number; } +>texto : string +>"abrutalhado" : "abrutalhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrutalhado" : number +>-1 : -1 +>1 : 1 + + {texto: "abrutalhados", sentimento: -1, "abrutalhados": -1}, +>{texto: "abrutalhados", sentimento: -1, "abrutalhados": -1} : { texto: string; sentimento: number; "abrutalhados": number; } +>texto : string +>"abrutalhados" : "abrutalhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abrutalhados" : number +>-1 : -1 +>1 : 1 + + {texto: "abrutalhar", sentimento: 1, "abrutalhar": 1}, +>{texto: "abrutalhar", sentimento: 1, "abrutalhar": 1} : { texto: string; sentimento: number; "abrutalhar": number; } +>texto : string +>"abrutalhar" : "abrutalhar" +>sentimento : number +>1 : 1 +>"abrutalhar" : number +>1 : 1 + + {texto: "abrutar", sentimento: 1, "abrutar": 1}, +>{texto: "abrutar", sentimento: 1, "abrutar": 1} : { texto: string; sentimento: number; "abrutar": number; } +>texto : string +>"abrutar" : "abrutar" +>sentimento : number +>1 : 1 +>"abrutar" : number +>1 : 1 + + {texto: "abscidar-se", sentimento: 1, "abscidar-se": 1}, +>{texto: "abscidar-se", sentimento: 1, "abscidar-se": 1} : { texto: string; sentimento: number; "abscidar-se": number; } +>texto : string +>"abscidar-se" : "abscidar-se" +>sentimento : number +>1 : 1 +>"abscidar-se" : number +>1 : 1 + + {texto: "absentista", sentimento: -1, "absentista": -1}, +>{texto: "absentista", sentimento: -1, "absentista": -1} : { texto: string; sentimento: number; "absentista": number; } +>texto : string +>"absentista" : "absentista" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absentista" : number +>-1 : -1 +>1 : 1 + + {texto: "absentistas", sentimento: -1, "absentistas": -1}, +>{texto: "absentistas", sentimento: -1, "absentistas": -1} : { texto: string; sentimento: number; "absentistas": number; } +>texto : string +>"absentistas" : "absentistas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absentistas" : number +>-1 : -1 +>1 : 1 + + {texto: "absoluta", sentimento: 1, "absoluta": 1}, +>{texto: "absoluta", sentimento: 1, "absoluta": 1} : { texto: string; sentimento: number; "absoluta": number; } +>texto : string +>"absoluta" : "absoluta" +>sentimento : number +>1 : 1 +>"absoluta" : number +>1 : 1 + + {texto: "absolutas", sentimento: 1, "absolutas": 1}, +>{texto: "absolutas", sentimento: 1, "absolutas": 1} : { texto: string; sentimento: number; "absolutas": number; } +>texto : string +>"absolutas" : "absolutas" +>sentimento : number +>1 : 1 +>"absolutas" : number +>1 : 1 + + {texto: "absolutista", sentimento: 0, "absolutista": 0}, +>{texto: "absolutista", sentimento: 0, "absolutista": 0} : { texto: string; sentimento: number; "absolutista": number; } +>texto : string +>"absolutista" : "absolutista" +>sentimento : number +>0 : 0 +>"absolutista" : number +>0 : 0 + + {texto: "absolutistas", sentimento: 0, "absolutistas": 0}, +>{texto: "absolutistas", sentimento: 0, "absolutistas": 0} : { texto: string; sentimento: number; "absolutistas": number; } +>texto : string +>"absolutistas" : "absolutistas" +>sentimento : number +>0 : 0 +>"absolutistas" : number +>0 : 0 + + {texto: "absoluto", sentimento: 1, "absoluto": 1}, +>{texto: "absoluto", sentimento: 1, "absoluto": 1} : { texto: string; sentimento: number; "absoluto": number; } +>texto : string +>"absoluto" : "absoluto" +>sentimento : number +>1 : 1 +>"absoluto" : number +>1 : 1 + + {texto: "absolutos", sentimento: 1, "absolutos": 1}, +>{texto: "absolutos", sentimento: 1, "absolutos": 1} : { texto: string; sentimento: number; "absolutos": number; } +>texto : string +>"absolutos" : "absolutos" +>sentimento : number +>1 : 1 +>"absolutos" : number +>1 : 1 + + {texto: "absolve", sentimento: 2, "absolve": 2}, +>{texto: "absolve", sentimento: 2, "absolve": 2} : { texto: string; sentimento: number; "absolve": number; } +>texto : string +>"absolve" : "absolve" +>sentimento : number +>2 : 2 +>"absolve" : number +>2 : 2 + + {texto: "absolvendo", sentimento: 2, "absolvendo": 2}, +>{texto: "absolvendo", sentimento: 2, "absolvendo": 2} : { texto: string; sentimento: number; "absolvendo": number; } +>texto : string +>"absolvendo" : "absolvendo" +>sentimento : number +>2 : 2 +>"absolvendo" : number +>2 : 2 + + {texto: "absolver", sentimento: -1, "absolver": -1}, +>{texto: "absolver", sentimento: -1, "absolver": -1} : { texto: string; sentimento: number; "absolver": number; } +>texto : string +>"absolver" : "absolver" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absolver" : number +>-1 : -1 +>1 : 1 + + {texto: "absolver", sentimento: 2, "absolver": 2}, +>{texto: "absolver", sentimento: 2, "absolver": 2} : { texto: string; sentimento: number; "absolver": number; } +>texto : string +>"absolver" : "absolver" +>sentimento : number +>2 : 2 +>"absolver" : number +>2 : 2 + + {texto: "absolvida", sentimento: 0, "absolvida": 0}, +>{texto: "absolvida", sentimento: 0, "absolvida": 0} : { texto: string; sentimento: number; "absolvida": number; } +>texto : string +>"absolvida" : "absolvida" +>sentimento : number +>0 : 0 +>"absolvida" : number +>0 : 0 + + {texto: "absolvidas", sentimento: 0, "absolvidas": 0}, +>{texto: "absolvidas", sentimento: 0, "absolvidas": 0} : { texto: string; sentimento: number; "absolvidas": number; } +>texto : string +>"absolvidas" : "absolvidas" +>sentimento : number +>0 : 0 +>"absolvidas" : number +>0 : 0 + + {texto: "absolvido", sentimento: 0, "absolvido": 0}, +>{texto: "absolvido", sentimento: 0, "absolvido": 0} : { texto: string; sentimento: number; "absolvido": number; } +>texto : string +>"absolvido" : "absolvido" +>sentimento : number +>0 : 0 +>"absolvido" : number +>0 : 0 + + {texto: "absolvido", sentimento: 2, "absolvido": 2}, +>{texto: "absolvido", sentimento: 2, "absolvido": 2} : { texto: string; sentimento: number; "absolvido": number; } +>texto : string +>"absolvido" : "absolvido" +>sentimento : number +>2 : 2 +>"absolvido" : number +>2 : 2 + + {texto: "absolvidos", sentimento: 0, "absolvidos": 0}, +>{texto: "absolvidos", sentimento: 0, "absolvidos": 0} : { texto: string; sentimento: number; "absolvidos": number; } +>texto : string +>"absolvidos" : "absolvidos" +>sentimento : number +>0 : 0 +>"absolvidos" : number +>0 : 0 + + {texto: "absolvidos", sentimento: 2, "absolvidos": 2}, +>{texto: "absolvidos", sentimento: 2, "absolvidos": 2} : { texto: string; sentimento: number; "absolvidos": number; } +>texto : string +>"absolvidos" : "absolvidos" +>sentimento : number +>2 : 2 +>"absolvidos" : number +>2 : 2 + + {texto: "absonar", sentimento: -1, "absonar": -1}, +>{texto: "absonar", sentimento: -1, "absonar": -1} : { texto: string; sentimento: number; "absonar": number; } +>texto : string +>"absonar" : "absonar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absonar" : number +>-1 : -1 +>1 : 1 + + {texto: "absorta", sentimento: -1, "absorta": -1}, +>{texto: "absorta", sentimento: -1, "absorta": -1} : { texto: string; sentimento: number; "absorta": number; } +>texto : string +>"absorta" : "absorta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absorta" : number +>-1 : -1 +>1 : 1 + + {texto: "absortas", sentimento: -1, "absortas": -1}, +>{texto: "absortas", sentimento: -1, "absortas": -1} : { texto: string; sentimento: number; "absortas": number; } +>texto : string +>"absortas" : "absortas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absortas" : number +>-1 : -1 +>1 : 1 + + {texto: "absorto", sentimento: -1, "absorto": -1}, +>{texto: "absorto", sentimento: -1, "absorto": -1} : { texto: string; sentimento: number; "absorto": number; } +>texto : string +>"absorto" : "absorto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absorto" : number +>-1 : -1 +>1 : 1 + + {texto: "absortos", sentimento: -1, "absortos": -1}, +>{texto: "absortos", sentimento: -1, "absortos": -1} : { texto: string; sentimento: number; "absortos": number; } +>texto : string +>"absortos" : "absortos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absortos" : number +>-1 : -1 +>1 : 1 + + {texto: "absortos", sentimento: 1, "absortos": 1}, +>{texto: "absortos", sentimento: 1, "absortos": 1} : { texto: string; sentimento: number; "absortos": number; } +>texto : string +>"absortos" : "absortos" +>sentimento : number +>1 : 1 +>"absortos" : number +>1 : 1 + + {texto: "absorvente", sentimento: 1, "absorvente": 1}, +>{texto: "absorvente", sentimento: 1, "absorvente": 1} : { texto: string; sentimento: number; "absorvente": number; } +>texto : string +>"absorvente" : "absorvente" +>sentimento : number +>1 : 1 +>"absorvente" : number +>1 : 1 + + {texto: "absorventes", sentimento: 1, "absorventes": 1}, +>{texto: "absorventes", sentimento: 1, "absorventes": 1} : { texto: string; sentimento: number; "absorventes": number; } +>texto : string +>"absorventes" : "absorventes" +>sentimento : number +>1 : 1 +>"absorventes" : number +>1 : 1 + + {texto: "absorver-se", sentimento: 1, "absorver-se": 1}, +>{texto: "absorver-se", sentimento: 1, "absorver-se": 1} : { texto: string; sentimento: number; "absorver-se": number; } +>texto : string +>"absorver-se" : "absorver-se" +>sentimento : number +>1 : 1 +>"absorver-se" : number +>1 : 1 + + {texto: "absorver", sentimento: -1, "absorver": -1}, +>{texto: "absorver", sentimento: -1, "absorver": -1} : { texto: string; sentimento: number; "absorver": number; } +>texto : string +>"absorver" : "absorver" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absorver" : number +>-1 : -1 +>1 : 1 + + {texto: "absorvido", sentimento: 1, "absorvido": 1}, +>{texto: "absorvido", sentimento: 1, "absorvido": 1} : { texto: string; sentimento: number; "absorvido": number; } +>texto : string +>"absorvido" : "absorvido" +>sentimento : number +>1 : 1 +>"absorvido" : number +>1 : 1 + + {texto: "abstémia", sentimento: 1, "abstémia": 1}, +>{texto: "abstémia", sentimento: 1, "abstémia": 1} : { texto: string; sentimento: number; "abstémia": number; } +>texto : string +>"abstémia" : "abstémia" +>sentimento : number +>1 : 1 +>"abstémia" : number +>1 : 1 + + {texto: "abstémias", sentimento: 1, "abstémias": 1}, +>{texto: "abstémias", sentimento: 1, "abstémias": 1} : { texto: string; sentimento: number; "abstémias": number; } +>texto : string +>"abstémias" : "abstémias" +>sentimento : number +>1 : 1 +>"abstémias" : number +>1 : 1 + + {texto: "abstémica", sentimento: 1, "abstémica": 1}, +>{texto: "abstémica", sentimento: 1, "abstémica": 1} : { texto: string; sentimento: number; "abstémica": number; } +>texto : string +>"abstémica" : "abstémica" +>sentimento : number +>1 : 1 +>"abstémica" : number +>1 : 1 + + {texto: "abstémicas", sentimento: 1, "abstémicas": 1}, +>{texto: "abstémicas", sentimento: 1, "abstémicas": 1} : { texto: string; sentimento: number; "abstémicas": number; } +>texto : string +>"abstémicas" : "abstémicas" +>sentimento : number +>1 : 1 +>"abstémicas" : number +>1 : 1 + + {texto: "abstémico", sentimento: 1, "abstémico": 1}, +>{texto: "abstémico", sentimento: 1, "abstémico": 1} : { texto: string; sentimento: number; "abstémico": number; } +>texto : string +>"abstémico" : "abstémico" +>sentimento : number +>1 : 1 +>"abstémico" : number +>1 : 1 + + {texto: "abstémicos", sentimento: 1, "abstémicos": 1}, +>{texto: "abstémicos", sentimento: 1, "abstémicos": 1} : { texto: string; sentimento: number; "abstémicos": number; } +>texto : string +>"abstémicos" : "abstémicos" +>sentimento : number +>1 : 1 +>"abstémicos" : number +>1 : 1 + + {texto: "abstémio", sentimento: 1, "abstémio": 1}, +>{texto: "abstémio", sentimento: 1, "abstémio": 1} : { texto: string; sentimento: number; "abstémio": number; } +>texto : string +>"abstémio" : "abstémio" +>sentimento : number +>1 : 1 +>"abstémio" : number +>1 : 1 + + {texto: "abstémios", sentimento: 1, "abstémios": 1}, +>{texto: "abstémios", sentimento: 1, "abstémios": 1} : { texto: string; sentimento: number; "abstémios": number; } +>texto : string +>"abstémios" : "abstémios" +>sentimento : number +>1 : 1 +>"abstémios" : number +>1 : 1 + + {texto: "abstencionista", sentimento: 0, "abstencionista": 0}, +>{texto: "abstencionista", sentimento: 0, "abstencionista": 0} : { texto: string; sentimento: number; "abstencionista": number; } +>texto : string +>"abstencionista" : "abstencionista" +>sentimento : number +>0 : 0 +>"abstencionista" : number +>0 : 0 + + {texto: "abstencionistas", sentimento: 0, "abstencionistas": 0}, +>{texto: "abstencionistas", sentimento: 0, "abstencionistas": 0} : { texto: string; sentimento: number; "abstencionistas": number; } +>texto : string +>"abstencionistas" : "abstencionistas" +>sentimento : number +>0 : 0 +>"abstencionistas" : number +>0 : 0 + + {texto: "abster-se", sentimento: 0, "abster-se": 0}, +>{texto: "abster-se", sentimento: 0, "abster-se": 0} : { texto: string; sentimento: number; "abster-se": number; } +>texto : string +>"abster-se" : "abster-se" +>sentimento : number +>0 : 0 +>"abster-se" : number +>0 : 0 + + {texto: "abstinente", sentimento: 0, "abstinente": 0}, +>{texto: "abstinente", sentimento: 0, "abstinente": 0} : { texto: string; sentimento: number; "abstinente": number; } +>texto : string +>"abstinente" : "abstinente" +>sentimento : number +>0 : 0 +>"abstinente" : number +>0 : 0 + + {texto: "abstinentes", sentimento: 0, "abstinentes": 0}, +>{texto: "abstinentes", sentimento: 0, "abstinentes": 0} : { texto: string; sentimento: number; "abstinentes": number; } +>texto : string +>"abstinentes" : "abstinentes" +>sentimento : number +>0 : 0 +>"abstinentes" : number +>0 : 0 + + {texto: "abstraccionista", sentimento: 0, "abstraccionista": 0}, +>{texto: "abstraccionista", sentimento: 0, "abstraccionista": 0} : { texto: string; sentimento: number; "abstraccionista": number; } +>texto : string +>"abstraccionista" : "abstraccionista" +>sentimento : number +>0 : 0 +>"abstraccionista" : number +>0 : 0 + + {texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0}, +>{texto: "abstraccionistas", sentimento: 0, "abstraccionistas": 0} : { texto: string; sentimento: number; "abstraccionistas": number; } +>texto : string +>"abstraccionistas" : "abstraccionistas" +>sentimento : number +>0 : 0 +>"abstraccionistas" : number +>0 : 0 + + {texto: "abstracta", sentimento: -1, "abstracta": -1}, +>{texto: "abstracta", sentimento: -1, "abstracta": -1} : { texto: string; sentimento: number; "abstracta": number; } +>texto : string +>"abstracta" : "abstracta" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstracta" : number +>-1 : -1 +>1 : 1 + + {texto: "abstractas", sentimento: -1, "abstractas": -1}, +>{texto: "abstractas", sentimento: -1, "abstractas": -1} : { texto: string; sentimento: number; "abstractas": number; } +>texto : string +>"abstractas" : "abstractas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstractas" : number +>-1 : -1 +>1 : 1 + + {texto: "abstracto", sentimento: -1, "abstracto": -1}, +>{texto: "abstracto", sentimento: -1, "abstracto": -1} : { texto: string; sentimento: number; "abstracto": number; } +>texto : string +>"abstracto" : "abstracto" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstracto" : number +>-1 : -1 +>1 : 1 + + {texto: "abstractos", sentimento: -1, "abstractos": -1}, +>{texto: "abstractos", sentimento: -1, "abstractos": -1} : { texto: string; sentimento: number; "abstractos": number; } +>texto : string +>"abstractos" : "abstractos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstractos" : number +>-1 : -1 +>1 : 1 + + {texto: "abstraída", sentimento: -1, "abstraída": -1}, +>{texto: "abstraída", sentimento: -1, "abstraída": -1} : { texto: string; sentimento: number; "abstraída": number; } +>texto : string +>"abstraída" : "abstraída" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstraída" : number +>-1 : -1 +>1 : 1 + + {texto: "abstraídas", sentimento: -1, "abstraídas": -1}, +>{texto: "abstraídas", sentimento: -1, "abstraídas": -1} : { texto: string; sentimento: number; "abstraídas": number; } +>texto : string +>"abstraídas" : "abstraídas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstraídas" : number +>-1 : -1 +>1 : 1 + + {texto: "abstraído", sentimento: -1, "abstraído": -1}, +>{texto: "abstraído", sentimento: -1, "abstraído": -1} : { texto: string; sentimento: number; "abstraído": number; } +>texto : string +>"abstraído" : "abstraído" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstraído" : number +>-1 : -1 +>1 : 1 + + {texto: "abstraídos", sentimento: -1, "abstraídos": -1}, +>{texto: "abstraídos", sentimento: -1, "abstraídos": -1} : { texto: string; sentimento: number; "abstraídos": number; } +>texto : string +>"abstraídos" : "abstraídos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstraídos" : number +>-1 : -1 +>1 : 1 + + {texto: "abstrair-se", sentimento: 0, "abstrair-se": 0}, +>{texto: "abstrair-se", sentimento: 0, "abstrair-se": 0} : { texto: string; sentimento: number; "abstrair-se": number; } +>texto : string +>"abstrair-se" : "abstrair-se" +>sentimento : number +>0 : 0 +>"abstrair-se" : number +>0 : 0 + + {texto: "abstrair", sentimento: 1, "abstrair": 1}, +>{texto: "abstrair", sentimento: 1, "abstrair": 1} : { texto: string; sentimento: number; "abstrair": number; } +>texto : string +>"abstrair" : "abstrair" +>sentimento : number +>1 : 1 +>"abstrair" : number +>1 : 1 + + {texto: "abstrata", sentimento: -1, "abstrata": -1}, +>{texto: "abstrata", sentimento: -1, "abstrata": -1} : { texto: string; sentimento: number; "abstrata": number; } +>texto : string +>"abstrata" : "abstrata" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstrata" : number +>-1 : -1 +>1 : 1 + + {texto: "abstratas", sentimento: -1, "abstratas": -1}, +>{texto: "abstratas", sentimento: -1, "abstratas": -1} : { texto: string; sentimento: number; "abstratas": number; } +>texto : string +>"abstratas" : "abstratas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstratas" : number +>-1 : -1 +>1 : 1 + + {texto: "abstrato", sentimento: -1, "abstrato": -1}, +>{texto: "abstrato", sentimento: -1, "abstrato": -1} : { texto: string; sentimento: number; "abstrato": number; } +>texto : string +>"abstrato" : "abstrato" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstrato" : number +>-1 : -1 +>1 : 1 + + {texto: "abstratos", sentimento: -1, "abstratos": -1}, +>{texto: "abstratos", sentimento: -1, "abstratos": -1} : { texto: string; sentimento: number; "abstratos": number; } +>texto : string +>"abstratos" : "abstratos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstratos" : number +>-1 : -1 +>1 : 1 + + {texto: "abstrusa", sentimento: -1, "abstrusa": -1}, +>{texto: "abstrusa", sentimento: -1, "abstrusa": -1} : { texto: string; sentimento: number; "abstrusa": number; } +>texto : string +>"abstrusa" : "abstrusa" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstrusa" : number +>-1 : -1 +>1 : 1 + + {texto: "abstrusas", sentimento: -1, "abstrusas": -1}, +>{texto: "abstrusas", sentimento: -1, "abstrusas": -1} : { texto: string; sentimento: number; "abstrusas": number; } +>texto : string +>"abstrusas" : "abstrusas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstrusas" : number +>-1 : -1 +>1 : 1 + + {texto: "abstruso", sentimento: -1, "abstruso": -1}, +>{texto: "abstruso", sentimento: -1, "abstruso": -1} : { texto: string; sentimento: number; "abstruso": number; } +>texto : string +>"abstruso" : "abstruso" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstruso" : number +>-1 : -1 +>1 : 1 + + {texto: "abstrusos", sentimento: -1, "abstrusos": -1}, +>{texto: "abstrusos", sentimento: -1, "abstrusos": -1} : { texto: string; sentimento: number; "abstrusos": number; } +>texto : string +>"abstrusos" : "abstrusos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abstrusos" : number +>-1 : -1 +>1 : 1 + + {texto: "absumir", sentimento: -1, "absumir": -1}, +>{texto: "absumir", sentimento: -1, "absumir": -1} : { texto: string; sentimento: number; "absumir": number; } +>texto : string +>"absumir" : "absumir" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absumir" : number +>-1 : -1 +>1 : 1 + + {texto: "absurda", sentimento: -1, "absurda": -1}, +>{texto: "absurda", sentimento: -1, "absurda": -1} : { texto: string; sentimento: number; "absurda": number; } +>texto : string +>"absurda" : "absurda" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absurda" : number +>-1 : -1 +>1 : 1 + + {texto: "absurdas", sentimento: -1, "absurdas": -1}, +>{texto: "absurdas", sentimento: -1, "absurdas": -1} : { texto: string; sentimento: number; "absurdas": number; } +>texto : string +>"absurdas" : "absurdas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absurdas" : number +>-1 : -1 +>1 : 1 + + {texto: "absurdo", sentimento: -1, "absurdo": -1}, +>{texto: "absurdo", sentimento: -1, "absurdo": -1} : { texto: string; sentimento: number; "absurdo": number; } +>texto : string +>"absurdo" : "absurdo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absurdo" : number +>-1 : -1 +>1 : 1 + + {texto: "absurdo", sentimento: -2, "absurdo": -2}, +>{texto: "absurdo", sentimento: -2, "absurdo": -2} : { texto: string; sentimento: number; "absurdo": number; } +>texto : string +>"absurdo" : "absurdo" +>sentimento : number +>-2 : -2 +>2 : 2 +>"absurdo" : number +>-2 : -2 +>2 : 2 + + {texto: "absurdos", sentimento: -1, "absurdos": -1}, +>{texto: "absurdos", sentimento: -1, "absurdos": -1} : { texto: string; sentimento: number; "absurdos": number; } +>texto : string +>"absurdos" : "absurdos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"absurdos" : number +>-1 : -1 +>1 : 1 + + {texto: "abugalhar", sentimento: 1, "abugalhar": 1}, +>{texto: "abugalhar", sentimento: 1, "abugalhar": 1} : { texto: string; sentimento: number; "abugalhar": number; } +>texto : string +>"abugalhar" : "abugalhar" +>sentimento : number +>1 : 1 +>"abugalhar" : number +>1 : 1 + + {texto: "abúlica", sentimento: -1, "abúlica": -1}, +>{texto: "abúlica", sentimento: -1, "abúlica": -1} : { texto: string; sentimento: number; "abúlica": number; } +>texto : string +>"abúlica" : "abúlica" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abúlica" : number +>-1 : -1 +>1 : 1 + + {texto: "abúlicas", sentimento: -1, "abúlicas": -1}, +>{texto: "abúlicas", sentimento: -1, "abúlicas": -1} : { texto: string; sentimento: number; "abúlicas": number; } +>texto : string +>"abúlicas" : "abúlicas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abúlicas" : number +>-1 : -1 +>1 : 1 + + {texto: "abúlico", sentimento: -1, "abúlico": -1}, +>{texto: "abúlico", sentimento: -1, "abúlico": -1} : { texto: string; sentimento: number; "abúlico": number; } +>texto : string +>"abúlico" : "abúlico" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abúlico" : number +>-1 : -1 +>1 : 1 + + {texto: "abúlicos", sentimento: -1, "abúlicos": -1}, +>{texto: "abúlicos", sentimento: -1, "abúlicos": -1} : { texto: string; sentimento: number; "abúlicos": number; } +>texto : string +>"abúlicos" : "abúlicos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abúlicos" : number +>-1 : -1 +>1 : 1 + + {texto: "abundante", sentimento: 1, "abundante": 1}, +>{texto: "abundante", sentimento: 1, "abundante": 1} : { texto: string; sentimento: number; "abundante": number; } +>texto : string +>"abundante" : "abundante" +>sentimento : number +>1 : 1 +>"abundante" : number +>1 : 1 + + {texto: "abundar", sentimento: 1, "abundar": 1}, +>{texto: "abundar", sentimento: 1, "abundar": 1} : { texto: string; sentimento: number; "abundar": number; } +>texto : string +>"abundar" : "abundar" +>sentimento : number +>1 : 1 +>"abundar" : number +>1 : 1 + + {texto: "abundoso", sentimento: 1, "abundoso": 1}, +>{texto: "abundoso", sentimento: 1, "abundoso": 1} : { texto: string; sentimento: number; "abundoso": number; } +>texto : string +>"abundoso" : "abundoso" +>sentimento : number +>1 : 1 +>"abundoso" : number +>1 : 1 + + {texto: "aburacar", sentimento: 1, "aburacar": 1}, +>{texto: "aburacar", sentimento: 1, "aburacar": 1} : { texto: string; sentimento: number; "aburacar": number; } +>texto : string +>"aburacar" : "aburacar" +>sentimento : number +>1 : 1 +>"aburacar" : number +>1 : 1 + + {texto: "aburguesada", sentimento: 0, "aburguesada": 0}, +>{texto: "aburguesada", sentimento: 0, "aburguesada": 0} : { texto: string; sentimento: number; "aburguesada": number; } +>texto : string +>"aburguesada" : "aburguesada" +>sentimento : number +>0 : 0 +>"aburguesada" : number +>0 : 0 + + {texto: "aburguesadas", sentimento: 0, "aburguesadas": 0}, +>{texto: "aburguesadas", sentimento: 0, "aburguesadas": 0} : { texto: string; sentimento: number; "aburguesadas": number; } +>texto : string +>"aburguesadas" : "aburguesadas" +>sentimento : number +>0 : 0 +>"aburguesadas" : number +>0 : 0 + + {texto: "aburguesado", sentimento: 0, "aburguesado": 0}, +>{texto: "aburguesado", sentimento: 0, "aburguesado": 0} : { texto: string; sentimento: number; "aburguesado": number; } +>texto : string +>"aburguesado" : "aburguesado" +>sentimento : number +>0 : 0 +>"aburguesado" : number +>0 : 0 + + {texto: "aburguesados", sentimento: 0, "aburguesados": 0}, +>{texto: "aburguesados", sentimento: 0, "aburguesados": 0} : { texto: string; sentimento: number; "aburguesados": number; } +>texto : string +>"aburguesados" : "aburguesados" +>sentimento : number +>0 : 0 +>"aburguesados" : number +>0 : 0 + + {texto: "abusada", sentimento: -1, "abusada": -1}, +>{texto: "abusada", sentimento: -1, "abusada": -1} : { texto: string; sentimento: number; "abusada": number; } +>texto : string +>"abusada" : "abusada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusada" : number +>-1 : -1 +>1 : 1 + + {texto: "abusadas", sentimento: -1, "abusadas": -1}, +>{texto: "abusadas", sentimento: -1, "abusadas": -1} : { texto: string; sentimento: number; "abusadas": number; } +>texto : string +>"abusadas" : "abusadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusadas" : number +>-1 : -1 +>1 : 1 + + {texto: "abusado", sentimento: -1, "abusado": -1}, +>{texto: "abusado", sentimento: -1, "abusado": -1} : { texto: string; sentimento: number; "abusado": number; } +>texto : string +>"abusado" : "abusado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusado" : number +>-1 : -1 +>1 : 1 + + {texto: "abusado", sentimento: -3, "abusado": -3}, +>{texto: "abusado", sentimento: -3, "abusado": -3} : { texto: string; sentimento: number; "abusado": number; } +>texto : string +>"abusado" : "abusado" +>sentimento : number +>-3 : -3 +>3 : 3 +>"abusado" : number +>-3 : -3 +>3 : 3 + + {texto: "abusador", sentimento: -1, "abusador": -1}, +>{texto: "abusador", sentimento: -1, "abusador": -1} : { texto: string; sentimento: number; "abusador": number; } +>texto : string +>"abusador" : "abusador" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusador" : number +>-1 : -1 +>1 : 1 + + {texto: "abusadora", sentimento: -1, "abusadora": -1}, +>{texto: "abusadora", sentimento: -1, "abusadora": -1} : { texto: string; sentimento: number; "abusadora": number; } +>texto : string +>"abusadora" : "abusadora" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusadora" : number +>-1 : -1 +>1 : 1 + + {texto: "abusadoras", sentimento: -1, "abusadoras": -1}, +>{texto: "abusadoras", sentimento: -1, "abusadoras": -1} : { texto: string; sentimento: number; "abusadoras": number; } +>texto : string +>"abusadoras" : "abusadoras" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusadoras" : number +>-1 : -1 +>1 : 1 + + {texto: "abusadores", sentimento: -1, "abusadores": -1}, +>{texto: "abusadores", sentimento: -1, "abusadores": -1} : { texto: string; sentimento: number; "abusadores": number; } +>texto : string +>"abusadores" : "abusadores" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusadores" : number +>-1 : -1 +>1 : 1 + + {texto: "abusados", sentimento: -1, "abusados": -1}, +>{texto: "abusados", sentimento: -1, "abusados": -1} : { texto: string; sentimento: number; "abusados": number; } +>texto : string +>"abusados" : "abusados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusados" : number +>-1 : -1 +>1 : 1 + + {texto: "abusar", sentimento: 1, "abusar": 1}, +>{texto: "abusar", sentimento: 1, "abusar": 1} : { texto: string; sentimento: number; "abusar": number; } +>texto : string +>"abusar" : "abusar" +>sentimento : number +>1 : 1 +>"abusar" : number +>1 : 1 + + {texto: "abusiva", sentimento: -1, "abusiva": -1}, +>{texto: "abusiva", sentimento: -1, "abusiva": -1} : { texto: string; sentimento: number; "abusiva": number; } +>texto : string +>"abusiva" : "abusiva" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusiva" : number +>-1 : -1 +>1 : 1 + + {texto: "abusivas", sentimento: -1, "abusivas": -1}, +>{texto: "abusivas", sentimento: -1, "abusivas": -1} : { texto: string; sentimento: number; "abusivas": number; } +>texto : string +>"abusivas" : "abusivas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusivas" : number +>-1 : -1 +>1 : 1 + + {texto: "abusivo", sentimento: -1, "abusivo": -1}, +>{texto: "abusivo", sentimento: -1, "abusivo": -1} : { texto: string; sentimento: number; "abusivo": number; } +>texto : string +>"abusivo" : "abusivo" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusivo" : number +>-1 : -1 +>1 : 1 + + {texto: "abusivo", sentimento: -3, "abusivo": -3}, +>{texto: "abusivo", sentimento: -3, "abusivo": -3} : { texto: string; sentimento: number; "abusivo": number; } +>texto : string +>"abusivo" : "abusivo" +>sentimento : number +>-3 : -3 +>3 : 3 +>"abusivo" : number +>-3 : -3 +>3 : 3 + + {texto: "abusivos", sentimento: -1, "abusivos": -1}, +>{texto: "abusivos", sentimento: -1, "abusivos": -1} : { texto: string; sentimento: number; "abusivos": number; } +>texto : string +>"abusivos" : "abusivos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"abusivos" : number +>-1 : -1 +>1 : 1 + + {texto: "abuso", sentimento: -3, "abuso": -3}, +>{texto: "abuso", sentimento: -3, "abuso": -3} : { texto: string; sentimento: number; "abuso": number; } +>texto : string +>"abuso" : "abuso" +>sentimento : number +>-3 : -3 +>3 : 3 +>"abuso" : number +>-3 : -3 +>3 : 3 + + {texto: "abusos", sentimento: -3, "abusos": -3}, +>{texto: "abusos", sentimento: -3, "abusos": -3} : { texto: string; sentimento: number; "abusos": number; } +>texto : string +>"abusos" : "abusos" +>sentimento : number +>-3 : -3 +>3 : 3 +>"abusos" : number +>-3 : -3 +>3 : 3 + + {texto: "abuzinar", sentimento: 1, "abuzinar": 1}, +>{texto: "abuzinar", sentimento: 1, "abuzinar": 1} : { texto: string; sentimento: number; "abuzinar": number; } +>texto : string +>"abuzinar" : "abuzinar" +>sentimento : number +>1 : 1 +>"abuzinar" : number +>1 : 1 + + {texto: "acabada", sentimento: -1, "acabada": -1}, +>{texto: "acabada", sentimento: -1, "acabada": -1} : { texto: string; sentimento: number; "acabada": number; } +>texto : string +>"acabada" : "acabada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabada" : number +>-1 : -1 +>1 : 1 + + {texto: "acabadas", sentimento: -1, "acabadas": -1}, +>{texto: "acabadas", sentimento: -1, "acabadas": -1} : { texto: string; sentimento: number; "acabadas": number; } +>texto : string +>"acabadas" : "acabadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabadas" : number +>-1 : -1 +>1 : 1 + + {texto: "acabado", sentimento: -1, "acabado": -1}, +>{texto: "acabado", sentimento: -1, "acabado": -1} : { texto: string; sentimento: number; "acabado": number; } +>texto : string +>"acabado" : "acabado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabado" : number +>-1 : -1 +>1 : 1 + + {texto: "acabados", sentimento: -1, "acabados": -1}, +>{texto: "acabados", sentimento: -1, "acabados": -1} : { texto: string; sentimento: number; "acabados": number; } +>texto : string +>"acabados" : "acabados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabados" : number +>-1 : -1 +>1 : 1 + + {texto: "acabadota", sentimento: -1, "acabadota": -1}, +>{texto: "acabadota", sentimento: -1, "acabadota": -1} : { texto: string; sentimento: number; "acabadota": number; } +>texto : string +>"acabadota" : "acabadota" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabadota" : number +>-1 : -1 +>1 : 1 + + {texto: "acabadotas", sentimento: -1, "acabadotas": -1}, +>{texto: "acabadotas", sentimento: -1, "acabadotas": -1} : { texto: string; sentimento: number; "acabadotas": number; } +>texto : string +>"acabadotas" : "acabadotas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabadotas" : number +>-1 : -1 +>1 : 1 + + {texto: "acabadote", sentimento: -1, "acabadote": -1}, +>{texto: "acabadote", sentimento: -1, "acabadote": -1} : { texto: string; sentimento: number; "acabadote": number; } +>texto : string +>"acabadote" : "acabadote" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabadote" : number +>-1 : -1 +>1 : 1 + + {texto: "acabadotes", sentimento: -1, "acabadotes": -1}, +>{texto: "acabadotes", sentimento: -1, "acabadotes": -1} : { texto: string; sentimento: number; "acabadotes": number; } +>texto : string +>"acabadotes" : "acabadotes" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabadotes" : number +>-1 : -1 +>1 : 1 + + {texto: "acabamento", sentimento: 1, "acabamento": 1}, +>{texto: "acabamento", sentimento: 1, "acabamento": 1} : { texto: string; sentimento: number; "acabamento": number; } +>texto : string +>"acabamento" : "acabamento" +>sentimento : number +>1 : 1 +>"acabamento" : number +>1 : 1 + + {texto: "acabar-se", sentimento: 0, "acabar-se": 0}, +>{texto: "acabar-se", sentimento: 0, "acabar-se": 0} : { texto: string; sentimento: number; "acabar-se": number; } +>texto : string +>"acabar-se" : "acabar-se" +>sentimento : number +>0 : 0 +>"acabar-se" : number +>0 : 0 + + {texto: "acabar", sentimento: 0, "acabar": 0}, +>{texto: "acabar", sentimento: 0, "acabar": 0} : { texto: string; sentimento: number; "acabar": number; } +>texto : string +>"acabar" : "acabar" +>sentimento : number +>0 : 0 +>"acabar" : number +>0 : 0 + + {texto: "acabrunhada", sentimento: -1, "acabrunhada": -1}, +>{texto: "acabrunhada", sentimento: -1, "acabrunhada": -1} : { texto: string; sentimento: number; "acabrunhada": number; } +>texto : string +>"acabrunhada" : "acabrunhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabrunhada" : number +>-1 : -1 +>1 : 1 + + {texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1}, +>{texto: "acabrunhadas", sentimento: -1, "acabrunhadas": -1} : { texto: string; sentimento: number; "acabrunhadas": number; } +>texto : string +>"acabrunhadas" : "acabrunhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabrunhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "acabrunhado", sentimento: -1, "acabrunhado": -1}, +>{texto: "acabrunhado", sentimento: -1, "acabrunhado": -1} : { texto: string; sentimento: number; "acabrunhado": number; } +>texto : string +>"acabrunhado" : "acabrunhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabrunhado" : number +>-1 : -1 +>1 : 1 + + {texto: "acabrunhados", sentimento: -1, "acabrunhados": -1}, +>{texto: "acabrunhados", sentimento: -1, "acabrunhados": -1} : { texto: string; sentimento: number; "acabrunhados": number; } +>texto : string +>"acabrunhados" : "acabrunhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acabrunhados" : number +>-1 : -1 +>1 : 1 + + {texto: "acabrunhar", sentimento: 0, "acabrunhar": 0}, +>{texto: "acabrunhar", sentimento: 0, "acabrunhar": 0} : { texto: string; sentimento: number; "acabrunhar": number; } +>texto : string +>"acabrunhar" : "acabrunhar" +>sentimento : number +>0 : 0 +>"acabrunhar" : number +>0 : 0 + + {texto: "açacalado", sentimento: 1, "açacalado": 1}, +>{texto: "açacalado", sentimento: 1, "açacalado": 1} : { texto: string; sentimento: number; "açacalado": number; } +>texto : string +>"açacalado" : "açacalado" +>sentimento : number +>1 : 1 +>"açacalado" : number +>1 : 1 + + {texto: "acaçapar", sentimento: 1, "acaçapar": 1}, +>{texto: "acaçapar", sentimento: 1, "acaçapar": 1} : { texto: string; sentimento: number; "acaçapar": number; } +>texto : string +>"acaçapar" : "acaçapar" +>sentimento : number +>1 : 1 +>"acaçapar" : number +>1 : 1 + + {texto: "acachar", sentimento: 1, "acachar": 1}, +>{texto: "acachar", sentimento: 1, "acachar": 1} : { texto: string; sentimento: number; "acachar": number; } +>texto : string +>"acachar" : "acachar" +>sentimento : number +>1 : 1 +>"acachar" : number +>1 : 1 + + {texto: "acaciana", sentimento: -1, "acaciana": -1}, +>{texto: "acaciana", sentimento: -1, "acaciana": -1} : { texto: string; sentimento: number; "acaciana": number; } +>texto : string +>"acaciana" : "acaciana" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acaciana" : number +>-1 : -1 +>1 : 1 + + {texto: "acacianas", sentimento: -1, "acacianas": -1}, +>{texto: "acacianas", sentimento: -1, "acacianas": -1} : { texto: string; sentimento: number; "acacianas": number; } +>texto : string +>"acacianas" : "acacianas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acacianas" : number +>-1 : -1 +>1 : 1 + + {texto: "acaciano", sentimento: -1, "acaciano": -1}, +>{texto: "acaciano", sentimento: -1, "acaciano": -1} : { texto: string; sentimento: number; "acaciano": number; } +>texto : string +>"acaciano" : "acaciano" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acaciano" : number +>-1 : -1 +>1 : 1 + + {texto: "acacianos", sentimento: -1, "acacianos": -1}, +>{texto: "acacianos", sentimento: -1, "acacianos": -1} : { texto: string; sentimento: number; "acacianos": number; } +>texto : string +>"acacianos" : "acacianos" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acacianos" : number +>-1 : -1 +>1 : 1 + + {texto: "académica", sentimento: 0, "académica": 0}, +>{texto: "académica", sentimento: 0, "académica": 0} : { texto: string; sentimento: number; "académica": number; } +>texto : string +>"académica" : "académica" +>sentimento : number +>0 : 0 +>"académica" : number +>0 : 0 + + {texto: "acadêmica", sentimento: 0, "acadêmica": 0}, +>{texto: "acadêmica", sentimento: 0, "acadêmica": 0} : { texto: string; sentimento: number; "acadêmica": number; } +>texto : string +>"acadêmica" : "acadêmica" +>sentimento : number +>0 : 0 +>"acadêmica" : number +>0 : 0 + + {texto: "académicas", sentimento: 0, "académicas": 0}, +>{texto: "académicas", sentimento: 0, "académicas": 0} : { texto: string; sentimento: number; "académicas": number; } +>texto : string +>"académicas" : "académicas" +>sentimento : number +>0 : 0 +>"académicas" : number +>0 : 0 + + {texto: "acadêmicas", sentimento: 0, "acadêmicas": 0}, +>{texto: "acadêmicas", sentimento: 0, "acadêmicas": 0} : { texto: string; sentimento: number; "acadêmicas": number; } +>texto : string +>"acadêmicas" : "acadêmicas" +>sentimento : number +>0 : 0 +>"acadêmicas" : number +>0 : 0 + + {texto: "académico", sentimento: 0, "académico": 0}, +>{texto: "académico", sentimento: 0, "académico": 0} : { texto: string; sentimento: number; "académico": number; } +>texto : string +>"académico" : "académico" +>sentimento : number +>0 : 0 +>"académico" : number +>0 : 0 + + {texto: "acadêmico", sentimento: 0, "acadêmico": 0}, +>{texto: "acadêmico", sentimento: 0, "acadêmico": 0} : { texto: string; sentimento: number; "acadêmico": number; } +>texto : string +>"acadêmico" : "acadêmico" +>sentimento : number +>0 : 0 +>"acadêmico" : number +>0 : 0 + + {texto: "académicos", sentimento: 0, "académicos": 0}, +>{texto: "académicos", sentimento: 0, "académicos": 0} : { texto: string; sentimento: number; "académicos": number; } +>texto : string +>"académicos" : "académicos" +>sentimento : number +>0 : 0 +>"académicos" : number +>0 : 0 + + {texto: "acadêmicos", sentimento: 0, "acadêmicos": 0}, +>{texto: "acadêmicos", sentimento: 0, "acadêmicos": 0} : { texto: string; sentimento: number; "acadêmicos": number; } +>texto : string +>"acadêmicos" : "acadêmicos" +>sentimento : number +>0 : 0 +>"acadêmicos" : number +>0 : 0 + + {texto: "acafelar", sentimento: 1, "acafelar": 1}, +>{texto: "acafelar", sentimento: 1, "acafelar": 1} : { texto: string; sentimento: number; "acafelar": number; } +>texto : string +>"acafelar" : "acafelar" +>sentimento : number +>1 : 1 +>"acafelar" : number +>1 : 1 + + {texto: "acaiçarado", sentimento: -1, "acaiçarado": -1}, +>{texto: "acaiçarado", sentimento: -1, "acaiçarado": -1} : { texto: string; sentimento: number; "acaiçarado": number; } +>texto : string +>"acaiçarado" : "acaiçarado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acaiçarado" : number +>-1 : -1 +>1 : 1 + + {texto: "açaimar", sentimento: 0, "açaimar": 0}, +>{texto: "açaimar", sentimento: 0, "açaimar": 0} : { texto: string; sentimento: number; "açaimar": number; } +>texto : string +>"açaimar" : "açaimar" +>sentimento : number +>0 : 0 +>"açaimar" : number +>0 : 0 + + {texto: "acalentando", sentimento: 2, "acalentando": 2}, +>{texto: "acalentando", sentimento: 2, "acalentando": 2} : { texto: string; sentimento: number; "acalentando": number; } +>texto : string +>"acalentando" : "acalentando" +>sentimento : number +>2 : 2 +>"acalentando" : number +>2 : 2 + + {texto: "acalentar-se", sentimento: 1, "acalentar-se": 1}, +>{texto: "acalentar-se", sentimento: 1, "acalentar-se": 1} : { texto: string; sentimento: number; "acalentar-se": number; } +>texto : string +>"acalentar-se" : "acalentar-se" +>sentimento : number +>1 : 1 +>"acalentar-se" : number +>1 : 1 + + {texto: "acalentar", sentimento: 0, "acalentar": 0}, +>{texto: "acalentar", sentimento: 0, "acalentar": 0} : { texto: string; sentimento: number; "acalentar": number; } +>texto : string +>"acalentar" : "acalentar" +>sentimento : number +>0 : 0 +>"acalentar" : number +>0 : 0 + + {texto: "acalentar", sentimento: 2, "acalentar": 2}, +>{texto: "acalentar", sentimento: 2, "acalentar": 2} : { texto: string; sentimento: number; "acalentar": number; } +>texto : string +>"acalentar" : "acalentar" +>sentimento : number +>2 : 2 +>"acalentar" : number +>2 : 2 + + {texto: "acalmada", sentimento: 3, "acalmada": 3}, +>{texto: "acalmada", sentimento: 3, "acalmada": 3} : { texto: string; sentimento: number; "acalmada": number; } +>texto : string +>"acalmada" : "acalmada" +>sentimento : number +>3 : 3 +>"acalmada" : number +>3 : 3 + + {texto: "acalmado", sentimento: 2, "acalmado": 2}, +>{texto: "acalmado", sentimento: 2, "acalmado": 2} : { texto: string; sentimento: number; "acalmado": number; } +>texto : string +>"acalmado" : "acalmado" +>sentimento : number +>2 : 2 +>"acalmado" : number +>2 : 2 + + {texto: "acalmar-se", sentimento: 1, "acalmar-se": 1}, +>{texto: "acalmar-se", sentimento: 1, "acalmar-se": 1} : { texto: string; sentimento: number; "acalmar-se": number; } +>texto : string +>"acalmar-se" : "acalmar-se" +>sentimento : number +>1 : 1 +>"acalmar-se" : number +>1 : 1 + + {texto: "acalmar", sentimento: 0, "acalmar": 0}, +>{texto: "acalmar", sentimento: 0, "acalmar": 0} : { texto: string; sentimento: number; "acalmar": number; } +>texto : string +>"acalmar" : "acalmar" +>sentimento : number +>0 : 0 +>"acalmar" : number +>0 : 0 + + {texto: "acalmar", sentimento: 3, "acalmar": 3}, +>{texto: "acalmar", sentimento: 3, "acalmar": 3} : { texto: string; sentimento: number; "acalmar": number; } +>texto : string +>"acalmar" : "acalmar" +>sentimento : number +>3 : 3 +>"acalmar" : number +>3 : 3 + + {texto: "acalorada", sentimento: 0, "acalorada": 0}, +>{texto: "acalorada", sentimento: 0, "acalorada": 0} : { texto: string; sentimento: number; "acalorada": number; } +>texto : string +>"acalorada" : "acalorada" +>sentimento : number +>0 : 0 +>"acalorada" : number +>0 : 0 + + {texto: "acaloradas", sentimento: 0, "acaloradas": 0}, +>{texto: "acaloradas", sentimento: 0, "acaloradas": 0} : { texto: string; sentimento: number; "acaloradas": number; } +>texto : string +>"acaloradas" : "acaloradas" +>sentimento : number +>0 : 0 +>"acaloradas" : number +>0 : 0 + + {texto: "acalorado", sentimento: 0, "acalorado": 0}, +>{texto: "acalorado", sentimento: 0, "acalorado": 0} : { texto: string; sentimento: number; "acalorado": number; } +>texto : string +>"acalorado" : "acalorado" +>sentimento : number +>0 : 0 +>"acalorado" : number +>0 : 0 + + {texto: "acalorados", sentimento: 0, "acalorados": 0}, +>{texto: "acalorados", sentimento: 0, "acalorados": 0} : { texto: string; sentimento: number; "acalorados": number; } +>texto : string +>"acalorados" : "acalorados" +>sentimento : number +>0 : 0 +>"acalorados" : number +>0 : 0 + + {texto: "acalorar-se", sentimento: 1, "acalorar-se": 1}, +>{texto: "acalorar-se", sentimento: 1, "acalorar-se": 1} : { texto: string; sentimento: number; "acalorar-se": number; } +>texto : string +>"acalorar-se" : "acalorar-se" +>sentimento : number +>1 : 1 +>"acalorar-se" : number +>1 : 1 + + {texto: "acalorar", sentimento: 1, "acalorar": 1}, +>{texto: "acalorar", sentimento: 1, "acalorar": 1} : { texto: string; sentimento: number; "acalorar": number; } +>texto : string +>"acalorar" : "acalorar" +>sentimento : number +>1 : 1 +>"acalorar" : number +>1 : 1 + + {texto: "acamar", sentimento: 1, "acamar": 1}, +>{texto: "acamar", sentimento: 1, "acamar": 1} : { texto: string; sentimento: number; "acamar": number; } +>texto : string +>"acamar" : "acamar" +>sentimento : number +>1 : 1 +>"acamar" : number +>1 : 1 + + {texto: "açambarcador", sentimento: -1, "açambarcador": -1}, +>{texto: "açambarcador", sentimento: -1, "açambarcador": -1} : { texto: string; sentimento: number; "açambarcador": number; } +>texto : string +>"açambarcador" : "açambarcador" +>sentimento : number +>-1 : -1 +>1 : 1 +>"açambarcador" : number +>-1 : -1 +>1 : 1 + + {texto: "açambarcadora", sentimento: -1, "açambarcadora": -1}, +>{texto: "açambarcadora", sentimento: -1, "açambarcadora": -1} : { texto: string; sentimento: number; "açambarcadora": number; } +>texto : string +>"açambarcadora" : "açambarcadora" +>sentimento : number +>-1 : -1 +>1 : 1 +>"açambarcadora" : number +>-1 : -1 +>1 : 1 + + {texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1}, +>{texto: "açambarcadoras", sentimento: -1, "açambarcadoras": -1} : { texto: string; sentimento: number; "açambarcadoras": number; } +>texto : string +>"açambarcadoras" : "açambarcadoras" +>sentimento : number +>-1 : -1 +>1 : 1 +>"açambarcadoras" : number +>-1 : -1 +>1 : 1 + + {texto: "açambarcadores", sentimento: -1, "açambarcadores": -1}, +>{texto: "açambarcadores", sentimento: -1, "açambarcadores": -1} : { texto: string; sentimento: number; "açambarcadores": number; } +>texto : string +>"açambarcadores" : "açambarcadores" +>sentimento : number +>-1 : -1 +>1 : 1 +>"açambarcadores" : number +>-1 : -1 +>1 : 1 + + {texto: "açambarcar", sentimento: 0, "açambarcar": 0}, +>{texto: "açambarcar", sentimento: 0, "açambarcar": 0} : { texto: string; sentimento: number; "açambarcar": number; } +>texto : string +>"açambarcar" : "açambarcar" +>sentimento : number +>0 : 0 +>"açambarcar" : number +>0 : 0 + + {texto: "acambetar", sentimento: 0, "acambetar": 0}, +>{texto: "acambetar", sentimento: 0, "acambetar": 0} : { texto: string; sentimento: number; "acambetar": number; } +>texto : string +>"acambetar" : "acambetar" +>sentimento : number +>0 : 0 +>"acambetar" : number +>0 : 0 + + {texto: "acampanar", sentimento: 0, "acampanar": 0}, +>{texto: "acampanar", sentimento: 0, "acampanar": 0} : { texto: string; sentimento: number; "acampanar": number; } +>texto : string +>"acampanar" : "acampanar" +>sentimento : number +>0 : 0 +>"acampanar" : number +>0 : 0 + + {texto: "acanalar", sentimento: 0, "acanalar": 0}, +>{texto: "acanalar", sentimento: 0, "acanalar": 0} : { texto: string; sentimento: number; "acanalar": number; } +>texto : string +>"acanalar" : "acanalar" +>sentimento : number +>0 : 0 +>"acanalar" : number +>0 : 0 + + {texto: "acanalhar", sentimento: 1, "acanalhar": 1}, +>{texto: "acanalhar", sentimento: 1, "acanalhar": 1} : { texto: string; sentimento: number; "acanalhar": number; } +>texto : string +>"acanalhar" : "acanalhar" +>sentimento : number +>1 : 1 +>"acanalhar" : number +>1 : 1 + + {texto: "acanavear", sentimento: -1, "acanavear": -1}, +>{texto: "acanavear", sentimento: -1, "acanavear": -1} : { texto: string; sentimento: number; "acanavear": number; } +>texto : string +>"acanavear" : "acanavear" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acanavear" : number +>-1 : -1 +>1 : 1 + + {texto: "acanelar", sentimento: 0, "acanelar": 0}, +>{texto: "acanelar", sentimento: 0, "acanelar": 0} : { texto: string; sentimento: number; "acanelar": number; } +>texto : string +>"acanelar" : "acanelar" +>sentimento : number +>0 : 0 +>"acanelar" : number +>0 : 0 + + {texto: "acanhada", sentimento: -1, "acanhada": -1}, +>{texto: "acanhada", sentimento: -1, "acanhada": -1} : { texto: string; sentimento: number; "acanhada": number; } +>texto : string +>"acanhada" : "acanhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acanhada" : number +>-1 : -1 +>1 : 1 + + {texto: "acanhadas", sentimento: -1, "acanhadas": -1}, +>{texto: "acanhadas", sentimento: -1, "acanhadas": -1} : { texto: string; sentimento: number; "acanhadas": number; } +>texto : string +>"acanhadas" : "acanhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acanhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "acanhado", sentimento: -1, "acanhado": -1}, +>{texto: "acanhado", sentimento: -1, "acanhado": -1} : { texto: string; sentimento: number; "acanhado": number; } +>texto : string +>"acanhado" : "acanhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acanhado" : number +>-1 : -1 +>1 : 1 + + {texto: "acanhados", sentimento: -1, "acanhados": -1}, +>{texto: "acanhados", sentimento: -1, "acanhados": -1} : { texto: string; sentimento: number; "acanhados": number; } +>texto : string +>"acanhados" : "acanhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acanhados" : number +>-1 : -1 +>1 : 1 + + {texto: "acanhar", sentimento: -1, "acanhar": -1}, +>{texto: "acanhar", sentimento: -1, "acanhar": -1} : { texto: string; sentimento: number; "acanhar": number; } +>texto : string +>"acanhar" : "acanhar" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acanhar" : number +>-1 : -1 +>1 : 1 + + {texto: "ação judicial", sentimento: -2, "ação judicial": -2}, +>{texto: "ação judicial", sentimento: -2, "ação judicial": -2} : { texto: string; sentimento: number; "ação judicial": number; } +>texto : string +>"ação judicial" : "ação judicial" +>sentimento : number +>-2 : -2 +>2 : 2 +>"ação judicial" : number +>-2 : -2 +>2 : 2 + + {texto: "acapelado", sentimento: 1, "acapelado": 1}, +>{texto: "acapelado", sentimento: 1, "acapelado": 1} : { texto: string; sentimento: number; "acapelado": number; } +>texto : string +>"acapelado" : "acapelado" +>sentimento : number +>1 : 1 +>"acapelado" : number +>1 : 1 + + {texto: "acapelar", sentimento: 0, "acapelar": 0}, +>{texto: "acapelar", sentimento: 0, "acapelar": 0} : { texto: string; sentimento: number; "acapelar": number; } +>texto : string +>"acapelar" : "acapelar" +>sentimento : number +>0 : 0 +>"acapelar" : number +>0 : 0 + + {texto: "acarar", sentimento: 1, "acarar": 1}, +>{texto: "acarar", sentimento: 1, "acarar": 1} : { texto: string; sentimento: number; "acarar": number; } +>texto : string +>"acarar" : "acarar" +>sentimento : number +>1 : 1 +>"acarar" : number +>1 : 1 + + {texto: "acarear", sentimento: 1, "acarear": 1}, +>{texto: "acarear", sentimento: 1, "acarear": 1} : { texto: string; sentimento: number; "acarear": number; } +>texto : string +>"acarear" : "acarear" +>sentimento : number +>1 : 1 +>"acarear" : number +>1 : 1 + + {texto: "acariciar", sentimento: 0, "acariciar": 0}, +>{texto: "acariciar", sentimento: 0, "acariciar": 0} : { texto: string; sentimento: number; "acariciar": number; } +>texto : string +>"acariciar" : "acariciar" +>sentimento : number +>0 : 0 +>"acariciar" : number +>0 : 0 + + {texto: "acarinhada", sentimento: -1, "acarinhada": -1}, +>{texto: "acarinhada", sentimento: -1, "acarinhada": -1} : { texto: string; sentimento: number; "acarinhada": number; } +>texto : string +>"acarinhada" : "acarinhada" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acarinhada" : number +>-1 : -1 +>1 : 1 + + {texto: "acarinhadas", sentimento: -1, "acarinhadas": -1}, +>{texto: "acarinhadas", sentimento: -1, "acarinhadas": -1} : { texto: string; sentimento: number; "acarinhadas": number; } +>texto : string +>"acarinhadas" : "acarinhadas" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acarinhadas" : number +>-1 : -1 +>1 : 1 + + {texto: "acarinhado", sentimento: -1, "acarinhado": -1}, +>{texto: "acarinhado", sentimento: -1, "acarinhado": -1} : { texto: string; sentimento: number; "acarinhado": number; } +>texto : string +>"acarinhado" : "acarinhado" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acarinhado" : number +>-1 : -1 +>1 : 1 + + {texto: "acarinhados", sentimento: -1, "acarinhados": -1}, +>{texto: "acarinhados", sentimento: -1, "acarinhados": -1} : { texto: string; sentimento: number; "acarinhados": number; } +>texto : string +>"acarinhados" : "acarinhados" +>sentimento : number +>-1 : -1 +>1 : 1 +>"acarinhados" : number +>-1 : -1 +>1 : 1 + + {texto: "acarinhar", sentimento: 1, "acarinhar": 1}, +>{texto: "acarinhar", sentimento: 1, "acarinhar": 1} : { texto: string; sentimento: number; "acarinhar": number; } +>texto : string +>"acarinhar" : "acarinhar" +>sentimento : number +>1 : 1 +>"acarinhar" : number +>1 : 1 + + {texto: "acarminar", sentimento: 0, "acarminar": 0}, +>{texto: "acarminar", sentimento: 0, "acarminar": 0} : { texto: string; sentimento: number; "acarminar": number; } +>texto : string +>"acarminar" : "acarminar" +>sentimento : number +>0 : 0 +>"acarminar" : number +>0 : 0 + +]; From bd8665e9ca74f0faf8d9cd9089a5106d23fb84fc Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Wed, 28 Nov 2018 10:53:33 -0800 Subject: [PATCH 4/4] Fix linting issue --- src/compiler/checker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 78634746c0406..afb1b86451191 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -9118,7 +9118,7 @@ namespace ts { case UnionReduction.SubtypeOrError: if (!removeSubtypes(typeSet, /*checkOverflow*/ unionReduction === UnionReduction.SubtypeOrError)) { return overflowErrorType; - }; + } break; } if (typeSet.length === 0) {