helpfn

profilebcs
A_survey_of_sentiment_analysis_techniques.pdf

A Survey of Sentiment Analysis techniques Harpreet Kaur

UIET, Panjab university Chandigarh, India

Veenu Mangat UIET, Panjab university

Chandigarh, India

Nidhi UIET, Panjab university

Chandigarh, India

Abstract: Sentiment analysis is an application of natural language processing. It is also known as emotion extraction or opinion mining. This is a very popular field of research in text mining. The basic idea is to find the polarity of the text and classify it into positive, negative or neutral. It helps in human decision making. To perform sentiment analysis, one has to perform various tasks like subjectivity detection, sentiment classification, aspect term extraction, feature extraction etc. This paper presents the survey of main approaches used for sentiment classification. Key words: sentiment analysis, sentiment classification, features selection, machine learning.

I. INTRODUCTION Sentiment analysis is the process of extracting emotions or opinions from a piece of text for a given topic.[1] it allow us to understand the attitudes, opinions and emotions in the text. In it user‘s likes and dislikes are captured from web content. It involves predicting or analyzing the hidden information present in the text. This hidden information is very useful to get insights of user’s likes and dislikes. The aim of sentiment analysis is to determine the attitudes of a writer or a speaker for a given topic. Sentiment analysis can also be applied to audio, images and videos.[2] Today internet has become the major part of our life. Most of the people use online blogging sites or social networking sites to express their opinions on certain things. They also use these sites to know what other people’s opinions are. Thus mining of this data and sentiment extraction has become an important field of research.

II. IMPORTANT NOTIONS

A) Subjectivity/Objectivity- To perform sentiment analysis we first need to identify the subjective and objective text. Only subjective text holds the sentiments. Objective text contains only factual information. Example- 1.) Subjective: Titanic is a superb movie. (this sentence has a sentiment(superb), thus it is subjective ) 2.)Objective: James Cameron is the director of titanic.(this sentence has no sentiment, it is a fact ,thus it is objective)[3] B) Polarity- Further subjective text can be classified into 3 categories based on the sentiments conveyed in the text. 1.) Positive: I love new Samsung galaxy mobile. 2.) Negative: The picture quality of camera was awful.

3.) Neutral: I usually get hungry by noon. (this sentence has user’s views, feelings hence it is subjective but as it does not have any positive or negative polarity so it is neutral. This positive, negative and neutral nature of text is termed as polarity of text. There is a lot of debate whether to take two or three classes but it is found that by considering neutral class accuracy gets increased. There are two ways for it: either classify text into two classes positive/negative and neutral and then further handling positive/negative or classify text into three classes in first step only[3]. C) Sentiment level- sentiment analysis can be performed at various levels -

Document Level- In it the whole document is given a single polarity positive, negative or objective[1] .

Sentence Level – In it document is classified at sentence level. Each sentence is analyzed separately and classified as negative, positive or objective. Thus overall document has a number of sentences where each sentence has its own polarity.

Phrase Level- It involves much deeper analysis of text and deals with identification of the phrases or aspects in a sentence and analyzing the phrases and classify them as positive, negative or objective. It is also called aspect based analysis.[3]

III. APPLICATIONS

A)Support in decision making: Decision making is a very important field of our life. Opinions extracted from reviews helps us in making various decisions like “which books to buy”, “which hotel to go”, “which movie to watch” etc. B)Business application: In today’s world of competition, every company wants to satisfy its customer’s requirements by creating new innovative products. Assessments of individuals are an essential angle today with the goal that organizations can get an input from clients and can roll out sought improvements in their item. Google Product Search is one illustration. C)Predictions and trend analysis: sentiment analysis enables one to predict market trends by tracking views of public. It is also helpful in elections where candidates wants to know the expectations of people from them.

International conference on I-SMAC (IoT in Social, Mobile, Analytics and Cloud) (I-SMAC 2017)

978-1-5090-3243-3/17/$31.00 ©2017 IEEE 921

Authorized licensed use limited to: University of the Cumberlands. Downloaded on November 27,2021 at 23:28:33 UTC from IEEE Xplore. Restrictions apply.

Figure 1: Sentiment Analysis Process

