fis3 工程化工具應用實踐經驗表單化

2020-08-10 09:54:19
  1. fis3 簡介
    fis3 是狼廠出產的工程化構建工具,在其廠內得到廣泛推廣應用,在國內也火了很長一段時間。而在 webpack 和 rollup 大紅大紫的當下,fis3 似乎在日新月異的前端圈裏漸漸地淡出大衆的視野。

暫不說孰優孰劣,好用夠用就是最好的。fis3 相對已比較成熟穩定,又太長時間沒有新東西拿出來,在 tree shaking 這些技術面前顯得有些落後。當前應該仍有不少的團隊在持續地使用 fis3,但其使用是如此簡單,以至於沒有什麼太多的東西能拿來不斷的吹牛的,來自於第三方的分享是如此之少。另外,fis3 的開源社羣生態相對來說比較糟糕,其在國際化的路途上似乎是從未想過要踏出任何一步。不進步就是落後,fis3 顯得似乎要沒落下去的趨勢。扯多了,下面 下麪進入本文正題。

  1. 使用 fis3
    fis3 的使用可簡單概括爲如下幾步:

全域性安裝 fis3 npm i -g fis3
在專案目錄下安裝需要用到的 fis3 外掛(可以寫入 package.json 中的依賴列表中,也可以全域性安裝)
在專案目錄中新建 fis-conf.js 組態檔,書寫 fis3 設定
執行 fis3 編譯命令
下面 下麪這張圖可以描述 fis3 的基本工作原理:

fis3 通過靈活的外掛機制 機製,可以在其工作的各個流程實現不同的功能處理,從而滿足多樣化的功能需求。fis3 的外掛開發也是非常簡單的,幾行程式碼都可以實現一個簡單卻功能完善的外掛。

fis-conf.js 組態檔是 fis3 執行的入口。下面 下麪是一個可以處理 vuejs、less、stylelint、eslint、es6 的設定範例:如果你不瞭解 fis3,可以前往官方大致瀏覽一遍以快速瞭解,本文不對其基本原理和入門作進一步的詳細介紹。

  1. fis3 應用實踐
    相對來說,fis3 的使用是簡單高效的,通過簡單的設定或外掛擴充套件,即可以處理絕大部分前端工程化問題。

我們從 2015 年初開始實踐基於 nodejs 的前後端分離模式,之後在幾乎所有的內部中後臺專案中應用,同時開始使用 fis2/fis3 進行工程化構建管理,在 fis 體系的道路上可以說已經走了相當遙遠的路程。在長期的應用實踐中,我們踩了很多的坑,合理的設定應用是簡單又重要的。下面 下麪爲一些主要的應用經驗與技巧列舉。

3.1 設定專案按需載入
fis3 可以通過 project.files 來設定預設處理檔案,通過 project.ignore 來設定預設忽略的檔案。

project.files 列表中的內容會被 fis3 遍歷處理。但是它的預設值是 ‘*’,即代表fis-conf.js目錄下的所有檔案。

當專案龐大檔案繁多時,所有檔案都去進行遍歷處理肯定會有問題,其處理時長讓你等的想死。這個問題有非常多的同學提過 issue 質疑。

我們需要修改 project.files 的取值解決這個問題。具體哪些檔案需要 fis3 來處理?

好的方式是以 html 檔案爲入口。所有在 html 入口檔案參照鏈上的檔案都會被加入處理列表中,從而實現了按需載入處理。另外,對於一些非模組化的靜態內容,可能不會出現在依賴列表中,但在特定的時刻也會用到,這些也應該加入到專案檔案列表中。

所以你可以這樣來設定:

