Mercurial > hg > Papers > 2014 > nobuyasu-master
changeset 58:3c070028199b
Added consistency_quorum
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 01 Feb 2014 02:12:17 +0900 |
parents | 39c2180b5719 |
children | 81508c27228a |
files | paper/chapter1.tex paper/figures/consistency_quorum.pdf paper/figures/consistency_quorum.xbb paper/figures/consisutency_quorum.pdf paper/figures/consisutency_quorum.xbb paper/graffle/consisutency_quorum.graffle paper/master_paper.pdf |
diffstat | 7 files changed, 944 insertions(+), 45 deletions(-) [+] |
line wrap: on
line diff
--- a/paper/chapter1.tex Fri Jan 31 23:33:49 2014 +0900 +++ b/paper/chapter1.tex Sat Feb 01 02:12:17 2014 +0900 @@ -7,22 +7,26 @@ 最後に既存の NoSQL データベースとして Cassandra, MongoDB, Neo4j の特徴について述べる. \section{Relational Database} -Relational Database(RDB)は最も長く広く使われているデータベースである. -列と行からなる2次元のテーブルによるスキーマは - +RDBは列と行からなる2次元のテーブルにより実装されるデータベースである. +データ型として文字列, 数値, 日付, BOOL型がありシステムによりデータに型が強制される. +RDBはスキーマの決まったデータを扱うことに長けている. +構造化言語問い合わせ言語としてSQLがある. -\section{RDB と NoSQL} -データベースは大別するとRDBとNoSQLに分けられる. -RDBとは行と列からなる2次元のテーブルによりデータを保持するデータベースである. -RDBはデータベースアクセス言語としてSQL言語を持ち, 一台のマシンでデータを扱う分には最適である. -しかし, RDB はマシン単体以上の処理性能をだすことができない. -そこで, 汎用的なPCをいくつも用意しデータや処理を分散して管理できるデータベースが求められた. -それらのデータベースはNoSQL(Not Only SQL) と呼ばれSQLを使用しないデータベースのことを指す. -2次元のテーブルでは無く, Key-Value, ドキュメント, グラフといった表現形式でデータの保持を行う. +RDBはデータベースの中でも長年主要な立ち位置にあるデータベースだが, 苦手としている +ことがある. +それは, スキーマレスなデータの扱いやマシンの台数を増やして処理速度 +をあげることである. +それらRDBが苦手としていることを得意とするNoSQLと呼ばれるデータベースがある. + +\section{NoSQLデータベース} +NoSQLはNot Only SQLの略で, SQLを使わないデータベースのことを指す. +NoSQLデータベースはRDBとは違いスキーマがない. +そのため, 扱おうとしているデータの形が決まっていなくても気軽に使うことができる. +また, スケーラビリティも持ちあわせており, 汎用的なマシンを集めることで性能をあげる +ことができるといった特徴を持つ. + NoSQLは, RDBには向いていない処理を行うことを目的にしている. -% 分散データベースは, NoSQL に分けられる. - \section{CAP 定理} 分散データシステムにおいて次の3つを同時に保証することはできない \begin{itemize} @@ -42,37 +46,6 @@ 分散データシステムを考える場合は, この CAP 定理を意識していなければならない. -\section{Cassandra} -Cassandra\cite{cassandra} は2008年7月にFacebookによってオープンソースとして公開された Key-Value なデータベースである. -AmazonのDynamo\cite{dynamo} という分散Key-Valueデータベースの影響を受けて作られている. -スキーマレスな NoSQL データベースになる. - -Cassandraはサーバノードの配置にConsistent hashingアルゴリズムを用いる. -Consistent hashingによりノードは論理的にリング上に配置される. -リングには数値で表される位置がある. -データを書き込む際には, キーとなるハッシュ値に従いそのリングの位置から時計回りに近いサーバノードへと書き込まれる. -Consistent hashingを用いることで, ノードの数が増減した場合に, 再配置をしなくてもよいという利点がある. -データの偏りにより少数のサーバへの負荷が大きい場合に, 負荷が高いハッシュ値が指すリング上に -新たなノードを追加することで負荷を下げるといった手段もとれる. - -データを最大どれだけ配置するかを示すReplication factorと, データの読み書きをいくつのノードから -行うのかを決めるConsistencyレベルを設定できる. -Consistencyレベルには主に ONE, QUORAM, ALL がある. -Replication factorの数値を N とした場合, ONE は1つのノード, QUORUM は N/2 + 1 のノード, ALL は N のノード -へと読み書きを行う. -Consistencyハッシング, Replication factorとConsistencyレベルの設定により Cassandra は -高い可用性と分断耐性を持つ. - -% keyspace, super column といったデータの表現についても述べるべきか? -% Replication factorはkeyspace毎に設定できる -\begin{figure}[htpb] - \begin{center} - \includegraphics[scale=0.7]{figures/cassandra_ring.pdf} - \caption{Consistency・ハッシング} - \label{fig:cassandra_ring} - \end{center} -\end{figure} - \newpage \section{MongoDB} @@ -127,6 +100,55 @@ \end{center} \end{figure} +\newpage +\section{memcached} + + + + + +\section{Cassandra} +Cassandra\cite{cassandra} は2008年7月にFacebookによってオープンソースとして公開された Key-Value なデータベースである. +AmazonのDynamo\cite{dynamo} という分散Key-Valueデータベースの影響を受けて作られている. +スキーマレスな NoSQL データベースになる. + +Cassandraはサーバノードの配置にConsistent hashingアルゴリズムを用いる. +Consistent hashingによりノードは論理的にリング上に配置される. +リングには数値で表される位置がある. +データを書き込む際には, キーとなるハッシュ値に従いそのリングの位置から時計回りに近いサーバノードへと書き込まれる. +Consistent hashingを用いることで, ノードの数が増減した場合に, 再配置をしなくてもよいという利点がある. +データの偏りにより少数のサーバへの負荷が大きい場合に, 負荷が高いハッシュ値が指すリング上に +新たなノードを追加することで負荷を下げるといった手段もとれる. +Consistency Hashingによるリングの形成を図\ref{fig:cassandra_ring}に示す. + +\begin{figure}[htpb] + \begin{center} + \includegraphics[scale=0.7]{figures/cassandra_ring.pdf} + \caption{ConsisteyncyLevel QUORUMによる書き込み} + \label{fig:cassandra_ring} + \end{center} +\end{figure} + +Cassandraはデータを最大どれだけ配置するかを示すReplication factorと, データの読み書きをいくつのノードから +行うのかを決めるConsistency Levelの設定が行える. +Consistency Levelには主に ONE, QUORAM, ALL がある. +Replication factorの数値をNとした場合, ONE は1つのノード, QUORUMは N/2 + 1 のノード, ALLはNのノード +へと読み書きを行う. +Replication factorとConsistentcy Levelの設定により, Cassandraは最新のデータを取得したいときと +そうでないときで読み込みと書き込みの速度をあげることができる. +一貫性が重要なデータに関してはQUORUMにより書き込み読み込みを行うことで常に最新のデータを取得することができる. +多少データが古くてもよい場合はONEなどを使用することでレスポンスを早くすることができる. +ConsisutencyLevel QUORUMの時のデータ書き込みについて図\ref{fig:cassandra_quorum}に示す. +Consistencyハッシング, Replication factorとConsistencyレベルの設定により Cassandra は +高い可用性と分断耐性を持つ. + +\begin{figure}[htpb] + \begin{center} + \includegraphics[scale=0.6]{figures/consistency_quorum.pdf} + \caption{ConsisteyncyLevel QUORUMによる書き込み} + \label{fig:cassandra_quorum} + \end{center} +\end{figure} @@ -134,4 +156,3 @@ -
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/figures/consistency_quorum.xbb Sat Feb 01 02:12:17 2014 +0900 @@ -0,0 +1,8 @@ +%%Title: ./figures/consistency_quorum.pdf +%%Creator: extractbb 20130405 +%%BoundingBox: 0 0 806 301 +%%HiResBoundingBox: 0.000000 0.000000 806.000000 301.000000 +%%PDFVersion: 1.4 +%%Pages: 1 +%%CreationDate: Sat Feb 1 02:11:41 2014 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/figures/consisutency_quorum.xbb Sat Feb 01 02:12:17 2014 +0900 @@ -0,0 +1,8 @@ +%%Title: ./consisutency_quorum.pdf +%%Creator: extractbb 20130405 +%%BoundingBox: 0 0 806 301 +%%HiResBoundingBox: 0.000000 0.000000 806.000000 301.000000 +%%PDFVersion: 1.4 +%%Pages: 1 +%%CreationDate: Sat Feb 1 02:02:52 2014 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/graffle/consisutency_quorum.graffle Sat Feb 01 02:12:17 2014 +0900 @@ -0,0 +1,862 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>ActiveLayerIndex</key> + <integer>0</integer> + <key>ApplicationVersion</key> + <array> + <string>com.omnigroup.OmniGraffle</string> + <string>139.18.0.187838</string> + </array> + <key>AutoAdjust</key> + <true/> + <key>BackgroundGraphic</key> + <dict> + <key>Bounds</key> + <string>{{0, 0}, {1118, 783}}</string> + <key>Class</key> + <string>SolidGraphic</string> + <key>ID</key> + <integer>2</integer> + <key>Style</key> + <dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + </dict> + <key>BaseZoom</key> + <integer>0</integer> + <key>CanvasOrigin</key> + <string>{0, 0}</string> + <key>ColumnAlign</key> + <integer>1</integer> + <key>ColumnSpacing</key> + <real>36</real> + <key>CreationDate</key> + <string>2014-01-31 16:16:09 +0000</string> + <key>Creator</key> + <string>Oshiro Nobuyasu</string> + <key>DisplayScale</key> + <string>1 0/72 in = 1.0000 in</string> + <key>GraphDocumentVersion</key> + <integer>8</integer> + <key>GraphicsList</key> + <array> + <dict> + <key>Bounds</key> + <string>{{457.22728857398033, 90.112236022949219}, {78, 21}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>79</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'96\'e2\'82\'a2\'8d\'87\'82\'ed\'82\'b9}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{499.0389404296875, 234.12240600585938}, {78, 21}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>78</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'96\'e2\'82\'a2\'8d\'87\'82\'ed\'82\'b9}</string> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>69</integer> + </dict> + <key>ID</key> + <integer>77</integer> + <key>Points</key> + <array> + <string>{556.61977430850789, 116.77790796482238}</string> + <string>{490.30877769978633, 276.03840501972201}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>67</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>68</integer> + </dict> + <key>ID</key> + <integer>76</integer> + <key>Points</key> + <array> + <string>{537.32273721337003, 116.57775552750067}</string> + <string>{480.15128321200524, 151.64672243507107}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>67</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{591.4739990234375, 50.816314697265625}, {209.40908813476562, 85.591842651367188}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>75</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3\'91\'e4\'82\'cc\'82\'a4\'82\'bf2\'91\'e4\'82\'c9\'96\'e2\'82\'a2\'8d\'87\'82\'ed\'82\'b9\'82\'ea\'82\'ce\ +\'8d\'c5\'90\'56\'82\'cc\'83\'66\'81\'5b\'83\'5e\'82\'aa\'82\'c6\'82\'ea\'82\'e9}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{644, 151.90815734863281}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>70</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 2}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{455.45453158291889, 276.49999237060547}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>69</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 4}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{426, 151.90815734863281}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>68</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 5}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{535.22726717862201, 84.908157348632812}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>67</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 1}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{610, 276.50000000000011}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>66</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 3}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{446.51948051948068, 97.193871634347119}, {233.66233766233765, 221.42857142857136}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>65</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>ID</key> + <integer>53</integer> + <key>Points</key> + <array> + <string>{306, 209}</string> + <string>{412.90261840820312, 209}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + <key>Width</key> + <real>3</real> + </dict> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{200.4935302734375, 57.816314697265625}, {209.40908813476562, 85.591842651367188}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>47</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'83\'4c\'81\'5b\'82\'cc\'92\'6c\'82\'c6Replication factor\'82\'a9\'82\'e7 node 3 ~ node 5 \'82\'dc\'82\'c5\'82\'c9\'8f\'91\'82\'ab\'8d\'9e\'82\'de\'83\'66\'81\'5b\'83\'5e\'82\'be\'82\'c6\'82\'b7\'82\'e9}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{192.24676513671875, 235.20407104492188}, {78, 21}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>46</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8f\'91\'82\'ab\'8d\'9e\'82\'dd}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{114.24676513671875, 214.20407867431641}, {78, 21}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>45</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>stroke</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8f\'91\'82\'ab\'8d\'9e\'82\'dd}</string> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>4</integer> + </dict> + <key>ID</key> + <integer>42</integer> + <key>Points</key> + <array> + <string>{251.94115844425767, 183.59197566301455}</string> + <string>{111.76012638541454, 276.22433732152984}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>38</integer> + </dict> + </dict> + <dict> + <key>Class</key> + <string>LineGraphic</string> + <key>Head</key> + <dict> + <key>ID</key> + <integer>5</integer> + </dict> + <key>ID</key> + <integer>41</integer> + <key>Points</key> + <array> + <string>{271.70624090817296, 183.79868245182686}</string> + <string>{246.54051233858033, 276.01763816211218}</string> + </array> + <key>Style</key> + <dict> + <key>stroke</key> + <dict> + <key>HeadArrow</key> + <string>FilledArrow</string> + <key>Legacy</key> + <true/> + <key>LineType</key> + <integer>1</integer> + <key>TailArrow</key> + <string>0</string> + </dict> + </dict> + <key>Tail</key> + <dict> + <key>ID</key> + <integer>38</integer> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{248, 151.90815734863281}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>38</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 2}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{59.454531582918889, 276.49999237060547}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>4</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 4}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{30, 151.90815734863281}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>3</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 5}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{139.22726717862207, 84.908157348632812}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>1</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 1}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{214, 276.50000000000011}, {56.246753246753265, 31.408163265306126}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>5</integer> + <key>Shape</key> + <string>Rectangle</string> + <key>Text</key> + <dict> + <key>Text</key> + <string>{\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 3}</string> + </dict> + </dict> + <dict> + <key>Bounds</key> + <string>{{50.51948051948068, 97.193871634347119}, {233.66233766233765, 221.42857142857136}}</string> + <key>Class</key> + <string>ShapedGraphic</string> + <key>ID</key> + <integer>28</integer> + <key>Shape</key> + <string>Circle</string> + <key>Style</key> + <dict> + <key>fill</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + <key>shadow</key> + <dict> + <key>Draws</key> + <string>NO</string> + </dict> + </dict> + <key>Text</key> + <dict> + <key>VerticalPad</key> + <integer>0</integer> + </dict> + </dict> + </array> + <key>GridInfo</key> + <dict/> + <key>GuidesLocked</key> + <string>NO</string> + <key>GuidesVisible</key> + <string>YES</string> + <key>HPages</key> + <integer>2</integer> + <key>ImageCounter</key> + <integer>1</integer> + <key>KeepToScale</key> + <false/> + <key>Layers</key> + <array> + <dict> + <key>Lock</key> + <string>NO</string> + <key>Name</key> + <string>Layer 1</string> + <key>Print</key> + <string>YES</string> + <key>View</key> + <string>YES</string> + </dict> + </array> + <key>LayoutInfo</key> + <dict> + <key>Animate</key> + <string>NO</string> + <key>circoMinDist</key> + <real>18</real> + <key>circoSeparation</key> + <real>0.0</real> + <key>layoutEngine</key> + <string>dot</string> + <key>neatoSeparation</key> + <real>0.0</real> + <key>twopiSeparation</key> + <real>0.0</real> + </dict> + <key>LinksVisible</key> + <string>NO</string> + <key>MagnetsVisible</key> + <string>NO</string> + <key>MasterSheets</key> + <array/> + <key>ModificationDate</key> + <string>2014-01-31 17:05:32 +0000</string> + <key>Modifier</key> + <string>Oshiro Nobuyasu</string> + <key>NotesVisible</key> + <string>NO</string> + <key>Orientation</key> + <integer>2</integer> + <key>OriginVisible</key> + <string>NO</string> + <key>PageBreaks</key> + <string>YES</string> + <key>PrintInfo</key> + <dict> + <key>NSBottomMargin</key> + <array> + <string>float</string> + <string>41</string> + </array> + <key>NSHorizonalPagination</key> + <array> + <string>coded</string> + <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string> + </array> + <key>NSLeftMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + <key>NSPaperSize</key> + <array> + <string>size</string> + <string>{595, 842}</string> + </array> + <key>NSPrintReverseOrientation</key> + <array> + <string>int</string> + <string>0</string> + </array> + <key>NSRightMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + <key>NSTopMargin</key> + <array> + <string>float</string> + <string>18</string> + </array> + </dict> + <key>PrintOnePage</key> + <false/> + <key>ReadOnly</key> + <string>NO</string> + <key>RowAlign</key> + <integer>1</integer> + <key>RowSpacing</key> + <real>36</real> + <key>SheetTitle</key> + <string>Canvas 1</string> + <key>SmartAlignmentGuidesActive</key> + <string>YES</string> + <key>SmartDistanceGuidesActive</key> + <string>YES</string> + <key>UniqueID</key> + <integer>1</integer> + <key>UseEntirePage</key> + <false/> + <key>VPages</key> + <integer>1</integer> + <key>WindowInfo</key> + <dict> + <key>CurrentSheet</key> + <integer>0</integer> + <key>ExpandedCanvases</key> + <array> + <dict> + <key>name</key> + <string>Canvas 1</string> + </dict> + </array> + <key>Frame</key> + <string>{{574, 138}, {859, 920}}</string> + <key>ListView</key> + <true/> + <key>OutlineWidth</key> + <integer>142</integer> + <key>RightSidebar</key> + <false/> + <key>ShowRuler</key> + <true/> + <key>Sidebar</key> + <true/> + <key>SidebarWidth</key> + <integer>120</integer> + <key>VisibleRegion</key> + <string>{{59, 0}, {710, 766}}</string> + <key>Zoom</key> + <real>1</real> + <key>ZoomValues</key> + <array> + <array> + <string>Canvas 1</string> + <real>1</real> + <real>1</real> + </array> + </array> + </dict> +</dict> +</plist>