IV. METHODOLOGY A)Feature selection: To perform sentiment classification, first task is to extract the features from text which are 1) N grams- n grams refers to consecutive n terms in text. One can take only one word at a time(unigram) or two words(bigram) up to n accordingly. Some sentiments can’t be captured with unigram feature. For example this drink will knock your socks off. It is a positive comment if socks off is taken together and negative in case of only unigram model (off). 2) POS tagging- It is a way toward denoting a word in a content (corpus) as comparing to parts of speech in light of both its definition and its association with contiguous words. Nouns, pronouns, adjectives, adverbs etc are examples parts of speech. Adjectives and adverbs hold most of the sentiments in text.[11] 3) Stemming-It is the process of removing prefixes and suffixes. For example ‘playing’, ‘played’ can be stemmed to ‘play’. It helps in classification but sometimes leads to decrease in classification accuracy. 4) Stop words- Pronouns (he/she, it), articles (a, the), prepositions (in, near, beside) are stop words. They provide no or little information about sentiments. There is a list of stop words available on the internet. It can be used to remove them in the pre-processing step. 5) Conjunction handling- In general, each sentence expresses only one meaning at a time. But certain conjunction words like but, while, although, however changes the whole meaning of the sentence. For example although movie was good but it was not up to my expectations. By using these rules throughput can be increased by 5%.[6] 6) Negation handling- Negation words like ‘not’ inverts the meaning of whole sentence. For example The movie was not

good has ‘good’ in it which is positive but ‘not’ inverts the polarity to negative. B)Sentiment classification Two approaches are mainly used 1) Subjective lexicon: Subjective lexicons are collection of words where each word has a score indicating the positive, negative, neutral and objective nature of text. In this approach, for a given piece of text, aggregation of scores of subjective words is performed i.e. positive, negative, neutral and objective word scores are summed up separately. In the end there are four scores. Highest score gives the overall polarity of the text.[12] a) Dictionary based approach- In this approach a set of opinion words are manually collected and a seed list is prepared. Then we search for dictionaries and thesaurus to find synonyms and antonyms of text. The newly found synonyms are added to the seed list. This process continues until no new words are found. Disadvantage: difficulty in finding context or domain oriented opinion words b) Corpus based approach- Corpus is collection of writings, often on a specific topic. In this approach, seed list is prepared and is expanded with the help of corpus text.[14] Thus is solves the problem of limited domain oriented text. It can be done in two ways

Statistical approach: This approach is used to find co- occurrence words in the corpus. Idea is that if the word appears mostly in positive text, then its polarity is positive. If it mostly occur in negative text, then its polarity is negative.

Semantic approach: This approach calculates sentiment values by using the principal of similarity between words. Wordnet can be used for this purpose. Synonyms and antonyms of given word can be found using this and sentiment value can be calculated. [2]

International conference on I-SMAC (IoT in Social, Mobile, Analytics and Cloud) (I-SMAC 2017)

978-1-5090-3243-3/17/$31.00 ©2017 IEEE 922

Authorized licensed use limited to: University of the Cumberlands. Downloaded on November 27,2021 at 23:28:33 UTC from IEEE Xplore. Restrictions apply.

Figure 2: Sentiment Classification Techniques 2) Machine learning: This is an automatic classification technique. Classification is performed using text features. Features are extracted from text. It is of two types- supervised and unsupervised a) Supervised- System is trained using labeled training examples. Each class represents different features and has a label associated with it. When a word arrives, its features are compared and labeled with a class with maximum matching. 1.Probabilistic classifier: This classifier is able to foresee a probability function over a set of classes for a given input data. It does not give only the most likely classes but a probability function over all classes. For example an ordinary classifier function assign a label y to input x as

y=f(x)

In case of probabilistic classifier this function is replaced with conditional distributors Pr(Y/X) i.e. for given x X , probability is assigned to all y Y as

y= arg max Pr(Y=y/X)

Naïve bayes: This classifier uses bayes theorem to predict the probability that a given set of features is a part of particular label. It uses bag of words (BOW) model for feature extraction. This model assumes that all the features are independent.[12]

P(label/features)=P(label)* P(features/label)/P(features) Where P(label)= prior probability of label P(features/label)=prior probability that feature set is classified as label P(features)= prior probability that feature set will occur

Bayesian network: This model assumes that there is a strong dependence between features. It is a directed acyclic graph in which nodes represents random variables and edges represent dependencies. It is very expensive model therefore is not frequently used.

Maximum entropy: By using encoding, this classifier converts the labeled feature sets to vectors.[11]This vector is used to calculate weights of features which can then be used to predict label for each feature set. Encoding maps each pair i.e. P(featureset, label) into vectors. Probability of label can be computed as