1
2
3
4
5
fis.set(‘project.files’, [
‘view/*.html’, //只處理 html,根據 html 參照依賴分析其他檔案
‘server/’, // node server 內容應發佈
'resources/static/
’ // 靜態資源應發佈
]);
project.ignore 列表中的檔案 fis3 不會主動去讀取處理,除非是被需要處理的檔案依賴了。其實設定了按需載入模式後,該項就可以忽略了。

3.2 壓縮 moduleId
fis3 可以採用 commonjs 規範編寫程式碼以取得良好的編碼體驗,最終編譯輸出爲 AMD 規範的內容。
你可以直接書寫 es6 module 規範的程式碼,由 babel 或 typescript 外掛編譯爲 commonjs 規範內容,再交給 fis3 處理爲 AMD 規範的最終檔案。

AMD 規範需要爲每一個依賴檔案定義一個引入 Id,例如對於 jquery 的依賴參照:http://www.imdb.com/list/ls087856147/?ref_=otl_FVxVOFN
http://www.imdb.com/list/ls087856160/?ref_=otl_SMIhcyh
http://www.imdb.com/list/ls087856104/?ref_=otl_NoLVaBw
http://www.imdb.com/list/ls087856791/?ref_=otl_RppFZih
http://www.imdb.com/list/ls087856730/?ref_=otl_muLzpxB
http://www.imdb.com/list/ls087853888/?ref_=otl_RfnPNko
http://www.imdb.com/list/ls087856541/?ref_=otl_chRkqqB
http://www.imdb.com/list/ls087856533/?ref_=otl_ZvigFlH
http://www.imdb.com/list/ls087856508/?ref_=otl_YLqHJcU
http://www.imdb.com/list/ls087856093/?ref_=otl_RCtxGLF
http://www.imdb.com/list/ls087856019/?ref_=otl_ulXPEym
http://www.imdb.com/list/ls087856051/?ref_=otl_mzYOXcX
http://www.imdb.com/list/ls087853828/?ref_=otl_kbCVqVP
http://www.imdb.com/list/ls087853831/?ref_=otl_NURpHuG
http://www.imdb.com/list/ls087853803/?ref_=otl_QvBFaPj
http://www.imdb.com/list/ls087853948/?ref_=otl_JJxuXCQ
http://www.imdb.com/list/ls087853936/?ref_=otl_knbdRPm
http://www.imdb.com/list/ls087853975/?ref_=otl_YHugwVd
http://www.imdb.com/list/ls087853498/?ref_=otl_kunKcRj
http://www.imdb.com/list/ls087853423/?ref_=otl_NFtCKbh
http://www.imdb.com/list/ls087853452/?ref_=otl_zIIMILz
http://www.imdb.com/list/ls087853289/?ref_=otl_RLCPwSD
http://www.imdb.com/list/ls087853222/?ref_=otl_fdNYQjg
http://www.imdb.com/list/ls087853218/?ref_=otl_xmfYuRg
http://www.imdb.com/list/ls087853207/?ref_=otl_dBtHawy
http://www.imdb.com/list/ls087853648/?ref_=otl_wheELhd
http://www.imdb.com/list/ls087853635/?ref_=otl_EpadaCa
http://www.imdb.com/list/ls087853654/?ref_=otl_VIlouRa
http://www.imdb.com/list/ls087853342/?ref_=otl_USoWzWh
http://www.imdb.com/list/ls087853365/?ref_=otl_ugHvZuO
http://www.imdb.com/list/ls087853350/?ref_=otl_iUJuaCn
http://www.imdb.com/list/ls087853185/?ref_=otl_OLBvcFc
http://www.imdb.com/list/ls087853167/?ref_=otl_LHBKnOE
http://www.imdb.com/list/ls087853174/?ref_=otl_jzxLqle
http://www.imdb.com/list/ls087853799/?ref_=otl_sjJAZLZ
http://www.imdb.com/list/ls087853725/?ref_=otl_rtbQvWc
http://www.imdb.com/list/ls087853777/?ref_=otl_YHLogrQ
http://www.imdb.com/list/ls087853707/?ref_=otl_RwPtOwS
http://www.imdb.com/list/ls087853523/?ref_=otl_pqZMLFS
http://www.imdb.com/list/ls087853519/?ref_=otl_CSUoetR
http://www.imdb.com/list/ls087853089/?ref_=otl_cJUbgAH
http://www.imdb.com/list/ls087853047/?ref_=otl_xSSRHem
http://www.imdb.com/list/ls087853034/?ref_=otl_KkHXzny
http://www.imdb.com/list/ls087853077/?ref_=otl_mYhkoaq
http://www.imdb.com/list/ls087851894/?ref_=otl_SbOdJVL
http://www.imdb.com/list/ls087851821/?ref_=otl_lvczLlQ
http://www.imdb.com/list/ls087851874/?ref_=otl_IasGpwQ
http://www.imdb.com/list/ls087851809/?ref_=otl_OXoYbTJ
http://www.imdb.com/list/ls087851945/?ref_=otl_GLnDIvY
http://www.imdb.com/list/ls087851933/?ref_=otl_YtUvljk
http://www.imdb.com/list/ls087851952/?ref_=otl_jBYlbEd
http://www.imdb.com/list/ls087851492/?ref_=otl_mvytizd
http://www.imdb.com/list/ls087851438/?ref_=otl_lHztJsa
http://www.imdb.com/list/ls087851475/?ref_=otl_HVLkVIW
http://www.imdb.com/list/ls087851291/?ref_=otl_ZMgRnYy
http://www.imdb.com/list/ls087851221/?ref_=otl_EGpjecm
http://www.imdb.com/list/ls087851277/?ref_=otl_FHgvDka
http://www.imdb.com/list/ls087851206/?ref_=otl_mkIbMLn
http://www.imdb.com/list/ls087851622/?ref_=otl_VehztlS
http://www.imdb.com/list/ls087851635/?ref_=otl_RSzJauI
http://www.imdb.com/list/ls087851605/?ref_=otl_AhTmCMp
http://www.imdb.com/list/ls087851393/?ref_=otl_zuRItnQ
http://www.imdb.com/list/ls087851337/?ref_=otl_QbRPFZv
http://www.imdb.com/list/ls087851354/?ref_=otl_UwjiAYq
http://www.imdb.com/list/ls087851190/?ref_=otl_ZZLyZIY
http://www.imdb.com/list/ls087851163/?ref_=otl_zeQJkuv
http://www.imdb.com/list/ls087851156/?ref_=otl_rCUTPMp
http://www.imdb.com/list/ls087851796/?ref_=otl_YAQGbQJ
http://www.imdb.com/list/ls087851736/?ref_=otl_byhCRNM
http://www.imdb.com/list/ls087851776/?ref_=otl_nHUPpGA
http://www.imdb.com/list/ls087851594/?ref_=otl_KaHzxZE
http://www.imdb.com/list/ls087856996/?ref_=otl_SUtFxmG
http://www.imdb.com/list/ls087856933/?ref_=otl_FXRXDZF
http://www.imdb.com/list/ls087856974/?ref_=otl_DVLNZVB
http://www.imdb.com/list/ls087856492/?ref_=otl_ZXBFBDH
http://www.imdb.com/list/ls087856446/?ref_=otl_HTTVNJB
http://www.imdb.com/list/ls087856416/?ref_=otl_BXVVZRB
http://www.imdb.com/list/ls087856456/?ref_=otl_PZBHBHZ
http://www.imdb.com/list/ls087856291/?ref_=otl_RTBVNJF
http://www.imdb.com/list/ls087856224/?ref_=otl_DHJFHLH
http://www.imdb.com/list/ls087856210/?ref_=otl_XRDPFPB
http://www.imdb.com/list/ls087856250/?ref_=otl_PZJTLZH
http://www.imdb.com/list/ls087856668/?ref_=otl_TFJBVRV
http://www.imdb.com/list/ls087856637/?ref_=otl_NLDRLXR
http://www.imdb.com/list/ls087856606/?ref_=otl_ZNTDNPP
http://www.imdb.com/list/ls087856396/?ref_=otl_TLFVJVB
http://www.imdb.com/list/ls087856367/?ref_=otl_PDZJBLZ
http://www.imdb.com/list/ls087856311/?ref_=otl_JPHLJFP
http://www.imdb.com/list/ls087856181/?ref_=otl_HTTFVNP
http://www.imdb.com/list/ls087856190/?ref_=otl_NLVZPBL
http://www.imdb.com/list/ls087856135/?ref_=otl_TJBPFPT
http://www.imdb.com/list/ls087856154/?ref_=otl_PRTFNLT
http://www.imdb.com/list/ls087856742/?ref_=otl_NHLNRFH
http://www.imdb.com/list/ls087856762/?ref_=otl_XTFZFFR
http://www.imdb.com/list/ls087856754/?ref_=otl_cpPuXdV
http://www.imdb.com/list/ls087856584/?ref_=otl_lKlnvmu
http://www.imdb.com/list/ls087856565/?ref_=otl_WwFpktP
http://www.imdb.com/list/ls087856510/?ref_=otl_gZGzRFE
http://www.imdb.com/list/ls087856086/?ref_=otl_AhVzcGp
http://www.imdb.com/list/ls087856024/?ref_=otl_ZRHZNBZ
http://www.imdb.com/list/ls087856076/?ref_=otl_VXBNZDV
http://www.imdb.com/list/ls087856709/?ref_=otl_JVBRBZH
http://www.imdb.com/list/ls087853861/?ref_=otl_LXLDHNP
http://www.imdb.com/list/ls087853815/?ref_=otl_HZVTVBR
http://www.imdb.com/list/ls087853981/?ref_=otl_RPXXVBP
http://www.imdb.com/list/ls087853945/?ref_=otl_RDNZZFH
http://www.imdb.com/list/ls087853911/?ref_=otl_NJVZNLV
http://www.imdb.com/list/ls087853955/?ref_=otl_THLTFZD
http://www.imdb.com/list/ls087853447/?ref_=otl_NBTNDBX
http://www.imdb.com/list/ls087853434/?ref_=otl_XHRFTLZ
http://www.imdb.com/list/ls087853406/?ref_=otl_DZJZDLB
http://www.imdb.com/list/ls087853299/?ref_=otl_ZTPNFLB
http://www.imdb.com/list/ls087853238/?ref_=otl_FFTVLJZ
http://www.imdb.com/list/ls087853213/?ref_=otl_NVFFVTJ
http://www.imdb.com/list/ls087853687/?ref_=otl_PBPPLFV
http://www.imdb.com/list/ls087853645/?ref_=otl_cPwjHxE
http://www.imdb.com/list/ls087853679/?ref_=otl_yVGGAMk
http://www.imdb.com/list/ls087853604/?ref_=otl_erCWxFZ
http://www.imdb.com/list/ls087853324/?ref_=otl_LETKdDi
http://www.imdb.com/list/ls087853318/?ref_=otl_IJtuBpS
http://www.imdb.com/list/ls087853307/?ref_=otl_pCDhUGA
http://www.imdb.com/list/ls087853195/?ref_=otl_qJCoKRe
http://www.imdb.com/list/ls087853136/?ref_=otl_tCDhXXx
http://www.imdb.com/list/ls087853173/?ref_=otl_hOKAbfj
http://www.imdb.com/list/ls087853791/?ref_=otl_ZZjtFYB
http://www.imdb.com/list/ls087853768/?ref_=otl_YWLDPwK
http://www.imdb.com/list/ls087853758/?ref_=otl_yNtzKak
http://www.imdb.com/list/ls087853582/?ref_=otl_pfTOaLl
http://www.imdb.com/list/ls087853566/?ref_=otl_FCvinQA
http://www.imdb.com/list/ls087853517/?ref_=otl_xUbELXM
http://www.imdb.com/list/ls087853081/?ref_=otl_fmWihtO
http://www.imdb.com/list/ls087853028/?ref_=otl_tdAELte
http://www.imdb.com/list/ls087853035/?ref_=otl_ZtsNvfa
http://www.imdb.com/list/ls087853059/?ref_=otl_aeLPFOM
http://www.imdb.com/list/ls087851848/?ref_=otl_vnGSUGf
http://www.imdb.com/list/ls087851863/?ref_=otl_EWeqrYm
http://www.imdb.com/list/ls087851873/?ref_=otl_VUlfYox
http://www.imdb.com/list/ls087851805/?ref_=otl_XqgmuWJ
http://www.imdb.com/list/ls087851927/?ref_=otl_QuWWBMN
http://www.imdb.com/list/ls087851931/?ref_=otl_MeOvJTI
http://www.imdb.com/list/ls087851955/?ref_=otl_apfMnJB
http://www.imdb.com/list/ls087851491/?ref_=otl_wQndFce
http://www.imdb.com/list/ls087851432/?ref_=otl_UOOQjRh
http://www.imdb.com/list/ls087851479/?ref_=otl_hxeeBMu
http://www.imdb.com/list/ls087851299/?ref_=otl_DIOrWHO
http://www.imdb.com/list/ls087851245/?ref_=otl_ktnGJNH
http://www.imdb.com/list/ls087851215/?ref_=otl_dxIkrff
http://www.imdb.com/list/ls087851204/?ref_=otl_lzxWqVP
http://www.imdb.com/list/ls087851646/?ref_=otl_EiOiAGQ
http://www.imdb.com/list/ls087851638/?ref_=otl_ODAVBVt
http://www.imdb.com/list/ls087851602/?ref_=otl_fRFnJLW
http://www.imdb.com/list/ls087851380/?ref_=otl_lUhjHqW
http://www.imdb.com/list/ls087851367/?ref_=otl_eJBJtcE
http://www.imdb.com/list/ls087851376/?ref_=otl_gNhqSxr
http://www.imdb.com/list/ls087851194/?ref_=otl_OxCUcjq
http://www.imdb.com/list/ls087851123/?ref_=otl_JvZzbSi
http://www.imdb.com/list/ls087851176/?ref_=otl_QumkOpf
http://www.imdb.com/list/ls087851103/?ref_=otl_qvSAcnj
http://www.imdb.com/list/ls087851722/?ref_=otl_vSPpVFl
http://www.imdb.com/list/ls087851719/?ref_=otl_LWKYrgA
http://www.imdb.com/list/ls087851586/?ref_=otl_bYtwLVX
http://www.imdb.com/list/ls087892847/?ref_=otl_zlrCSEc
http://www.imdb.com/list/ls087892832/?ref_=otl_VzEiLmn
http://www.imdb.com/list/ls087892871/?ref_=otl_gXcJsTR
http://www.imdb.com/list/ls087892998/?ref_=otl_sWWfxeh
http://www.imdb.com/list/ls087892927/?ref_=otl_QYdiKIt
http://www.imdb.com/list/ls087892912/?ref_=otl_yQAvfKp
http://www.imdb.com/list/ls087892973/?ref_=otl_EnOEPgy
http://www.imdb.com/list/ls087892483/?ref_=otl_FSUzIDt
http://www.imdb.com/list/ls087892448/?ref_=otl_ZVSsQfI
http://www.imdb.com/list/ls087892433/?ref_=otl_NByCYSN
http://www.imdb.com/list/ls087892471/?ref_=otl_ILvzpAu
http://www.imdb.com/list/ls087892294/?ref_=otl_BABTYSz
http://www.imdb.com/list/ls087892221/?ref_=otl_xyffQCw
http://www.imdb.com/list/ls087892212/?ref_=otl_ezRphwf
http://www.imdb.com/list/ls087892252/?ref_=otl_TPlcNJh
http://www.imdb.com/list/ls087892694/?ref_=otl_GrSxLmT
http://www.imdb.com/list/ls087892629/?ref_=otl_EMNjioy
http://www.imdb.com/list/ls087893500/?ref_=otl_HlXCmod
http://www.imdb.com/list/ls087892608/?ref_=otl_pCARUVm
http://www.imdb.com/list/ls087892345/?ref_=otl_caaERxF
http://www.imdb.com/list/ls087892363/?ref_=otl_StFDvBY
http://www.imdb.com/list/ls087892359/?ref_=otl_cCCUIjl
http://www.imdb.com/list/ls087892307/?ref_=otl_jPceJYF
http://www.imdb.com/list/ls087892123/?ref_=otl_sWZQrPe
http://www.imdb.com/list/ls087892137/?ref_=otl_HlWVobH
http://www.imdb.com/list/ls087892151/?ref_=otl_TJjOztY
http://www.imdb.com/list/ls087892781/?ref_=otl_UdbtYJt
http://www.imdb.com/list/ls087892768/?ref_=otl_MLdTRUO
http://www.imdb.com/list/ls087892731/?ref_=otl_djIyylB
http://www.imdb.com/list/ls087892702/?ref_=otl_FLNWmkc
http://www.imdb.com/list/ls087892582/?ref_=otl_GPMmcud
http://www.imdb.com/list/ls087892529/?ref_=otl_pUaZzPv
http://www.imdb.com/list/ls087892565/?ref_=otl_GAgVtkB
http://www.imdb.com/list/ls087892571/?ref_=otl_fjtbmKg
http://www.imdb.com/list/ls087892503/?ref_=otl_jtkjMkI
http://www.imdb.com/list/ls087892045/?ref_=otl_rbZIQwo
http://www.imdb.com/list/ls087892061/?ref_=otl_qaOXEgN
http://www.imdb.com/list/ls087892058/?ref_=otl_xOCLBIc
http://www.imdb.com/list/ls087892007/?ref_=otl_KjhhwnB
http://www.imdb.com/list/ls087896829/?ref_=otl_xeAnoUl
http://www.imdb.com/list/ls087896860/?ref_=otl_vJpsaDb
http://www.imdb.com/list/ls087896875/?ref_=otl_PzjOcAX
http://www.imdb.com/list/ls087896988/?ref_=otl_qUYhWHI
http://www.imdb.com/list/ls087896926/?ref_=otl_hKChihV
http://www.imdb.com/list/ls087896936/?ref_=otl_hXlfIVY
http://www.imdb.com/list/ls087896957/?ref_=otl_DHVzkCm
http://www.imdb.com/list/ls087896499/?ref_=otl_uIjmGFL
http://www.imdb.com/list/ls087896462/?ref_=otl_DkzpBSM
http://www.imdb.com/list/ls087896418/?ref_=otl_uBObMYk
http://www.imdb.com/list/ls087896457/?ref_=otl_rnfKRNT
http://www.imdb.com/list/ls087896281/?ref_=otl_WVBfHfY
http://www.imdb.com/list/ls087896262/?ref_=otl_zFfOzAy
http://www.imdb.com/list/ls087896214/?ref_=otl_kldlmfu
http://www.imdb.com/list/ls087896686/?ref_=otl_tjOqsve
http://www.imdb.com/list/ls087896644/?ref_=otl_FTGxMhS
http://www.imdb.com/list/ls087896632/?ref_=otl_bSYOLfx
http://www.imdb.com/list/ls087896673/?ref_=otl_TsEUGnC
http://www.imdb.com/list/ls087896384/?ref_=otl_PxBSFdv
http://www.imdb.com/list/ls087896348/?ref_=otl_DWXORFe
http://www.imdb.com/list/ls087896318/?ref_=otl_OBxEuKK
http://www.imdb.com/list/ls087896370/?ref_=otl_cVXZPuw
http://www.imdb.com/list/ls087896187/?ref_=otl_mNbkOAC
http://www.imdb.com/list/ls087896147/?ref_=otl_iMnUTcw
http://www.imdb.com/list/ls087896139/?ref_=otl_WnAhiUk
http://www.imdb.com/list/ls087896110/?ref_=otl_TgFtoPw
http://www.imdb.com/list/ls087896784/?ref_=otl_dPdnGQT
http://www.imdb.com/list/ls087896748/?ref_=otl_NRVXDBZ
http://www.imdb.com/list/ls087896736/?ref_=otl_BVTXBBR
http://www.imdb.com/list/ls087896710/?ref_=otl_VJHLDVL
http://www.imdb.com/list/ls087896705/?ref_=otl_RZTLVVL
http://www.imdb.com/list/ls087896592/?ref_=otl_LHFRTXN
http://www.imdb.com/list/ls087896561/?ref_=otl_NTDRBHX
http://www.imdb.com/list/ls087896514/?ref_=otl_HNLLBHL
http://www.imdb.com/list/ls087896509/?ref_=otl_NVFFPVL
http://www.imdb.com/list/ls087896084/?ref_=otl_ZTPFVPF
http://www.imdb.com/list/ls087896023/?ref_=otl_LPPBFXB
http://www.imdb.com/list/ls087896032/?ref_=otl_LZVVLDH
http://www.imdb.com/list/ls087896057/?ref_=otl_LJHVFXL
http://www.imdb.com/list/ls087893887/?ref_=otl_FZRPHRV
http://www.imdb.com/list/ls087893863/?ref_=otl_BHTFJZN
http://www.imdb.com/list/ls087893833/?ref_=otl_HZVTJPF
http://www.imdb.com/list/ls087893806/?ref_=otl_FDBNJPR
http://www.imdb.com/list/ls087893998/?ref_=otl_VXHVVJX
http://www.imdb.com/list/ls087893969/?ref_=otl_PJDDPVL
http://www.imdb.com/list/ls087893931/?ref_=otl_LPVNVBT
http://www.imdb.com/list/ls087893904/?ref_=otl_VNLNRVX
http://www.imdb.com/list/ls087893499/?ref_=otl_BDTHHXN
http://www.imdb.com/list/ls087893436/?ref_=otl_XBZXRXZ
http://www.imdb.com/list/ls087893413/?ref_=otl_BHVTFXL
http://www.imdb.com/list/ls087893401/?ref_=otl_RDPBRLP
http://www.imdb.com/list/ls087893291/?ref_=otl_VDLVTZD
http://www.imdb.com/list/ls087893262/?ref_=otl_XNNZXPR
http://www.imdb.com/list/ls087893211/?ref_=otl_NFRNLNP
http://www.imdb.com/list/ls087893250/?ref_=otl_NDBZRLN
http://www.imdb.com/list/ls087893688/?ref_=otl_VLFPDPX
http://www.imdb.com/list/ls087893629/?ref_=otl_LVJXXPV
http://www.imdb.com/list/ls087893634/?ref_=otl_ZHPBFZP
http://www.imdb.com/list/ls087893651/?ref_=otl_FJHRVXZ
http://www.imdb.com/list/ls087893384/?ref_=otl_RXZZDHJ
http://www.imdb.com/list/ls087893323/?ref_=otl_ZJRFVPR
http://www.imdb.com/list/ls087893363/?ref_=otl_HBLJBTZ
http://www.imdb.com/list/ls087893370/?ref_=otl_XDXZZRF
http://www.imdb.com/list/ls087893188/?ref_=otl_RZZBBDZ
http://www.imdb.com/list/ls087893128/?ref_=otl_LZXXHRR
http://www.imdb.com/list/ls087893167/?ref_=otl_TBJLTBR
http://www.imdb.com/list/ls087893179/?ref_=otl_LBZLJXL
http://www.imdb.com/list/ls087893150/?ref_=otl_FNXJXPT
http://www.imdb.com/list/ls087893790/?ref_=otl_ZVHNBFB
http://www.imdb.com/list/ls087893723/?ref_=otl_XTRFJLN
http://www.imdb.com/list/ls087893718/?ref_=otl_HRNZZTJ
http://www.imdb.com/list/ls087893777/?ref_=otl_dXOGwKL
http://www.imdb.com/list/ls087893599/?ref_=otl_sGSwmvC
http://www.imdb.com/list/ls087893546/?ref_=otl_qbYQaAB
http://www.imdb.com/list/ls087893567/?ref_=otl_VqYeOyu
http://www.imdb.com/list/ls087893513/?ref_=otl_zDKFKeN
http://www.imdb.com/list/ls087893557/?ref_=otl_NPRHZRR
http://www.imdb.com/list/ls087892611/?ref_=otl_BFRFJTJ
http://www.imdb.com/list/ls087893041/?ref_=otl_NXHLRXT
http://www.imdb.com/list/ls087893064/?ref_=otl_NHTHHZR
http://www.imdb.com/list/ls087893013/?ref_=otl_LVTVBVX
http://www.imdb.com/list/ls087892892/?ref_=otl_DFRLVZP
http://www.imdb.com/list/ls087892869/?ref_=otl_BZJXNHX
http://www.imdb.com/list/ls087892831/?ref_=otl_LNZVHBR
http://www.imdb.com/list/ls087892801/?ref_=otl_PPNZZFJ
http://www.imdb.com/list/ls087892928/?ref_=otl_BFRBZRH
http://www.imdb.com/list/ls087892937/?ref_=otl_NTBDVPR
http://www.imdb.com/list/ls087892910/?ref_=otl_BDHPHXH
http://www.imdb.com/list/ls087892900/?ref_=otl_DTTBXPH
http://www.imdb.com/list/ls087892480/?ref_=otl_HRZNDFB
http://www.imdb.com/list/ls087892460/?ref_=otl_NJFXNTL
http://www.imdb.com/list/ls087892478/?ref_=otl_BXVHLFL
http://www.imdb.com/list/ls087892287/?ref_=otl_NTPXDTJ
http://www.imdb.com/list/ls087892241/?ref_=otl_TZLLPJN
http://www.imdb.com/list/ls087892219/?ref_=otl_LKYNUFu
http://www.imdb.com/list/ls087892275/?ref_=otl_NvPfjKR
http://www.imdb.com/list/ls087892681/?ref_=otl_VVSYMHx
http://www.imdb.com/list/ls087892647/?ref_=otl_ivngSCa
http://www.imdb.com/list/ls087892630/?ref_=otl_RIbdvyD
http://www.imdb.com/list/ls087892652/?ref_=otl_WQkLjRa
http://www.imdb.com/list/ls087892343/?ref_=otl_zrlYFSi
http://www.imdb.com/list/ls087892366/?ref_=otl_PUeKfZH
http://www.imdb.com/list/ls087892375/?ref_=otl_gIJfCMy
http://www.imdb.com/list/ls087892306/?ref_=otl_XApKaGS
http://www.imdb.com/list/ls087892147/?ref_=otl_AjMOVwq
http://www.imdb.com/list/ls087892133/?ref_=otl_KfOtzua
http://www.imdb.com/list/ls087892153/?ref_=otl_RPRqnSO
http://www.imdb.com/list/ls087892100/?ref_=otl_KJkfCiQ
http://www.imdb.com/list/ls087892721/?ref_=otl_vSrfUFd
http://www.imdb.com/list/ls087892734/?ref_=otl_KRWoyzv
http://www.imdb.com/list/ls087892753/?ref_=otl_KbUrgIh
http://www.imdb.com/list/ls087892589/?ref_=otl_VVAfvAF
http://www.imdb.com/list/ls087892545/?ref_=otl_sPCLjJf
http://www.imdb.com/list/ls087892563/?ref_=otl_iLMCvbS
http://www.imdb.com/list/ls087892510/?ref_=otl_LYMOdMp
http://www.imdb.com/list/ls087892550/?ref_=otl_lJPMwXs
http://www.imdb.com/list/ls087892090/?ref_=otl_LxUvjOV
http://www.imdb.com/list/ls087892068/?ref_=otl_GrnIOwu
http://www.imdb.com/list/ls087892072/?ref_=otl_LuKrQUT
http://www.imdb.com/list/ls087892006/?ref_=otl_ifpIMGm
http://www.imdb.com/list/ls087896842/?ref_=otl_ipWoCrF
http://www.imdb.com/list/ls087896866/?ref_=otl_gdrjmEL
http://www.imdb.com/list/ls087896874/?ref_=otl_dFxlxwK
http://www.imdb.com/list/ls087896809/?ref_=otl_xZrbrsi
http://www.imdb.com/list/ls087896945/?ref_=otl_VFpdgqW
http://www.imdb.com/list/ls087896961/?ref_=otl_PDvxEtE
http://www.imdb.com/list/ls087896970/?ref_=otl_qPhobtC
http://www.imdb.com/list/ls087896905/?ref_=otl_KQWqblN
http://www.imdb.com/list/ls087896423/?ref_=otl_hzfvXAQ
http://www.imdb.com/list/ls087896434/?ref_=otl_KboCEYu
http://www.imdb.com/list/ls087896459/?ref_=otl_YjXIkJk
http://www.imdb.com/list/ls087896405/?ref_=otl_kWpNbAs
http://www.imdb.com/list/ls087896229/?ref_=otl_dEoDOJf
http://www.imdb.com/list/ls087896260/?ref_=otl_GCvfaXW
http://www.imdb.com/list/ls087896251/?ref_=otl_HNXuwQM
http://www.imdb.com/list/ls087896680/?ref_=otl_JqIAqbG
http://www.imdb.com/list/ls087896669/?ref_=otl_hCZSzng
http://www.imdb.com/list/ls087896619/?ref_=otl_UBHStUK
http://www.imdb.com/list/ls087896655/?ref_=otl_ReBMemn
http://www.imdb.com/list/ls087896385/?ref_=otl_YGzPjsU
http://www.imdb.com/list/ls087896364/?ref_=otl_mHUzdkJ
http://www.imdb.com/list/ls087896319/?ref_=otl_UoILVbz
http://www.imdb.com/list/ls087896350/?ref_=otl_sYzZLRi
http://www.imdb.com/list/ls087896192/?ref_=otl_BZNcocv
http://www.imdb.com/list/ls087896123/?ref_=otl_pWcKMnO
http://www.imdb.com/list/ls087896137/?ref_=otl_ItTUDtQ
http://www.imdb.com/list/ls087896175/?ref_=otl_WjUCNYF
http://www.imdb.com/list/ls087896786/?ref_=otl_ZlMkcjH
http://www.imdb.com/list/ls087896723/?ref_=otl_zJpfQgs
http://www.imdb.com/list/ls087896734/?ref_=otl_QkjDxsC
http://www.imdb.com/list/ls087896775/?ref_=otl_sUjCqLW
http://www.imdb.com/list/ls087896703/?ref_=otl_aEEYOFW
http://www.imdb.com/list/ls087896597/?ref_=otl_OPHjazH
http://www.imdb.com/list/ls087896564/?ref_=otl_vlqHKuE
http://www.imdb.com/list/ls087896515/?ref_=otl_fLuelzx
http://www.imdb.com/list/ls087896552/?ref_=otl_EoJIycs
http://www.imdb.com/list/ls087896081/?ref_=otl_njJErOB
http://www.imdb.com/list/ls087896040/?ref_=otl_IHMqFCs
http://www.imdb.com/list/ls087896019/?ref_=otl_QvaJRGU
http://www.imdb.com/list/ls087896052/?ref_=otl_nrfaMBM
http://www.imdb.com/list/ls087893849/?ref_=otl_ipNkIDJ
http://www.imdb.com/list/ls087893864/?ref_=otl_gWxduVz
http://www.imdb.com/list/ls087893815/?ref_=otl_iJipScx
http://www.imdb.com/list/ls087893850/?ref_=otl_SmvtFPN
http://www.imdb.com/list/ls087893993/?ref_=otl_qqdTzbt
http://www.imdb.com/list/ls087893927/?ref_=otl_zrtwQVl
http://www.imdb.com/list/ls087893913/?ref_=otl_NnXfAcv
http://www.imdb.com/list/ls087893955/?ref_=otl_QJdAcXq
http://www.imdb.com/list/ls087893444/?ref_=otl_ZqRColO
http://www.imdb.com/list/ls087893461/?ref_=otl_LagGQSN
http://www.imdb.com/list/ls087893473/?ref_=otl_NRtjjeX
http://www.imdb.com/list/ls087893408/?ref_=otl_SpNsxHm
http://www.imdb.com/list/ls087893247/?ref_=otl_maNnsOI
http://www.imdb.com/list/ls087893268/?ref_=otl_QWPABqf
http://www.imdb.com/list/ls087893210/?ref_=otl_rnDKhWY
http://www.imdb.com/list/ls087893258/?ref_=otl_lTfxYCV
http://www.imdb.com/list/ls087893681/?ref_=otl_byFYhgR
http://www.imdb.com/list/ls087893642/?ref_=otl_AvhpdQY
http://www.imdb.com/list/ls087893611/?ref_=otl_hlmbgDS
http://www.imdb.com/list/ls087893658/?ref_=otl_qhIiSMP
http://www.imdb.com/list/ls087893399/?ref_=otl_jDNEXJq
http://www.imdb.com/list/ls087893328/?ref_=otl_DOtfHqL
http://www.imdb.com/list/ls087893318/?ref_=otl_dHfhbxS
http://www.imdb.com/list/ls087893373/?ref_=otl_suamjKd
http://www.imdb.com/list/ls087893198/?ref_=otl_AkzVTXN
http://www.imdb.com/list/ls087893147/?ref_=otl_Wfcbwnv
http://www.imdb.com/list/ls087893136/?ref_=otl_iflufMV
http://www.imdb.com/list/ls087893115/?ref_=otl_LVBRQGt
http://www.imdb.com/list/ls087893788/?ref_=otl_QfcbeQK
http://www.imdb.com/list/ls087893794/?ref_=otl_RDHBJHP
http://www.imdb.com/list/ls087893768/?ref_=otl_JXXRFJN
http://www.imdb.com/list/ls087893733/?ref_=otl_ZPLZJFN
http://www.imdb.com/list/ls087893759/?ref_=otl_LDVXVNR
http://www.imdb.com/list/ls087893706/?ref_=otl_ZDZNHFV
http://www.imdb.com/list/ls087893547/?ref_=otl_NPPTRBD
http://www.imdb.com/list/ls087893564/?ref_=otl_ZRBNRDR
http://www.imdb.com/list/ls087893578/?ref_=otl_NTPBDVX
http://www.imdb.com/list/ls087893556/?ref_=otl_VDNDTTX
http://www.imdb.com/list/ls087893081/?ref_=otl_JBNBLJN
http://www.imdb.com/list/ls087893048/?ref_=otl_FVNPTDH
http://www.imdb.com/list/ls087893039/?ref_=otl_VDBPTDT
http://www.imdb.com/list/ls087894378/?ref_=otl_RTDRPHF
http://www.imdb.com/list/ls087892590/?ref_=otl_HLXLLRT
http://www.imdb.com/list/ls087892567/?ref_=otl_TBHLJZN
http://www.imdb.com/list/ls087892538/?ref_=otl_FJTJHLN
http://www.imdb.com/list/ls087892570/?ref_=otl_FXJLBHT
http://www.imdb.com/list/ls087892552/?ref_=otl_FBZXBHV
http://www.imdb.com/list/ls087892092/?ref_=otl_PNZZRLZ
http://www.imdb.com/list/ls087892095/?ref_=otl_NDBPFNZ
http://www.imdb.com/list/ls087892034/?ref_=otl_PTFTTBR
http://www.imdb.com/list/ls087892035/?ref_=otl_PHRRVND
http://www.imdb.com/list/ls087892002/?ref_=otl_HPZNXBJ
http://www.imdb.com/list/ls087892001/?ref_=otl_DVHVVNP
http://www.imdb.com/list/ls087896841/?ref_=otl_JTFVFJL
http://www.imdb.com/list/ls087896826/?ref_=otl_LVFRVNF
http://www.imdb.com/list/ls087896818/?ref_=otl_JPFZPDB
http://www.imdb.com/list/ls087896817/?ref_=otl_VJJTJPR
http://www.imdb.com/list/ls087896800/?ref_=otl_VPZLNHH
http://www.imdb.com/list/ls087896984/?ref_=otl_XVTTJPR
http://www.imdb.com/list/ls087896927/?ref_=otl_ZTDPTLD
http://www.imdb.com/list/ls087896968/?ref_=otl_DVRRHND
http://www.imdb.com/list/ls087896979/?ref_=otl_ZZZPRVL
http://www.imdb.com/list/ls087896971/?ref_=otl_BTFRTXN
http://www.imdb.com/list/ls087896492/?ref_=otl_VNXXFXN
http://www.imdb.com/list/ls087896491/?ref_=otl_ZXRXJBD
http://www.imdb.com/list/ls087896460/?ref_=otl_jupCNZT
http://www.imdb.com/list/ls087896439/?ref_=otl_IdybCGR
http://www.imdb.com/list/ls087896477/?ref_=otl_PnVitIt
http://www.imdb.com/list/ls087896456/?ref_=otl_vMZeLbR
http://www.imdb.com/list/ls087896294/?ref_=otl_KNLpQpg
http://www.imdb.com/list/ls087896248/?ref_=otl_suNEADj
http://www.imdb.com/list/ls087896238/?ref_=otl_NbElIFR
http://www.imdb.com/list/ls087896233/?ref_=otl_yxZcdLs
http://www.imdb.com/list/ls087896207/?ref_=otl_rxqyIQB
http://www.imdb.com/list/ls087896684/?ref_=otl_TBlWGiY
http://www.imdb.com/list/ls087896624/?ref_=otl_yzLNSNL
http://www.imdb.com/list/ls087896627/?ref_=otl_SnbZwAw
http://www.imdb.com/list/ls087896611/?ref_=otl_WINbgXE
http://www.imdb.com/list/ls087896678/?ref_=otl_EAXsVBr
http://www.imdb.com/list/ls087896607/?ref_=otl_zktSMPv
http://www.imdb.com/list/ls087896389/?ref_=otl_RJFVXRT
http://www.imdb.com/list/ls087896326/?ref_=otl_ZHFTTXB
http://www.imdb.com/list/ls087896368/?ref_=otl_TDNLBLP
http://www.imdb.com/list/ls087896376/?ref_=otl_RXLBJDF
http://www.imdb.com/list/ls087896375/?ref_=otl_TXHJVTX
http://www.imdb.com/list/ls087896181/?ref_=otl_FXNDBFT
http://www.imdb.com/list/ls087896196/?ref_=otl_NJFRHRH
http://www.imdb.com/list/ls087896122/?ref_=otl_LLBXLJT
http://www.imdb.com/list/ls087896120/?ref_=otl_HNXZZHJ
http://www.imdb.com/list/ls087896111/?ref_=otl_PFPPJBB
http://www.imdb.com/list/ls087896178/?ref_=otl_LXHHLPF
http://www.imdb.com/list/ls087896789/?ref_=otl_VRRDFLB
http://www.imdb.com/list/ls087327995/?ref_=otl_HDLLVPT
http://www.imdb.com/list/ls087327673/?ref_=otl_FZVXDJL
http://www.imdb.com/list/ls087327771/?ref_=otl_RJVTTRV
http://www.imdb.com/list/ls087327592/?ref_=otl_JPZNDHX
http://www.imdb.com/list/ls087327577/?ref_=otl_XgZxYRC
http://www.imdb.com/list/ls087327080/?ref_=otl_dwPXDVi
http://www.imdb.com/list/ls087327023/?ref_=otl_POLTdWj
http://www.imdb.com/list/ls087325915/?ref_=otl_ftmWsCy
http://www.imdb.com/list/ls087325214/?ref_=otl_udfSimx
http://www.imdb.com/list/ls087325388/?ref_=otl_xXDCsCN
http://www.imdb.com/list/ls087325368/?ref_=otl_EKPDHIQ
http://www.imdb.com/list/ls087325313/?ref_=otl_TnzLUbr
http://www.imdb.com/list/ls087325184/?ref_=otl_hVImekO
http://www.imdb.com/list/ls087325149/?ref_=otl_CTlnKCN
http://www.imdb.com/list/ls087325137/?ref_=otl_hcpnOlQ
http://www.imdb.com/list/ls087325173/?ref_=otl_dEpCWls
http://www.imdb.com/list/ls087325793/?ref_=otl_tcMDnXN
http://www.imdb.com/list/ls087325724/?ref_=otl_osZvzZX
http://www.imdb.com/list/ls087325711/?ref_=otl_BtcgrhR
http://www.imdb.com/list/ls087325701/?ref_=otl_EMnEqoX
http://www.imdb.com/list/ls087325538/?ref_=otl_zMFBMgJ
http://www.imdb.com/list/ls087325509/?ref_=otl_rvrCzqS
http://www.imdb.com/list/ls087325045/?ref_=otl_GCMLYvF
http://www.imdb.com/list/ls087325032/?ref_=otl_lrjOcXK
http://www.imdb.com/list/ls087325050/?ref_=otl_CWNkAEz
http://www.imdb.com/list/ls087320825/?ref_=otl_lFnwTDW
http://www.imdb.com/list/ls087320811/?ref_=otl_VItQVGt
http://www.imdb.com/list/ls087320857/?ref_=otl_dAuGOXw
http://www.imdb.com/list/ls087320942/?ref_=otl_kVfjODf
http://www.imdb.com/list/ls087320923/?ref_=otl_UBmlMOX
http://www.imdb.com/list/ls087320976/?ref_=otl_fxdlinA
http://www.imdb.com/list/ls087320904/?ref_=otl_hqrzSXd
http://www.imdb.com/list/ls087320428/?ref_=otl_SWIMlfh
http://www.imdb.com/list/ls087320438/?ref_=otl_mxskGkk
http://www.imdb.com/list/ls087320455/?ref_=otl_sxUgmCO
http://www.imdb.com/list/ls087320293/?ref_=otl_vbyxJXW
http://www.imdb.com/list/ls087320657/?ref_=otl_GpmRbsO
http://www.imdb.com/list/ls087320360/?ref_=otl_YcJqcnC
http://www.imdb.com/list/ls087320371/?ref_=otl_dtYhaBN
http://www.imdb.com/list/ls087320301/?ref_=otl_RFTkafD
http://www.imdb.com/list/ls087320129/?ref_=otl_MeokQyF
http://www.imdb.com/list/ls087320165/?ref_=otl_ZhSGafz
http://www.imdb.com/list/ls087320170/?ref_=otl_bWflIyW
http://www.imdb.com/list/ls087320741/?ref_=otl_KnHDCpK
http://www.imdb.com/list/ls087320711/?ref_=otl_gdlYflG
http://www.imdb.com/list/ls087320750/?ref_=otl_EddpvMy
http://www.imdb.com/list/ls087320540/?ref_=otl_OKSMrjC
http://www.imdb.com/list/ls087320534/?ref_=otl_hDUbHSe
http://www.imdb.com/list/ls087320553/?ref_=otl_OnSIAjm
http://www.imdb.com/list/ls087320082/?ref_=otl_DxFCKfo
http://www.imdb.com/list/ls087320020/?ref_=otl_XOqvHhX
http://www.imdb.com/list/ls087320030/?ref_=otl_cIRJGZn
http://www.imdb.com/list/ls087320003/?ref_=otl_FMWfvZW
http://www.imdb.com/list/ls087368898/?ref_=otl_TJcmnjl
http://www.imdb.com/list/ls087368869/?ref_=otl_bHgeXvM
http://www.imdb.com/list/ls087368831/?ref_=otl_ExjHxQR
http://www.imdb.com/list/ls087368949/?ref_=otl_vcGLhJC
http://www.imdb.com/list/ls087368960/?ref_=otl_ZhmcsQP
http://www.imdb.com/list/ls087368976/?ref_=otl_lBPkpwt
http://www.imdb.com/list/ls087368499/?ref_=otl_KNtipsT
http://www.imdb.com/list/ls087368447/?ref_=otl_hfOsJoa
http://www.imdb.com/list/ls087368416/?ref_=otl_NFvKejM
http://www.imdb.com/list/ls087368989/?ref_=otl_zRKBvji
http://www.imdb.com/list/ls087384403/?ref_=otl_dnfSDtS
http://www.imdb.com/list/ls087384230/?ref_=otl_HDsVKpO
http://www.imdb.com/list/ls087384271/?ref_=otl_aXujCoZ
http://www.imdb.com/list/ls087384643/?ref_=otl_XXutuKp
http://www.imdb.com/list/ls087384663/?ref_=otl_VvPCnbe
http://www.imdb.com/list/ls087384659/?ref_=otl_GYvrkpF
http://www.imdb.com/list/ls087384606/?ref_=otl_WeJAXpf
http://www.imdb.com/list/ls087384340/?ref_=otl_ZlGPebA
http://www.imdb.com/list/ls087384334/?ref_=otl_NexnotP
http://www.imdb.com/list/ls087384305/?ref_=otl_hlRRGeD
http://www.imdb.com/list/ls087384193/?ref_=otl_AFNpUvq
http://www.imdb.com/list/ls087384136/?ref_=otl_JIBShZJ
http://www.imdb.com/list/ls087384175/?ref_=otl_LWuIaBJ
http://www.imdb.com/list/ls087384747/?ref_=otl_uWcSzAI
http://www.imdb.com/list/ls087384763/?ref_=otl_jAJJojO
http://www.imdb.com/list/ls087384754/?ref_=otl_zKRDCZs
http://www.imdb.com/list/ls087384582/?ref_=otl_SRSoENq
http://www.imdb.com/list/ls087384517/?ref_=otl_ZRthICU
http://www.imdb.com/list/ls087384093/?ref_=otl_pAtvrZX
http://www.imdb.com/list/ls087384039/?ref_=otl_ALDpYFl
http://www.imdb.com/list/ls087384077/?ref_=otl_qWVUMBS
http://www.imdb.com/list/ls087382891/?ref_=otl_HSpWegz
http://www.imdb.com/list/ls087382862/?ref_=otl_fEpzrKh
http://www.imdb.com/list/ls087382856/?ref_=otl_pXcWdjZ
http://www.imdb.com/list/ls087382999/?ref_=otl_iLlIVSa
http://www.imdb.com/list/ls087382916/?ref_=otl_mpRRWgW
http://www.imdb.com/list/ls087382955/?ref_=otl_xxXlETM
http://www.imdb.com/list/ls087382427/?ref_=otl_ddSvJSi
http://www.imdb.com/list/ls087382419/?ref_=otl_vAMGzNL
http://www.imdb.com/list/ls087382286/?ref_=otl_wSGGMfd
http://www.imdb.com/list/ls087382290/?ref_=otl_RaDVpYl
http://www.imdb.com/list/ls087382219/?ref_=otl_qNKTNxl
http://www.imdb.com/list/ls087382259/?ref_=otl_irhvUFM
http://www.imdb.com/list/ls087382624/?ref_=otl_zJSgQPo
http://www.imdb.com/list/ls087382619/?ref_=otl_fpnOMYf
http://www.imdb.com/list/ls087382391/?ref_=otl_ygoAmuy
http://www.imdb.com/list/ls087382347/?ref_=otl_VvZeYQK
http://www.imdb.com/list/ls087382372/?ref_=otl_VTFRRLN
http://www.imdb.com/list/ls087382305/?ref_=otl_ZJFBZND
http://www.imdb.com/list/ls087382167/?ref_=otl_VVTTHFV
http://www.imdb.com/list/ls087382174/?ref_=otl_TZHVLRF
http://www.imdb.com/list/ls087382780/?ref_=otl_LFBNRPD
http://www.imdb.com/list/ls087382740/?ref_=otl_LJRRVNR
http://www.imdb.com/list/ls087382779/?ref_=otl_JBZLPZP
http://www.imdb.com/list/ls087382702/?ref_=otl_XBTTLDT
http://www.imdb.com/list/ls087382545/?ref_=otl_BTPPFJX
http://www.imdb.com/list/ls087382539/?ref_=otl_VVHVRPH
http://www.imdb.com/list/ls087382553/?ref_=otl_PFBDBFH
http://www.imdb.com/list/ls087382093/?ref_=otl_LZJVHNB
http://www.imdb.com/list/ls087382017/?ref_=otl_BTRPNXX
http://www.imdb.com/list/ls087382008/?ref_=otl_PTFRDPR
http://www.imdb.com/list/ls087386821/?ref_=otl_XHFTVRH
http://www.imdb.com/list/ls087386830/?ref_=otl_LJVBPVV
http://www.imdb.com/list/ls087386984/?ref_=otl_HJHBNLP
http://www.imdb.com/list/ls087386948/?ref_=otl_XPZFNLP
http://www.imdb.com/list/ls087386918/?ref_=otl_PLVXVFT
http://www.imdb.com/list/ls087386903/?ref_=otl_VZXJHJL
http://www.imdb.com/list/ls087386421/?ref_=otl_XVBHDRH
http://www.imdb.com/list/ls087386412/?ref_=otl_VJXPNNR
http://www.imdb.com/list/ls087386284/?ref_=otl_XFDBRXB
http://www.imdb.com/list/ls087386240/?ref_=otl_ZFNVZLH
http://www.imdb.com/list/ls087386213/?ref_=otl_HHRFRLP
http://www.imdb.com/list/ls087386255/?ref_=otl_HLVDFNP
http://www.imdb.com/list/ls087386627/?ref_=otl_NTBNPVV
http://www.imdb.com/list/ls087386630/?ref_=otl_LLLNPZR
http://www.imdb.com/list/ls087386601/?ref_=otl_XTDDTVX
http://www.imdb.com/list/ls087386349/?ref_=otl_PZLZPTX
http://www.imdb.com/list/ls087386316/?ref_=otl_RHHFPJL
http://www.imdb.com/list/ls087386303/?ref_=otl_PJVLBTH
http://www.imdb.com/list/ls087386140/?ref_=otl_VRDPNXX
http://www.imdb.com/list/ls087386134/?ref_=otl_HBZNJTX
http://www.imdb.com/list/ls087386109/?ref_=otl_jcHQryx
http://www.imdb.com/list/ls087386787/?ref_=otl_IhKSMvB
http://www.imdb.com/list/ls087386764/?ref_=otl_KljnOng
http://www.imdb.com/list/ls087386772/?ref_=otl_FfGFQtU
http://www.imdb.com/list/ls087386590/?ref_=otl_hwxtFCW
http://www.imdb.com/list/ls087386566/?ref_=otl_SVXsvHH
http://www.imdb.com/list/ls087386550/?ref_=otl_UeBoFxh
http://www.imdb.com/list/ls087386091/?ref_=otl_tnGFyTF
http://www.imdb.com/list/ls087386033/?ref_=otl_vPgKVle
http://www.imdb.com/list/ls087386050/?ref_=otl_iOIAWIp
http://www.imdb.com/list/ls087383845/?ref_=otl_szFEfKA
http://www.imdb.com/list/ls087383866/?ref_=otl_WhNrLzR
http://www.imdb.com/list/ls087383852/?ref_=otl_WnDymNV
http://www.imdb.com/list/ls087383980/?ref_=otl_nVHtHzj
http://www.imdb.com/list/ls087383913/?ref_=otl_yWsKewa
http://www.imdb.com/list/ls087383489/?ref_=otl_LVVXXFV
http://www.imdb.com/list/ls087383473/?ref_=otl_LFDRNNV
http://www.imdb.com/list/ls087383406/?ref_=otl_XXFJVTJ
http://www.imdb.com/list/ls087383225/?ref_=otl_PRPJBFX
http://www.imdb.com/list/ls087383236/?ref_=otl_XHDHTFH
http://www.imdb.com/list/ls087383201/?ref_=otl_NHJBVRF
http://www.imdb.com/list/ls087383697/?ref_=otl_DFJHBVL
http://www.imdb.com/list/ls087383323/?ref_=otl_BRRRDXV
http://www.imdb.com/list/ls087383371/?ref_=otl_FNRDBLN
http://www.imdb.com/list/ls087383300/?ref_=otl_LJBTXBL
http://www.imdb.com/list/ls087383169/?ref_=otl_HNPNDVH
http://www.imdb.com/list/ls087383111/?ref_=otl_VRFNJBB
http://www.imdb.com/list/ls087383798/?ref_=otl_khQkigk
http://www.imdb.com/list/ls087383726/?ref_=otl_rtnHJUh
http://www.imdb.com/list/ls087383713/?ref_=otl_WSGMhzn
http://www.imdb.com/list/ls087383751/?ref_=otl_GDvGpHk
http://www.imdb.com/list/ls087383541/?ref_=otl_uiNITMg
http://www.imdb.com/list/ls087383534/?ref_=otl_ENkrXcw
http://www.imdb.com/list/ls087383503/?ref_=otl_ZlbjPot
http://www.imdb.com/list/ls087383043/?ref_=otl_liHuDNE
http://www.imdb.com/list/ls087383074/?ref_=otl_WhRhRkf
http://www.imdb.com/list/ls087383000/?ref_=otl_IHJmwmC
http://www.imdb.com/list/ls087381869/?ref_=otl_oRoYdPm
http://www.imdb.com/list/ls087381835/?ref_=otl_RGUpBre
http://www.imdb.com/list/ls087381850/?ref_=otl_SUJDFVj
http://www.imdb.com/list/ls087381987/?ref_=otl_IQaLEJL
http://www.imdb.com/list/ls087381934/?ref_=otl_zdeILIH
http://www.imdb.com/list/ls087381952/?ref_=otl_nBroGRH
http://www.imdb.com/list/ls087381468/?ref_=otl_poYnTLP
http://www.imdb.com/list/ls087381419/?ref_=otl_UnfEFWj
http://www.imdb.com/list/ls087381289/?ref_=otl_heZtGJV
http://www.imdb.com/list/ls087381246/?ref_=otl_JqHeHSR
http://www.imdb.com/list/ls087381213/?ref_=otl_uundKYf
http://www.imdb.com/list/ls087381202/?ref_=otl_fPZHyOK
http://www.imdb.com/list/ls087381629/?ref_=otl_FceKHSV
http://www.imdb.com/list/ls087381633/?ref_=otl_FdKvaEl
http://www.imdb.com/list/ls087381383/?ref_=otl_auDqrXy
http://www.imdb.com/list/ls087381347/?ref_=otl_ZmNVASG
http://www.imdb.com/list/ls087381310/?ref_=otl_zIboOeX
http://www.imdb.com/list/ls087381303/?ref_=otl_oqgkXhx
http://www.imdb.com/list/ls087381169/?ref_=otl_gLjHZLO
http://www.imdb.com/list/ls087381118/?ref_=otl_NapjqIZ
http://www.imdb.com/list/ls087381797/?ref_=otl_KXHWmoL
http://www.imdb.com/list/ls087381734/?ref_=otl_ResbmWO
http://www.imdb.com/list/ls087381759/?ref_=otl_BpcwAZw
http://www.imdb.com/list/ls087381580/?ref_=otl_wRRThvc
http://www.imdb.com/list/ls087381550/?ref_=otl_GAdRRzA
http://www.imdb.com/list/ls087381045/?ref_=otl_TvWjUzl
http://www.imdb.com/list/ls087381059/?ref_=otl_mzETVPb
http://www.imdb.com/list/ls087387880/?ref_=otl_oxMUNjF
http://www.imdb.com/list/ls087387838/?ref_=otl_kpJelQx
http://www.imdb.com/list/ls087387980/?ref_=otl_AzfmPnX
http://www.imdb.com/list/ls087387903/?ref_=otl_vhFhShH
http://www.imdb.com/list/ls087387445/?ref_=otl_QBhSxMN
http://www.imdb.com/list/ls087387479/?ref_=otl_cQbwDPw
http://www.imdb.com/list/ls087387404/?ref_=otl_IKlfeoi
http://www.imdb.com/list/ls087387225/?ref_=otl_DIfDjAQ
http://www.imdb.com/list/ls087387233/?ref_=otl_CBCAKIh
http://www.imdb.com/list/ls087387200/?ref_=otl_yozzSTn
http://www.imdb.com/list/ls087387648/?ref_=otl_GrPNrwo
http://www.imdb.com/list/ls087387631/?ref_=otl_WhZnczM
http://www.imdb.com/list/ls087387673/?ref_=otl_ycYAlOM
http://www.imdb.com/list/ls087387347/?ref_=otl_aqFRBgE
http://www.imdb.com/list/ls087387325/?ref_=otl_UtgfMmU
http://www.imdb.com/list/ls087387356/?ref_=otl_MNcNykY
http://www.imdb.com/list/ls087387195/?ref_=otl_GLaUYrl
http://www.imdb.com/list/ls087387130/?ref_=otl_lgqzWYb
http://www.imdb.com/list/ls087387175/?ref_=otl_FJBbGVD
http://www.imdb.com/list/ls087387747/?ref_=otl_fSELakF
http://www.imdb.com/list/ls087387763/?ref_=otl_HVWitKf
http://www.imdb.com/list/ls087387703/?ref_=otl_WMftfRl
http://www.imdb.com/list/ls087387593/?ref_=otl_XNkjtpa
http://www.imdb.com/list/ls087387516/?ref_=otl_eBJjheS
http://www.imdb.com/list/ls087387060/?ref_=otl_KSDLEmT
http://www.imdb.com/list/ls087385947/?ref_=otl_gESfhIG
http://www.imdb.com/list/ls087385933/?ref_=otl_QQNvjgW
http://www.imdb.com/list/ls087385953/?ref_=otl_sGukkGj
http://www.imdb.com/list/ls087385905/?ref_=otl_VKIMmEt
http://www.imdb.com/list/ls087385463/?ref_=otl_eBDZtrH
http://www.imdb.com/list/ls087385410/?ref_=otl_HzQlKnd
http://www.imdb.com/list/ls087385298/?ref_=otl_WJBSyps
http://www.imdb.com/list/ls087385226/?ref_=otl_pGCffKa
http://www.imdb.com/list/ls087385279/?ref_=otl_qNOePhk
http://www.imdb.com/list/ls087385200/?ref_=otl_CmOxvgu
http://www.imdb.com/list/ls087385628/?ref_=otl_ooyZMoz
http://www.imdb.com/list/ls087385632/?ref_=otl_YFysGnX
http://www.imdb.com/list/ls087385655/?ref_=otl_mfmfIJZ
http://www.imdb.com/list/ls087385398/?ref_=otl_wyMlKKJ
http://www.imdb.com/list/ls087385339/?ref_=otl_jttlQGN
http://www.imdb.com/list/ls087385376/?ref_=otl_XajAZZY
http://www.imdb.com/list/ls087385190/?ref_=otl_fbXfKFV
http://www.imdb.com/list/ls087385119/?ref_=otl_dUjMrrl
http://www.imdb.com/list/ls087385782/?ref_=otl_fmRaFlV
http://www.imdb.com/list/ls087385741/?ref_=otl_DIRrgZd
http://www.imdb.com/list/ls087385774/?ref_=otl_CxIrOAm
http://www.imdb.com/list/ls087385700/?ref_=otl_TrZbvOa
http://www.imdb.com/list/ls087385569/?ref_=otl_YFDUfTc
http://www.imdb.com/list/ls087385572/?ref_=otl_UYFSiTr
http://www.imdb.com/list/ls087385099/?ref_=otl_pBBFCXE
http://www.imdb.com/list/ls087385027/?ref_=otl_lWyMWeF
http://www.imdb.com/list/ls087385054/?ref_=otl_gFpnLaY
http://www.imdb.com/list/ls087380881/?ref_=otl_fkvYXAZ
http://www.imdb.com/list/ls087380834/?ref_=otl_ORTFnpK
http://www.imdb.com/list/ls087380858/?ref_=otl_LxRuzIb
http://www.imdb.com/list/ls087380944/?ref_=otl_nGlWKWD
http://www.imdb.com/list/ls087380927/?ref_=otl_MvdtWwA
http://www.imdb.com/list/ls087380240/?ref_=otl_VSPLkrf
http://www.imdb.com/list/ls087380270/?ref_=otl_CqNpWPF
http://www.imdb.com/list/ls087380623/?ref_=otl_RzNSMbq
http://www.imdb.com/list/ls087380301/?ref_=otl_HoxsJTr
http://www.imdb.com/list/ls087380138/?ref_=otl_zunoIpN
http://www.imdb.com/list/ls087398455/?ref_=otl_MhAqTze
http://www.imdb.com/list/ls087398234/?ref_=otl_hyCmfYW
http://www.imdb.com/list/ls087399972/?ref_=otl_RDJHVBZ
http://www.imdb.com/list/ls087399496/?ref_=otl_RPNFJZD
http://www.imdb.com/list/ls087399412/?ref_=otl_BFVXRXN
http://www.imdb.com/list/ls087399297/?ref_=otl_XTPPTHJ
http://www.imdb.com/list/ls087399232/?ref_=otl_FPLTNLF
http://www.imdb.com/list/ls087399209/?ref_=otl_RHNPTRH
http://www.imdb.com/list/ls087399698/?ref_=otl_FVPRJPT
http://www.imdb.com/list/ls087399663/?ref_=otl_XLHZLFR
http://www.imdb.com/list/ls087399673/?ref_=otl_PZJPBPF
http://www.imdb.com/list/ls087399380/?ref_=otl_HPZDFZZ
http://www.imdb.com/list/ls087399366/?ref_=otl_FDNRFXL
http://www.imdb.com/list/ls087399735/?ref_=otl_NFDHHNV
http://www.imdb.com/list/ls087399777/?ref_=otl_DPPNPHX
http://www.imdb.com/list/ls087399592/?ref_=otl_DPPBPZN
http://www.imdb.com/list/ls087399520/?ref_=otl_LRBZLPR
http://www.imdb.com/list/ls087399002/?ref_=otl_XZVHRJX
http://www.imdb.com/list/ls087394831/?ref_=otl_XRNZPHX
http://www.imdb.com/list/ls087394809/?ref_=otl_LHFXNRH
http://www.imdb.com/list/ls087394998/?ref_=otl_TZLTPJX
http://www.imdb.com/list/ls087394965/?ref_=otl_PRRZVNR
http://www.imdb.com/list/ls087394979/?ref_=otl_FXHJNFV
http://www.imdb.com/list/ls087394481/?ref_=otl_HLFTPBN
http://www.imdb.com/list/ls087394428/?ref_=otl_DHPHFZP
http://www.imdb.com/list/ls087394411/?ref_=otl_RXXXZRV
http://www.imdb.com/list/ls087394455/?ref_=otl_VHLBBDT
http://www.imdb.com/list/ls087394240/?ref_=otl_XFPPRXT
http://www.imdb.com/list/ls087394278/?ref_=otl_ZPNRLRV
http://www.imdb.com/list/ls087394655/?ref_=otl_VFJLTLX
http://www.imdb.com/list/ls087394390/?ref_=otl_vABJPNp
http://www.imdb.com/list/ls087394360/?ref_=otl_cFTTMoL
http://www.imdb.com/list/ls087394310/?ref_=otl_lXLUoQY
http://www.imdb.com/list/ls087394040/?ref_=otl_PspHuox
http://www.imdb.com/list/ls087394060/?ref_=otl_VIBStuA
http://www.imdb.com/list/ls087394058/?ref_=otl_vCpaWuk
http://www.imdb.com/list/ls087394005/?ref_=otl_Eottnqy
http://www.imdb.com/list/ls087392845/?ref_=otl_kktGetz
http://www.imdb.com/list/ls087392821/?ref_=otl_xGEWuDe
http://www.imdb.com/list/ls087392812/?ref_=otl_AJLbSLY
http://www.imdb.com/list/ls087392858/?ref_=otl_GcGxeqz
http://www.imdb.com/list/ls087392999/?ref_=otl_cpmexEZ
http://www.imdb.com/list/ls087392942/?ref_=otl_ahlMXeu
http://www.imdb.com/list/ls087392933/?ref_=otl_QFBBPST
http://www.imdb.com/list/ls087392978/?ref_=otl_ZBJDZTP
http://www.imdb.com/list/ls087392904/?ref_=otl_DNRFFLZ
http://www.imdb.com/list/ls087392494/?ref_=otl_RBJHLRD
http://www.imdb.com/list/ls087392460/?ref_=otl_BZBLVPT
http://www.imdb.com/list/ls087392410/?ref_=otl_RVHTHXP
http://www.imdb.com/list/ls087392400/?ref_=otl_HLRRDXN
http://www.imdb.com/list/ls087392293/?ref_=otl_FTFHVRX
http://www.imdb.com/list/ls087392254/?ref_=otl_NDNZXFJ
http://www.imdb.com/list/ls087392694/?ref_=otl_RLVTRJZ
http://www.imdb.com/list/ls087392662/?ref_=otl_TLVHRXT
http://www.imdb.com/list/ls087392618/?ref_=otl_LHTDRHL
http://www.imdb.com/list/ls087392608/?ref_=otl_DTJFJHT
http://www.imdb.com/list/ls087392392/?ref_=otl_XJXRPVF
http://www.imdb.com/list/ls087392362/?ref_=otl_PPBNVDF
http://www.imdb.com/list/ls087392371/?ref_=otl_NJHTVPR
http://www.imdb.com/list/ls087392307/?ref_=otl_RXVVXPF
http://www.imdb.com/list/ls087392195/?ref_=otl_LVFDFLP
http://www.imdb.com/list/ls087392167/?ref_=otl_xvMqxHd
http://www.imdb.com/list/ls087392131/?ref_=otl_rGfOPBz
http://www.imdb.com/list/ls087392156/?ref_=otl_STuWqjd
http://www.imdb.com/list/ls087392101/?ref_=otl_ePemryN
http://www.imdb.com/list/ls087392747/?ref_=otl_gBGjnbG
http://www.imdb.com/list/ls087392725/?ref_=otl_hpeRrwQ
http://www.imdb.com/list/ls087392718/?ref_=otl_lGDlOJM
http://www.imdb.com/list/ls087392774/?ref_=otl_JiOHbqL
http://www.imdb.com/list/ls087392597/?ref_=otl_XpCMYpW
http://www.imdb.com/list/ls087392569/?ref_=otl_zHkZsGL
http://www.imdb.com/list/ls087392505/?ref_=otl_vXtONWw
http://www.imdb.com/list/ls087392040/?ref_=otl_VHNvDAg
http://www.imdb.com/list/ls087392037/?ref_=otl_HnveVuV
http://www.imdb.com/list/ls087392076/?ref_=otl_EBYCRCj
http://www.imdb.com/list/ls087392002/?ref_=otl_GxeEYpO
http://www.imdb.com/list/ls087396881/?ref_=otl_xKSxiZQ
http://www.imdb.com/list/ls087396841/?ref_=otl_oDIZEPd
http://www.imdb.com/list/ls087391867/?ref_=otl_nkXhoSI
http://www.imdb.com/list/ls087856292/?ref_=otl_3J3
http://www.imdb.com/list/ls087856260/?ref_=otl_7J5
http://www.imdb.com/list/ls087856274/?ref_=otl_0m7
http://www.imdb.com/list/ls087856695/?ref_=otl_0A9
http://www.imdb.com/list/ls087856662/?ref_=otl_0U4
http://www.imdb.com/list/ls087856654/?ref_=otl_3q2
http://www.imdb.com/list/ls087856384/?ref_=otl_9T2
http://www.imdb.com/list/ls087856369/?ref_=otl_4X3
http://www.imdb.com/list/ls087856319/?ref_=otl_9h5
http://www.imdb.com/list/ls087856182/?ref_=otl_6Y0
http://www.imdb.com/list/ls087856148/?ref_=otl_3r6
http://www.imdb.com/list/ls087856112/?ref_=otl_2q0
http://www.imdb.com/list/ls087856150/?ref_=otl_3D8
http://www.imdb.com/list/ls087856734/?ref_=otl_0L3
http://www.imdb.com/list/ls087856703/?ref_=otl_9r1
http://www.imdb.com/list/ls087856741/?ref_=otl_8R8
http://www.imdb.com/list/ls087856599/?ref_=otl_4z5
http://www.imdb.com/list/ls087856518/?ref_=otl_6T8
http://www.imdb.com/list/ls087856575/?ref_=otl_7l7
http://www.imdb.com/list/ls087856043/?ref_=otl_9R0
http://www.imdb.com/list/ls087853881/?ref_=otl_2S7
http://www.imdb.com/list/ls087856018/?ref_=otl_0l8
http://www.imdb.com/list/ls087853822/?ref_=otl_6U2
http://www.imdb.com/list/ls087853873/?ref_=otl_7j3
http://www.imdb.com/list/ls087853805/?ref_=otl_3p9
http://www.imdb.com/list/ls087853927/?ref_=otl_0O3
http://www.imdb.com/list/ls087853918/?ref_=otl_1V6
http://www.imdb.com/list/ls087853902/?ref_=otl_3o9
http://www.imdb.com/list/ls087853493/?ref_=otl_5G3
http://www.imdb.com/list/ls087853412/?ref_=otl_4v3
http://www.imdb.com/list/ls087853457/?ref_=otl_7f1
http://www.imdb.com/list/ls087853295/?ref_=otl_8A9
http://www.imdb.com/list/ls087853262/?ref_=otl_2d1
http://www.imdb.com/list/ls087853271/?ref_=otl_9X3
http://www.imdb.com/list/ls087853680/?ref_=otl_8z0
http://www.imdb.com/list/ls087853663/?ref_=otl_0d2
http://www.imdb.com/list/ls087853676/?ref_=otl_2T8
http://www.imdb.com/list/ls087853398/?ref_=otl_7D8
http://www.imdb.com/list/ls087853368/?ref_=otl_1h9
http://www.imdb.com/list/ls087853358/?ref_=otl_9E8
http://www.imdb.com/list/ls087853188/?ref_=otl_8d1
http://www.imdb.com/list/ls087853162/?ref_=otl_0Y4
http://www.imdb.com/list/ls087853117/?ref_=otl_4o9
http://www.imdb.com/list/ls087853784/?ref_=otl_4T8
http://www.imdb.com/list/ls087853705/?ref_=otl_5N5
http://www.imdb.com/list/ls087853773/?ref_=otl_3Z5
http://www.imdb.com/list/ls087853721/?ref_=otl_5H1
http://www.imdb.com/list/ls087853527/?ref_=otl_3N3
http://www.imdb.com/list/ls087853513/?ref_=otl_9N5
http://www.imdb.com/list/ls087853082/?ref_=otl_3B7
http://www.imdb.com/list/ls087853029/?ref_=otl_3D3
http://www.imdb.com/list/ls087853016/?ref_=otl_7J5
http://www.imdb.com/list/ls087853052/?ref_=otl_9D3
http://www.imdb.com/list/ls087851846/?ref_=otl_5D9
http://www.imdb.com/list/ls087851834/?ref_=otl_3V7
http://www.imdb.com/list/ls087851859/?ref_=otl_3J5
http://www.imdb.com/list/ls087851985/?ref_=otl_9T9
http://www.imdb.com/list/ls087851938/?ref_=otl_1F3
http://www.imdb.com/list/ls087851911/?ref_=otl_5T3
http://www.imdb.com/list/ls087851485/?ref_=otl_9N9
http://www.imdb.com/list/ls087851440/?ref_=otl_1B9
http://www.imdb.com/list/ls087851413/?ref_=otl_9B9
http://www.imdb.com/list/ls087851243/?ref_=otl_9T5
http://www.imdb.com/list/ls087851232/?ref_=otl_5T7
http://www.imdb.com/list/ls087851450/?ref_=otl_9F5
http://www.imdb.com/list/ls087851255/?ref_=otl_9B7
http://www.imdb.com/list/ls087851685/?ref_=otl_1B5
http://www.imdb.com/list/ls087851667/?ref_=otl_1X1
http://www.imdb.com/list/ls087851676/?ref_=otl_9J5
http://www.imdb.com/list/ls087851399/?ref_=otl_1T9
http://www.imdb.com/list/ls087851320/?ref_=otl_3H3
http://www.imdb.com/list/ls087851358/?ref_=otl_1L9
http://www.imdb.com/list/ls087851182/?ref_=otl_9P3
http://www.imdb.com/list/ls087851161/?ref_=otl_7F9
http://www.imdb.com/list/ls087851117/?ref_=otl_3D9
http://www.imdb.com/list/ls087851791/?ref_=otl_1V3
http://www.imdb.com/list/ls087851726/?ref_=otl_3P7
http://www.imdb.com/list/ls087851752/?ref_=otl_3X1
http://www.imdb.com/list/ls087851587/?ref_=otl_7V9
http://www.imdb.com/list/ls087851538/?ref_=otl_3F5
http://www.imdb.com/list/ls087856646/?ref_=otl_5X7
http://www.imdb.com/list/ls087856207/?ref_=otl_9N7
http://www.imdb.com/list/ls087856619/?ref_=otl_5u0
http://www.imdb.com/list/ls087856214/?ref_=otl_8Z6
http://www.imdb.com/list/ls087856659/?ref_=otl_3f53.3 組態檔分類引入
在涉及檔案編譯、程式碼校驗、目錄規範設定、開發和生產環境區分等一系列功能處理的情況下,設定內容相對來說是比較多的。官方範例是都寫在 fis-conf.js 中,這會導致該檔案多達數百行,維護起來很不方便。我們可以按照功能內容將它分檔案書寫,然後在 fis-conf.js 中 require 進去。以下爲簡單的範例說明:

base.js – 包含 amd 模組化處理、autoprefixer、require js/css、全域性基本設定等內容
parse.js – 包含 es6/babel、vue、react、less、sass 等需要預處理語言的檔案編譯
lint.js – 包含 stylelint 和 eslint 設定
folder-standard.js – 專案目錄規範設定相關
dev.js – 開發模式下的設定
prod.js – 生產環境下的設定
qa.js – 與後端一起測試聯調環境下的設定
3.4 自定義外掛
除了官方出產的外掛外,更多的需求需要用到第三方外掛。但是對於外掛的品質卻沒有渠道有效地把控,出了問題無法及時去獲得改進解決。我們的建議是,對於關鍵性功能需求,參考第三方類似外掛,根據需要開發一個適合自己專案規範需求的外掛。好在 fis 的外掛體系非常簡單,開發一個外掛的成本是非常低。這樣即可以保證核心功能依賴由我們自己把控。

例如我們自己維護了 es6 編譯外掛 fis-parser-babel-latest,stylelint 校驗外掛 fis3-lint-stylelint_d。另外自定義了外掛 mz-node-cli,以讓符合我們專案規範特點的專案工程化流程簡單易用。

3.5 fis3 解決方案封裝
封裝解決方案是爲了統一團隊開發規範。根據 fis3 提供的 API,可以很方便的進一步封裝一個適合團隊的工具。具體可參考:fis3 高階使用。

我們根據其規範,封裝了 mz-node-cli,全域性化了一個 mznode 命令。在 mznode 中,我們主要做了三件事情:

固定基本的設定,包括目錄規範、vue/react 編譯、es6 編譯、less 編譯、stylelint、eslint、合併壓縮邏輯、線上發佈規範等。
固定了通用依賴外掛,保證每一個專案基本依賴外掛的一致性,簡化了專案內依賴安裝設定流程。