P(fs/label) = dotprod(weights, encode(fs, label)/ sum(dotprod(weights, encode(fs,l))forlinlabels)

2. Linear classifier-It performs classification based on the linear combinations value of the characteristics. Let W={w1, w2, w3….} is word frequency , vector C={c1, c2, c3…..} is linear coefficient vector and S is a scalar then output of linear predictor will be

LP=W.C+S. This predictor is called hyperplane which separate two classes.

SVM: Support vector machine is a supervised learning model which is used for classification. Its main aim to determine best linear separators for classification. It is a non probabilistic classifier[17]. For a given set of training data, each is labeled for belonging to one of the classes, SVM training algorithm create a model which assign new data into one or two classes. Hyperplane is used to separate

International conference on I-SMAC (IoT in Social, Mobile, Analytics and Cloud) (I-SMAC 2017)

978-1-5090-3243-3/17/$31.00 ©2017 IEEE 923

Authorized licensed use limited to: University of the Cumberlands. Downloaded on November 27,2021 at 23:28:33 UTC from IEEE Xplore. Restrictions apply.

two classes. In the diagram below, for example, to classify triangle and circle shapes we compute three hyperplanes A, B and C. C is best separator as items on both sides are at maximum distance from Hyperplane and B is worst separator.

Figure 3: Classification using Support Vector Machine

Neural network: Neural network electronic networks of neurons similar to neural structure of brain. Neuron is the basic element of this network. Neurons are placed in three layers- input, hidden and output.

A neuron consists of set of inputs (vi) and associated weights (wi). It also has a function (fi) that adds the weights and maps these results to the final result i.e. output(y).[16]

3. Decision tree classifier- In this classification, a condition is used to divide the data. Data which satisfy the condition is placed in one class and rest data in other class. It is a recursive procedure. There are a number of splits : single attribute split which searches for particular word presence or absence to perform classification, similarity based multi attribute split which matches the given document words with predefined words to perform classification and Discriminate based multi- attribute split use discriminates to perform split. 4. Rule based classifier- This classifier makes use of certain rules as IF , THEN. It can be written as IF condition THEN decision The rules can be generated during training phase depending on our requirements. [2]

References Year Task Data set Algorithm 7 2011 Sentiment analysis Digital camera reviews Multi class SVM 8 2011 Sentiment analysis Training data in

Chinese Semantic

9 2011 Sentiment classification

Movie reviews Lexicon based, semantic

10 2011 Sentiment analysis Product reviews Statistical(machine learning), semantic

11 2012 Feature selection Movie reviews Statistical, maximum entropy

12 2012 Sentiment classification

Restaurant reviews Naïve bayes, svm

13 2012 Sentiment analysis News Lexicon based 14 2012 Emotion detection Blogs data Corpus based 15 2012 Emotion detection Emotions corpus Lexicon based, SVM 16 2013 Sentiment

classification Movie, camera, book, GPS reviews

Artificial neural network, SVM

17 2013 Sentiment classification

Tweets and movie reviews

SVM, Naïve bayes

18 2014 Sentiment analysis Facebook data Lexicon based, machine learning

19 2015 Sentiment analysis Tweets Hybrid(lexicon+ learning algorithm)

20 2015 Sentiment analysis Movie, book, product reviews

SVM

21 2016 Sentiment analysis Tweets Lexicon based 22 2016 Sentiment analysis Starbucks twitter

dataset Dynamic architectural artificial neural networks

Table 1: Articles summary

International conference on I-SMAC (IoT in Social, Mobile, Analytics and Cloud) (I-SMAC 2017)

978-1-5090-3243-3/17/$31.00 ©2017 IEEE 924

Authorized licensed use limited to: University of the Cumberlands. Downloaded on November 27,2021 at 23:28:33 UTC from IEEE Xplore. Restrictions apply.

CONCLUSION & FUTURE SCOPE This paper presents a survey of sentiment analysis and classification algorithms. This survey concludes that sentiment classification is still an open field for research. There is a lot of scope for algorithms in it. SVM and naïve bayes are most popular algorithms for sentiment classification. Sentiment analysis of tweets is very popular. Datasets from sites like Amazon, IMDB, flipkart are widely used for sentiment analysis. Deeper analysis is required in case of social networking sites. In many cases, context consideration is very important. Therefore more research is required in this field. REFERENCES

1. Pang B, Lee L. , “Opinion mining and sentiment analysis” FoundTrends Inform Retriev:1–135, 2008. 2. Medhat, Walaa, Ahmed Hassan, and Hoda Korashy. “Sentiment analysis algorithms and applications: A survey” Ain Shams Engineering Journal 5.4 :1093-1113, 2014. 3. Arora, Piyush. “Sentiment Analysis for Hindi Language.” Diss. International Institute of Information Technology Hyderabad, 2013. 4. Kaur, Amandeep, and Vishal Gupta. "A survey on sentiment analysis and opinion mining techniques." Journal of Emerging Technologies in Web Intelligence 5.4: 367-371, 2013. 5. Esuli, Andrea, and Fabrizio Sebastiani. "Sentiwordnet: A publicly available lexical resource for opinion mining." Proceedings of LREC. Vol. 6. 2006. 6. Hemnaath, R., and Low, B.W. “Sentiment Analysis Using Maximum Entropy and Support Vector Machine.” Semantic Technology and Knowledge Engineering,2010. 7. Chin Chen Chien, Tseng You-De. “Quality evaluation of product reviews using an information quality framework”. Decis Support Syst;50:755–68, 2011. 8. Zhou L, Li B, Gao W, Wei Z, Wong K. “Unsupervised discovery of discourse relations for eliminating intra-sentence polarity ambiguities”,conference on Empirical Methods in Natural Language Processing (EMNLP’11),2011. 9. Heerschop B, Goossen F, Hogenboom A, Frasincar F, Kaymak U, de Jong F., “Polarity Analysis of Texts using Discourse Structure”, ACM Conference on Information and Knowledge Management (CIKM’11),2011. 10. Hu Nan, Bose Indranil, Koh Noi Sian, Liu Ling. ‘‘Manipulation of online reviews: an analysis of ratings, readability, and sentiments’’.Decis Support Syst ,52:674–84, 2012. 11. Duric Adnan, Song Fei., “Feature selection for sentiment analysis based on content and syntax models”, Decis Support Syst,53:704–11, 2012 12. Kang Hanhoon, Yoo Seong Joon, Han Dongil., “Senti-lexicon and improved Naı¨ve Bayes algorithms for sentiment analysis of restaurant reviews”, Expert Syst Appl ,39:6000–10, 2012 13. Moreo A, Romero M, Castro JL, Zurita JM. “Lexicon-based comments- oriented news sentiment analyzer system” Expert Syst Appl ,39:9166–80, 2012 14. Keshtkar Fazel, Inkpen Diana., “A bootstraping method for extracting paraphrases of emotion expressions from texts” Comput Intell;vol. 0, 2012 15. Balahur Alexandra, Hermida Jesu´ s M, Montoyo Andre´ s. “Detecting implicit expressions of emotion in text: a comparative analysi” , Decis Support Syst ,53:742–53, 2012

16. Moraes Rodrigo, Valiati Joa˜o Francisco, Gavia˜o Neto Wilson P., “Document-level sentiment classification: an empirical comparison between SVM and ANN”, Expert Syst Appl ,40:621–33, 2013. 17. Rui Huaxia, Liu Yizao, Whinston Andrew., “Whose and what chatter matters? The effect of tweets on movie sales”, Decis Support Syst 2013. 18. Ortigosa, Alvaro, José M. Martín, and Rosa M. Carro. "Sentiment analysis in Facebook and its application to e-learning." Computers in Human Behavior ,31 : 527-541, 2014 19. Khan, Aamera Z H; Atique, Mohammad; Thakare, V M. International Journal of Electronics, Communication and Soft Computing Science & Engineering (IJECSCSE), suppl. National Conference on "Advanced Technologies in..:89-91, 2015. 20. Agarwal, Basant, et al. "Concept-level sentiment analysis with dependency-based semantic parsing: a novel approach." Cognitive Computation ,7.4 :487-499, 2015 21. Zimbra, David, M. Ghiassi, and Sean Lee. "Brand-Related Twitter Sentiment Analysis Using Feature Engineering and the Dynamic Architecture for Artificial Neural Networks." 49th Hawaii International Conference on System Sciences (HICSS). IEEE, 2016. 22. Saif, Hassan, et al. "Contextual semantics for sentiment analysis of Twitter." Information Processing & Management 52: 5-19,2016.

International conference on I-SMAC (IoT in Social, Mobile, Analytics and Cloud) (I-SMAC 2017)

978-1-5090-3243-3/17/$31.00 ©2017 IEEE 925

Authorized licensed use limited to: University of the Cumberlands. Downloaded on November 27,2021 at 23:28:33 UTC from IEEE Xplore. Restrictions apply.

<< /ASCII85EncodePages false /AllowTransparency false /AutoPositionEPSFiles false /AutoRotatePages /None /Binding /Left /CalGrayProfile (Gray Gamma 2.2) /CalRGBProfile (sRGB IEC61966-2.1) /CalCMYKProfile (U.S. Web Coated \050SWOP\051 v2) /sRGBProfile (sRGB IEC61966-2.1) /CannotEmbedFontPolicy /Warning /CompatibilityLevel 1.4 /CompressObjects /Off /CompressPages true /ConvertImagesToIndexed true /PassThroughJPEGImages true /CreateJobTicket false /DefaultRenderingIntent /Default /DetectBlends true /DetectCurves 0.0000 /ColorConversionStrategy /LeaveColorUnchanged /DoThumbnails false /EmbedAllFonts true /EmbedOpenType false /ParseICCProfilesInComments true /EmbedJobOptions true /DSCReportingLevel 0 /EmitDSCWarnings false /EndPage -1 /ImageMemory 1048576 /LockDistillerParams true /MaxSubsetPct 100 /Optimize false /OPM 0 /ParseDSCComments false /ParseDSCCommentsForDocInfo false /PreserveCopyPage true /PreserveDICMYKValues true /PreserveEPSInfo false /PreserveFlatness true /PreserveHalftoneInfo true /PreserveOPIComments false /PreserveOverprintSettings true /StartPage 1 /SubsetFonts false /TransferFunctionInfo /Remove /UCRandBGInfo /Preserve /UsePrologue false /ColorSettingsFile () /AlwaysEmbed [ true /Arial-Black /Arial-BoldItalicMT /Arial-BoldMT /Arial-ItalicMT /ArialMT /ArialNarrow /ArialNarrow-Bold /ArialNarrow-BoldItalic /ArialNarrow-Italic /ArialUnicodeMS /BookAntiqua /BookAntiqua-Bold /BookAntiqua-BoldItalic /BookAntiqua-Italic /BookmanOldStyle /BookmanOldStyle-Bold /BookmanOldStyle-BoldItalic /BookmanOldStyle-Italic /BookshelfSymbolSeven /Century /CenturyGothic /CenturyGothic-Bold /CenturyGothic-BoldItalic /CenturyGothic-Italic /CenturySchoolbook /CenturySchoolbook-Bold /CenturySchoolbook-BoldItalic /CenturySchoolbook-Italic /ComicSansMS /ComicSansMS-Bold /CourierNewPS-BoldItalicMT /CourierNewPS-BoldMT /CourierNewPS-ItalicMT /CourierNewPSMT /EstrangeloEdessa /FranklinGothic-Medium /FranklinGothic-MediumItalic /Garamond /Garamond-Bold /Garamond-Italic /Gautami /Georgia /Georgia-Bold /Georgia-BoldItalic /Georgia-Italic /Haettenschweiler /Impact /Kartika /Latha /LetterGothicMT /LetterGothicMT-Bold /LetterGothicMT-BoldOblique /LetterGothicMT-Oblique /LucidaConsole /LucidaSans /LucidaSans-Demi /LucidaSans-DemiItalic /LucidaSans-Italic /LucidaSansUnicode /Mangal-Regular /MicrosoftSansSerif /MonotypeCorsiva /MSReferenceSansSerif /MSReferenceSpecialty /MVBoli /PalatinoLinotype-Bold /PalatinoLinotype-BoldItalic /PalatinoLinotype-Italic /PalatinoLinotype-Roman /Raavi /Shruti /Sylfaen /SymbolMT /Tahoma /Tahoma-Bold /TimesNewRomanMT-ExtraBold /TimesNewRomanPS-BoldItalicMT /TimesNewRomanPS-BoldMT /TimesNewRomanPS-ItalicMT /TimesNewRomanPSMT /Trebuchet-BoldItalic /TrebuchetMS /TrebuchetMS-Bold /TrebuchetMS-Italic /Tunga-Regular /Verdana /Verdana-Bold /Verdana-BoldItalic /Verdana-Italic /Vrinda /Webdings /Wingdings2 /Wingdings3 /Wingdings-Regular /ZWAdobeF ] /NeverEmbed [ true ] /AntiAliasColorImages false /CropColorImages true /ColorImageMinResolution 200 /ColorImageMinResolutionPolicy /OK /DownsampleColorImages true /ColorImageDownsampleType /Bicubic /ColorImageResolution 300 /ColorImageDepth -1 /ColorImageMinDownsampleDepth 1 /ColorImageDownsampleThreshold 1.50000 /EncodeColorImages true /ColorImageFilter /DCTEncode /AutoFilterColorImages false /ColorImageAutoFilterStrategy /JPEG /ColorACSImageDict << /QFactor 0.76 /HSamples [2 1 1 2] /VSamples [2 1 1 2] >> /ColorImageDict << /QFactor 0.76 /HSamples [2 1 1 2] /VSamples [2 1 1 2] >> /JPEG2000ColorACSImageDict << /TileWidth 256 /TileHeight 256 /Quality 15 >> /JPEG2000ColorImageDict << /TileWidth 256 /TileHeight 256 /Quality 15 >> /AntiAliasGrayImages false /CropGrayImages true /GrayImageMinResolution 200 /GrayImageMinResolutionPolicy /OK /DownsampleGrayImages true /GrayImageDownsampleType /Bicubic /GrayImageResolution 300 /GrayImageDepth -1 /GrayImageMinDownsampleDepth 2 /GrayImageDownsampleThreshold 1.50000 /EncodeGrayImages true /GrayImageFilter /DCTEncode /AutoFilterGrayImages false /GrayImageAutoFilterStrategy /JPEG /GrayACSImageDict << /QFactor 0.76 /HSamples [2 1 1 2] /VSamples [2 1 1 2] >> /GrayImageDict << /QFactor 0.76 /HSamples [2 1 1 2] /VSamples [2 1 1 2] >> /JPEG2000GrayACSImageDict << /TileWidth 256 /TileHeight 256 /Quality 15 >> /JPEG2000GrayImageDict << /TileWidth 256 /TileHeight 256 /Quality 15 >> /AntiAliasMonoImages false /CropMonoImages true /MonoImageMinResolution 400 /MonoImageMinResolutionPolicy /OK /DownsampleMonoImages true /MonoImageDownsampleType /Bicubic /MonoImageResolution 600 /MonoImageDepth -1 /MonoImageDownsampleThreshold 1.50000 /EncodeMonoImages true /MonoImageFilter /CCITTFaxEncode /MonoImageDict << /K -1 >> /AllowPSXObjects false /CheckCompliance [ /None ] /PDFX1aCheck false /PDFX3Check false /PDFXCompliantPDFOnly false /PDFXNoTrimBoxError true /PDFXTrimBoxToMediaBoxOffset [ 0.00000 0.00000 0.00000 0.00000 ] /PDFXSetBleedBoxToMediaBox true /PDFXBleedBoxToTrimBoxOffset [ 0.00000 0.00000 0.00000 0.00000 ] /PDFXOutputIntentProfile (None) /PDFXOutputConditionIdentifier () /PDFXOutputCondition () /PDFXRegistryName () /PDFXTrapped /False /CreateJDFFile false /Description << /CHS <FEFF4f7f75288fd94e9b8bbe5b9a521b5efa7684002000410064006f006200650020005000440046002065876863900275284e8e55464e1a65876863768467e5770b548c62535370300260a853ef4ee54f7f75280020004100630072006f0062006100740020548c002000410064006f00620065002000520065006100640065007200200035002e003000204ee553ca66f49ad87248672c676562535f00521b5efa768400200050004400460020658768633002> /CHT <FEFF4f7f752890194e9b8a2d7f6e5efa7acb7684002000410064006f006200650020005000440046002065874ef69069752865bc666e901a554652d965874ef6768467e5770b548c52175370300260a853ef4ee54f7f75280020004100630072006f0062006100740020548c002000410064006f00620065002000520065006100640065007200200035002e003000204ee553ca66f49ad87248672c4f86958b555f5df25efa7acb76840020005000440046002065874ef63002> /DAN <FEFF004200720075006700200069006e0064007300740069006c006c0069006e006700650072006e0065002000740069006c0020006100740020006f007000720065007400740065002000410064006f006200650020005000440046002d0064006f006b0075006d0065006e007400650072002c0020006400650072002000650067006e006500720020007300690067002000740069006c00200064006500740061006c006a006500720065007400200073006b00e60072006d007600690073006e0069006e00670020006f00670020007500640073006b007200690076006e0069006e006700200061006600200066006f0072007200650074006e0069006e006700730064006f006b0075006d0065006e007400650072002e0020004400650020006f007000720065007400740065006400650020005000440046002d0064006f006b0075006d0065006e0074006500720020006b0061006e002000e50062006e00650073002000690020004100630072006f00620061007400200065006c006c006500720020004100630072006f006200610074002000520065006100640065007200200035002e00300020006f00670020006e0079006500720065002e> /DEU <FEFF00560065007200770065006e00640065006e0020005300690065002000640069006500730065002000450069006e007300740065006c006c0075006e00670065006e0020007a0075006d002000450072007300740065006c006c0065006e00200076006f006e002000410064006f006200650020005000440046002d0044006f006b0075006d0065006e00740065006e002c00200075006d002000650069006e00650020007a0075007600650072006c00e40073007300690067006500200041006e007a006500690067006500200075006e00640020004100750073006700610062006500200076006f006e00200047006500730063006800e40066007400730064006f006b0075006d0065006e00740065006e0020007a0075002000650072007a00690065006c0065006e002e00200044006900650020005000440046002d0044006f006b0075006d0065006e007400650020006b00f6006e006e0065006e0020006d006900740020004100630072006f00620061007400200075006e0064002000520065006100640065007200200035002e003000200075006e00640020006800f600680065007200200067006500f600660066006e00650074002000770065007200640065006e002e> /ESP <FEFF005500740069006c0069006300650020006500730074006100200063006f006e0066006900670075007200610063006900f3006e0020007000610072006100200063007200650061007200200064006f00630075006d0065006e0074006f0073002000640065002000410064006f00620065002000500044004600200061006400650063007500610064006f007300200070006100720061002000760069007300750061006c0069007a00610063006900f3006e0020006500200069006d0070007200650073006900f3006e00200064006500200063006f006e006600690061006e007a006100200064006500200064006f00630075006d0065006e0074006f007300200063006f006d00650072006300690061006c00650073002e002000530065002000700075006500640065006e00200061006200720069007200200064006f00630075006d0065006e0074006f00730020005000440046002000630072006500610064006f007300200063006f006e0020004100630072006f006200610074002c002000410064006f00620065002000520065006100640065007200200035002e003000200079002000760065007200730069006f006e0065007300200070006f00730074006500720069006f007200650073002e> /FRA <FEFF005500740069006c006900730065007a00200063006500730020006f007000740069006f006e00730020006100660069006e00200064006500200063007200e900650072002000640065007300200064006f00630075006d0065006e00740073002000410064006f006200650020005000440046002000700072006f00660065007300730069006f006e006e0065006c007300200066006900610062006c0065007300200070006f007500720020006c0061002000760069007300750061006c00690073006100740069006f006e0020006500740020006c00270069006d007000720065007300730069006f006e002e0020004c0065007300200064006f00630075006d0065006e00740073002000500044004600200063007200e900e90073002000700065007500760065006e0074002000ea0074007200650020006f007500760065007200740073002000640061006e00730020004100630072006f006200610074002c002000610069006e00730069002000710075002700410064006f00620065002000520065006100640065007200200035002e0030002000650074002000760065007200730069006f006e007300200075006c007400e90072006900650075007200650073002e> /ITA (Utilizzare queste impostazioni per creare documenti Adobe PDF adatti per visualizzare e stampare documenti aziendali in modo affidabile. I documenti PDF creati possono essere aperti con Acrobat e Adobe Reader 5.0 e versioni successive.) /JPN <FEFF30d330b830cd30b9658766f8306e8868793a304a3088307353705237306b90693057305f002000410064006f0062006500200050004400460020658766f8306e4f5c6210306b4f7f75283057307e305930023053306e8a2d5b9a30674f5c62103055308c305f0020005000440046002030d530a130a430eb306f3001004100630072006f0062006100740020304a30883073002000410064006f00620065002000520065006100640065007200200035002e003000204ee5964d3067958b304f30533068304c3067304d307e305930023053306e8a2d5b9a3067306f30d530a930f330c8306e57cb30818fbc307f3092884c3044307e30593002> /KOR <FEFFc7740020c124c815c7440020c0acc6a9d558c5ec0020be44c988b2c8c2a40020bb38c11cb97c0020c548c815c801c73cb85c0020bcf4ace00020c778c1c4d558b2940020b3700020ac00c7a50020c801d569d55c002000410064006f0062006500200050004400460020bb38c11cb97c0020c791c131d569b2c8b2e4002e0020c774b807ac8c0020c791c131b41c00200050004400460020bb38c11cb2940020004100630072006f0062006100740020bc0f002000410064006f00620065002000520065006100640065007200200035002e00300020c774c0c1c5d0c11c0020c5f40020c2180020c788c2b5b2c8b2e4002e> /NLD (Gebruik deze instellingen om Adobe PDF-documenten te maken waarmee zakelijke documenten betrouwbaar kunnen worden weergegeven en afgedrukt. De gemaakte PDF-documenten kunnen worden geopend met Acrobat en Adobe Reader 5.0 en hoger.) /NOR <FEFF004200720075006b00200064006900730073006500200069006e006e007300740069006c006c0069006e00670065006e0065002000740069006c002000e50020006f0070007000720065007400740065002000410064006f006200650020005000440046002d0064006f006b0075006d0065006e00740065007200200073006f006d002000650072002000650067006e0065007400200066006f00720020007000e5006c006900740065006c006900670020007600690073006e0069006e00670020006f00670020007500740073006b007200690066007400200061007600200066006f0072007200650074006e0069006e006700730064006f006b0075006d0065006e007400650072002e0020005000440046002d0064006f006b0075006d0065006e00740065006e00650020006b0061006e002000e50070006e00650073002000690020004100630072006f00620061007400200065006c006c00650072002000410064006f00620065002000520065006100640065007200200035002e003000200065006c006c00650072002e> /PTB <FEFF005500740069006c0069007a006500200065007300730061007300200063006f006e00660069006700750072006100e700f50065007300200064006500200066006f0072006d00610020006100200063007200690061007200200064006f00630075006d0065006e0074006f0073002000410064006f00620065002000500044004600200061006400650071007500610064006f00730020007000610072006100200061002000760069007300750061006c0069007a006100e700e3006f002000650020006100200069006d0070007200650073007300e3006f00200063006f006e0066006900e1007600650069007300200064006500200064006f00630075006d0065006e0074006f007300200063006f006d0065007200630069006100690073002e0020004f007300200064006f00630075006d0065006e0074006f00730020005000440046002000630072006900610064006f007300200070006f00640065006d0020007300650072002000610062006500720074006f007300200063006f006d0020006f0020004100630072006f006200610074002000650020006f002000410064006f00620065002000520065006100640065007200200035002e0030002000650020007600650072007300f50065007300200070006f00730074006500720069006f007200650073002e> /SUO <FEFF004b00e40079007400e40020006e00e40069007400e4002000610073006500740075006b007300690061002c0020006b0075006e0020006c0075006f0074002000410064006f0062006500200050004400460020002d0064006f006b0075006d0065006e007400740065006a0061002c0020006a006f0074006b006100200073006f0070006900760061007400200079007200690074007900730061007300690061006b00690072006a006f006a0065006e0020006c0075006f00740065007400740061007600610061006e0020006e00e400790074007400e4006d0069007300650065006e0020006a0061002000740075006c006f007300740061006d0069007300650065006e002e0020004c0075006f0064007500740020005000440046002d0064006f006b0075006d0065006e00740069007400200076006f0069006400610061006e0020006100760061007400610020004100630072006f0062006100740069006c006c00610020006a0061002000410064006f00620065002000520065006100640065007200200035002e0030003a006c006c00610020006a006100200075007500640065006d006d0069006c006c0061002e> /SVE <FEFF0041006e007600e4006e00640020006400650020006800e4007200200069006e0073007400e4006c006c006e0069006e006700610072006e00610020006f006d002000640075002000760069006c006c00200073006b006100700061002000410064006f006200650020005000440046002d0064006f006b0075006d0065006e007400200073006f006d00200070006100730073006100720020006600f60072002000740069006c006c006600f60072006c00690074006c006900670020007600690073006e0069006e00670020006f006300680020007500740073006b007200690066007400650072002000610076002000610066006600e4007200730064006f006b0075006d0065006e0074002e002000200053006b006100700061006400650020005000440046002d0064006f006b0075006d0065006e00740020006b0061006e002000f600700070006e00610073002000690020004100630072006f0062006100740020006f00630068002000410064006f00620065002000520065006100640065007200200035002e00300020006f00630068002000730065006e006100720065002e> /ENU (Use these settings to create PDFs that match the "Required" settings for PDF Specification 4.01) >> >> setdistillerparams << /HWResolution [600 600] /PageSize [612.000 792.000] >> setpagedevice